Example #1
0
        private void FillItem()
        {
            DevExpress.XtraEditors.Repository.RepositoryItemComboBox cbItem = null;
            GridColumn gcItem = gvItem.Columns.ColumnByFieldName("F_PItemID");

            if (gcItem.ColumnEdit == null)
            {
                cbItem            = new DevExpress.XtraEditors.Repository.RepositoryItemComboBox();
                gcItem.ColumnEdit = cbItem;
            }
            else
            {
                cbItem = (DevExpress.XtraEditors.Repository.RepositoryItemComboBox)gcItem.ColumnEdit;
            }

            cbItem.Items.Clear();
            int iCnt = gvList.RowCount;

            for (int i = 0; i < iCnt; i++)
            {
                if (gvList.GetRowCellValue(i, "F_ItemID") != DBNull.Value)
                {
                    cbItem.Items.Add(gvList.GetRowCellValue(i, "F_ItemID"));
                }
            }
        }
Example #2
0
        /// <summary>
        /// 콤보에 기초코드를 채움니다.
        /// </summary>
        /// <param name="cbo">콤보객체.</param>
        /// <param name="Filter">필터스트링.</param>
        /// <param name="SortString">소트스트링.</param>
        /// <param name="ValueMemberColumn">콤보박스 텍스트.</param>
        /// <param name="DisPlayMemberColumn">콤보박스 값.</param>
        /// <param name="DefaultSelectCaption">콤보박스초기텍스트.</param>
        /// <example>
        /// <code>
        /// FillBasicCode(ComboBox1,"HEAD = 'Z001' AND ITEM1 = 'Y'" ,"DETAIL ASC", "DETAIL" , "DETAIL_NAME", "선택하세요");
        /// </code>
        /// </example>
        public static void FillBasicViewCode(DevExpress.XtraEditors.Repository.RepositoryItemComboBox cbo,
                                             string Filter,
                                             string SortString,
                                             string ValueMemberColumn,
                                             string DisPlayMemberColumn,
                                             string DefaultSelectCaption)
        {
            cbo.Items.Clear();
            try
            {
                if (DefaultSelectCaption != string.Empty)
                {
                    cbo.Properties.Items.Add(new MemberBinding(DefaultSelectCaption, ""));
                }

                DataRow[] r = BizCommon.Parm.mDataTable.dtZx010ms.Select(Filter, SortString);

                foreach (DataRow rTmp in r)
                {
                    cbo.Properties.Items.Add(new MemberBinding(rTmp[DisPlayMemberColumn].ToString().Trim() + " " + rTmp[ValueMemberColumn].ToString().Trim(),
                                                               rTmp[ValueMemberColumn].ToString().Trim()));
                }
            }
            catch (Exception ex)
            {
                throw ex;
            }
        }
        private void gridViewPTT_CustomRowCellEditForEditing(object sender, DevExpress.XtraGrid.Views.Grid.CustomRowCellEditEventArgs e)
        {
            if (e.Column.ColumnHandle == 4)
            {
                if (e.CellValue != null)
                {
                    _donGia = Convert.ToDouble(e.CellValue);
                }
                else
                {
                    _donGia = 0;
                }

                colDonGia.ColumnEdit.BeginUpdate();
                DevExpress.XtraEditors.Repository.RepositoryItemComboBox repositoryComboBox = (e.RepositoryItem as DevExpress.XtraEditors.Repository.RepositoryItemComboBox);
                repositoryComboBox.Items.Clear();
                DataRow row = gridViewPTT.GetFocusedDataRow();
                if (row != null && row["ThuocGUID"] != null && row["ThuocGUID"] != DBNull.Value)
                {
                    string        thuocGUID  = row["ThuocGUID"].ToString();
                    List <double> donGiaList = GetGiaThuoc(thuocGUID);
                    if (donGiaList != null && donGiaList.Count > 0)
                    {
                        foreach (double donGia in donGiaList)
                        {
                            repositoryComboBox.Items.Add(donGia);
                        }
                    }
                }
                colDonGia.ColumnEdit.CancelUpdate();
            }
        }
Example #4
0
 public void Initialize(DevExpress.XtraEditors.Repository.RepositoryItemComboBox cmd)
 {
     foreach (string str in strSource)
     {
         cmd.Items.Add(str);
     }
 }
Example #5
0
 /// <summary>
 /// 포함된 콤보박스에 아이템을 추가할때 사용한다.
 /// 초기값을 선택하거나 선택된 값을 가져올때는 콤보박스를 포함하고 있는 DevExpress.XtraBars.BarEditItem 의 .EditValue 사용.
 /// 즉
 /// </summary>
 /// <param name="_ctrl"></param>
 /// <param name="_key"></param>
 /// <param name="_value"></param>
 /// <returns></returns>
 static public TsDevExpressComboItem RepositoryItemComboBoxAddItem(DevExpress.XtraEditors.Repository.RepositoryItemComboBox _ctrl, String _key, String _value)
 {
     if (_ctrl != null)
     {
         TsDevExpressComboItem item = new TsDevExpressComboItem(_key, _value);
         _ctrl.Items.Add(item);
         return(item);
     }
     return(null);
 }
Example #6
0
        //

        public void FillDevComboBox(string GroupName, DevExpress.XtraEditors.Repository.RepositoryItemComboBox cmbbox)
        {
            DataSet dst = GetParaItems(GroupName);

            if (dst.Tables[0].Rows.Count > 0)
            {
                cmbbox.Items.Clear();
                foreach (DataRow row in dst.Tables[0].Rows)
                {
                    cmbbox.Items.Add(row["GROUPLISTITEM"].ToString());
                }
            }
        }
Example #7
0
        /// <summary>
        /// Required method for Designer support - do not modify
        /// the contents of this method with the code editor.
        /// </summary>
        private void InitializeComponent()
        {
            components = new System.ComponentModel.Container();
            DevExpress.XtraEditors.Repository.RepositoryItemComboBox repositoryItemComboBoxOp;
            repositoryItemComboBoxOp = new DevExpress.XtraEditors.Repository.RepositoryItemComboBox();
            repositoryItemComboBoxOp.TextEditStyle = DevExpress.XtraEditors.Controls.TextEditStyles.DisableTextEditor;
            this.treeListColumn1  = new DevExpress.XtraTreeList.Columns.TreeListColumn();
            this.treeListColumnOp = new DevExpress.XtraTreeList.Columns.TreeListColumn();
            this.treeListColumn2  = new DevExpress.XtraTreeList.Columns.TreeListColumn();
            this.treeListColumn3  = new DevExpress.XtraTreeList.Columns.TreeListColumn();

            this.OptionsBehavior.Editable = true;
            this.Columns.AddRange(new DevExpress.XtraTreeList.Columns.TreeListColumn[] {
                this.treeListColumn1, this.treeListColumnOp, this.treeListColumn2, this.treeListColumn3
            });
            this.RepositoryItems.AddRange(new DevExpress.XtraEditors.Repository.RepositoryItem[] {
                repositoryItemComboBoxOp
            });

            this.treeListColumn1.Caption   = "├ч│к";
            this.treeListColumn1.FieldName = "├ч│к";
            this.treeListColumn1.Name      = "treeListColumn1";
            this.treeListColumn1.OptionsColumn.AllowEdit = false;
            this.treeListColumn1.VisibleIndex            = 0;

            this.treeListColumnOp.ColumnEdit = repositoryItemComboBoxOp;
            this.treeListColumnOp.Caption    = "╦сич";
            this.treeListColumnOp.FieldName  = "╦сич";
            this.treeListColumnOp.Name       = "treeListColumnOp";
            this.treeListColumnOp.OptionsColumn.AllowEdit = true;
            this.treeListColumnOp.VisibleIndex            = 1;

            this.treeListColumn2.Caption   = "ох";
            this.treeListColumn2.FieldName = "ох";
            this.treeListColumn2.Name      = "treeListColumn2";
            this.treeListColumn2.OptionsColumn.AllowEdit = true;
            this.treeListColumn2.VisibleIndex            = 2;

            this.treeListColumn3.Caption      = "id";
            this.treeListColumn3.FieldName    = "id";
            this.treeListColumn3.Name         = "treeListColumn3";
            this.treeListColumn3.VisibleIndex = -1;

            repositoryItemComboBoxOp.AutoHeight = false;
            repositoryItemComboBoxOp.Items.AddRange(new object[] {
                DrectSoft.Core.TimeLimitQC.CompareOp.Equal,
                DrectSoft.Core.TimeLimitQC.CompareOp.Like
            });
            repositoryItemComboBoxOp.Name = "repositoryItemComboBoxOp";
        }
Example #8
0
 private void InitializeComponent()
 {
     this.fProperties = new DevExpress.XtraEditors.Repository.RepositoryItemComboBox();
     ((System.ComponentModel.ISupportInitialize)(this.fProperties)).BeginInit();
     this.SuspendLayout();
     //
     // fProperties
     //
     this.fProperties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
         new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)
     });
     this.fProperties.Name = "fProperties";
     ((System.ComponentModel.ISupportInitialize)(this.fProperties)).EndInit();
     this.ResumeLayout(false);
 }
        public CashboxControlAndOperations(bool _mode = true)
        {
            saleMode = _mode;

            InitializeComponent();

            gridControl1.DataSource      = bsSalesHistory;
            bsSalesHistory.AllowNew      = true;
            gridView1.Columns[0].Visible = false;
            gridView1.Columns[1].Visible = false;
            gridView1.Columns[2].Width   = gridView1.Columns[2].Width * 4;
            gridView1.Columns[2].Caption = "Product Name";

            DevExpress.XtraEditors.Repository.RepositoryItemComboBox riCbProducts = new DevExpress.XtraEditors.Repository.RepositoryItemComboBox();
            riCbProducts.AutoHeight = false;
            //riCbProducts.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
            //new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
            riCbProducts.Items.AddRange(dbContext.Products.Select(p => p.product_name).ToArray());
            riCbProducts.Name               = "riCbProducts";
            riCbProducts.TextEditStyle      = DevExpress.XtraEditors.Controls.TextEditStyles.DisableTextEditor;
            gridView1.Columns[2].ColumnEdit = riCbProducts;

            gridView1.Columns[3].Caption = "Quantity";

            DevExpress.XtraEditors.NavigatorCustomButton button;
            button     = gridControl1.EmbeddedNavigator.Buttons.CustomButtons.Add();
            button.Tag = "Process";
            if (saleMode == true)
            {
                button.Hint = "Process the sales";
            }
            else
            {
                groupControl2.Text = "Stock Purchasing And Other Operations";
                button.Hint        = "Process the purchases";
            }
            button.ImageIndex = 18;


            DevExpress.XtraEditors.NavigatorCustomButton buttonLoadCash;
            buttonLoadCash            = gridControl1.EmbeddedNavigator.Buttons.CustomButtons.Add();
            buttonLoadCash.Tag        = "Load Cash";
            buttonLoadCash.Hint       = "Load Cash";
            buttonLoadCash.ImageIndex = 12;

            gridControl1.EmbeddedNavigator.ButtonClick +=
                new DevExpress.XtraEditors.NavigatorButtonClickEventHandler(EmbeddedNavigator_ButtonClick);
        }
Example #10
0
        public void InitEvents( )
        {
            this.FindForm().FormClosing += new FormClosingEventHandler(Form_FormClosing);

            this.ViewTableConfig.FocusedRowChanged += new DevExpress.XtraGrid.Views.Base.FocusedRowChangedEventHandler(ViewTableConfig_FocusedRowChanged);
            this.ViewTableConfig.CellValueChanged  += new DevExpress.XtraGrid.Views.Base.CellValueChangedEventHandler(ViewTableConfig_CellValueChanged);

            repoEnum = new DevExpress.XtraEditors.Repository.RepositoryItemComboBox();
            this.repoEnum.Items.AddRange(EnumProvider.EnumList.Keys);
            repoFilter = new DevExpress.XtraEditors.Repository.RepositoryItemButtonEdit();
            this.repoFilter.ButtonPressed += new DevExpress.XtraEditors.Controls.ButtonPressedEventHandler(repFilter_ButtonPressed);
            repoFormat = new DevExpress.XtraEditors.Repository.RepositoryItemComboBox();
            this.repoFormat.Items.AddRange(Enum.GetNames(typeof(DataFormatProvider.FieldFormat)));

            this.ViewFieldConfig.CustomRowCellEdit += new DevExpress.XtraGrid.Views.Grid.CustomRowCellEditEventHandler(ViewFieldConfig_CustomRowCellEdit);
            this.ViewFieldConfig.ShowingEditor     += new CancelEventHandler(ViewFieldConfig_ShowingEditor);
            this.ViewFieldConfig.CellValueChanged  += new DevExpress.XtraGrid.Views.Base.CellValueChangedEventHandler(ViewFieldConfig_CellValueChanged);
        }
Example #11
0
        private void bindGridControl()
        {
            _DataSet = getData();
            if (null != _DataSet)
            {
                LocalLanguageObject language = new LocalLanguageObject(rxtLanguage);

                DataColumnCollection dataColumnCollections = _DataSet.Tables[0].Columns;

                DataColumn colName = new DataColumn(DEFAULT_COLUMN_NAME);
                colName.Caption = DEFAULT_COLUMN_NAME_CAPTION;

                DataColumn colDescription = new DataColumn(DEFAULT_COLUMN_DESCRIPTION);
                colDescription.Caption = DEFAULT_COLUMN_DESCRIPTION_CAPTION;

                DataColumn colType = new DataColumn(DEFAULT_COLUMN_TYPE);
                colType.Caption = DEFAULT_COLUMN_TYPE_CAPTION;

                DataTable dataTable = new DataTable();
                DataSet   dataSet   = new DataSet();
                dataTable.Columns.AddRange(new DataColumn[] { colName, colDescription, colType });


                foreach (DataColumn dataColumn in dataColumnCollections)
                {
                    dataTable.Rows.Add(dataColumn.ColumnName, language.GetDescription(dataColumn.ColumnName), dataColumn.DataType);
                }

                dataSet.Tables.Add(dataTable);

                gridControl.DataSource = dataSet.Tables[0].DefaultView;

                string[] items = getDataTypes();

                DevExpress.XtraEditors.Repository.RepositoryItemComboBox repositoryItemComboBoxDataType =
                    new DevExpress.XtraEditors.Repository.RepositoryItemComboBox();
                repositoryItemComboBoxDataType.Items.AddRange(items);

                gridView.Columns[2].ColumnEdit = repositoryItemComboBoxDataType;

                this.gridView.Name = DEFAULT_GRIDVIEW_NAME;
            }
        }
Example #12
0
        public static void month_showpreviousDev(DevExpress.XtraEditors.Repository.RepositoryItemComboBox monthi)
        {
            if (monthi.Items.Count == 0)
            {
                string mi; DateTime now = DateTime.Now; int year = now.Year; int month = now.Month;

                if (now.Month <= 3)
                {
                    year = year - 1;
                }
                for (int i = 3; i <= 12; i++)
                {
                    if (i < 10)
                    {
                        mi = "0" + i.ToString();
                    }
                    else
                    {
                        mi = i.ToString();
                    } monthi.Items.Add(mi + "/" + year.ToString());
                }
                for (int i = 1; i <= 3; i++)
                {
                    mi = "0" + i.ToString(); monthi.Items.Add(mi + "/" + (year + 1).ToString());
                }

                start = 1;
                year  = now.Year;
                month = now.Month - 1;

                if (month == 0)
                {
                    month = 12; year = year - 1;
                }

                //if (month < 10) { monthi.editva = "0" + month.ToString() + "/" + year.ToString(); }
                //else { monthi.Text = month.ToString() + "/" + year.ToString(); }
                //monthi.Text = "Select month";
            }
        }
Example #13
0
        private void gridViewCauHinh_CustomRowCellEdit(object sender, DevExpress.XtraGrid.Views.Grid.CustomRowCellEditEventArgs e)
        {
            try
            {
                if (e.Column.FieldName == nameof(SettingsPropertyValue.PropertyValue) && gridViewCauHinh.GetRowCellValue(e.RowHandle, nameof(SettingsPropertyValue.Name)).ToString() == nameof(Settings.Default.Skin))
                {
                    var r = new DevExpress.XtraEditors.Repository.RepositoryItemComboBox();
                    foreach (SkinContainer cnt in SkinManager.Default.Skins)
                    {
                        r.Items.Add(cnt.SkinName);
                    }
                    r.TextEditStyle  = DevExpress.XtraEditors.Controls.TextEditStyles.DisableTextEditor;
                    e.RepositoryItem = r;
                    return;
                }

                e.RepositoryItem = new DevExpress.XtraEditors.Repository.RepositoryItemTextEdit();
            }
            catch (Exception)
            {
            }
        }
Example #14
0
 public void InitCol(string[] arrCol)
 {
     m_ColName = arrCol;
     DataTable ds = new DataTable();
     for (int i = 0; i < arrCol.Length;i++ )
     {
         ds.Columns.Add(arrCol[i]);
         ds.Columns[i].Caption = arrCol[i];
     }    
     gridControl1.DataSource = ds;
     DevExpress.XtraGrid.Views.Grid.GridView grid = gridView1;
     grid.OptionsBehavior.AllowAddRows = DevExpress.Utils.DefaultBoolean.True;
     grid.OptionsBehavior.AllowDeleteRows = DevExpress.Utils.DefaultBoolean.True;           
     grid.OptionsView.NewItemRowPosition = DevExpress.XtraGrid.Views.Grid.NewItemRowPosition.Bottom;
     grid.OptionsView.ShowGroupPanel = false;            
     for (int i = 0; i < grid.Columns.Count; i++)
     {
         DevExpress.XtraEditors.Repository.RepositoryItemComboBox lue1 = new DevExpress.XtraEditors.Repository.RepositoryItemComboBox();
         grid.Columns[i].ColumnEdit = lue1;
         lue1.TextEditStyle = DevExpress.XtraEditors.Controls.TextEditStyles.Standard;
         colctrllist.Add(lue1);
     }           
 }
Example #15
0
        private void gv_ITEM_CustomRowCellEdit(object sender, DevExpress.XtraGrid.Views.Grid.CustomRowCellEditEventArgs e)
        {
            try
            {
                string  fieldName = e.Column.FieldName;
                DataRow dr        = gv_ITEM.GetDataRow(e.RowHandle);

                if (dr != null)
                {
                    string strValue = dr["C_CHARACTER_ID"].ToString();

                    if (fieldName == "C_VALUE")
                    {
                        DataRow[] rows = dtDX.Select("C_CHARACTER_ID='" + strValue + "'");

                        if (rows.Length > 0)
                        {
                            DevExpress.XtraEditors.Repository.RepositoryItemComboBox resCbo = new DevExpress.XtraEditors.Repository.RepositoryItemComboBox();

                            resCbo.Name          = "resCbo_" + strValue;
                            resCbo.TextEditStyle = DevExpress.XtraEditors.Controls.TextEditStyles.DisableTextEditor;

                            foreach (var item in rows)
                            {
                                resCbo.Items.Add(item["C_RESULT"].ToString());
                            }

                            e.RepositoryItem = resCbo;
                        }
                    }
                }
            }
            catch (Exception ex)
            {
                MessageBox.Show(ex.Message);
            }
        }
Example #16
0
        private void m_bwImportToGrid_DoWork(object sender, DoWorkEventArgs e)
        {
            this.Invoke(new MethodInvoker(delegate  {
                WaitDialog.Show(ParentForm, "Processing import file...");
                this.SetEditableControlsCompany(false);

                /**
                 * read excel file first, if no records, cancel matching process.
                 */
                gcImportFileData.DataSource = null;
                lblRecordStatistic.Text = "          Number of Records: 0";
                if (!m_objFileHandler.OpenExcelFile(m_sFileName)) {
                    MessageBox.Show("Cannot open or invalid import file.", "Bright Manager", MessageBoxButtons.OK, MessageBoxIcon.Information);
                    this.SetEditableControlsCompany(true);
                    cmdUpdateToMasterDataTable.Enabled = false;
                    WaitDialog.Close();
                    e.Cancel = true;
                    return;
                }

                /**
                 * get the org_no's/account id's first, so we can query this against the master data,
                 * and get initial results.
                 */
                DataTable _dtImportFileItems = null;
                if (cboMatchBy.Text.Equals("Account Id"))
                    _dtImportFileItems = m_objFileHandler.GetFileContents(cboSheetName.Text + "$", "[id]", "WHERE len([id]) > 0");
                else if (cboMatchBy.Text.Equals("Org No"))
                    _dtImportFileItems = m_objFileHandler.GetFileContents(cboSheetName.Text + "$", "[org_no]", "WHERE len([org_no]) > 0");

                if (_dtImportFileItems.Rows.Count < 1) {
                    MessageBox.Show("Import file has no data.", "Bright Manager", MessageBoxButtons.OK, MessageBoxIcon.Information);
                    this.SetEditableControlsCompany(true);
                    cmdUpdateToMasterDataTable.Enabled = false;
                    WaitDialog.Close();
                    e.Cancel = true;
                    return;
                }

                /**
                 * we add another data column to handle conversion from different data type to string,
                 * since we will need to pass the org_no's as string parameter for the stored procedure.
                 */
                DataColumn _dcAdditionalColumn = new DataColumn("str_matched_item") {
                    DataType = System.Type.GetType("System.String"),
                    Expression = cboMatchBy.Text.Equals("Account Id") ? "Convert(id, 'System.String')" : "Convert(org_no, 'System.String')"
                };

                _dtImportFileItems.Columns.Add(_dcAdditionalColumn);
                var _dvImportFileItems = _dtImportFileItems.DefaultView;
                var _dtToMatchItems = _dvImportFileItems.ToTable(true, "str_matched_item");

                /**
                 * get only matched columns for use in sql select field, no need to select all columns.
                 */
                List<string> _SelectColumns = new List<string>();
                List<string> _MasterDataSelectColumns = new List<string>();
                foreach (CTAccountColumnName _ColumnItem in m_lstAccountColumnNames) {
                    if (_ColumnItem.matched_column_no.Length < 1)
                        continue;

                    _SelectColumns.Add(_ColumnItem.master_data_field);
                    if (_ColumnItem.master_data_field.Equals("org_no") || _ColumnItem.master_data_field.Equals("id"))
                        continue;

                    _MasterDataSelectColumns.Add(String.Format("{0} = Convert(nvarchar(255), a.{0})", _ColumnItem.master_data_field));
                }

                /**
                 * we get our initial results for the master data and the import file.
                 * we will match the data from the master data against the import file row/row and cell/cell,
                 * except for those columns defined to be skipped though.
                 */
                #region Code Logic
                m_dtImportFileMatchedAccounts = null;
                DataTable _dtImportFileData = null;
                if (cboMatchBy.Text.Equals("Account Id")) {
                    m_dtImportFileMatchedAccounts = DataImportUtility.GetLargeCompanyImportMatchedAccounts(DataImportUtility.eMatchBy.AccountId, _dtToMatchItems, Convert.ToInt32(cboCountry.EditValue), _MasterDataSelectColumns);
                    _dtImportFileData = m_objFileHandler.GetFileContents(cboSheetName.Text + "$", string.Join(",", _SelectColumns.ToArray()), "WHERE len([id]) > 0 ORDER BY [id]");
                }
                else if (cboMatchBy.Text.Equals("Org No")) {
                    m_dtImportFileMatchedAccounts = DataImportUtility.GetLargeCompanyImportMatchedAccounts(DataImportUtility.eMatchBy.OrgNo, _dtToMatchItems, Convert.ToInt32(cboCountry.EditValue), _MasterDataSelectColumns);
                    _dtImportFileData = m_objFileHandler.GetFileContents(cboSheetName.Text + "$", string.Join(",", _SelectColumns.ToArray()), "WHERE len([org_no]) > 0 ORDER BY [org_no]");
                }

                DataTable _dtAccountStructure = DataImportUtility.CreateAccountTable();
                DataRow[] _drMatchedRows = null;
                for (int i = 0; i < m_dtImportFileMatchedAccounts.Rows.Count; i++) {
                    /**
                     * if no match was found against the import file, just continue to the next record.
                     * well always use index = 0 for the matched rows, we will assume that the import file
                     * always have a distinct org_no entries
                     */
                    _drMatchedRows = null;
                    if (cboMatchBy.Text.Equals("Org No"))
                        _drMatchedRows = _dtImportFileData.Select(String.Format("org_no = '{0}'", m_dtImportFileMatchedAccounts.Rows[i]["org_no"]));
                    else if (cboMatchBy.Text.Equals("Account Id"))
                        _drMatchedRows = _dtImportFileData.Select(String.Format("id = '{0}'", m_dtImportFileMatchedAccounts.Rows[i]["id"]));

                    if (_drMatchedRows.Length < 1)
                        continue;

                    foreach (DataColumn _dcItem in m_dtImportFileMatchedAccounts.Columns) {

                        /**
                         * we bypass non needed columns
                         */
                        if (_dcItem.ColumnName.Equals("action_type") || _dcItem.ColumnName.Equals("list_id") || _dcItem.ColumnName.Equals("id"))
                            continue;

                        try {
                            /**
                             * if new record, just udpate directly and continue to the next record, no need to compare
                             */
                            if (m_dtImportFileMatchedAccounts.Rows[i]["action_type"].Equals("New Record")) {
                                m_dtImportFileMatchedAccounts.Rows[i][_dcItem.ColumnName] = _drMatchedRows[0][_dcItem.ColumnName].ToString().Replace("NULL", "");
                                continue;
                            }

                            /**
                             * we will need to strip off the ".00" from the money and number figures,
                             * so when comparing as string, we will have an exact comparison.
                             */
                            string _sMasterDataValue = m_dtImportFileMatchedAccounts.Rows[i][_dcItem.ColumnName].ToString();
                            if (_sMasterDataValue.EndsWith(".00"))
                                _sMasterDataValue = _sMasterDataValue.Remove(_sMasterDataValue.Length - 3, 3);

                            string _sImportFileValue = _drMatchedRows[0][_dcItem.ColumnName].ToString();
                            if (_sImportFileValue.EndsWith(".00"))
                                _sImportFileValue = _sImportFileValue.Remove(_sImportFileValue.Length - 3, 3);

                            _sMasterDataValue = _sMasterDataValue.Replace("NULL", "");
                            _sImportFileValue = _sImportFileValue.Replace("NULL", "");

                            /**
                             * assign the correct default value to have a more precise matching.
                             * like for example, if the cell value is supposedly to be an integer, and
                             * it has a null or no value, it will be assigned as 0.
                             */
                            if (_dtAccountStructure.Columns.Contains(_dcItem.ColumnName)) {
                                if (_dtAccountStructure.Columns[_dcItem.ColumnName].DataType.FullName.Equals("System.Decimal") ||
                                    _dtAccountStructure.Columns[_dcItem.ColumnName].DataType.FullName.Equals("System.Int32") ||
                                    _dtAccountStructure.Columns[_dcItem.ColumnName].DataType.FullName.Equals("System.Byte"))
                                {
                                    if (string.IsNullOrEmpty(_sMasterDataValue))
                                        _sMasterDataValue = "0";

                                    if (string.IsNullOrEmpty(_sImportFileValue))
                                        _sImportFileValue = "0";
                                }

                                else if (_dtAccountStructure.Columns[_dcItem.ColumnName].DataType.FullName.Equals("System.String")) {
                                    if (string.IsNullOrEmpty(_sMasterDataValue))
                                        _sMasterDataValue = "";

                                    if (string.IsNullOrEmpty(_sImportFileValue))
                                        _sImportFileValue = "";
                                }
                            }

                            /**
                             * now we will compare the master data column value against the import file column value.
                             * if they are not the same, we will write it as "New Value/Old Value" on the cell,
                             * and flag it out as "For Update"
                             */
                            if (_sMasterDataValue != _sImportFileValue) {
                                if (_sMasterDataValue.Length > 0 && _sImportFileValue.Length < 1) {
                                    m_dtImportFileMatchedAccounts.Rows[i][_dcItem.ColumnName] = _sMasterDataValue;
                                    continue;
                                }

                                else if (_sMasterDataValue.Length < 1 && _sImportFileValue.Length > 0)
                                    m_dtImportFileMatchedAccounts.Rows[i][_dcItem.ColumnName] = _sImportFileValue + "¶";

                                else if (_sMasterDataValue.Length > 0 && _sImportFileValue.Length > 0)
                                    m_dtImportFileMatchedAccounts.Rows[i][_dcItem.ColumnName] = _sImportFileValue + "[«]" + _sMasterDataValue;

                                else
                                    m_dtImportFileMatchedAccounts.Rows[i][_dcItem.ColumnName] = "";

                                m_dtImportFileMatchedAccounts.Rows[i]["action_type"] = "For Update";
                            }
                        }
                        catch {
                            /**
                             * just write a default value when encountered an error.
                             */
                            m_dtImportFileMatchedAccounts.Rows[i][_dcItem.ColumnName] = DBNull.Value;
                        }
                    }
                }
                #endregion

                /**
                 * we display our matched results and close the excel file
                 */
                DevExpress.XtraEditors.Repository.RepositoryItemComboBox cboActionType = new DevExpress.XtraEditors.Repository.RepositoryItemComboBox();
                cboActionType.TextEditStyle = TextEditStyles.DisableTextEditor;
                cboActionType.Items.Add("For Update");
                cboActionType.Items.Add("New Record");
                cboActionType.Items.Add("No Changes");

                gcImportFileData.DataSource = null;
                lblRecordStatistic.Text = "          Number of Records: 0";
                if (m_dtImportFileMatchedAccounts != null && m_dtImportFileMatchedAccounts.Rows.Count > 0) {
                    gcImportFileData.DataSource = m_dtImportFileMatchedAccounts;
                    gvImportFileData.Columns["list_id"].OptionsColumn.AllowEdit = false;
                    gvImportFileData.Columns["list_id"].OptionsColumn.AllowFocus = false;
                    gvImportFileData.Columns["id"].Caption = "account_id";
                    gvImportFileData.Columns["id"].OptionsColumn.AllowEdit = false;
                    gvImportFileData.Columns["id"].OptionsColumn.AllowFocus = false;
                    if (cboMatchBy.Text.Equals("Org No")) {
                        gvImportFileData.Columns["org_no"].OptionsColumn.AllowEdit = false;
                        gvImportFileData.Columns["org_no"].OptionsColumn.AllowFocus = false;
                    }
                    else {
                        gvImportFileData.Columns["org_no"].OptionsColumn.AllowEdit = true;
                        gvImportFileData.Columns["org_no"].OptionsColumn.AllowFocus = true;
                    }
                    gvImportFileData.BestFitColumns();
                    gvImportFileData.Columns["action_type"].ColumnEdit = cboActionType;
                    gvImportFileData.Columns["action_type"].Width = 100;
                    lblRecordStatistic.Text = "          Number of Records: " + m_dtImportFileMatchedAccounts.Rows.Count.ToString();
                }

                m_objFileHandler.CloseExcelFile();
                this.SetEditableControlsCompany(true);
                WaitDialog.Close();

            }));

            e.Cancel = true;
        }
Example #17
0
        private void openToolStripButton_Click(object sender, EventArgs e)
        {
            TARIFELER._TARIFE_LISTESI tmp = new TARIFELER._TARIFE_LISTESI("KEYWORD", "KEYWORD");
            tmp.ShowDialog();
            try
            {
                if (tmp._BTN_TYPE == "Tamam" && tmp._TARIFE_KODU != null)
                {
                    TARIFE_KODU = tmp._TARIFE_KODU;
                    string TAB_VARMI = "YOK";
                    int    TabCount  = 0;
                    for (int i = 0; i < xtraTabControl_WORD_MNG_DETAY.TabPages.Count; i++)
                    {
                        if (xtraTabControl_WORD_MNG_DETAY.TabPages[i].Name == TARIFE_KODU)
                        {
                            TAB_VARMI = "VAR"; TabCount = i;
                        }
                    }
                    // TARIFE_CHANGE(TF._MECRA_TURU);
                    // this.ParentForm.GetType().InvokeMember("TARIFE_SELECT", System.Reflection.BindingFlags.InvokeMethod, null, this.ParentForm, new object[] { TF._MECRA_TURU });
                    if (TAB_VARMI == "YOK")
                    {
                        if (tmp._TARIFE_KODU != null)
                        {
                            grdCntrl_        = new DevExpress.XtraGrid.GridControl();
                            gridView_        = new DevExpress.XtraGrid.Views.Grid.GridView();
                            re_FIELD_SELECT  = new DevExpress.XtraEditors.Repository.RepositoryItemCheckedComboBoxEdit();
                            re_WORD_MEMO     = new DevExpress.XtraEditors.Repository.RepositoryItemMemoEdit();
                            re_FIELD_UPDATES = new DevExpress.XtraEditors.Repository.RepositoryItemComboBox();
                            using (SqlConnection myConnection = new SqlConnection(_GLOBAL_PARAMETRELER._CONNECTION_STRING.ToString()))
                            {
                                string     SQL       = string.Format("   SELECT ID ,ParentID, TEXT, CHILD_INDEX,GUI, CHECKS FROM   dbo.ADM_RAPOR_BASLIK    WHERE SIRKET_KODU='{0}' AND RAPOR_KODU='{1}' order by ParentID,CHILD_INDEX", _GLOBAL_PARAMETRELER._KULLANICI_FIRMA, _GLOBAL_PARAMETRELER._RAPOR_KODU);
                                SqlCommand myCommand = new SqlCommand(SQL, myConnection)
                                {
                                    CommandText = SQL.ToString()
                                };
                                myConnection.Open();
                                SqlDataReader myReader = myCommand.ExecuteReader(System.Data.CommandBehavior.CloseConnection);
                                while (myReader.Read())
                                {
                                    re_FIELD_SELECT.Items.Add(myReader["TEXT"]);
                                    re_FIELD_UPDATES.Items.Add(myReader["TEXT"]);
                                }
                            }
                            DataSet ds = new DataSet();
                            using (SqlConnection conn = new SqlConnection(_GLOBAL_PARAMETRELER._CONNECTION_STRING.ToString()))
                            {
                                SqlDataAdapter adapter = new SqlDataAdapter(string.Format("SELECT ID,[ALANLAR],[KEYWORDS],[ALAN],[DEGER]   FROM  dbo.TRF_KEYWORD  WHERE   TARIFE_KODU='{0}' and SIRKET_KODU='{1}'", tmp._TARIFE_KODU, _GLOBAL_PARAMETRELER._KULLANICI_FIRMA), conn);
                                adapter.Fill(ds, "TRF_MASTER");
                                DataViewManager dvManager      = new DataViewManager(ds);
                                DataView        DW_LIST_TARIFE = dvManager.CreateDataView(ds.Tables[0]);
                                grdCntrl_.DataSource = DW_LIST_TARIFE;
                                for (int i = 0; i <= 5; i++)
                                {
                                    DW_LIST_TARIFE.AddNew();
                                }
                            }
                        }
                        //ToolStrip mn = new ToolStrip();
                        //mn.Dock = DockStyle.Top;
                        //mn.SendToBack();
                        //xtraTabControl_MASTER_MNG_DETAY.TabPages.Add("Yeni");
                        //xtraTabControl_MASTER_MNG_DETAY.TabPages[xtraTabControl_MASTER_MNG_DETAY.TabPages.Count - 1].Controls.Add(mn);
                        xtraTabControl_WORD_MNG_DETAY.TabPages.Add("");
                        xtraTabControl_WORD_MNG_DETAY.TabPages[xtraTabControl_WORD_MNG_DETAY.TabPages.Count - 1].Controls.Add(grdCntrl_);
                        xtraTabControl_WORD_MNG_DETAY.TabPages[xtraTabControl_WORD_MNG_DETAY.TabPages.Count - 1].Name             = TARIFE_KODU;
                        xtraTabControl_WORD_MNG_DETAY.TabPages[xtraTabControl_WORD_MNG_DETAY.TabPages.Count - 1].Text             = TARIFE_KODU;
                        xtraTabControl_WORD_MNG_DETAY.TabPages[xtraTabControl_WORD_MNG_DETAY.TabPages.Count - 1].Tag              = tmp._TARIFE_ID;
                        xtraTabControl_WORD_MNG_DETAY.TabPages[xtraTabControl_WORD_MNG_DETAY.TabPages.Count - 1].ContextMenuStrip = CNMN_TARIFE;
                        //
                        // grdCntrl_List
                        //
                        grdCntrl_.Dock     = DockStyle.Fill;
                        grdCntrl_.Location = new System.Drawing.Point(0, 0);
                        grdCntrl_.MainView = gridView_;
                        //grdCntrl_.MenuManager = this.barManagers;
                        grdCntrl_.ContextMenuStrip = CNMN_TARIFE;
                        grdCntrl_.Name             = TARIFE_KODU;//_FIELD_NAME;
                        grdCntrl_.Size             = new System.Drawing.Size(699, 368);
                        grdCntrl_.TabIndex         = 1;
                        grdCntrl_.ViewCollection.AddRange(new DevExpress.XtraGrid.Views.Base.BaseView[] { gridView_ });
                        grdCntrl_.RepositoryItems.AddRange(new DevExpress.XtraEditors.Repository.RepositoryItem[] {
                            re_WORD_MEMO,
                            re_FIELD_SELECT,
                            re_FIELD_UPDATES
                        });

                        //
                        // gridView_List
                        //
                        gridView_.ColumnPanelRowHeight = 40;
                        gridView_.GridControl          = grdCntrl_;
                        gridView_.Name = TARIFE_KODU;///_FIELD_NAME;
                        gridView_.OptionsView.ShowGroupPanel = false;
                        //gridView_.OptionsBehavior.Editable = false;
                        gridView_.OptionsView.ColumnAutoWidth  = true;
                        gridView_.OptionsSelection.MultiSelect = true;
                        gridView_.RowHeight = 100;
                        gridView_.Columns["ALANLAR"].ColumnEdit  = re_FIELD_SELECT;
                        gridView_.Columns["ALAN"].ColumnEdit     = re_FIELD_UPDATES;
                        gridView_.Columns["KEYWORDS"].ColumnEdit = re_WORD_MEMO;
                        gridView_.Columns["ID"].Visible          = false;
                        SECENEKLER_LIST(_GLOBAL_PARAMETRELER._RAPOR_KODU);
                    }
                    else
                    {
                        var     rtb = xtraTabControl_WORD_MNG_DETAY.TabPages[TabCount].Controls[0];
                        DataSet ds  = new DataSet();
                        using (SqlConnection conn = new SqlConnection(_GLOBAL_PARAMETRELER._CONNECTION_STRING.ToString()))
                        {
                            SqlDataAdapter adapter = new SqlDataAdapter("SELECT   ID,[ALANLAR]  ,[KEYWORDS]  ,[ALAN]  ,[DEGER]  FROM  dbo.TRF_KEYWORD  WHERE   TARIFE_KODU='" + tmp._TARIFE_KODU + "' and SIRKET_KODU='" + _GLOBAL_PARAMETRELER._KULLANICI_FIRMA + "'", conn);
                            adapter.Fill(ds, "TRF_MASTER");
                            DataViewManager dvManager            = new DataViewManager(ds);
                            DataView        DW_LIST_TARIFE       = dvManager.CreateDataView(ds.Tables[0]);
                            DevExpress.XtraGrid.GridControl grd_ = (DevExpress.XtraGrid.GridControl)rtb;
                            grd_.DataSource = DW_LIST_TARIFE;
                            for (int i = 0; i <= 5; i++)
                            {
                                DW_LIST_TARIFE.AddNew();
                            }
                            gridView_.Columns["ID"].Visible = false;
                        }
                    }
                }
            }
            catch (Exception EX)
            { MessageBox.Show(EX.Data.ToString()); }
        }
        private void CreateGridViewDetail(string[] fields, string[] caption ,DateTime[]dsNgay )
        {
            //Làm sạch lưới
            gridViewDetails.Bands.Clear();
            int k = 0;
            int cotphu = 0;
            int SoCotPhu = 7;
            string[] CotPhuField = new String[] { "N", "V", "SO", "KL", "TC", "HL","" };

            #region 3.0.Các band và cột sử dụng
            GridBand[] BThu = new GridBand[fields.Length / 2 + 1 + SoCotPhu];
            for (k = 0; k < BThu.Length; k++)
            {
                BThu[k] = new GridBand();

            }

            GridBand[] BNgay = new GridBand[fields.Length / 2];
            GridBand[] BSangChieu = new GridBand[fields.Length * 2];

            BandedGridColumn[] BColumn = new BandedGridColumn[fields.Length + 1 + SoCotPhu];
            for (k = 0; k < BColumn.Length; k++)
            {
                BColumn[k] = new BandedGridColumn();
                if (k == 0)
                {
                    BColumn[k].FieldName = "NAME";
                    BColumn[k].SortOrder = DevExpress.Data.ColumnSortOrder.Ascending;
                }
                else if (k <= fields.Length)
                {
                    BColumn[k].FieldName = fields[k - 1];
                    BColumn[k].SummaryItem.SummaryType = DevExpress.Data.SummaryItemType.Sum;
                    BColumn[k].SummaryItem.DisplayFormat = "{0}";
                    BColumn[k].FieldName = fields[k - 1];
                }
                else
                {
                    BColumn[k].FieldName = CotPhuField[cotphu];
                    BColumn[k].Name = CotPhuField[cotphu];
                    BColumn[k].OptionsColumn.ReadOnly = true;
                    cotphu++;
                }

            }
            #endregion

            #region 3.1.Gắn bands và cột lên lưới
            gridViewDetails.Bands.AddRange(BThu);
            gridViewDetails.Columns.AddRange(BColumn);
            for (k = 0; k < gridViewDetails.Columns.Count; k++)
            {
                gridViewDetails.Columns[k].Visible = true;
                gridViewDetails.Columns[k].AppearanceCell.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
            }

            #endregion

            #region 3.2.Tạo các caption & band chứa band, ...
            BThu[0].Columns.Add(BColumn[0]);
            BThu[0].Caption = "Nhân viên";
            int tt = 0;
            for (int i = 1; i < BThu.Length - SoCotPhu; i++)
            {
                BNgay[i - 1] = new GridBand();
                BThu[i].Children.Add(BNgay[i - 1]);

                BSangChieu[tt] = new GridBand();
                BSangChieu[tt].Caption = "Sáng";
                BSangChieu[tt].Width = BSangChieu[tt].Caption.Length;
                BSangChieu[tt].Columns.Add(BColumn[tt + 1]);
                BNgay[i - 1].Children.Add(BSangChieu[tt++]);

                BSangChieu[tt] = new GridBand();
                BSangChieu[tt].Caption = "Chiều";
                BSangChieu[tt].Width = BSangChieu[tt].Caption.Length;
                BSangChieu[tt].Columns.Add(BColumn[tt + 1]);
                BNgay[i - 1].Children.Add(BSangChieu[tt++]);

            }

            string[] CotPhuTen = new String[] { "Nghỉ có phép", "Nghỉ không phép", "Số ngày làm việc", "Số ngày không lương","Số ngày trợ cấp", "Số ngày hưởng lương", "" };
            int col = 0;
            for (k = BThu.Length - SoCotPhu; k < BThu.Length; k++)
            {
                BThu[k].Name = CotPhuField[col];
                BThu[k].Caption = CotPhuTen[col];
                BThu[k].Columns.Add(BColumn[tt + 1]);
                tt++;
                col++;
            }
            #endregion

            #region 3.3.Gắn các tool lên cột
            //Nut xoa
            DevExpress.XtraEditors.Repository.RepositoryItemButtonEdit rep_xoa = new DevExpress.XtraEditors.Repository.RepositoryItemButtonEdit();
            rep_xoa.Buttons.Add(new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Delete));
            rep_xoa.TextEditStyle = DevExpress.XtraEditors.Controls.TextEditStyles.HideTextEditor;
            BColumn[BColumn.Length - 1].ColumnEdit = rep_xoa;
            rep_xoa.Buttons[0].Width = 23;
            BColumn[BColumn.Length - 1].Width = 23;
            BThu[BThu.Length - 1].Width = 23;
            BThu[BThu.Length - 1].MinWidth = 23;
            BThu[BThu.Length - 1].OptionsBand.FixedWidth = true;
            BThu[BThu.Length - 1].OptionsBand.AllowSize = false;
            rep_xoa.Click += new EventHandler(rep_xoa_Click);
            //rep_cbb
            DevExpress.XtraEditors.Repository.RepositoryItemComboBox rep_cbb = new DevExpress.XtraEditors.Repository.RepositoryItemComboBox();
            rep_cbb.Items.AddRange(new object[] {"N", "V", "4" });

            for (k = 1; k <= fields.Length; k++)
            {
                BColumn[k].ColumnEdit = rep_cbb;
                BColumn[k].MinWidth = BSangChieu[k - 1].Caption.Length;
                BColumn[k].Width = 40;
            }
            #endregion

            #region 3.4.Một số định dạng khác
            BColumn[0].AppearanceCell.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Default;
            BColumn[0].OptionsColumn.ReadOnly = true;
            BColumn[0].OptionsColumn.AllowEdit = false;
            BColumn[0].OptionsColumn.AllowFocus = false;

            gridViewDetails.Columns["KL"].OptionsColumn.AllowFocus = false;
            gridViewDetails.Columns["TC"].OptionsColumn.AllowFocus = false;
            gridViewDetails.Columns["N"].OptionsColumn.AllowFocus = false;
            gridViewDetails.Columns["V"].OptionsColumn.AllowFocus = false;
            gridViewDetails.Columns["SO"].OptionsColumn.AllowFocus = false;
            gridViewDetails.Columns["HL"].OptionsColumn.AllowFocus = false;

            gridViewDetails.Columns["SO"].Width = 40;
            gridViewDetails.Columns["SO"].AppearanceCell.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Far;
            gridViewDetails.Columns["KL"].Width = 40;
            gridViewDetails.Columns["KL"].AppearanceCell.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Far;
            gridViewDetails.Columns["V"].Width = 40;
            gridViewDetails.Columns["V"].AppearanceCell.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Far;
            gridViewDetails.Columns["N"].Width = 40;
            gridViewDetails.Columns["N"].AppearanceCell.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Far;
            gridViewDetails.Columns["TC"].Width = 40;
            gridViewDetails.Columns["TC"].AppearanceCell.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Far;
            gridViewDetails.Columns["HL"].Width = 45;
            gridViewDetails.Columns["HL"].AppearanceCell.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Far;

            for (k = 2; k <= 7; k++)
            {
                BThu[BThu.Length - k].AppearanceHeader.TextOptions.WordWrap = DevExpress.Utils.WordWrap.Wrap;
            }

            BThu[0].Width = 150;
            BThu[0].OptionsBand.FixedWidth = true;
            BThu[0].Fixed = DevExpress.XtraGrid.Columns.FixedStyle.Left;
            BThu[BThu.Length - 1].Fixed = DevExpress.XtraGrid.Columns.FixedStyle.Right;
            for (k = BThu.Length -1 ; k>= BThu.Length - SoCotPhu; k--)
            {
                BThu[k].Fixed = DevExpress.XtraGrid.Columns.FixedStyle.Right;
            }
            for (k = 0; k < dsNgay.Length; k++)
            {
                BThu[k + 1].Caption = HelpDateExt.GetDayOfWeekVN(dsNgay[k]);
                BNgay[k].Caption = dsNgay[k].ToShortDateString();

            }
            for (k = 0; k < BThu.Length; k++)
            {
                BThu[k].AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
            }
            int l = 0;
            for (k = 0; k < BNgay.Length; k++)
            {
                BNgay[k].AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
                BSangChieu[l++].AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
                BSangChieu[l++].AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
            }

            gridViewDetails.OptionsView.ShowColumnHeaders = false;

            #endregion
        }
Example #19
0
		/// <summary>
		/// Required method for Designer support - do not modify
		/// the contents of this method with the code editor.
		/// </summary>
		private void InitializeComponent()
		{
            this.components = new System.ComponentModel.Container();
            DevExpress.XtraGrid.GridLevelNode gridLevelNode1 = new DevExpress.XtraGrid.GridLevelNode();
            DevExpress.Utils.SerializableAppearanceObject serializableAppearanceObject1 = new DevExpress.Utils.SerializableAppearanceObject();
            DevExpress.Utils.SerializableAppearanceObject serializableAppearanceObject2 = new DevExpress.Utils.SerializableAppearanceObject();
            System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(OptionsForm));
            this.xtraTabControl_Options = new DevExpress.XtraTab.XtraTabControl();
            this.xtraTabPage3 = new DevExpress.XtraTab.XtraTabPage();
            this.groupControl5 = new DevExpress.XtraEditors.GroupControl();
            this.textEdit_DBUser = new DevExpress.XtraEditors.TextEdit();
            this.notePanel9 = new DevExpress.Utils.Frames.NotePanel();
            this.notePanel10 = new DevExpress.Utils.Frames.NotePanel();
            this.textEdit_DBPwd = new DevExpress.XtraEditors.TextEdit();
            this.notePanel11 = new DevExpress.Utils.Frames.NotePanel();
            this.textEdit_DBName = new DevExpress.XtraEditors.TextEdit();
            this.simpleButton11 = new DevExpress.XtraEditors.SimpleButton();
            this.simpleButton12 = new DevExpress.XtraEditors.SimpleButton();
            this.xtraTabPage_ComPortSet = new DevExpress.XtraTab.XtraTabPage();
            this.groupControl_ComPortSet = new DevExpress.XtraEditors.GroupControl();
            this.simpleButton1 = new DevExpress.XtraEditors.SimpleButton();
            this.radioButton1 = new System.Windows.Forms.RadioButton();
            this.radioButton2 = new System.Windows.Forms.RadioButton();
            this.radioButton3 = new System.Windows.Forms.RadioButton();
            this.radioButton4 = new System.Windows.Forms.RadioButton();
            this.simpleButton6 = new DevExpress.XtraEditors.SimpleButton();
            this.xtraTabPage_AutoShutDown = new DevExpress.XtraTab.XtraTabPage();
            this.groupControl2 = new DevExpress.XtraEditors.GroupControl();
            this.checkEdit1 = new DevExpress.XtraEditors.CheckEdit();
            this.timeEdit_DutyStartTime = new DevExpress.XtraEditors.TimeEdit();
            this.notePanel_ShutDownTime = new DevExpress.Utils.Frames.NotePanel();
            this.simpleButton3 = new DevExpress.XtraEditors.SimpleButton();
            this.simpleButton5 = new DevExpress.XtraEditors.SimpleButton();
            this.checkEdit2 = new DevExpress.XtraEditors.CheckEdit();
            this.notePanel2 = new DevExpress.Utils.Frames.NotePanel();
            this.xtraTabPage_AutoSendSmsTimeSet = new DevExpress.XtraTab.XtraTabPage();
            this.groupControl3 = new DevExpress.XtraEditors.GroupControl();
            this.timeEdit_SMSMorningTime = new DevExpress.XtraEditors.TimeEdit();
            this.notePanel3 = new DevExpress.Utils.Frames.NotePanel();
            this.simpleButton4 = new DevExpress.XtraEditors.SimpleButton();
            this.notePanel5 = new DevExpress.Utils.Frames.NotePanel();
            this.timeEdit_SMSNightTime = new DevExpress.XtraEditors.TimeEdit();
            this.notePanel6 = new DevExpress.Utils.Frames.NotePanel();
            this.simpleButton7 = new DevExpress.XtraEditors.SimpleButton();
            this.notePanel4 = new DevExpress.Utils.Frames.NotePanel();
            this.xtraTabPage1 = new DevExpress.XtraTab.XtraTabPage();
            this.groupControl4 = new DevExpress.XtraEditors.GroupControl();
            this.textEdit_NewPwd = new DevExpress.XtraEditors.TextEdit();
            this.notePanel1 = new DevExpress.Utils.Frames.NotePanel();
            this.simpleButton8 = new DevExpress.XtraEditors.SimpleButton();
            this.notePanel7 = new DevExpress.Utils.Frames.NotePanel();
            this.simpleButton9 = new DevExpress.XtraEditors.SimpleButton();
            this.textEdit_ConfirmPwd = new DevExpress.XtraEditors.TextEdit();
            this.notePanel8 = new DevExpress.Utils.Frames.NotePanel();
            this.textEdit_OldPwd = new DevExpress.XtraEditors.TextEdit();
            this.xtraTabPage2 = new DevExpress.XtraTab.XtraTabPage();
            this.groupControl1 = new DevExpress.XtraEditors.GroupControl();
            this.textEdit_UpdateAddress = new DevExpress.XtraEditors.TextEdit();
            this.simpleButton2 = new DevExpress.XtraEditors.SimpleButton();
            this.simpleButton10 = new DevExpress.XtraEditors.SimpleButton();
            this.xtraTabPage_BatchCreate = new DevExpress.XtraTab.XtraTabPage();
            this.splitContainerControl1 = new DevExpress.XtraEditors.SplitContainerControl();
            this.groupControl8 = new DevExpress.XtraEditors.GroupControl();
            this.textEdit_ClassVol = new DevExpress.XtraEditors.TextEdit();
            this.textEdit_BatchCreate_TerminalNumbers = new DevExpress.XtraEditors.TextEdit();
            this.textEdit_BatchCreate_ClassNumbers = new DevExpress.XtraEditors.TextEdit();
            this.notePanel_ClassVol = new DevExpress.Utils.Frames.NotePanel();
            this.notePanel_BatchCreate_TerminalNumbers = new DevExpress.Utils.Frames.NotePanel();
            this.notePanel_BatchCreate_ClassNumbers = new DevExpress.Utils.Frames.NotePanel();
            this.groupControl6 = new DevExpress.XtraEditors.GroupControl();
            this.textEdit_BatchCreate_CardNumber = new DevExpress.XtraEditors.TextEdit();
            this.notePanel_BatchCreate_CardNumber = new DevExpress.Utils.Frames.NotePanel();
            this.comboBoxEdit_BatchCreate_Load = new DevExpress.XtraEditors.ComboBoxEdit();
            this.comboBoxEdit_BatchCreate_Type = new DevExpress.XtraEditors.ComboBoxEdit();
            this.textEdit_BatchCreate_Number = new DevExpress.XtraEditors.TextEdit();
            this.textEdit_BatchCreate_Name = new DevExpress.XtraEditors.TextEdit();
            this.comboBoxEdit_BatchCreate_Class = new DevExpress.XtraEditors.ComboBoxEdit();
            this.comboBoxEdit_BatchCreate_Grade = new DevExpress.XtraEditors.ComboBoxEdit();
            this.notePanel_BatchCreate_Load = new DevExpress.Utils.Frames.NotePanel();
            this.notePanel_BatchCreate_Type = new DevExpress.Utils.Frames.NotePanel();
            this.notePanel_BatchCreate_Number = new DevExpress.Utils.Frames.NotePanel();
            this.notePanel_BatchCreate_Name = new DevExpress.Utils.Frames.NotePanel();
            this.notePanel_BatchCreate_Class = new DevExpress.Utils.Frames.NotePanel();
            this.notePanel_BatchCreate_Grade = new DevExpress.Utils.Frames.NotePanel();
            this.groupControl7 = new DevExpress.XtraEditors.GroupControl();
            this.gridControl_BatchCreate_Machine = new DevExpress.XtraGrid.GridControl();
            this.gridView7 = new DevExpress.XtraGrid.Views.Grid.GridView();
            this.gridColumn48 = new DevExpress.XtraGrid.Columns.GridColumn();
            this.gridColumn47 = new DevExpress.XtraGrid.Columns.GridColumn();
            this.gridColumn35 = new DevExpress.XtraGrid.Columns.GridColumn();
            this.gridColumn36 = new DevExpress.XtraGrid.Columns.GridColumn();
            this.gridColumn37 = new DevExpress.XtraGrid.Columns.GridColumn();
            this.repositoryItemTextEdit1 = new DevExpress.XtraEditors.Repository.RepositoryItemTextEdit();
            this.repositoryItemTextEdit2 = new DevExpress.XtraEditors.Repository.RepositoryItemTextEdit();
            this.gridControl_BatchCreate_TeaCard = new DevExpress.XtraGrid.GridControl();
            this.gridView6 = new DevExpress.XtraGrid.Views.Grid.GridView();
            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.gridColumn34 = new DevExpress.XtraGrid.Columns.GridColumn();
            this.gridColumn46 = new DevExpress.XtraGrid.Columns.GridColumn();
            this.gridControl1_BatchCreate_TeaBasicInfo = new DevExpress.XtraGrid.GridControl();
            this.gridView5 = new DevExpress.XtraGrid.Views.Grid.GridView();
            this.gridColumn24 = new DevExpress.XtraGrid.Columns.GridColumn();
            this.gridColumn25 = new DevExpress.XtraGrid.Columns.GridColumn();
            this.gridColumn26 = new DevExpress.XtraGrid.Columns.GridColumn();
            this.gridColumn27 = new DevExpress.XtraGrid.Columns.GridColumn();
            this.gridColumn28 = new DevExpress.XtraGrid.Columns.GridColumn();
            this.gridColumn29 = new DevExpress.XtraGrid.Columns.GridColumn();
            this.gridControl_BatchCreate_StuCard = new DevExpress.XtraGrid.GridControl();
            this.gridView4 = new DevExpress.XtraGrid.Views.Grid.GridView();
            this.gridColumn18 = new DevExpress.XtraGrid.Columns.GridColumn();
            this.gridColumn19 = new DevExpress.XtraGrid.Columns.GridColumn();
            this.gridColumn20 = new DevExpress.XtraGrid.Columns.GridColumn();
            this.gridColumn21 = new DevExpress.XtraGrid.Columns.GridColumn();
            this.gridColumn22 = new DevExpress.XtraGrid.Columns.GridColumn();
            this.gridColumn23 = new DevExpress.XtraGrid.Columns.GridColumn();
            this.gridColumn45 = new DevExpress.XtraGrid.Columns.GridColumn();
            this.gridControl_BatchCreate_StuBasicInfo = new DevExpress.XtraGrid.GridControl();
            this.advBandedGridView1 = new DevExpress.XtraGrid.Views.BandedGrid.AdvBandedGridView();
            this.gridBand1 = new DevExpress.XtraGrid.Views.BandedGrid.GridBand();
            this.gridColumn10 = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
            this.gridColumn11 = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
            this.gridColumn41 = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
            this.gridColumn16 = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
            this.gridColumn44 = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
            this.gridColumn15 = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
            this.gridColumn9 = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
            this.gridColumn12 = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
            this.gridColumn42 = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
            this.gridColumn14 = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
            this.gridColumn43 = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
            this.gridColumn13 = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
            this.gridColumn17 = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
            this.gridControl_BatchCreate_Class = new DevExpress.XtraGrid.GridControl();
            this.gridView2 = new DevExpress.XtraGrid.Views.Grid.GridView();
            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.gridColumn39 = new DevExpress.XtraGrid.Columns.GridColumn();
            this.gridColumn40 = new DevExpress.XtraGrid.Columns.GridColumn();
            this.gridControl_BatchCreate_Grade = 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.gridColumn38 = new DevExpress.XtraGrid.Columns.GridColumn();
            this.xtraTabPage_UpdateGrade = new DevExpress.XtraTab.XtraTabPage();
            this.splitContainerControl2 = new DevExpress.XtraEditors.SplitContainerControl();
            this.groupControl9 = new DevExpress.XtraEditors.GroupControl();
            this.comboBoxEdit_ClassNumber = new DevExpress.XtraEditors.ComboBoxEdit();
            this.notePanel_ClassNumber = new DevExpress.Utils.Frames.NotePanel();
            this.comboBoxEdit_GradeNumber = new DevExpress.XtraEditors.ComboBoxEdit();
            this.notePanel_GradeNumber = new DevExpress.Utils.Frames.NotePanel();
            this.notePanel12 = new DevExpress.Utils.Frames.NotePanel();
            this.textEdit_DestClass = new DevExpress.XtraEditors.TextEdit();
            this.notePanel_DestClass = new DevExpress.Utils.Frames.NotePanel();
            this.comboBoxEdit_SrcClass = new DevExpress.XtraEditors.ComboBoxEdit();
            this.notePanel_SrcClass = new DevExpress.Utils.Frames.NotePanel();
            this.textEdit_DestGrade = new DevExpress.XtraEditors.TextEdit();
            this.notePanel_DestGrade = new DevExpress.Utils.Frames.NotePanel();
            this.comboBoxEdit_SrcGrade = new DevExpress.XtraEditors.ComboBoxEdit();
            this.notePanel_SrcGrade = new DevExpress.Utils.Frames.NotePanel();
            this.groupControl10 = new DevExpress.XtraEditors.GroupControl();
            this.gridControl_StudentAdjust = new DevExpress.XtraGrid.GridControl();
            this.gridView3 = new DevExpress.XtraGrid.Views.Grid.GridView();
            this.gridColumn49 = new DevExpress.XtraGrid.Columns.GridColumn();
            this.repositoryItemCheckEdit1 = new DevExpress.XtraEditors.Repository.RepositoryItemCheckEdit();
            this.gridColumn51 = new DevExpress.XtraGrid.Columns.GridColumn();
            this.gridColumn54 = new DevExpress.XtraGrid.Columns.GridColumn();
            this.gridColumn55 = new DevExpress.XtraGrid.Columns.GridColumn();
            this.gridColumn56 = new DevExpress.XtraGrid.Columns.GridColumn();
            this.notePanel13 = new DevExpress.Utils.Frames.NotePanel();
            this.panelControl1 = new DevExpress.XtraEditors.PanelControl();
            this.simpleButton_Submit = new DevExpress.XtraEditors.SimpleButton();
            this.simpleButton_LoadTable = new DevExpress.XtraEditors.SimpleButton();
            this.splitterControl1 = new DevExpress.XtraEditors.SplitterControl();
            this.xtraTabPage_TerminalServ = new DevExpress.XtraTab.XtraTabPage();
            this.gridControl_SessionUser = new DevExpress.XtraGrid.GridControl();
            this.gridView9 = new DevExpress.XtraGrid.Views.Grid.GridView();
            this.gridColumn50 = new DevExpress.XtraGrid.Columns.GridColumn();
            this.gridColumn52 = new DevExpress.XtraGrid.Columns.GridColumn();
            this.gridColumn53 = new DevExpress.XtraGrid.Columns.GridColumn();
            this.gridColumn57 = new DevExpress.XtraGrid.Columns.GridColumn();
            this.gridView8 = new DevExpress.XtraGrid.Views.Grid.GridView();
            this.xtraTabPage4 = new DevExpress.XtraTab.XtraTabPage();
            this.groupControl11 = new DevExpress.XtraEditors.GroupControl();
            this.groupControl12 = new DevExpress.XtraEditors.GroupControl();
            this.rbtDefault = new System.Windows.Forms.RadioButton();
            this.rbtIdle = new System.Windows.Forms.RadioButton();
            this.rbtStart = new System.Windows.Forms.RadioButton();
            this.smbBackUp = new DevExpress.XtraEditors.SimpleButton();
            this.tbxBackUpRoot = new System.Windows.Forms.TextBox();
            this.smbRoot = new DevExpress.XtraEditors.SimpleButton();
            this.xtraTabPage5 = new DevExpress.XtraTab.XtraTabPage();
            this.groupBox1 = new System.Windows.Forms.GroupBox();
            this.button1 = new System.Windows.Forms.Button();
            this.label1 = new System.Windows.Forms.Label();
            this.tbxUploadUrl = new System.Windows.Forms.TextBox();
            this.xtraTabPage6 = new DevExpress.XtraTab.XtraTabPage();
            this.groupControl13 = new DevExpress.XtraEditors.GroupControl();
            this.gridControl1 = new DevExpress.XtraGrid.GridControl();
            this.gridView10 = new DevExpress.XtraGrid.Views.Grid.GridView();
            this.gridColumn58 = new DevExpress.XtraGrid.Columns.GridColumn();
            this.repositoryItemComboBox4 = new DevExpress.XtraEditors.Repository.RepositoryItemComboBox();
            this.gridColumn59 = new DevExpress.XtraGrid.Columns.GridColumn();
            this.repositoryItemComboBox1 = new DevExpress.XtraEditors.Repository.RepositoryItemComboBox();
            this.gridColumn60 = new DevExpress.XtraGrid.Columns.GridColumn();
            this.gridColumn61 = new DevExpress.XtraGrid.Columns.GridColumn();
            this.repositoryItemComboBox2 = new DevExpress.XtraEditors.Repository.RepositoryItemComboBox();
            this.gridColumn62 = new DevExpress.XtraGrid.Columns.GridColumn();
            this.repositoryItemComboBox3 = new DevExpress.XtraEditors.Repository.RepositoryItemComboBox();
            this.gridColumn63 = new DevExpress.XtraGrid.Columns.GridColumn();
            this.repositoryItemButtonEdit1 = new DevExpress.XtraEditors.Repository.RepositoryItemButtonEdit();
            this.gridColumn64 = new DevExpress.XtraGrid.Columns.GridColumn();
            this.repositoryItemButtonEdit2 = new DevExpress.XtraEditors.Repository.RepositoryItemButtonEdit();
            this.barManager1 = new DevExpress.XtraBars.BarManager(this.components);
            this.barDockControlTop = new DevExpress.XtraBars.BarDockControl();
            this.barDockControlBottom = new DevExpress.XtraBars.BarDockControl();
            this.barDockControlLeft = new DevExpress.XtraBars.BarDockControl();
            this.barDockControlRight = new DevExpress.XtraBars.BarDockControl();
            this.barButtonItem_Refresh = new DevExpress.XtraBars.BarButtonItem();
            this.barButtonItem_Modify = new DevExpress.XtraBars.BarButtonItem();
            this.barButtonItem_Delete = new DevExpress.XtraBars.BarButtonItem();
            this.barButtonItem1 = new DevExpress.XtraBars.BarButtonItem();
            this.barButtonItem_Add = new DevExpress.XtraBars.BarButtonItem();
            this.barButtonItem_Save = new DevExpress.XtraBars.BarButtonItem();
            this.barButtonItem_DeleteSession = new DevExpress.XtraBars.BarButtonItem();
            this.repositoryItemButtonEdit3 = new DevExpress.XtraEditors.Repository.RepositoryItemButtonEdit();
            this.popupMenu2 = new DevExpress.XtraBars.PopupMenu(this.components);
            this.popupMenu1 = new DevExpress.XtraBars.PopupMenu(this.components);
            this.openFileDialog_LoadStuInfoXLS = new System.Windows.Forms.OpenFileDialog();
            this.saveFileDialog_BatchCreate = new System.Windows.Forms.SaveFileDialog();
            this.saveFileDialog_createbackup = new System.Windows.Forms.SaveFileDialog();
            ((System.ComponentModel.ISupportInitialize)(this.xtraTabControl_Options)).BeginInit();
            this.xtraTabControl_Options.SuspendLayout();
            this.xtraTabPage3.SuspendLayout();
            ((System.ComponentModel.ISupportInitialize)(this.groupControl5)).BeginInit();
            this.groupControl5.SuspendLayout();
            ((System.ComponentModel.ISupportInitialize)(this.textEdit_DBUser.Properties)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.textEdit_DBPwd.Properties)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.textEdit_DBName.Properties)).BeginInit();
            this.xtraTabPage_ComPortSet.SuspendLayout();
            ((System.ComponentModel.ISupportInitialize)(this.groupControl_ComPortSet)).BeginInit();
            this.groupControl_ComPortSet.SuspendLayout();
            this.xtraTabPage_AutoShutDown.SuspendLayout();
            ((System.ComponentModel.ISupportInitialize)(this.groupControl2)).BeginInit();
            this.groupControl2.SuspendLayout();
            ((System.ComponentModel.ISupportInitialize)(this.checkEdit1.Properties)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.timeEdit_DutyStartTime.Properties)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.checkEdit2.Properties)).BeginInit();
            this.xtraTabPage_AutoSendSmsTimeSet.SuspendLayout();
            ((System.ComponentModel.ISupportInitialize)(this.groupControl3)).BeginInit();
            this.groupControl3.SuspendLayout();
            ((System.ComponentModel.ISupportInitialize)(this.timeEdit_SMSMorningTime.Properties)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.timeEdit_SMSNightTime.Properties)).BeginInit();
            this.xtraTabPage1.SuspendLayout();
            ((System.ComponentModel.ISupportInitialize)(this.groupControl4)).BeginInit();
            this.groupControl4.SuspendLayout();
            ((System.ComponentModel.ISupportInitialize)(this.textEdit_NewPwd.Properties)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.textEdit_ConfirmPwd.Properties)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.textEdit_OldPwd.Properties)).BeginInit();
            this.xtraTabPage2.SuspendLayout();
            ((System.ComponentModel.ISupportInitialize)(this.groupControl1)).BeginInit();
            this.groupControl1.SuspendLayout();
            ((System.ComponentModel.ISupportInitialize)(this.textEdit_UpdateAddress.Properties)).BeginInit();
            this.xtraTabPage_BatchCreate.SuspendLayout();
            ((System.ComponentModel.ISupportInitialize)(this.splitContainerControl1)).BeginInit();
            this.splitContainerControl1.SuspendLayout();
            ((System.ComponentModel.ISupportInitialize)(this.groupControl8)).BeginInit();
            this.groupControl8.SuspendLayout();
            ((System.ComponentModel.ISupportInitialize)(this.textEdit_ClassVol.Properties)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.textEdit_BatchCreate_TerminalNumbers.Properties)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.textEdit_BatchCreate_ClassNumbers.Properties)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.groupControl6)).BeginInit();
            this.groupControl6.SuspendLayout();
            ((System.ComponentModel.ISupportInitialize)(this.textEdit_BatchCreate_CardNumber.Properties)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.comboBoxEdit_BatchCreate_Load.Properties)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.comboBoxEdit_BatchCreate_Type.Properties)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.textEdit_BatchCreate_Number.Properties)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.textEdit_BatchCreate_Name.Properties)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.comboBoxEdit_BatchCreate_Class.Properties)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.comboBoxEdit_BatchCreate_Grade.Properties)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.groupControl7)).BeginInit();
            this.groupControl7.SuspendLayout();
            ((System.ComponentModel.ISupportInitialize)(this.gridControl_BatchCreate_Machine)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.gridView7)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.repositoryItemTextEdit1)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.repositoryItemTextEdit2)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.gridControl_BatchCreate_TeaCard)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.gridView6)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.gridControl1_BatchCreate_TeaBasicInfo)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.gridView5)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.gridControl_BatchCreate_StuCard)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.gridView4)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.gridControl_BatchCreate_StuBasicInfo)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.advBandedGridView1)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.gridControl_BatchCreate_Class)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.gridView2)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.gridControl_BatchCreate_Grade)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.gridView1)).BeginInit();
            this.xtraTabPage_UpdateGrade.SuspendLayout();
            ((System.ComponentModel.ISupportInitialize)(this.splitContainerControl2)).BeginInit();
            this.splitContainerControl2.SuspendLayout();
            ((System.ComponentModel.ISupportInitialize)(this.groupControl9)).BeginInit();
            this.groupControl9.SuspendLayout();
            ((System.ComponentModel.ISupportInitialize)(this.comboBoxEdit_ClassNumber.Properties)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.comboBoxEdit_GradeNumber.Properties)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.textEdit_DestClass.Properties)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.comboBoxEdit_SrcClass.Properties)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.textEdit_DestGrade.Properties)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.comboBoxEdit_SrcGrade.Properties)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.groupControl10)).BeginInit();
            this.groupControl10.SuspendLayout();
            ((System.ComponentModel.ISupportInitialize)(this.gridControl_StudentAdjust)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.gridView3)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.repositoryItemCheckEdit1)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.panelControl1)).BeginInit();
            this.panelControl1.SuspendLayout();
            this.xtraTabPage_TerminalServ.SuspendLayout();
            ((System.ComponentModel.ISupportInitialize)(this.gridControl_SessionUser)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.gridView9)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.gridView8)).BeginInit();
            this.xtraTabPage4.SuspendLayout();
            ((System.ComponentModel.ISupportInitialize)(this.groupControl11)).BeginInit();
            this.groupControl11.SuspendLayout();
            ((System.ComponentModel.ISupportInitialize)(this.groupControl12)).BeginInit();
            this.groupControl12.SuspendLayout();
            this.xtraTabPage5.SuspendLayout();
            this.groupBox1.SuspendLayout();
            this.xtraTabPage6.SuspendLayout();
            ((System.ComponentModel.ISupportInitialize)(this.groupControl13)).BeginInit();
            this.groupControl13.SuspendLayout();
            ((System.ComponentModel.ISupportInitialize)(this.gridControl1)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.gridView10)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.repositoryItemComboBox4)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.repositoryItemComboBox1)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.repositoryItemComboBox2)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.repositoryItemComboBox3)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.repositoryItemButtonEdit1)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.repositoryItemButtonEdit2)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.barManager1)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.repositoryItemButtonEdit3)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.popupMenu2)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.popupMenu1)).BeginInit();
            this.SuspendLayout();
            // 
            // xtraTabControl_Options
            // 
            this.xtraTabControl_Options.Appearance.BackColor = System.Drawing.Color.WhiteSmoke;
            this.xtraTabControl_Options.Appearance.Options.UseBackColor = true;
            this.xtraTabControl_Options.AppearancePage.HeaderActive.Font = new System.Drawing.Font("Tahoma", 9F, System.Drawing.FontStyle.Bold);
            this.xtraTabControl_Options.AppearancePage.HeaderActive.ForeColor = System.Drawing.Color.DarkOrange;
            this.xtraTabControl_Options.AppearancePage.HeaderActive.Options.UseFont = true;
            this.xtraTabControl_Options.AppearancePage.HeaderActive.Options.UseForeColor = true;
            this.xtraTabControl_Options.Dock = System.Windows.Forms.DockStyle.Fill;
            this.xtraTabControl_Options.Location = new System.Drawing.Point(0, 0);
            this.xtraTabControl_Options.Name = "xtraTabControl_Options";
            this.xtraTabControl_Options.SelectedTabPage = this.xtraTabPage3;
            this.xtraTabControl_Options.Size = new System.Drawing.Size(688, 429);
            this.xtraTabControl_Options.TabIndex = 0;
            this.xtraTabControl_Options.TabPages.AddRange(new DevExpress.XtraTab.XtraTabPage[] {
            this.xtraTabPage_ComPortSet,
            this.xtraTabPage_AutoShutDown,
            this.xtraTabPage_AutoSendSmsTimeSet,
            this.xtraTabPage1,
            this.xtraTabPage2,
            this.xtraTabPage3,
            this.xtraTabPage_BatchCreate,
            this.xtraTabPage_UpdateGrade,
            this.xtraTabPage_TerminalServ,
            this.xtraTabPage4,
            this.xtraTabPage5,
            this.xtraTabPage6});
            // 
            // xtraTabPage3
            // 
            this.xtraTabPage3.Appearance.PageClient.BackColor = System.Drawing.Color.WhiteSmoke;
            this.xtraTabPage3.Appearance.PageClient.Options.UseBackColor = true;
            this.xtraTabPage3.Controls.Add(this.groupControl5);
            this.xtraTabPage3.Name = "xtraTabPage3";
            this.xtraTabPage3.Size = new System.Drawing.Size(682, 400);
            this.xtraTabPage3.Text = "配置数据库";
            // 
            // groupControl5
            // 
            this.groupControl5.Controls.Add(this.textEdit_DBUser);
            this.groupControl5.Controls.Add(this.notePanel9);
            this.groupControl5.Controls.Add(this.notePanel10);
            this.groupControl5.Controls.Add(this.textEdit_DBPwd);
            this.groupControl5.Controls.Add(this.notePanel11);
            this.groupControl5.Controls.Add(this.textEdit_DBName);
            this.groupControl5.Controls.Add(this.simpleButton11);
            this.groupControl5.Controls.Add(this.simpleButton12);
            this.groupControl5.Location = new System.Drawing.Point(168, 56);
            this.groupControl5.Name = "groupControl5";
            this.groupControl5.Size = new System.Drawing.Size(342, 256);
            this.groupControl5.TabIndex = 2;
            this.groupControl5.Text = "服务器配置";
            // 
            // textEdit_DBUser
            // 
            this.textEdit_DBUser.EditValue = "";
            this.textEdit_DBUser.Location = new System.Drawing.Point(153, 93);
            this.textEdit_DBUser.Name = "textEdit_DBUser";
            this.textEdit_DBUser.Size = new System.Drawing.Size(152, 20);
            this.textEdit_DBUser.TabIndex = 23;
            // 
            // notePanel9
            // 
            this.notePanel9.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(224)))), ((int)(((byte)(224)))), ((int)(((byte)(224)))));
            this.notePanel9.BackColor2 = System.Drawing.Color.DarkGray;
            this.notePanel9.Font = new System.Drawing.Font("Tahoma", 8F);
            this.notePanel9.ForeColor = System.Drawing.Color.Black;
            this.notePanel9.GradientMode = System.Drawing.Drawing2D.LinearGradientMode.Vertical;
            this.notePanel9.Location = new System.Drawing.Point(38, 93);
            this.notePanel9.MaxRows = 5;
            this.notePanel9.Name = "notePanel9";
            this.notePanel9.ParentAutoHeight = true;
            this.notePanel9.Size = new System.Drawing.Size(104, 22);
            this.notePanel9.TabIndex = 21;
            this.notePanel9.TabStop = false;
            this.notePanel9.Text = "     用户名:";
            // 
            // notePanel10
            // 
            this.notePanel10.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(224)))), ((int)(((byte)(224)))), ((int)(((byte)(224)))));
            this.notePanel10.BackColor2 = System.Drawing.Color.DarkGray;
            this.notePanel10.Font = new System.Drawing.Font("Tahoma", 8F);
            this.notePanel10.ForeColor = System.Drawing.Color.Black;
            this.notePanel10.GradientMode = System.Drawing.Drawing2D.LinearGradientMode.Vertical;
            this.notePanel10.Location = new System.Drawing.Point(38, 125);
            this.notePanel10.MaxRows = 5;
            this.notePanel10.Name = "notePanel10";
            this.notePanel10.ParentAutoHeight = true;
            this.notePanel10.Size = new System.Drawing.Size(104, 22);
            this.notePanel10.TabIndex = 19;
            this.notePanel10.TabStop = false;
            this.notePanel10.Text = "      密   码:";
            // 
            // textEdit_DBPwd
            // 
            this.textEdit_DBPwd.EditValue = "";
            this.textEdit_DBPwd.Location = new System.Drawing.Point(153, 125);
            this.textEdit_DBPwd.Name = "textEdit_DBPwd";
            this.textEdit_DBPwd.Properties.PasswordChar = '*';
            this.textEdit_DBPwd.Size = new System.Drawing.Size(152, 20);
            this.textEdit_DBPwd.TabIndex = 24;
            // 
            // notePanel11
            // 
            this.notePanel11.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(224)))), ((int)(((byte)(224)))), ((int)(((byte)(224)))));
            this.notePanel11.BackColor2 = System.Drawing.Color.DarkGray;
            this.notePanel11.Font = new System.Drawing.Font("Tahoma", 8F);
            this.notePanel11.ForeColor = System.Drawing.Color.Black;
            this.notePanel11.GradientMode = System.Drawing.Drawing2D.LinearGradientMode.Vertical;
            this.notePanel11.Location = new System.Drawing.Point(38, 61);
            this.notePanel11.MaxRows = 5;
            this.notePanel11.Name = "notePanel11";
            this.notePanel11.ParentAutoHeight = true;
            this.notePanel11.Size = new System.Drawing.Size(104, 22);
            this.notePanel11.TabIndex = 20;
            this.notePanel11.TabStop = false;
            this.notePanel11.Text = "数据库实例名:";
            // 
            // textEdit_DBName
            // 
            this.textEdit_DBName.EditValue = "";
            this.textEdit_DBName.Location = new System.Drawing.Point(153, 61);
            this.textEdit_DBName.Name = "textEdit_DBName";
            this.textEdit_DBName.Size = new System.Drawing.Size(152, 20);
            this.textEdit_DBName.TabIndex = 22;
            // 
            // simpleButton11
            // 
            this.simpleButton11.Location = new System.Drawing.Point(75, 168);
            this.simpleButton11.Name = "simpleButton11";
            this.simpleButton11.Size = new System.Drawing.Size(85, 23);
            this.simpleButton11.TabIndex = 1;
            this.simpleButton11.Text = "测试连接";
            this.simpleButton11.Click += new System.EventHandler(this.simpleButton11_Click);
            // 
            // simpleButton12
            // 
            this.simpleButton12.Location = new System.Drawing.Point(182, 168);
            this.simpleButton12.Name = "simpleButton12";
            this.simpleButton12.Size = new System.Drawing.Size(85, 23);
            this.simpleButton12.TabIndex = 1;
            this.simpleButton12.Text = "保存设置";
            this.simpleButton12.Click += new System.EventHandler(this.simpleButton12_Click);
            // 
            // xtraTabPage_ComPortSet
            // 
            this.xtraTabPage_ComPortSet.Appearance.PageClient.BackColor = System.Drawing.Color.WhiteSmoke;
            this.xtraTabPage_ComPortSet.Appearance.PageClient.Options.UseBackColor = true;
            this.xtraTabPage_ComPortSet.Controls.Add(this.groupControl_ComPortSet);
            this.xtraTabPage_ComPortSet.Name = "xtraTabPage_ComPortSet";
            this.xtraTabPage_ComPortSet.Size = new System.Drawing.Size(682, 400);
            this.xtraTabPage_ComPortSet.Text = "串口设定";
            // 
            // groupControl_ComPortSet
            // 
            this.groupControl_ComPortSet.Controls.Add(this.simpleButton1);
            this.groupControl_ComPortSet.Controls.Add(this.radioButton1);
            this.groupControl_ComPortSet.Controls.Add(this.radioButton2);
            this.groupControl_ComPortSet.Controls.Add(this.radioButton3);
            this.groupControl_ComPortSet.Controls.Add(this.radioButton4);
            this.groupControl_ComPortSet.Controls.Add(this.simpleButton6);
            this.groupControl_ComPortSet.Location = new System.Drawing.Point(184, 64);
            this.groupControl_ComPortSet.Name = "groupControl_ComPortSet";
            this.groupControl_ComPortSet.Size = new System.Drawing.Size(312, 216);
            this.groupControl_ComPortSet.TabIndex = 0;
            this.groupControl_ComPortSet.Text = "请选择管理机同电脑连接的串口";
            // 
            // simpleButton1
            // 
            this.simpleButton1.Location = new System.Drawing.Point(160, 184);
            this.simpleButton1.Name = "simpleButton1";
            this.simpleButton1.Size = new System.Drawing.Size(56, 23);
            this.simpleButton1.TabIndex = 1;
            this.simpleButton1.Text = "确定";
            this.simpleButton1.Click += new System.EventHandler(this.simpleButton1_Click);
            // 
            // radioButton1
            // 
            this.radioButton1.Location = new System.Drawing.Point(40, 32);
            this.radioButton1.Name = "radioButton1";
            this.radioButton1.Size = new System.Drawing.Size(104, 24);
            this.radioButton1.TabIndex = 0;
            this.radioButton1.Text = "串口1";
            // 
            // radioButton2
            // 
            this.radioButton2.Location = new System.Drawing.Point(168, 32);
            this.radioButton2.Name = "radioButton2";
            this.radioButton2.Size = new System.Drawing.Size(104, 24);
            this.radioButton2.TabIndex = 0;
            this.radioButton2.Text = "串口2";
            // 
            // radioButton3
            // 
            this.radioButton3.Location = new System.Drawing.Point(168, 80);
            this.radioButton3.Name = "radioButton3";
            this.radioButton3.Size = new System.Drawing.Size(104, 24);
            this.radioButton3.TabIndex = 0;
            this.radioButton3.Text = "串口4";
            // 
            // radioButton4
            // 
            this.radioButton4.Location = new System.Drawing.Point(40, 80);
            this.radioButton4.Name = "radioButton4";
            this.radioButton4.Size = new System.Drawing.Size(104, 24);
            this.radioButton4.TabIndex = 0;
            this.radioButton4.Text = "串口3";
            // 
            // simpleButton6
            // 
            this.simpleButton6.Location = new System.Drawing.Point(232, 184);
            this.simpleButton6.Name = "simpleButton6";
            this.simpleButton6.Size = new System.Drawing.Size(56, 23);
            this.simpleButton6.TabIndex = 1;
            this.simpleButton6.Text = "取消";
            this.simpleButton6.Click += new System.EventHandler(this.simpleButton6_Click);
            // 
            // xtraTabPage_AutoShutDown
            // 
            this.xtraTabPage_AutoShutDown.Appearance.PageClient.BackColor = System.Drawing.Color.WhiteSmoke;
            this.xtraTabPage_AutoShutDown.Appearance.PageClient.Options.UseBackColor = true;
            this.xtraTabPage_AutoShutDown.Controls.Add(this.groupControl2);
            this.xtraTabPage_AutoShutDown.Controls.Add(this.notePanel2);
            this.xtraTabPage_AutoShutDown.Name = "xtraTabPage_AutoShutDown";
            this.xtraTabPage_AutoShutDown.Size = new System.Drawing.Size(682, 400);
            this.xtraTabPage_AutoShutDown.Text = "关机时间设置";
            // 
            // groupControl2
            // 
            this.groupControl2.Controls.Add(this.checkEdit1);
            this.groupControl2.Controls.Add(this.timeEdit_DutyStartTime);
            this.groupControl2.Controls.Add(this.notePanel_ShutDownTime);
            this.groupControl2.Controls.Add(this.simpleButton3);
            this.groupControl2.Controls.Add(this.simpleButton5);
            this.groupControl2.Controls.Add(this.checkEdit2);
            this.groupControl2.Location = new System.Drawing.Point(168, 48);
            this.groupControl2.Name = "groupControl2";
            this.groupControl2.Size = new System.Drawing.Size(312, 216);
            this.groupControl2.TabIndex = 8;
            this.groupControl2.Text = "设置";
            // 
            // checkEdit1
            // 
            this.checkEdit1.Location = new System.Drawing.Point(68, 128);
            this.checkEdit1.Name = "checkEdit1";
            this.checkEdit1.Properties.Caption = "启动时自动运行";
            this.checkEdit1.Size = new System.Drawing.Size(180, 19);
            this.checkEdit1.TabIndex = 16;
            // 
            // timeEdit_DutyStartTime
            // 
            this.timeEdit_DutyStartTime.EditValue = new System.DateTime(2005, 8, 29, 0, 0, 0, 0);
            this.timeEdit_DutyStartTime.Location = new System.Drawing.Point(156, 48);
            this.timeEdit_DutyStartTime.Name = "timeEdit_DutyStartTime";
            this.timeEdit_DutyStartTime.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
            new DevExpress.XtraEditors.Controls.EditorButton()});
            this.timeEdit_DutyStartTime.Size = new System.Drawing.Size(88, 20);
            this.timeEdit_DutyStartTime.TabIndex = 15;
            // 
            // notePanel_ShutDownTime
            // 
            this.notePanel_ShutDownTime.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(224)))), ((int)(((byte)(224)))), ((int)(((byte)(224)))));
            this.notePanel_ShutDownTime.BackColor2 = System.Drawing.Color.DarkGray;
            this.notePanel_ShutDownTime.Font = new System.Drawing.Font("Tahoma", 8F);
            this.notePanel_ShutDownTime.ForeColor = System.Drawing.Color.Black;
            this.notePanel_ShutDownTime.GradientMode = System.Drawing.Drawing2D.LinearGradientMode.Vertical;
            this.notePanel_ShutDownTime.Location = new System.Drawing.Point(68, 48);
            this.notePanel_ShutDownTime.MaxRows = 5;
            this.notePanel_ShutDownTime.Name = "notePanel_ShutDownTime";
            this.notePanel_ShutDownTime.ParentAutoHeight = true;
            this.notePanel_ShutDownTime.Size = new System.Drawing.Size(80, 22);
            this.notePanel_ShutDownTime.TabIndex = 14;
            this.notePanel_ShutDownTime.TabStop = false;
            this.notePanel_ShutDownTime.Text = "关机时间";
            // 
            // simpleButton3
            // 
            this.simpleButton3.Location = new System.Drawing.Point(160, 184);
            this.simpleButton3.Name = "simpleButton3";
            this.simpleButton3.Size = new System.Drawing.Size(56, 23);
            this.simpleButton3.TabIndex = 1;
            this.simpleButton3.Text = "确定";
            this.simpleButton3.Click += new System.EventHandler(this.simpleButton3_Click);
            // 
            // simpleButton5
            // 
            this.simpleButton5.Location = new System.Drawing.Point(232, 184);
            this.simpleButton5.Name = "simpleButton5";
            this.simpleButton5.Size = new System.Drawing.Size(56, 23);
            this.simpleButton5.TabIndex = 1;
            this.simpleButton5.Text = "取消";
            this.simpleButton5.Click += new System.EventHandler(this.simpleButton5_Click);
            // 
            // checkEdit2
            // 
            this.checkEdit2.Location = new System.Drawing.Point(68, 88);
            this.checkEdit2.Name = "checkEdit2";
            this.checkEdit2.Properties.Caption = "开启自动关机";
            this.checkEdit2.Size = new System.Drawing.Size(180, 19);
            this.checkEdit2.TabIndex = 16;
            this.checkEdit2.CheckedChanged += new System.EventHandler(this.checkEdit2_CheckedChanged);
            // 
            // notePanel2
            // 
            this.notePanel2.BackColor = System.Drawing.Color.LightGoldenrodYellow;
            this.notePanel2.ForeColor = System.Drawing.Color.Gray;
            this.notePanel2.GradientMode = System.Drawing.Drawing2D.LinearGradientMode.Vertical;
            this.notePanel2.Location = new System.Drawing.Point(168, 280);
            this.notePanel2.MaxRows = 5;
            this.notePanel2.Name = "notePanel2";
            this.notePanel2.ParentAutoHeight = true;
            this.notePanel2.Size = new System.Drawing.Size(272, 23);
            this.notePanel2.TabIndex = 9;
            this.notePanel2.TabStop = false;
            this.notePanel2.Text = "自动关机功能已启动";
            this.notePanel2.Visible = false;
            // 
            // xtraTabPage_AutoSendSmsTimeSet
            // 
            this.xtraTabPage_AutoSendSmsTimeSet.Appearance.PageClient.BackColor = System.Drawing.Color.WhiteSmoke;
            this.xtraTabPage_AutoSendSmsTimeSet.Appearance.PageClient.Options.UseBackColor = true;
            this.xtraTabPage_AutoSendSmsTimeSet.Controls.Add(this.groupControl3);
            this.xtraTabPage_AutoSendSmsTimeSet.Controls.Add(this.notePanel4);
            this.xtraTabPage_AutoSendSmsTimeSet.Name = "xtraTabPage_AutoSendSmsTimeSet";
            this.xtraTabPage_AutoSendSmsTimeSet.Size = new System.Drawing.Size(682, 400);
            this.xtraTabPage_AutoSendSmsTimeSet.Text = "短信功能设置";
            // 
            // groupControl3
            // 
            this.groupControl3.Controls.Add(this.timeEdit_SMSMorningTime);
            this.groupControl3.Controls.Add(this.notePanel3);
            this.groupControl3.Controls.Add(this.simpleButton4);
            this.groupControl3.Controls.Add(this.notePanel5);
            this.groupControl3.Controls.Add(this.timeEdit_SMSNightTime);
            this.groupControl3.Controls.Add(this.notePanel6);
            this.groupControl3.Controls.Add(this.simpleButton7);
            this.groupControl3.Location = new System.Drawing.Point(168, 56);
            this.groupControl3.Name = "groupControl3";
            this.groupControl3.Size = new System.Drawing.Size(312, 216);
            this.groupControl3.TabIndex = 10;
            this.groupControl3.Text = "设置";
            // 
            // timeEdit_SMSMorningTime
            // 
            this.timeEdit_SMSMorningTime.EditValue = new System.DateTime(2005, 8, 29, 0, 0, 0, 0);
            this.timeEdit_SMSMorningTime.Location = new System.Drawing.Point(152, 96);
            this.timeEdit_SMSMorningTime.Name = "timeEdit_SMSMorningTime";
            this.timeEdit_SMSMorningTime.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
            new DevExpress.XtraEditors.Controls.EditorButton()});
            this.timeEdit_SMSMorningTime.Size = new System.Drawing.Size(88, 20);
            this.timeEdit_SMSMorningTime.TabIndex = 15;
            // 
            // notePanel3
            // 
            this.notePanel3.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(224)))), ((int)(((byte)(224)))), ((int)(((byte)(224)))));
            this.notePanel3.BackColor2 = System.Drawing.Color.DarkGray;
            this.notePanel3.Font = new System.Drawing.Font("Tahoma", 8F);
            this.notePanel3.ForeColor = System.Drawing.Color.Black;
            this.notePanel3.GradientMode = System.Drawing.Drawing2D.LinearGradientMode.Vertical;
            this.notePanel3.Location = new System.Drawing.Point(64, 96);
            this.notePanel3.MaxRows = 5;
            this.notePanel3.Name = "notePanel3";
            this.notePanel3.ParentAutoHeight = true;
            this.notePanel3.Size = new System.Drawing.Size(80, 22);
            this.notePanel3.TabIndex = 14;
            this.notePanel3.TabStop = false;
            this.notePanel3.Text = "迟到时间";
            // 
            // simpleButton4
            // 
            this.simpleButton4.Location = new System.Drawing.Point(160, 184);
            this.simpleButton4.Name = "simpleButton4";
            this.simpleButton4.Size = new System.Drawing.Size(56, 23);
            this.simpleButton4.TabIndex = 1;
            this.simpleButton4.Text = "确定";
            this.simpleButton4.Click += new System.EventHandler(this.simpleButton4_Click);
            // 
            // notePanel5
            // 
            this.notePanel5.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(224)))), ((int)(((byte)(224)))), ((int)(((byte)(224)))));
            this.notePanel5.BackColor2 = System.Drawing.Color.DarkGray;
            this.notePanel5.Font = new System.Drawing.Font("Tahoma", 8F);
            this.notePanel5.ForeColor = System.Drawing.Color.Black;
            this.notePanel5.GradientMode = System.Drawing.Drawing2D.LinearGradientMode.Vertical;
            this.notePanel5.Location = new System.Drawing.Point(64, 128);
            this.notePanel5.MaxRows = 5;
            this.notePanel5.Name = "notePanel5";
            this.notePanel5.ParentAutoHeight = true;
            this.notePanel5.Size = new System.Drawing.Size(80, 22);
            this.notePanel5.TabIndex = 14;
            this.notePanel5.TabStop = false;
            this.notePanel5.Text = "晚接时间";
            // 
            // timeEdit_SMSNightTime
            // 
            this.timeEdit_SMSNightTime.EditValue = new System.DateTime(2005, 8, 29, 0, 0, 0, 0);
            this.timeEdit_SMSNightTime.Location = new System.Drawing.Point(152, 128);
            this.timeEdit_SMSNightTime.Name = "timeEdit_SMSNightTime";
            this.timeEdit_SMSNightTime.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
            new DevExpress.XtraEditors.Controls.EditorButton()});
            this.timeEdit_SMSNightTime.Size = new System.Drawing.Size(88, 20);
            this.timeEdit_SMSNightTime.TabIndex = 15;
            // 
            // notePanel6
            // 
            this.notePanel6.BackColor = System.Drawing.Color.LightGoldenrodYellow;
            this.notePanel6.Dock = System.Windows.Forms.DockStyle.Top;
            this.notePanel6.ForeColor = System.Drawing.Color.Gray;
            this.notePanel6.GradientMode = System.Drawing.Drawing2D.LinearGradientMode.Vertical;
            this.notePanel6.Location = new System.Drawing.Point(2, 22);
            this.notePanel6.MaxRows = 5;
            this.notePanel6.Name = "notePanel6";
            this.notePanel6.ParentAutoHeight = true;
            this.notePanel6.Size = new System.Drawing.Size(308, 52);
            this.notePanel6.TabIndex = 11;
            this.notePanel6.TabStop = false;
            this.notePanel6.Text = "当每日时间到达迟到时间,晚接时间,如果注册过短信服务的学生仍为到校,系统将会自动向手机发出信息提示!";
            // 
            // simpleButton7
            // 
            this.simpleButton7.Location = new System.Drawing.Point(232, 184);
            this.simpleButton7.Name = "simpleButton7";
            this.simpleButton7.Size = new System.Drawing.Size(56, 23);
            this.simpleButton7.TabIndex = 1;
            this.simpleButton7.Text = "取消";
            this.simpleButton7.Click += new System.EventHandler(this.simpleButton7_Click);
            // 
            // notePanel4
            // 
            this.notePanel4.BackColor = System.Drawing.Color.LightGoldenrodYellow;
            this.notePanel4.ForeColor = System.Drawing.Color.Gray;
            this.notePanel4.GradientMode = System.Drawing.Drawing2D.LinearGradientMode.Vertical;
            this.notePanel4.Location = new System.Drawing.Point(184, 288);
            this.notePanel4.MaxRows = 5;
            this.notePanel4.Name = "notePanel4";
            this.notePanel4.ParentAutoHeight = true;
            this.notePanel4.Size = new System.Drawing.Size(272, 23);
            this.notePanel4.TabIndex = 11;
            this.notePanel4.TabStop = false;
            this.notePanel4.Text = "短信自动发送时间设定成功";
            this.notePanel4.Visible = false;
            // 
            // xtraTabPage1
            // 
            this.xtraTabPage1.Appearance.PageClient.BackColor = System.Drawing.Color.WhiteSmoke;
            this.xtraTabPage1.Appearance.PageClient.Options.UseBackColor = true;
            this.xtraTabPage1.Controls.Add(this.groupControl4);
            this.xtraTabPage1.Name = "xtraTabPage1";
            this.xtraTabPage1.Size = new System.Drawing.Size(682, 400);
            this.xtraTabPage1.Text = "修改个人密码";
            // 
            // groupControl4
            // 
            this.groupControl4.Controls.Add(this.textEdit_NewPwd);
            this.groupControl4.Controls.Add(this.notePanel1);
            this.groupControl4.Controls.Add(this.simpleButton8);
            this.groupControl4.Controls.Add(this.notePanel7);
            this.groupControl4.Controls.Add(this.simpleButton9);
            this.groupControl4.Controls.Add(this.textEdit_ConfirmPwd);
            this.groupControl4.Controls.Add(this.notePanel8);
            this.groupControl4.Controls.Add(this.textEdit_OldPwd);
            this.groupControl4.Location = new System.Drawing.Point(176, 64);
            this.groupControl4.Name = "groupControl4";
            this.groupControl4.Size = new System.Drawing.Size(312, 216);
            this.groupControl4.TabIndex = 11;
            this.groupControl4.Text = "请输入修改密码";
            // 
            // textEdit_NewPwd
            // 
            this.textEdit_NewPwd.EditValue = "";
            this.textEdit_NewPwd.Location = new System.Drawing.Point(160, 72);
            this.textEdit_NewPwd.Name = "textEdit_NewPwd";
            this.textEdit_NewPwd.Properties.PasswordChar = '*';
            this.textEdit_NewPwd.Size = new System.Drawing.Size(88, 20);
            this.textEdit_NewPwd.TabIndex = 17;
            // 
            // notePanel1
            // 
            this.notePanel1.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(224)))), ((int)(((byte)(224)))), ((int)(((byte)(224)))));
            this.notePanel1.BackColor2 = System.Drawing.Color.DarkGray;
            this.notePanel1.Font = new System.Drawing.Font("Tahoma", 8F);
            this.notePanel1.ForeColor = System.Drawing.Color.Black;
            this.notePanel1.GradientMode = System.Drawing.Drawing2D.LinearGradientMode.Vertical;
            this.notePanel1.Location = new System.Drawing.Point(72, 72);
            this.notePanel1.MaxRows = 5;
            this.notePanel1.Name = "notePanel1";
            this.notePanel1.ParentAutoHeight = true;
            this.notePanel1.Size = new System.Drawing.Size(80, 22);
            this.notePanel1.TabIndex = 14;
            this.notePanel1.TabStop = false;
            this.notePanel1.Text = "修改密码";
            // 
            // simpleButton8
            // 
            this.simpleButton8.Location = new System.Drawing.Point(128, 144);
            this.simpleButton8.Name = "simpleButton8";
            this.simpleButton8.Size = new System.Drawing.Size(56, 23);
            this.simpleButton8.TabIndex = 1;
            this.simpleButton8.Text = "确定";
            this.simpleButton8.Click += new System.EventHandler(this.simpleButton8_Click);
            // 
            // notePanel7
            // 
            this.notePanel7.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(224)))), ((int)(((byte)(224)))), ((int)(((byte)(224)))));
            this.notePanel7.BackColor2 = System.Drawing.Color.DarkGray;
            this.notePanel7.Font = new System.Drawing.Font("Tahoma", 8F);
            this.notePanel7.ForeColor = System.Drawing.Color.Black;
            this.notePanel7.GradientMode = System.Drawing.Drawing2D.LinearGradientMode.Vertical;
            this.notePanel7.Location = new System.Drawing.Point(72, 104);
            this.notePanel7.MaxRows = 5;
            this.notePanel7.Name = "notePanel7";
            this.notePanel7.ParentAutoHeight = true;
            this.notePanel7.Size = new System.Drawing.Size(80, 22);
            this.notePanel7.TabIndex = 14;
            this.notePanel7.TabStop = false;
            this.notePanel7.Text = "确认密码";
            // 
            // simpleButton9
            // 
            this.simpleButton9.Location = new System.Drawing.Point(192, 144);
            this.simpleButton9.Name = "simpleButton9";
            this.simpleButton9.Size = new System.Drawing.Size(56, 23);
            this.simpleButton9.TabIndex = 1;
            this.simpleButton9.Text = "取消";
            this.simpleButton9.Click += new System.EventHandler(this.simpleButton9_Click);
            // 
            // textEdit_ConfirmPwd
            // 
            this.textEdit_ConfirmPwd.EditValue = "";
            this.textEdit_ConfirmPwd.Location = new System.Drawing.Point(160, 104);
            this.textEdit_ConfirmPwd.Name = "textEdit_ConfirmPwd";
            this.textEdit_ConfirmPwd.Properties.PasswordChar = '*';
            this.textEdit_ConfirmPwd.Size = new System.Drawing.Size(88, 20);
            this.textEdit_ConfirmPwd.TabIndex = 18;
            // 
            // notePanel8
            // 
            this.notePanel8.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(224)))), ((int)(((byte)(224)))), ((int)(((byte)(224)))));
            this.notePanel8.BackColor2 = System.Drawing.Color.DarkGray;
            this.notePanel8.Font = new System.Drawing.Font("Tahoma", 8F);
            this.notePanel8.ForeColor = System.Drawing.Color.Black;
            this.notePanel8.GradientMode = System.Drawing.Drawing2D.LinearGradientMode.Vertical;
            this.notePanel8.Location = new System.Drawing.Point(72, 40);
            this.notePanel8.MaxRows = 5;
            this.notePanel8.Name = "notePanel8";
            this.notePanel8.ParentAutoHeight = true;
            this.notePanel8.Size = new System.Drawing.Size(80, 22);
            this.notePanel8.TabIndex = 14;
            this.notePanel8.TabStop = false;
            this.notePanel8.Text = "原始密码";
            // 
            // textEdit_OldPwd
            // 
            this.textEdit_OldPwd.EditValue = "";
            this.textEdit_OldPwd.Location = new System.Drawing.Point(160, 40);
            this.textEdit_OldPwd.Name = "textEdit_OldPwd";
            this.textEdit_OldPwd.Properties.PasswordChar = '*';
            this.textEdit_OldPwd.Size = new System.Drawing.Size(88, 20);
            this.textEdit_OldPwd.TabIndex = 16;
            // 
            // xtraTabPage2
            // 
            this.xtraTabPage2.Appearance.PageClient.BackColor = System.Drawing.Color.WhiteSmoke;
            this.xtraTabPage2.Appearance.PageClient.Options.UseBackColor = true;
            this.xtraTabPage2.Controls.Add(this.groupControl1);
            this.xtraTabPage2.Name = "xtraTabPage2";
            this.xtraTabPage2.Size = new System.Drawing.Size(682, 400);
            this.xtraTabPage2.Text = "配置自动更新地址";
            // 
            // groupControl1
            // 
            this.groupControl1.Controls.Add(this.textEdit_UpdateAddress);
            this.groupControl1.Controls.Add(this.simpleButton2);
            this.groupControl1.Controls.Add(this.simpleButton10);
            this.groupControl1.Location = new System.Drawing.Point(176, 64);
            this.groupControl1.Name = "groupControl1";
            this.groupControl1.Size = new System.Drawing.Size(312, 216);
            this.groupControl1.TabIndex = 1;
            this.groupControl1.Text = "请输入自动更新网络地址";
            // 
            // textEdit_UpdateAddress
            // 
            this.textEdit_UpdateAddress.EditValue = "";
            this.textEdit_UpdateAddress.Location = new System.Drawing.Point(52, 72);
            this.textEdit_UpdateAddress.Name = "textEdit_UpdateAddress";
            this.textEdit_UpdateAddress.Size = new System.Drawing.Size(208, 20);
            this.textEdit_UpdateAddress.TabIndex = 17;
            // 
            // simpleButton2
            // 
            this.simpleButton2.Location = new System.Drawing.Point(160, 168);
            this.simpleButton2.Name = "simpleButton2";
            this.simpleButton2.Size = new System.Drawing.Size(56, 23);
            this.simpleButton2.TabIndex = 1;
            this.simpleButton2.Text = "确定";
            this.simpleButton2.Click += new System.EventHandler(this.simpleButton2_Click);
            // 
            // simpleButton10
            // 
            this.simpleButton10.Location = new System.Drawing.Point(232, 168);
            this.simpleButton10.Name = "simpleButton10";
            this.simpleButton10.Size = new System.Drawing.Size(56, 23);
            this.simpleButton10.TabIndex = 1;
            this.simpleButton10.Text = "取消";
            this.simpleButton10.Click += new System.EventHandler(this.simpleButton10_Click);
            // 
            // xtraTabPage_BatchCreate
            // 
            this.xtraTabPage_BatchCreate.Controls.Add(this.splitContainerControl1);
            this.xtraTabPage_BatchCreate.Name = "xtraTabPage_BatchCreate";
            this.xtraTabPage_BatchCreate.Size = new System.Drawing.Size(682, 400);
            this.xtraTabPage_BatchCreate.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.groupControl8);
            this.splitContainerControl1.Panel1.Controls.Add(this.groupControl6);
            this.splitContainerControl1.Panel1.Text = "splitContainerControl1_Panel1";
            this.splitContainerControl1.Panel2.Controls.Add(this.groupControl7);
            this.splitContainerControl1.Panel2.Text = "splitContainerControl1_Panel2";
            this.splitContainerControl1.Size = new System.Drawing.Size(682, 400);
            this.splitContainerControl1.SplitterPosition = 213;
            this.splitContainerControl1.TabIndex = 0;
            this.splitContainerControl1.Text = "splitContainerControl1";
            // 
            // groupControl8
            // 
            this.groupControl8.AppearanceCaption.Font = new System.Drawing.Font("Tahoma", 9F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.groupControl8.AppearanceCaption.Options.UseFont = true;
            this.groupControl8.Controls.Add(this.textEdit_ClassVol);
            this.groupControl8.Controls.Add(this.textEdit_BatchCreate_TerminalNumbers);
            this.groupControl8.Controls.Add(this.textEdit_BatchCreate_ClassNumbers);
            this.groupControl8.Controls.Add(this.notePanel_ClassVol);
            this.groupControl8.Controls.Add(this.notePanel_BatchCreate_TerminalNumbers);
            this.groupControl8.Controls.Add(this.notePanel_BatchCreate_ClassNumbers);
            this.groupControl8.Dock = System.Windows.Forms.DockStyle.Fill;
            this.groupControl8.Location = new System.Drawing.Point(0, 256);
            this.groupControl8.Name = "groupControl8";
            this.groupControl8.Size = new System.Drawing.Size(213, 144);
            this.groupControl8.TabIndex = 1;
            this.groupControl8.Text = "硬件信息修改";
            // 
            // textEdit_ClassVol
            // 
            this.textEdit_ClassVol.EditValue = "";
            this.textEdit_ClassVol.Location = new System.Drawing.Point(104, 96);
            this.textEdit_ClassVol.Name = "textEdit_ClassVol";
            this.textEdit_ClassVol.Size = new System.Drawing.Size(96, 20);
            this.textEdit_ClassVol.TabIndex = 32;
            // 
            // textEdit_BatchCreate_TerminalNumbers
            // 
            this.textEdit_BatchCreate_TerminalNumbers.EditValue = "";
            this.textEdit_BatchCreate_TerminalNumbers.Location = new System.Drawing.Point(104, 64);
            this.textEdit_BatchCreate_TerminalNumbers.Name = "textEdit_BatchCreate_TerminalNumbers";
            this.textEdit_BatchCreate_TerminalNumbers.Size = new System.Drawing.Size(96, 20);
            this.textEdit_BatchCreate_TerminalNumbers.TabIndex = 31;
            // 
            // textEdit_BatchCreate_ClassNumbers
            // 
            this.textEdit_BatchCreate_ClassNumbers.EditValue = "";
            this.textEdit_BatchCreate_ClassNumbers.Location = new System.Drawing.Point(104, 32);
            this.textEdit_BatchCreate_ClassNumbers.Name = "textEdit_BatchCreate_ClassNumbers";
            this.textEdit_BatchCreate_ClassNumbers.Size = new System.Drawing.Size(96, 20);
            this.textEdit_BatchCreate_ClassNumbers.TabIndex = 30;
            // 
            // notePanel_ClassVol
            // 
            this.notePanel_ClassVol.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(224)))), ((int)(((byte)(224)))), ((int)(((byte)(224)))));
            this.notePanel_ClassVol.BackColor2 = System.Drawing.Color.DarkGray;
            this.notePanel_ClassVol.Font = new System.Drawing.Font("Tahoma", 8F);
            this.notePanel_ClassVol.ForeColor = System.Drawing.Color.Black;
            this.notePanel_ClassVol.GradientMode = System.Drawing.Drawing2D.LinearGradientMode.Vertical;
            this.notePanel_ClassVol.Location = new System.Drawing.Point(16, 96);
            this.notePanel_ClassVol.MaxRows = 5;
            this.notePanel_ClassVol.Name = "notePanel_ClassVol";
            this.notePanel_ClassVol.ParentAutoHeight = true;
            this.notePanel_ClassVol.Size = new System.Drawing.Size(80, 22);
            this.notePanel_ClassVol.TabIndex = 24;
            this.notePanel_ClassVol.TabStop = false;
            this.notePanel_ClassVol.Text = "教室容量:";
            // 
            // notePanel_BatchCreate_TerminalNumbers
            // 
            this.notePanel_BatchCreate_TerminalNumbers.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(224)))), ((int)(((byte)(224)))), ((int)(((byte)(224)))));
            this.notePanel_BatchCreate_TerminalNumbers.BackColor2 = System.Drawing.Color.DarkGray;
            this.notePanel_BatchCreate_TerminalNumbers.Font = new System.Drawing.Font("Tahoma", 8F);
            this.notePanel_BatchCreate_TerminalNumbers.ForeColor = System.Drawing.Color.Black;
            this.notePanel_BatchCreate_TerminalNumbers.GradientMode = System.Drawing.Drawing2D.LinearGradientMode.Vertical;
            this.notePanel_BatchCreate_TerminalNumbers.Location = new System.Drawing.Point(16, 64);
            this.notePanel_BatchCreate_TerminalNumbers.MaxRows = 5;
            this.notePanel_BatchCreate_TerminalNumbers.Name = "notePanel_BatchCreate_TerminalNumbers";
            this.notePanel_BatchCreate_TerminalNumbers.ParentAutoHeight = true;
            this.notePanel_BatchCreate_TerminalNumbers.Size = new System.Drawing.Size(80, 22);
            this.notePanel_BatchCreate_TerminalNumbers.TabIndex = 23;
            this.notePanel_BatchCreate_TerminalNumbers.TabStop = false;
            this.notePanel_BatchCreate_TerminalNumbers.Text = "主机总数:";
            // 
            // notePanel_BatchCreate_ClassNumbers
            // 
            this.notePanel_BatchCreate_ClassNumbers.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(224)))), ((int)(((byte)(224)))), ((int)(((byte)(224)))));
            this.notePanel_BatchCreate_ClassNumbers.BackColor2 = System.Drawing.Color.DarkGray;
            this.notePanel_BatchCreate_ClassNumbers.Font = new System.Drawing.Font("Tahoma", 8F);
            this.notePanel_BatchCreate_ClassNumbers.ForeColor = System.Drawing.Color.Black;
            this.notePanel_BatchCreate_ClassNumbers.GradientMode = System.Drawing.Drawing2D.LinearGradientMode.Vertical;
            this.notePanel_BatchCreate_ClassNumbers.Location = new System.Drawing.Point(16, 32);
            this.notePanel_BatchCreate_ClassNumbers.MaxRows = 5;
            this.notePanel_BatchCreate_ClassNumbers.Name = "notePanel_BatchCreate_ClassNumbers";
            this.notePanel_BatchCreate_ClassNumbers.ParentAutoHeight = true;
            this.notePanel_BatchCreate_ClassNumbers.Size = new System.Drawing.Size(80, 22);
            this.notePanel_BatchCreate_ClassNumbers.TabIndex = 22;
            this.notePanel_BatchCreate_ClassNumbers.TabStop = false;
            this.notePanel_BatchCreate_ClassNumbers.Text = "班级总数:";
            // 
            // groupControl6
            // 
            this.groupControl6.AppearanceCaption.Font = new System.Drawing.Font("Tahoma", 9F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.groupControl6.AppearanceCaption.Options.UseFont = true;
            this.groupControl6.Controls.Add(this.textEdit_BatchCreate_CardNumber);
            this.groupControl6.Controls.Add(this.notePanel_BatchCreate_CardNumber);
            this.groupControl6.Controls.Add(this.comboBoxEdit_BatchCreate_Load);
            this.groupControl6.Controls.Add(this.comboBoxEdit_BatchCreate_Type);
            this.groupControl6.Controls.Add(this.textEdit_BatchCreate_Number);
            this.groupControl6.Controls.Add(this.textEdit_BatchCreate_Name);
            this.groupControl6.Controls.Add(this.comboBoxEdit_BatchCreate_Class);
            this.groupControl6.Controls.Add(this.comboBoxEdit_BatchCreate_Grade);
            this.groupControl6.Controls.Add(this.notePanel_BatchCreate_Load);
            this.groupControl6.Controls.Add(this.notePanel_BatchCreate_Type);
            this.groupControl6.Controls.Add(this.notePanel_BatchCreate_Number);
            this.groupControl6.Controls.Add(this.notePanel_BatchCreate_Name);
            this.groupControl6.Controls.Add(this.notePanel_BatchCreate_Class);
            this.groupControl6.Controls.Add(this.notePanel_BatchCreate_Grade);
            this.groupControl6.Dock = System.Windows.Forms.DockStyle.Top;
            this.groupControl6.Location = new System.Drawing.Point(0, 0);
            this.groupControl6.Name = "groupControl6";
            this.groupControl6.Size = new System.Drawing.Size(213, 256);
            this.groupControl6.TabIndex = 0;
            this.groupControl6.Text = "信息查询";
            // 
            // textEdit_BatchCreate_CardNumber
            // 
            this.textEdit_BatchCreate_CardNumber.EditValue = "";
            this.textEdit_BatchCreate_CardNumber.Location = new System.Drawing.Point(104, 152);
            this.textEdit_BatchCreate_CardNumber.Name = "textEdit_BatchCreate_CardNumber";
            this.textEdit_BatchCreate_CardNumber.Size = new System.Drawing.Size(96, 20);
            this.textEdit_BatchCreate_CardNumber.TabIndex = 34;
            this.textEdit_BatchCreate_CardNumber.EditValueChanged += new System.EventHandler(this.textEdit_BatchCreate_CardNumber_EditValueChanged);
            // 
            // notePanel_BatchCreate_CardNumber
            // 
            this.notePanel_BatchCreate_CardNumber.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(224)))), ((int)(((byte)(224)))), ((int)(((byte)(224)))));
            this.notePanel_BatchCreate_CardNumber.BackColor2 = System.Drawing.Color.DarkGray;
            this.notePanel_BatchCreate_CardNumber.Font = new System.Drawing.Font("Tahoma", 8F);
            this.notePanel_BatchCreate_CardNumber.ForeColor = System.Drawing.Color.Black;
            this.notePanel_BatchCreate_CardNumber.GradientMode = System.Drawing.Drawing2D.LinearGradientMode.Vertical;
            this.notePanel_BatchCreate_CardNumber.Location = new System.Drawing.Point(16, 152);
            this.notePanel_BatchCreate_CardNumber.MaxRows = 5;
            this.notePanel_BatchCreate_CardNumber.Name = "notePanel_BatchCreate_CardNumber";
            this.notePanel_BatchCreate_CardNumber.ParentAutoHeight = true;
            this.notePanel_BatchCreate_CardNumber.Size = new System.Drawing.Size(80, 22);
            this.notePanel_BatchCreate_CardNumber.TabIndex = 33;
            this.notePanel_BatchCreate_CardNumber.TabStop = false;
            this.notePanel_BatchCreate_CardNumber.Text = "  卡  号:";
            // 
            // comboBoxEdit_BatchCreate_Load
            // 
            this.comboBoxEdit_BatchCreate_Load.EditValue = "未选择";
            this.comboBoxEdit_BatchCreate_Load.Location = new System.Drawing.Point(104, 216);
            this.comboBoxEdit_BatchCreate_Load.Name = "comboBoxEdit_BatchCreate_Load";
            this.comboBoxEdit_BatchCreate_Load.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
            new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
            this.comboBoxEdit_BatchCreate_Load.Properties.Items.AddRange(new object[] {
            "学生信息表(简单)",
            "学生信息表(复杂)",
            "教师信息表",
            "生成卡号新增表",
            "载入卡号新增表"});
            this.comboBoxEdit_BatchCreate_Load.Properties.TextEditStyle = DevExpress.XtraEditors.Controls.TextEditStyles.DisableTextEditor;
            this.comboBoxEdit_BatchCreate_Load.Size = new System.Drawing.Size(96, 20);
            this.comboBoxEdit_BatchCreate_Load.TabIndex = 32;
            this.comboBoxEdit_BatchCreate_Load.SelectedIndexChanged += new System.EventHandler(this.comboBoxEdit_BatchCreate_Load_SelectedIndexChanged);
            // 
            // comboBoxEdit_BatchCreate_Type
            // 
            this.comboBoxEdit_BatchCreate_Type.EditValue = "未选择";
            this.comboBoxEdit_BatchCreate_Type.Location = new System.Drawing.Point(104, 184);
            this.comboBoxEdit_BatchCreate_Type.Name = "comboBoxEdit_BatchCreate_Type";
            this.comboBoxEdit_BatchCreate_Type.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
            new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
            this.comboBoxEdit_BatchCreate_Type.Properties.Items.AddRange(new object[] {
            "年级表(含部门)",
            "班级表(含岗位)",
            "学生基本信息表",
            "学生卡号表",
            "教师基本信息表",
            "教师卡号表",
            "硬件配置表"});
            this.comboBoxEdit_BatchCreate_Type.Properties.TextEditStyle = DevExpress.XtraEditors.Controls.TextEditStyles.DisableTextEditor;
            this.comboBoxEdit_BatchCreate_Type.Size = new System.Drawing.Size(96, 20);
            this.comboBoxEdit_BatchCreate_Type.TabIndex = 31;
            this.comboBoxEdit_BatchCreate_Type.SelectedIndexChanged += new System.EventHandler(this.comboBoxEdit_BatchCreate_Type_SelectedIndexChanged);
            // 
            // textEdit_BatchCreate_Number
            // 
            this.textEdit_BatchCreate_Number.EditValue = "";
            this.textEdit_BatchCreate_Number.Location = new System.Drawing.Point(104, 120);
            this.textEdit_BatchCreate_Number.Name = "textEdit_BatchCreate_Number";
            this.textEdit_BatchCreate_Number.Size = new System.Drawing.Size(96, 20);
            this.textEdit_BatchCreate_Number.TabIndex = 30;
            this.textEdit_BatchCreate_Number.EditValueChanged += new System.EventHandler(this.textEdit_BatchCreate_Number_EditValueChanged);
            // 
            // textEdit_BatchCreate_Name
            // 
            this.textEdit_BatchCreate_Name.EditValue = "";
            this.textEdit_BatchCreate_Name.Location = new System.Drawing.Point(104, 88);
            this.textEdit_BatchCreate_Name.Name = "textEdit_BatchCreate_Name";
            this.textEdit_BatchCreate_Name.Size = new System.Drawing.Size(96, 20);
            this.textEdit_BatchCreate_Name.TabIndex = 29;
            this.textEdit_BatchCreate_Name.EditValueChanged += new System.EventHandler(this.textEdit_BatchCreate_Name_EditValueChanged);
            // 
            // comboBoxEdit_BatchCreate_Class
            // 
            this.comboBoxEdit_BatchCreate_Class.EditValue = "全部";
            this.comboBoxEdit_BatchCreate_Class.Location = new System.Drawing.Point(104, 56);
            this.comboBoxEdit_BatchCreate_Class.Name = "comboBoxEdit_BatchCreate_Class";
            this.comboBoxEdit_BatchCreate_Class.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
            new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
            this.comboBoxEdit_BatchCreate_Class.Properties.Items.AddRange(new object[] {
            "全部"});
            this.comboBoxEdit_BatchCreate_Class.Properties.TextEditStyle = DevExpress.XtraEditors.Controls.TextEditStyles.DisableTextEditor;
            this.comboBoxEdit_BatchCreate_Class.Size = new System.Drawing.Size(96, 20);
            this.comboBoxEdit_BatchCreate_Class.TabIndex = 28;
            this.comboBoxEdit_BatchCreate_Class.SelectedIndexChanged += new System.EventHandler(this.comboBoxEdit_BatchCreate_Class_SelectedIndexChanged);
            // 
            // comboBoxEdit_BatchCreate_Grade
            // 
            this.comboBoxEdit_BatchCreate_Grade.EditValue = "全部";
            this.comboBoxEdit_BatchCreate_Grade.Location = new System.Drawing.Point(104, 24);
            this.comboBoxEdit_BatchCreate_Grade.Name = "comboBoxEdit_BatchCreate_Grade";
            this.comboBoxEdit_BatchCreate_Grade.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
            new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
            this.comboBoxEdit_BatchCreate_Grade.Properties.Items.AddRange(new object[] {
            "全部"});
            this.comboBoxEdit_BatchCreate_Grade.Properties.TextEditStyle = DevExpress.XtraEditors.Controls.TextEditStyles.DisableTextEditor;
            this.comboBoxEdit_BatchCreate_Grade.Size = new System.Drawing.Size(96, 20);
            this.comboBoxEdit_BatchCreate_Grade.TabIndex = 27;
            this.comboBoxEdit_BatchCreate_Grade.SelectedIndexChanged += new System.EventHandler(this.comboBoxEdit_BatchCreate_Grade_SelectedIndexChanged);
            // 
            // notePanel_BatchCreate_Load
            // 
            this.notePanel_BatchCreate_Load.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(224)))), ((int)(((byte)(224)))), ((int)(((byte)(224)))));
            this.notePanel_BatchCreate_Load.BackColor2 = System.Drawing.Color.DarkGray;
            this.notePanel_BatchCreate_Load.Font = new System.Drawing.Font("Tahoma", 8F);
            this.notePanel_BatchCreate_Load.ForeColor = System.Drawing.Color.Black;
            this.notePanel_BatchCreate_Load.GradientMode = System.Drawing.Drawing2D.LinearGradientMode.Vertical;
            this.notePanel_BatchCreate_Load.Location = new System.Drawing.Point(16, 216);
            this.notePanel_BatchCreate_Load.MaxRows = 5;
            this.notePanel_BatchCreate_Load.Name = "notePanel_BatchCreate_Load";
            this.notePanel_BatchCreate_Load.ParentAutoHeight = true;
            this.notePanel_BatchCreate_Load.Size = new System.Drawing.Size(80, 22);
            this.notePanel_BatchCreate_Load.TabIndex = 26;
            this.notePanel_BatchCreate_Load.TabStop = false;
            this.notePanel_BatchCreate_Load.Text = "  载  入:";
            // 
            // notePanel_BatchCreate_Type
            // 
            this.notePanel_BatchCreate_Type.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(224)))), ((int)(((byte)(224)))), ((int)(((byte)(224)))));
            this.notePanel_BatchCreate_Type.BackColor2 = System.Drawing.Color.DarkGray;
            this.notePanel_BatchCreate_Type.Font = new System.Drawing.Font("Tahoma", 8F);
            this.notePanel_BatchCreate_Type.ForeColor = System.Drawing.Color.Black;
            this.notePanel_BatchCreate_Type.GradientMode = System.Drawing.Drawing2D.LinearGradientMode.Vertical;
            this.notePanel_BatchCreate_Type.Location = new System.Drawing.Point(16, 184);
            this.notePanel_BatchCreate_Type.MaxRows = 5;
            this.notePanel_BatchCreate_Type.Name = "notePanel_BatchCreate_Type";
            this.notePanel_BatchCreate_Type.ParentAutoHeight = true;
            this.notePanel_BatchCreate_Type.Size = new System.Drawing.Size(80, 22);
            this.notePanel_BatchCreate_Type.TabIndex = 25;
            this.notePanel_BatchCreate_Type.TabStop = false;
            this.notePanel_BatchCreate_Type.Text = "  类  型:";
            // 
            // notePanel_BatchCreate_Number
            // 
            this.notePanel_BatchCreate_Number.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(224)))), ((int)(((byte)(224)))), ((int)(((byte)(224)))));
            this.notePanel_BatchCreate_Number.BackColor2 = System.Drawing.Color.DarkGray;
            this.notePanel_BatchCreate_Number.Font = new System.Drawing.Font("Tahoma", 8F);
            this.notePanel_BatchCreate_Number.ForeColor = System.Drawing.Color.Black;
            this.notePanel_BatchCreate_Number.GradientMode = System.Drawing.Drawing2D.LinearGradientMode.Vertical;
            this.notePanel_BatchCreate_Number.Location = new System.Drawing.Point(16, 120);
            this.notePanel_BatchCreate_Number.MaxRows = 5;
            this.notePanel_BatchCreate_Number.Name = "notePanel_BatchCreate_Number";
            this.notePanel_BatchCreate_Number.ParentAutoHeight = true;
            this.notePanel_BatchCreate_Number.Size = new System.Drawing.Size(80, 22);
            this.notePanel_BatchCreate_Number.TabIndex = 24;
            this.notePanel_BatchCreate_Number.TabStop = false;
            this.notePanel_BatchCreate_Number.Text = "  学  号:";
            // 
            // notePanel_BatchCreate_Name
            // 
            this.notePanel_BatchCreate_Name.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(224)))), ((int)(((byte)(224)))), ((int)(((byte)(224)))));
            this.notePanel_BatchCreate_Name.BackColor2 = System.Drawing.Color.DarkGray;
            this.notePanel_BatchCreate_Name.Font = new System.Drawing.Font("Tahoma", 8F);
            this.notePanel_BatchCreate_Name.ForeColor = System.Drawing.Color.Black;
            this.notePanel_BatchCreate_Name.GradientMode = System.Drawing.Drawing2D.LinearGradientMode.Vertical;
            this.notePanel_BatchCreate_Name.Location = new System.Drawing.Point(16, 88);
            this.notePanel_BatchCreate_Name.MaxRows = 5;
            this.notePanel_BatchCreate_Name.Name = "notePanel_BatchCreate_Name";
            this.notePanel_BatchCreate_Name.ParentAutoHeight = true;
            this.notePanel_BatchCreate_Name.Size = new System.Drawing.Size(80, 22);
            this.notePanel_BatchCreate_Name.TabIndex = 23;
            this.notePanel_BatchCreate_Name.TabStop = false;
            this.notePanel_BatchCreate_Name.Text = "  姓  名:";
            // 
            // notePanel_BatchCreate_Class
            // 
            this.notePanel_BatchCreate_Class.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(224)))), ((int)(((byte)(224)))), ((int)(((byte)(224)))));
            this.notePanel_BatchCreate_Class.BackColor2 = System.Drawing.Color.DarkGray;
            this.notePanel_BatchCreate_Class.Font = new System.Drawing.Font("Tahoma", 8F);
            this.notePanel_BatchCreate_Class.ForeColor = System.Drawing.Color.Black;
            this.notePanel_BatchCreate_Class.GradientMode = System.Drawing.Drawing2D.LinearGradientMode.Vertical;
            this.notePanel_BatchCreate_Class.Location = new System.Drawing.Point(16, 56);
            this.notePanel_BatchCreate_Class.MaxRows = 5;
            this.notePanel_BatchCreate_Class.Name = "notePanel_BatchCreate_Class";
            this.notePanel_BatchCreate_Class.ParentAutoHeight = true;
            this.notePanel_BatchCreate_Class.Size = new System.Drawing.Size(80, 22);
            this.notePanel_BatchCreate_Class.TabIndex = 22;
            this.notePanel_BatchCreate_Class.TabStop = false;
            this.notePanel_BatchCreate_Class.Text = "  班  级:";
            // 
            // notePanel_BatchCreate_Grade
            // 
            this.notePanel_BatchCreate_Grade.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(224)))), ((int)(((byte)(224)))), ((int)(((byte)(224)))));
            this.notePanel_BatchCreate_Grade.BackColor2 = System.Drawing.Color.DarkGray;
            this.notePanel_BatchCreate_Grade.Font = new System.Drawing.Font("Tahoma", 8F);
            this.notePanel_BatchCreate_Grade.ForeColor = System.Drawing.Color.Black;
            this.notePanel_BatchCreate_Grade.GradientMode = System.Drawing.Drawing2D.LinearGradientMode.Vertical;
            this.notePanel_BatchCreate_Grade.Location = new System.Drawing.Point(16, 24);
            this.notePanel_BatchCreate_Grade.MaxRows = 5;
            this.notePanel_BatchCreate_Grade.Name = "notePanel_BatchCreate_Grade";
            this.notePanel_BatchCreate_Grade.ParentAutoHeight = true;
            this.notePanel_BatchCreate_Grade.Size = new System.Drawing.Size(80, 22);
            this.notePanel_BatchCreate_Grade.TabIndex = 21;
            this.notePanel_BatchCreate_Grade.TabStop = false;
            this.notePanel_BatchCreate_Grade.Text = "  年  级:";
            // 
            // groupControl7
            // 
            this.groupControl7.AppearanceCaption.Font = new System.Drawing.Font("Tahoma", 9F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.groupControl7.AppearanceCaption.Options.UseFont = true;
            this.groupControl7.Controls.Add(this.gridControl_BatchCreate_Machine);
            this.groupControl7.Controls.Add(this.gridControl_BatchCreate_TeaCard);
            this.groupControl7.Controls.Add(this.gridControl1_BatchCreate_TeaBasicInfo);
            this.groupControl7.Controls.Add(this.gridControl_BatchCreate_StuCard);
            this.groupControl7.Controls.Add(this.gridControl_BatchCreate_StuBasicInfo);
            this.groupControl7.Controls.Add(this.gridControl_BatchCreate_Class);
            this.groupControl7.Controls.Add(this.gridControl_BatchCreate_Grade);
            this.groupControl7.Dock = System.Windows.Forms.DockStyle.Fill;
            this.groupControl7.Location = new System.Drawing.Point(0, 0);
            this.groupControl7.Name = "groupControl7";
            this.groupControl7.Size = new System.Drawing.Size(464, 400);
            this.groupControl7.TabIndex = 0;
            this.groupControl7.Text = "信息列表";
            // 
            // gridControl_BatchCreate_Machine
            // 
            this.gridControl_BatchCreate_Machine.Dock = System.Windows.Forms.DockStyle.Fill;
            this.gridControl_BatchCreate_Machine.Location = new System.Drawing.Point(2, 22);
            this.gridControl_BatchCreate_Machine.MainView = this.gridView7;
            this.gridControl_BatchCreate_Machine.Name = "gridControl_BatchCreate_Machine";
            this.gridControl_BatchCreate_Machine.RepositoryItems.AddRange(new DevExpress.XtraEditors.Repository.RepositoryItem[] {
            this.repositoryItemTextEdit1,
            this.repositoryItemTextEdit2});
            this.gridControl_BatchCreate_Machine.Size = new System.Drawing.Size(460, 376);
            this.gridControl_BatchCreate_Machine.TabIndex = 6;
            this.gridControl_BatchCreate_Machine.ViewCollection.AddRange(new DevExpress.XtraGrid.Views.Base.BaseView[] {
            this.gridView7});
            // 
            // gridView7
            // 
            this.gridView7.Columns.AddRange(new DevExpress.XtraGrid.Columns.GridColumn[] {
            this.gridColumn48,
            this.gridColumn47,
            this.gridColumn35,
            this.gridColumn36,
            this.gridColumn37});
            this.gridView7.GridControl = this.gridControl_BatchCreate_Machine;
            this.gridView7.Name = "gridView7";
            this.gridView7.OptionsCustomization.AllowFilter = false;
            this.gridView7.OptionsView.ShowFilterPanelMode = DevExpress.XtraGrid.Views.Base.ShowFilterPanelMode.Never;
            this.gridView7.OptionsView.ShowGroupPanel = false;
            // 
            // gridColumn48
            // 
            this.gridColumn48.Caption = "gridColumn48";
            this.gridColumn48.FieldName = "Address";
            this.gridColumn48.Name = "gridColumn48";
            this.gridColumn48.OptionsColumn.AllowGroup = DevExpress.Utils.DefaultBoolean.False;
            this.gridColumn48.OptionsColumn.AllowIncrementalSearch = false;
            this.gridColumn48.OptionsColumn.AllowMerge = DevExpress.Utils.DefaultBoolean.False;
            this.gridColumn48.OptionsColumn.AllowMove = false;
            this.gridColumn48.OptionsColumn.AllowSize = false;
            this.gridColumn48.OptionsColumn.AllowSort = DevExpress.Utils.DefaultBoolean.True;
            this.gridColumn48.OptionsColumn.ShowInCustomizationForm = false;
            // 
            // gridColumn47
            // 
            this.gridColumn47.Caption = "gridColumn47";
            this.gridColumn47.FieldName = "Type";
            this.gridColumn47.Name = "gridColumn47";
            this.gridColumn47.OptionsColumn.AllowGroup = DevExpress.Utils.DefaultBoolean.False;
            this.gridColumn47.OptionsColumn.AllowIncrementalSearch = false;
            this.gridColumn47.OptionsColumn.AllowMerge = DevExpress.Utils.DefaultBoolean.False;
            this.gridColumn47.OptionsColumn.AllowMove = false;
            this.gridColumn47.OptionsColumn.AllowSize = false;
            this.gridColumn47.OptionsColumn.AllowSort = DevExpress.Utils.DefaultBoolean.True;
            this.gridColumn47.OptionsColumn.ShowInCustomizationForm = false;
            // 
            // gridColumn35
            // 
            this.gridColumn35.AppearanceCell.Options.UseTextOptions = true;
            this.gridColumn35.AppearanceCell.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
            this.gridColumn35.AppearanceHeader.Options.UseTextOptions = true;
            this.gridColumn35.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
            this.gridColumn35.Caption = "硬件地址";
            this.gridColumn35.FieldName = "machine_address";
            this.gridColumn35.Name = "gridColumn35";
            this.gridColumn35.OptionsColumn.AllowGroup = DevExpress.Utils.DefaultBoolean.False;
            this.gridColumn35.OptionsColumn.AllowIncrementalSearch = false;
            this.gridColumn35.OptionsColumn.AllowMerge = DevExpress.Utils.DefaultBoolean.False;
            this.gridColumn35.OptionsColumn.AllowMove = false;
            this.gridColumn35.OptionsColumn.AllowSize = false;
            this.gridColumn35.OptionsColumn.AllowSort = DevExpress.Utils.DefaultBoolean.True;
            this.gridColumn35.OptionsColumn.ShowInCustomizationForm = false;
            this.gridColumn35.Visible = true;
            this.gridColumn35.VisibleIndex = 0;
            // 
            // gridColumn36
            // 
            this.gridColumn36.AppearanceCell.Options.UseTextOptions = true;
            this.gridColumn36.AppearanceCell.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
            this.gridColumn36.AppearanceHeader.Options.UseTextOptions = true;
            this.gridColumn36.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
            this.gridColumn36.Caption = "硬件类型";
            this.gridColumn36.FieldName = "machine_type";
            this.gridColumn36.Name = "gridColumn36";
            this.gridColumn36.OptionsColumn.AllowGroup = DevExpress.Utils.DefaultBoolean.False;
            this.gridColumn36.OptionsColumn.AllowIncrementalSearch = false;
            this.gridColumn36.OptionsColumn.AllowMerge = DevExpress.Utils.DefaultBoolean.False;
            this.gridColumn36.OptionsColumn.AllowMove = false;
            this.gridColumn36.OptionsColumn.AllowSize = false;
            this.gridColumn36.OptionsColumn.AllowSort = DevExpress.Utils.DefaultBoolean.True;
            this.gridColumn36.OptionsColumn.ShowInCustomizationForm = false;
            this.gridColumn36.Visible = true;
            this.gridColumn36.VisibleIndex = 1;
            // 
            // gridColumn37
            // 
            this.gridColumn37.AppearanceCell.Options.UseTextOptions = true;
            this.gridColumn37.AppearanceCell.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
            this.gridColumn37.AppearanceHeader.Options.UseTextOptions = true;
            this.gridColumn37.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
            this.gridColumn37.Caption = "硬件容量";
            this.gridColumn37.FieldName = "machine_volumn";
            this.gridColumn37.Name = "gridColumn37";
            this.gridColumn37.OptionsColumn.AllowGroup = DevExpress.Utils.DefaultBoolean.False;
            this.gridColumn37.OptionsColumn.AllowIncrementalSearch = false;
            this.gridColumn37.OptionsColumn.AllowMerge = DevExpress.Utils.DefaultBoolean.False;
            this.gridColumn37.OptionsColumn.AllowMove = false;
            this.gridColumn37.OptionsColumn.AllowSize = false;
            this.gridColumn37.OptionsColumn.AllowSort = DevExpress.Utils.DefaultBoolean.True;
            this.gridColumn37.OptionsColumn.ShowInCustomizationForm = false;
            this.gridColumn37.Visible = true;
            this.gridColumn37.VisibleIndex = 2;
            // 
            // repositoryItemTextEdit1
            // 
            this.repositoryItemTextEdit1.AutoHeight = false;
            this.repositoryItemTextEdit1.Name = "repositoryItemTextEdit1";
            // 
            // repositoryItemTextEdit2
            // 
            this.repositoryItemTextEdit2.AutoHeight = false;
            this.repositoryItemTextEdit2.Name = "repositoryItemTextEdit2";
            // 
            // gridControl_BatchCreate_TeaCard
            // 
            this.gridControl_BatchCreate_TeaCard.Dock = System.Windows.Forms.DockStyle.Fill;
            this.gridControl_BatchCreate_TeaCard.Location = new System.Drawing.Point(2, 22);
            this.gridControl_BatchCreate_TeaCard.MainView = this.gridView6;
            this.gridControl_BatchCreate_TeaCard.Name = "gridControl_BatchCreate_TeaCard";
            this.gridControl_BatchCreate_TeaCard.Size = new System.Drawing.Size(460, 376);
            this.gridControl_BatchCreate_TeaCard.TabIndex = 5;
            this.gridControl_BatchCreate_TeaCard.ViewCollection.AddRange(new DevExpress.XtraGrid.Views.Base.BaseView[] {
            this.gridView6});
            // 
            // gridView6
            // 
            this.gridView6.Columns.AddRange(new DevExpress.XtraGrid.Columns.GridColumn[] {
            this.gridColumn30,
            this.gridColumn31,
            this.gridColumn32,
            this.gridColumn33,
            this.gridColumn34,
            this.gridColumn46});
            this.gridView6.GridControl = this.gridControl_BatchCreate_TeaCard;
            this.gridView6.Name = "gridView6";
            this.gridView6.OptionsBehavior.Editable = false;
            this.gridView6.OptionsCustomization.AllowFilter = false;
            this.gridView6.OptionsView.ShowFilterPanelMode = DevExpress.XtraGrid.Views.Base.ShowFilterPanelMode.Never;
            this.gridView6.OptionsView.ShowGroupPanel = false;
            this.gridView6.KeyDown += new System.Windows.Forms.KeyEventHandler(this.gridView6_KeyDown);
            // 
            // gridColumn30
            // 
            this.gridColumn30.AppearanceCell.Options.UseTextOptions = true;
            this.gridColumn30.AppearanceCell.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
            this.gridColumn30.AppearanceHeader.Options.UseTextOptions = true;
            this.gridColumn30.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
            this.gridColumn30.Caption = "工号";
            this.gridColumn30.FieldName = "T_Number";
            this.gridColumn30.Name = "gridColumn30";
            this.gridColumn30.OptionsColumn.AllowGroup = DevExpress.Utils.DefaultBoolean.False;
            this.gridColumn30.OptionsColumn.AllowIncrementalSearch = false;
            this.gridColumn30.OptionsColumn.AllowMerge = DevExpress.Utils.DefaultBoolean.False;
            this.gridColumn30.OptionsColumn.AllowSort = DevExpress.Utils.DefaultBoolean.True;
            this.gridColumn30.OptionsColumn.ShowInCustomizationForm = false;
            this.gridColumn30.Visible = true;
            this.gridColumn30.VisibleIndex = 0;
            this.gridColumn30.Width = 79;
            // 
            // gridColumn31
            // 
            this.gridColumn31.AppearanceCell.Options.UseTextOptions = true;
            this.gridColumn31.AppearanceCell.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
            this.gridColumn31.AppearanceHeader.Options.UseTextOptions = true;
            this.gridColumn31.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
            this.gridColumn31.Caption = "姓名";
            this.gridColumn31.FieldName = "T_Name";
            this.gridColumn31.Name = "gridColumn31";
            this.gridColumn31.OptionsColumn.AllowGroup = DevExpress.Utils.DefaultBoolean.False;
            this.gridColumn31.OptionsColumn.AllowIncrementalSearch = false;
            this.gridColumn31.OptionsColumn.AllowMerge = DevExpress.Utils.DefaultBoolean.False;
            this.gridColumn31.OptionsColumn.AllowSort = DevExpress.Utils.DefaultBoolean.True;
            this.gridColumn31.OptionsColumn.ShowInCustomizationForm = false;
            this.gridColumn31.Visible = true;
            this.gridColumn31.VisibleIndex = 1;
            this.gridColumn31.Width = 80;
            // 
            // gridColumn32
            // 
            this.gridColumn32.AppearanceCell.Options.UseTextOptions = true;
            this.gridColumn32.AppearanceCell.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
            this.gridColumn32.AppearanceHeader.Options.UseTextOptions = true;
            this.gridColumn32.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
            this.gridColumn32.Caption = "卡号";
            this.gridColumn32.FieldName = "info_teaCardNumber";
            this.gridColumn32.Name = "gridColumn32";
            this.gridColumn32.OptionsColumn.AllowGroup = DevExpress.Utils.DefaultBoolean.False;
            this.gridColumn32.OptionsColumn.AllowIncrementalSearch = false;
            this.gridColumn32.OptionsColumn.AllowMerge = DevExpress.Utils.DefaultBoolean.False;
            this.gridColumn32.OptionsColumn.AllowSort = DevExpress.Utils.DefaultBoolean.True;
            this.gridColumn32.OptionsColumn.ShowInCustomizationForm = false;
            this.gridColumn32.Visible = true;
            this.gridColumn32.VisibleIndex = 2;
            this.gridColumn32.Width = 120;
            // 
            // gridColumn33
            // 
            this.gridColumn33.AppearanceCell.Options.UseTextOptions = true;
            this.gridColumn33.AppearanceCell.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
            this.gridColumn33.AppearanceHeader.Options.UseTextOptions = true;
            this.gridColumn33.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
            this.gridColumn33.Caption = "制卡日期";
            this.gridColumn33.DisplayFormat.FormatString = "yyyy-MM-dd HH:mm:ss";
            this.gridColumn33.DisplayFormat.FormatType = DevExpress.Utils.FormatType.DateTime;
            this.gridColumn33.FieldName = "info_teaCardSendDate";
            this.gridColumn33.Name = "gridColumn33";
            this.gridColumn33.OptionsColumn.AllowGroup = DevExpress.Utils.DefaultBoolean.False;
            this.gridColumn33.OptionsColumn.AllowIncrementalSearch = false;
            this.gridColumn33.OptionsColumn.AllowMerge = DevExpress.Utils.DefaultBoolean.False;
            this.gridColumn33.OptionsColumn.AllowSort = DevExpress.Utils.DefaultBoolean.True;
            this.gridColumn33.OptionsColumn.ShowInCustomizationForm = false;
            this.gridColumn33.Visible = true;
            this.gridColumn33.VisibleIndex = 3;
            this.gridColumn33.Width = 159;
            // 
            // gridColumn34
            // 
            this.gridColumn34.AppearanceCell.Options.UseTextOptions = true;
            this.gridColumn34.AppearanceCell.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
            this.gridColumn34.AppearanceHeader.Options.UseTextOptions = true;
            this.gridColumn34.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
            this.gridColumn34.Caption = "gridColumn34";
            this.gridColumn34.FieldName = "info_teaBasicID";
            this.gridColumn34.Name = "gridColumn34";
            this.gridColumn34.OptionsColumn.AllowGroup = DevExpress.Utils.DefaultBoolean.False;
            this.gridColumn34.OptionsColumn.AllowIncrementalSearch = false;
            this.gridColumn34.OptionsColumn.AllowMerge = DevExpress.Utils.DefaultBoolean.False;
            this.gridColumn34.OptionsColumn.AllowSort = DevExpress.Utils.DefaultBoolean.True;
            this.gridColumn34.OptionsColumn.ShowInCustomizationForm = false;
            // 
            // gridColumn46
            // 
            this.gridColumn46.Caption = "gridColumn46";
            this.gridColumn46.FieldName = "info_teaCardSeq";
            this.gridColumn46.MinWidth = 10;
            this.gridColumn46.Name = "gridColumn46";
            // 
            // gridControl1_BatchCreate_TeaBasicInfo
            // 
            this.gridControl1_BatchCreate_TeaBasicInfo.Dock = System.Windows.Forms.DockStyle.Fill;
            this.gridControl1_BatchCreate_TeaBasicInfo.Location = new System.Drawing.Point(2, 22);
            this.gridControl1_BatchCreate_TeaBasicInfo.MainView = this.gridView5;
            this.gridControl1_BatchCreate_TeaBasicInfo.Name = "gridControl1_BatchCreate_TeaBasicInfo";
            this.gridControl1_BatchCreate_TeaBasicInfo.Size = new System.Drawing.Size(460, 376);
            this.gridControl1_BatchCreate_TeaBasicInfo.TabIndex = 4;
            this.gridControl1_BatchCreate_TeaBasicInfo.ViewCollection.AddRange(new DevExpress.XtraGrid.Views.Base.BaseView[] {
            this.gridView5});
            // 
            // gridView5
            // 
            this.gridView5.Columns.AddRange(new DevExpress.XtraGrid.Columns.GridColumn[] {
            this.gridColumn24,
            this.gridColumn25,
            this.gridColumn26,
            this.gridColumn27,
            this.gridColumn28,
            this.gridColumn29});
            this.gridView5.GridControl = this.gridControl1_BatchCreate_TeaBasicInfo;
            this.gridView5.Name = "gridView5";
            this.gridView5.OptionsCustomization.AllowFilter = false;
            this.gridView5.OptionsView.ShowFilterPanelMode = DevExpress.XtraGrid.Views.Base.ShowFilterPanelMode.Never;
            this.gridView5.OptionsView.ShowGroupPanel = false;
            // 
            // gridColumn24
            // 
            this.gridColumn24.AppearanceCell.Options.UseTextOptions = true;
            this.gridColumn24.AppearanceCell.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
            this.gridColumn24.AppearanceHeader.Options.UseTextOptions = true;
            this.gridColumn24.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
            this.gridColumn24.Caption = "姓名";
            this.gridColumn24.FieldName = "T_Name";
            this.gridColumn24.Name = "gridColumn24";
            this.gridColumn24.OptionsColumn.AllowGroup = DevExpress.Utils.DefaultBoolean.False;
            this.gridColumn24.OptionsColumn.AllowIncrementalSearch = false;
            this.gridColumn24.OptionsColumn.AllowMerge = DevExpress.Utils.DefaultBoolean.False;
            this.gridColumn24.OptionsColumn.AllowSort = DevExpress.Utils.DefaultBoolean.True;
            this.gridColumn24.OptionsColumn.ShowInCustomizationForm = false;
            this.gridColumn24.Visible = true;
            this.gridColumn24.VisibleIndex = 0;
            // 
            // gridColumn25
            // 
            this.gridColumn25.AppearanceCell.Options.UseTextOptions = true;
            this.gridColumn25.AppearanceCell.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
            this.gridColumn25.AppearanceHeader.Options.UseTextOptions = true;
            this.gridColumn25.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
            this.gridColumn25.Caption = "工号";
            this.gridColumn25.FieldName = "T_Number";
            this.gridColumn25.Name = "gridColumn25";
            this.gridColumn25.OptionsColumn.AllowGroup = DevExpress.Utils.DefaultBoolean.False;
            this.gridColumn25.OptionsColumn.AllowIncrementalSearch = false;
            this.gridColumn25.OptionsColumn.AllowMerge = DevExpress.Utils.DefaultBoolean.False;
            this.gridColumn25.OptionsColumn.AllowSort = DevExpress.Utils.DefaultBoolean.True;
            this.gridColumn25.OptionsColumn.ShowInCustomizationForm = false;
            this.gridColumn25.Visible = true;
            this.gridColumn25.VisibleIndex = 1;
            // 
            // gridColumn26
            // 
            this.gridColumn26.AppearanceCell.Options.UseTextOptions = true;
            this.gridColumn26.AppearanceCell.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
            this.gridColumn26.AppearanceHeader.Options.UseTextOptions = true;
            this.gridColumn26.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
            this.gridColumn26.Caption = "部门";
            this.gridColumn26.FieldName = "T_Depart";
            this.gridColumn26.Name = "gridColumn26";
            this.gridColumn26.OptionsColumn.AllowGroup = DevExpress.Utils.DefaultBoolean.False;
            this.gridColumn26.OptionsColumn.AllowIncrementalSearch = false;
            this.gridColumn26.OptionsColumn.AllowMerge = DevExpress.Utils.DefaultBoolean.False;
            this.gridColumn26.OptionsColumn.AllowSort = DevExpress.Utils.DefaultBoolean.True;
            this.gridColumn26.OptionsColumn.ShowInCustomizationForm = false;
            this.gridColumn26.Visible = true;
            this.gridColumn26.VisibleIndex = 2;
            // 
            // gridColumn27
            // 
            this.gridColumn27.AppearanceCell.Options.UseTextOptions = true;
            this.gridColumn27.AppearanceCell.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
            this.gridColumn27.AppearanceHeader.Options.UseTextOptions = true;
            this.gridColumn27.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
            this.gridColumn27.Caption = "岗位";
            this.gridColumn27.FieldName = "T_Duty";
            this.gridColumn27.Name = "gridColumn27";
            this.gridColumn27.OptionsColumn.AllowGroup = DevExpress.Utils.DefaultBoolean.False;
            this.gridColumn27.OptionsColumn.AllowIncrementalSearch = false;
            this.gridColumn27.OptionsColumn.AllowMerge = DevExpress.Utils.DefaultBoolean.False;
            this.gridColumn27.OptionsColumn.AllowSort = DevExpress.Utils.DefaultBoolean.True;
            this.gridColumn27.OptionsColumn.ShowInCustomizationForm = false;
            this.gridColumn27.Visible = true;
            this.gridColumn27.VisibleIndex = 3;
            // 
            // gridColumn28
            // 
            this.gridColumn28.AppearanceCell.Options.UseTextOptions = true;
            this.gridColumn28.AppearanceCell.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
            this.gridColumn28.AppearanceHeader.Options.UseTextOptions = true;
            this.gridColumn28.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
            this.gridColumn28.Caption = "性别";
            this.gridColumn28.FieldName = "T_Sex";
            this.gridColumn28.Name = "gridColumn28";
            this.gridColumn28.OptionsColumn.AllowGroup = DevExpress.Utils.DefaultBoolean.False;
            this.gridColumn28.OptionsColumn.AllowIncrementalSearch = false;
            this.gridColumn28.OptionsColumn.AllowMerge = DevExpress.Utils.DefaultBoolean.False;
            this.gridColumn28.OptionsColumn.AllowSort = DevExpress.Utils.DefaultBoolean.True;
            this.gridColumn28.OptionsColumn.ShowInCustomizationForm = false;
            this.gridColumn28.Visible = true;
            this.gridColumn28.VisibleIndex = 4;
            // 
            // gridColumn29
            // 
            this.gridColumn29.AppearanceCell.Options.UseTextOptions = true;
            this.gridColumn29.AppearanceCell.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
            this.gridColumn29.AppearanceHeader.Options.UseTextOptions = true;
            this.gridColumn29.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
            this.gridColumn29.Caption = "gridColumn29";
            this.gridColumn29.FieldName = "T_ID";
            this.gridColumn29.Name = "gridColumn29";
            this.gridColumn29.OptionsColumn.AllowGroup = DevExpress.Utils.DefaultBoolean.False;
            this.gridColumn29.OptionsColumn.AllowIncrementalSearch = false;
            this.gridColumn29.OptionsColumn.AllowMerge = DevExpress.Utils.DefaultBoolean.False;
            this.gridColumn29.OptionsColumn.AllowSort = DevExpress.Utils.DefaultBoolean.True;
            this.gridColumn29.OptionsColumn.ShowInCustomizationForm = false;
            // 
            // gridControl_BatchCreate_StuCard
            // 
            this.gridControl_BatchCreate_StuCard.Dock = System.Windows.Forms.DockStyle.Fill;
            this.gridControl_BatchCreate_StuCard.Location = new System.Drawing.Point(2, 22);
            this.gridControl_BatchCreate_StuCard.MainView = this.gridView4;
            this.gridControl_BatchCreate_StuCard.Name = "gridControl_BatchCreate_StuCard";
            this.gridControl_BatchCreate_StuCard.Size = new System.Drawing.Size(460, 376);
            this.gridControl_BatchCreate_StuCard.TabIndex = 3;
            this.gridControl_BatchCreate_StuCard.ViewCollection.AddRange(new DevExpress.XtraGrid.Views.Base.BaseView[] {
            this.gridView4});
            this.gridControl_BatchCreate_StuCard.Visible = false;
            // 
            // gridView4
            // 
            this.gridView4.Columns.AddRange(new DevExpress.XtraGrid.Columns.GridColumn[] {
            this.gridColumn18,
            this.gridColumn19,
            this.gridColumn20,
            this.gridColumn21,
            this.gridColumn22,
            this.gridColumn23,
            this.gridColumn45});
            this.gridView4.GridControl = this.gridControl_BatchCreate_StuCard;
            this.gridView4.Name = "gridView4";
            this.gridView4.OptionsBehavior.Editable = false;
            this.gridView4.OptionsCustomization.AllowFilter = false;
            this.gridView4.OptionsView.ShowFilterPanelMode = DevExpress.XtraGrid.Views.Base.ShowFilterPanelMode.Never;
            this.gridView4.OptionsView.ShowGroupPanel = false;
            this.gridView4.KeyDown += new System.Windows.Forms.KeyEventHandler(this.gridView4_KeyDown);
            // 
            // gridColumn18
            // 
            this.gridColumn18.AppearanceCell.Options.UseTextOptions = true;
            this.gridColumn18.AppearanceCell.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
            this.gridColumn18.AppearanceHeader.Options.UseTextOptions = true;
            this.gridColumn18.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
            this.gridColumn18.Caption = "学号";
            this.gridColumn18.FieldName = "info_stuNumber";
            this.gridColumn18.Name = "gridColumn18";
            this.gridColumn18.OptionsColumn.AllowGroup = DevExpress.Utils.DefaultBoolean.False;
            this.gridColumn18.OptionsColumn.AllowIncrementalSearch = false;
            this.gridColumn18.OptionsColumn.AllowMerge = DevExpress.Utils.DefaultBoolean.False;
            this.gridColumn18.OptionsColumn.AllowSort = DevExpress.Utils.DefaultBoolean.True;
            this.gridColumn18.OptionsColumn.ShowInCustomizationForm = false;
            this.gridColumn18.Visible = true;
            this.gridColumn18.VisibleIndex = 0;
            this.gridColumn18.Width = 58;
            // 
            // gridColumn19
            // 
            this.gridColumn19.AppearanceCell.Options.UseTextOptions = true;
            this.gridColumn19.AppearanceCell.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
            this.gridColumn19.AppearanceHeader.Options.UseTextOptions = true;
            this.gridColumn19.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
            this.gridColumn19.Caption = "姓名";
            this.gridColumn19.FieldName = "info_stuName";
            this.gridColumn19.Name = "gridColumn19";
            this.gridColumn19.OptionsColumn.AllowGroup = DevExpress.Utils.DefaultBoolean.False;
            this.gridColumn19.OptionsColumn.AllowIncrementalSearch = false;
            this.gridColumn19.OptionsColumn.AllowMerge = DevExpress.Utils.DefaultBoolean.False;
            this.gridColumn19.OptionsColumn.AllowSort = DevExpress.Utils.DefaultBoolean.True;
            this.gridColumn19.OptionsColumn.ShowInCustomizationForm = false;
            this.gridColumn19.Visible = true;
            this.gridColumn19.VisibleIndex = 1;
            this.gridColumn19.Width = 71;
            // 
            // gridColumn20
            // 
            this.gridColumn20.AppearanceCell.Options.UseTextOptions = true;
            this.gridColumn20.AppearanceCell.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
            this.gridColumn20.AppearanceHeader.Options.UseTextOptions = true;
            this.gridColumn20.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
            this.gridColumn20.Caption = "卡号";
            this.gridColumn20.FieldName = "info_stuCardNumber";
            this.gridColumn20.Name = "gridColumn20";
            this.gridColumn20.OptionsColumn.AllowGroup = DevExpress.Utils.DefaultBoolean.False;
            this.gridColumn20.OptionsColumn.AllowIncrementalSearch = false;
            this.gridColumn20.OptionsColumn.AllowMerge = DevExpress.Utils.DefaultBoolean.False;
            this.gridColumn20.OptionsColumn.AllowSort = DevExpress.Utils.DefaultBoolean.True;
            this.gridColumn20.OptionsColumn.ShowInCustomizationForm = false;
            this.gridColumn20.Visible = true;
            this.gridColumn20.VisibleIndex = 2;
            this.gridColumn20.Width = 94;
            // 
            // gridColumn21
            // 
            this.gridColumn21.AppearanceCell.Options.UseTextOptions = true;
            this.gridColumn21.AppearanceCell.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
            this.gridColumn21.AppearanceHeader.Options.UseTextOptions = true;
            this.gridColumn21.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
            this.gridColumn21.Caption = "持卡人";
            this.gridColumn21.FieldName = "info_stuCardHolder";
            this.gridColumn21.Name = "gridColumn21";
            this.gridColumn21.OptionsColumn.AllowGroup = DevExpress.Utils.DefaultBoolean.False;
            this.gridColumn21.OptionsColumn.AllowIncrementalSearch = false;
            this.gridColumn21.OptionsColumn.AllowMerge = DevExpress.Utils.DefaultBoolean.False;
            this.gridColumn21.OptionsColumn.AllowSort = DevExpress.Utils.DefaultBoolean.True;
            this.gridColumn21.OptionsColumn.ShowInCustomizationForm = false;
            this.gridColumn21.Visible = true;
            this.gridColumn21.VisibleIndex = 3;
            this.gridColumn21.Width = 60;
            // 
            // gridColumn22
            // 
            this.gridColumn22.AppearanceCell.Options.UseTextOptions = true;
            this.gridColumn22.AppearanceCell.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
            this.gridColumn22.AppearanceHeader.Options.UseTextOptions = true;
            this.gridColumn22.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
            this.gridColumn22.Caption = "制卡日期";
            this.gridColumn22.DisplayFormat.FormatString = "yyyy-MM-dd HH:mm:ss";
            this.gridColumn22.DisplayFormat.FormatType = DevExpress.Utils.FormatType.DateTime;
            this.gridColumn22.FieldName = "info_stuCardSendDate";
            this.gridColumn22.Name = "gridColumn22";
            this.gridColumn22.OptionsColumn.AllowGroup = DevExpress.Utils.DefaultBoolean.False;
            this.gridColumn22.OptionsColumn.AllowIncrementalSearch = false;
            this.gridColumn22.OptionsColumn.AllowMerge = DevExpress.Utils.DefaultBoolean.False;
            this.gridColumn22.OptionsColumn.AllowSort = DevExpress.Utils.DefaultBoolean.True;
            this.gridColumn22.OptionsColumn.ShowInCustomizationForm = false;
            this.gridColumn22.Visible = true;
            this.gridColumn22.VisibleIndex = 4;
            this.gridColumn22.Width = 155;
            // 
            // gridColumn23
            // 
            this.gridColumn23.AppearanceCell.Options.UseTextOptions = true;
            this.gridColumn23.AppearanceCell.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
            this.gridColumn23.AppearanceHeader.Options.UseTextOptions = true;
            this.gridColumn23.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
            this.gridColumn23.Caption = "gridColumn23";
            this.gridColumn23.FieldName = "info_stuBasicID";
            this.gridColumn23.MinWidth = 10;
            this.gridColumn23.Name = "gridColumn23";
            this.gridColumn23.OptionsColumn.AllowGroup = DevExpress.Utils.DefaultBoolean.False;
            this.gridColumn23.OptionsColumn.AllowIncrementalSearch = false;
            this.gridColumn23.OptionsColumn.AllowMerge = DevExpress.Utils.DefaultBoolean.False;
            this.gridColumn23.OptionsColumn.AllowSort = DevExpress.Utils.DefaultBoolean.True;
            this.gridColumn23.OptionsColumn.ShowInCustomizationForm = false;
            // 
            // gridColumn45
            // 
            this.gridColumn45.Caption = "gridColumn45";
            this.gridColumn45.FieldName = "info_stuCardSeq";
            this.gridColumn45.Name = "gridColumn45";
            // 
            // gridControl_BatchCreate_StuBasicInfo
            // 
            this.gridControl_BatchCreate_StuBasicInfo.Dock = System.Windows.Forms.DockStyle.Fill;
            gridLevelNode1.RelationName = "Level1";
            this.gridControl_BatchCreate_StuBasicInfo.LevelTree.Nodes.AddRange(new DevExpress.XtraGrid.GridLevelNode[] {
            gridLevelNode1});
            this.gridControl_BatchCreate_StuBasicInfo.Location = new System.Drawing.Point(2, 22);
            this.gridControl_BatchCreate_StuBasicInfo.MainView = this.advBandedGridView1;
            this.gridControl_BatchCreate_StuBasicInfo.Name = "gridControl_BatchCreate_StuBasicInfo";
            this.gridControl_BatchCreate_StuBasicInfo.Size = new System.Drawing.Size(460, 376);
            this.gridControl_BatchCreate_StuBasicInfo.TabIndex = 2;
            this.gridControl_BatchCreate_StuBasicInfo.ViewCollection.AddRange(new DevExpress.XtraGrid.Views.Base.BaseView[] {
            this.advBandedGridView1});
            this.gridControl_BatchCreate_StuBasicInfo.Visible = false;
            // 
            // advBandedGridView1
            // 
            this.advBandedGridView1.Bands.AddRange(new DevExpress.XtraGrid.Views.BandedGrid.GridBand[] {
            this.gridBand1});
            this.advBandedGridView1.Columns.AddRange(new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn[] {
            this.gridColumn9,
            this.gridColumn10,
            this.gridColumn11,
            this.gridColumn12,
            this.gridColumn13,
            this.gridColumn14,
            this.gridColumn15,
            this.gridColumn16,
            this.gridColumn17,
            this.gridColumn41,
            this.gridColumn42,
            this.gridColumn43,
            this.gridColumn44});
            this.advBandedGridView1.GridControl = this.gridControl_BatchCreate_StuBasicInfo;
            this.advBandedGridView1.Name = "advBandedGridView1";
            this.advBandedGridView1.OptionsCustomization.AllowFilter = false;
            this.advBandedGridView1.OptionsView.ShowFilterPanelMode = DevExpress.XtraGrid.Views.Base.ShowFilterPanelMode.Never;
            this.advBandedGridView1.OptionsView.ShowGroupPanel = false;
            // 
            // gridBand1
            // 
            this.gridBand1.Caption = "幼儿基本信息";
            this.gridBand1.Columns.Add(this.gridColumn10);
            this.gridBand1.Columns.Add(this.gridColumn11);
            this.gridBand1.Columns.Add(this.gridColumn41);
            this.gridBand1.Columns.Add(this.gridColumn16);
            this.gridBand1.Columns.Add(this.gridColumn44);
            this.gridBand1.Columns.Add(this.gridColumn15);
            this.gridBand1.Columns.Add(this.gridColumn9);
            this.gridBand1.Columns.Add(this.gridColumn12);
            this.gridBand1.Columns.Add(this.gridColumn42);
            this.gridBand1.Columns.Add(this.gridColumn14);
            this.gridBand1.Columns.Add(this.gridColumn43);
            this.gridBand1.Columns.Add(this.gridColumn13);
            this.gridBand1.Name = "gridBand1";
            this.gridBand1.Width = 441;
            // 
            // 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_stuName";
            this.gridColumn10.Name = "gridColumn10";
            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.True;
            this.gridColumn10.OptionsColumn.FixedWidth = true;
            this.gridColumn10.OptionsColumn.ShowInCustomizationForm = false;
            this.gridColumn10.Visible = true;
            this.gridColumn10.Width = 65;
            // 
            // 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_stuGrade";
            this.gridColumn11.Name = "gridColumn11";
            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.True;
            this.gridColumn11.OptionsColumn.FixedWidth = true;
            this.gridColumn11.OptionsColumn.ShowInCustomizationForm = false;
            this.gridColumn11.Visible = true;
            this.gridColumn11.Width = 51;
            // 
            // gridColumn41
            // 
            this.gridColumn41.AppearanceCell.Options.UseTextOptions = true;
            this.gridColumn41.AppearanceCell.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
            this.gridColumn41.AppearanceHeader.Options.UseTextOptions = true;
            this.gridColumn41.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
            this.gridColumn41.Caption = "家庭电话";
            this.gridColumn41.FieldName = "info_stuFatherLinkPhone";
            this.gridColumn41.Name = "gridColumn41";
            this.gridColumn41.OptionsColumn.AllowGroup = DevExpress.Utils.DefaultBoolean.False;
            this.gridColumn41.OptionsColumn.AllowIncrementalSearch = false;
            this.gridColumn41.OptionsColumn.AllowMerge = DevExpress.Utils.DefaultBoolean.False;
            this.gridColumn41.OptionsColumn.AllowSort = DevExpress.Utils.DefaultBoolean.True;
            this.gridColumn41.OptionsColumn.FixedWidth = true;
            this.gridColumn41.OptionsColumn.ShowInCustomizationForm = false;
            this.gridColumn41.Visible = true;
            this.gridColumn41.Width = 72;
            // 
            // gridColumn16
            // 
            this.gridColumn16.AppearanceCell.Options.UseTextOptions = true;
            this.gridColumn16.AppearanceCell.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
            this.gridColumn16.AppearanceHeader.Options.UseTextOptions = true;
            this.gridColumn16.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
            this.gridColumn16.Caption = "入园时间";
            this.gridColumn16.FieldName = "info_stuEntryDate";
            this.gridColumn16.Name = "gridColumn16";
            this.gridColumn16.OptionsColumn.AllowGroup = DevExpress.Utils.DefaultBoolean.False;
            this.gridColumn16.OptionsColumn.AllowIncrementalSearch = false;
            this.gridColumn16.OptionsColumn.AllowMerge = DevExpress.Utils.DefaultBoolean.False;
            this.gridColumn16.OptionsColumn.AllowSort = DevExpress.Utils.DefaultBoolean.True;
            this.gridColumn16.OptionsColumn.FixedWidth = true;
            this.gridColumn16.OptionsColumn.ShowInCustomizationForm = false;
            this.gridColumn16.Visible = true;
            this.gridColumn16.Width = 72;
            // 
            // gridColumn44
            // 
            this.gridColumn44.AppearanceCell.Options.UseTextOptions = true;
            this.gridColumn44.AppearanceCell.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
            this.gridColumn44.AppearanceHeader.Options.UseTextOptions = true;
            this.gridColumn44.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
            this.gridColumn44.Caption = "电子邮件";
            this.gridColumn44.FieldName = "info_stuEMailAddr";
            this.gridColumn44.MinWidth = 10;
            this.gridColumn44.Name = "gridColumn44";
            this.gridColumn44.OptionsColumn.AllowGroup = DevExpress.Utils.DefaultBoolean.False;
            this.gridColumn44.OptionsColumn.AllowIncrementalSearch = false;
            this.gridColumn44.OptionsColumn.AllowMerge = DevExpress.Utils.DefaultBoolean.False;
            this.gridColumn44.OptionsColumn.AllowSort = DevExpress.Utils.DefaultBoolean.True;
            this.gridColumn44.OptionsColumn.FixedWidth = true;
            this.gridColumn44.OptionsColumn.ShowInCustomizationForm = false;
            this.gridColumn44.Visible = true;
            this.gridColumn44.Width = 89;
            // 
            // gridColumn15
            // 
            this.gridColumn15.AppearanceCell.Options.UseTextOptions = true;
            this.gridColumn15.AppearanceCell.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
            this.gridColumn15.AppearanceHeader.Options.UseTextOptions = true;
            this.gridColumn15.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
            this.gridColumn15.Caption = "托管";
            this.gridColumn15.FieldName = "info_stuEntryStatus";
            this.gridColumn15.Name = "gridColumn15";
            this.gridColumn15.OptionsColumn.AllowGroup = DevExpress.Utils.DefaultBoolean.False;
            this.gridColumn15.OptionsColumn.AllowIncrementalSearch = false;
            this.gridColumn15.OptionsColumn.AllowMerge = DevExpress.Utils.DefaultBoolean.False;
            this.gridColumn15.OptionsColumn.AllowSort = DevExpress.Utils.DefaultBoolean.True;
            this.gridColumn15.OptionsColumn.FixedWidth = true;
            this.gridColumn15.OptionsColumn.ShowInCustomizationForm = false;
            this.gridColumn15.Visible = true;
            this.gridColumn15.Width = 92;
            // 
            // 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_stuNumber";
            this.gridColumn9.MinWidth = 10;
            this.gridColumn9.Name = "gridColumn9";
            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.True;
            this.gridColumn9.OptionsColumn.FixedWidth = true;
            this.gridColumn9.OptionsColumn.ShowInCustomizationForm = false;
            this.gridColumn9.RowIndex = 1;
            this.gridColumn9.Visible = true;
            this.gridColumn9.Width = 65;
            // 
            // 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_stuClass";
            this.gridColumn12.Name = "gridColumn12";
            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.True;
            this.gridColumn12.OptionsColumn.FixedWidth = true;
            this.gridColumn12.OptionsColumn.ShowInCustomizationForm = false;
            this.gridColumn12.RowIndex = 1;
            this.gridColumn12.Visible = true;
            this.gridColumn12.Width = 51;
            // 
            // gridColumn42
            // 
            this.gridColumn42.AppearanceCell.Options.UseTextOptions = true;
            this.gridColumn42.AppearanceCell.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
            this.gridColumn42.AppearanceHeader.Options.UseTextOptions = true;
            this.gridColumn42.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
            this.gridColumn42.Caption = "家庭住址";
            this.gridColumn42.FieldName = "info_stuFamilyAddr";
            this.gridColumn42.MinWidth = 10;
            this.gridColumn42.Name = "gridColumn42";
            this.gridColumn42.OptionsColumn.AllowGroup = DevExpress.Utils.DefaultBoolean.False;
            this.gridColumn42.OptionsColumn.AllowIncrementalSearch = false;
            this.gridColumn42.OptionsColumn.AllowMerge = DevExpress.Utils.DefaultBoolean.False;
            this.gridColumn42.OptionsColumn.AllowSort = DevExpress.Utils.DefaultBoolean.True;
            this.gridColumn42.OptionsColumn.FixedWidth = true;
            this.gridColumn42.OptionsColumn.ShowInCustomizationForm = false;
            this.gridColumn42.RowIndex = 1;
            this.gridColumn42.Visible = true;
            this.gridColumn42.Width = 72;
            // 
            // gridColumn14
            // 
            this.gridColumn14.AppearanceCell.Options.UseTextOptions = true;
            this.gridColumn14.AppearanceCell.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
            this.gridColumn14.AppearanceHeader.Options.UseTextOptions = true;
            this.gridColumn14.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
            this.gridColumn14.Caption = "生日";
            this.gridColumn14.FieldName = "info_stuBirthDay";
            this.gridColumn14.Name = "gridColumn14";
            this.gridColumn14.OptionsColumn.AllowGroup = DevExpress.Utils.DefaultBoolean.False;
            this.gridColumn14.OptionsColumn.AllowIncrementalSearch = false;
            this.gridColumn14.OptionsColumn.AllowMerge = DevExpress.Utils.DefaultBoolean.False;
            this.gridColumn14.OptionsColumn.AllowSort = DevExpress.Utils.DefaultBoolean.True;
            this.gridColumn14.OptionsColumn.FixedWidth = true;
            this.gridColumn14.OptionsColumn.ShowInCustomizationForm = false;
            this.gridColumn14.RowIndex = 1;
            this.gridColumn14.Visible = true;
            this.gridColumn14.Width = 72;
            // 
            // gridColumn43
            // 
            this.gridColumn43.AppearanceCell.Options.UseTextOptions = true;
            this.gridColumn43.AppearanceCell.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
            this.gridColumn43.AppearanceHeader.Options.UseTextOptions = true;
            this.gridColumn43.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
            this.gridColumn43.Caption = "邮编";
            this.gridColumn43.FieldName = "info_stuZipCode";
            this.gridColumn43.Name = "gridColumn43";
            this.gridColumn43.OptionsColumn.AllowGroup = DevExpress.Utils.DefaultBoolean.False;
            this.gridColumn43.OptionsColumn.AllowIncrementalSearch = false;
            this.gridColumn43.OptionsColumn.AllowMerge = DevExpress.Utils.DefaultBoolean.False;
            this.gridColumn43.OptionsColumn.AllowSort = DevExpress.Utils.DefaultBoolean.True;
            this.gridColumn43.OptionsColumn.FixedWidth = true;
            this.gridColumn43.OptionsColumn.ShowInCustomizationForm = false;
            this.gridColumn43.RowIndex = 1;
            this.gridColumn43.Visible = true;
            this.gridColumn43.Width = 89;
            // 
            // 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_stuGender";
            this.gridColumn13.Name = "gridColumn13";
            this.gridColumn13.OptionsColumn.AllowGroup = DevExpress.Utils.DefaultBoolean.False;
            this.gridColumn13.OptionsColumn.AllowIncrementalSearch = false;
            this.gridColumn13.OptionsColumn.AllowMerge = DevExpress.Utils.DefaultBoolean.False;
            this.gridColumn13.OptionsColumn.AllowSort = DevExpress.Utils.DefaultBoolean.True;
            this.gridColumn13.OptionsColumn.FixedWidth = true;
            this.gridColumn13.OptionsColumn.ShowInCustomizationForm = false;
            this.gridColumn13.RowIndex = 1;
            this.gridColumn13.Visible = true;
            this.gridColumn13.Width = 92;
            // 
            // gridColumn17
            // 
            this.gridColumn17.Caption = "gridColumn17";
            this.gridColumn17.FieldName = "info_stuID";
            this.gridColumn17.Name = "gridColumn17";
            this.gridColumn17.OptionsColumn.AllowGroup = DevExpress.Utils.DefaultBoolean.False;
            this.gridColumn17.OptionsColumn.AllowIncrementalSearch = false;
            this.gridColumn17.OptionsColumn.AllowMerge = DevExpress.Utils.DefaultBoolean.False;
            this.gridColumn17.OptionsColumn.AllowSort = DevExpress.Utils.DefaultBoolean.True;
            this.gridColumn17.OptionsColumn.FixedWidth = true;
            this.gridColumn17.OptionsColumn.ShowInCustomizationForm = false;
            this.gridColumn17.Visible = true;
            this.gridColumn17.Width = 147;
            // 
            // gridControl_BatchCreate_Class
            // 
            this.gridControl_BatchCreate_Class.Dock = System.Windows.Forms.DockStyle.Fill;
            this.gridControl_BatchCreate_Class.Location = new System.Drawing.Point(2, 22);
            this.gridControl_BatchCreate_Class.MainView = this.gridView2;
            this.gridControl_BatchCreate_Class.Name = "gridControl_BatchCreate_Class";
            this.gridControl_BatchCreate_Class.Size = new System.Drawing.Size(460, 376);
            this.gridControl_BatchCreate_Class.TabIndex = 1;
            this.gridControl_BatchCreate_Class.ViewCollection.AddRange(new DevExpress.XtraGrid.Views.Base.BaseView[] {
            this.gridView2});
            this.gridControl_BatchCreate_Class.Visible = false;
            // 
            // gridView2
            // 
            this.gridView2.Columns.AddRange(new DevExpress.XtraGrid.Columns.GridColumn[] {
            this.gridColumn4,
            this.gridColumn5,
            this.gridColumn6,
            this.gridColumn7,
            this.gridColumn8,
            this.gridColumn39,
            this.gridColumn40});
            this.gridView2.GridControl = this.gridControl_BatchCreate_Class;
            this.gridView2.Name = "gridView2";
            this.gridView2.OptionsCustomization.AllowFilter = false;
            this.gridView2.OptionsView.ShowFilterPanelMode = DevExpress.XtraGrid.Views.Base.ShowFilterPanelMode.Never;
            this.gridView2.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 = "info_classNumber";
            this.gridColumn4.Name = "gridColumn4";
            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.True;
            this.gridColumn4.OptionsColumn.ShowInCustomizationForm = false;
            this.gridColumn4.Visible = true;
            this.gridColumn4.VisibleIndex = 0;
            this.gridColumn4.Width = 93;
            // 
            // 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_className";
            this.gridColumn5.Name = "gridColumn5";
            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.True;
            this.gridColumn5.OptionsColumn.ShowInCustomizationForm = false;
            this.gridColumn5.Visible = true;
            this.gridColumn5.VisibleIndex = 1;
            this.gridColumn5.Width = 96;
            // 
            // 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_gradeNumber";
            this.gridColumn6.Name = "gridColumn6";
            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.True;
            this.gridColumn6.OptionsColumn.ShowInCustomizationForm = false;
            this.gridColumn6.Visible = true;
            this.gridColumn6.VisibleIndex = 2;
            this.gridColumn6.Width = 100;
            // 
            // 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_machineAddr";
            this.gridColumn7.Name = "gridColumn7";
            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.True;
            this.gridColumn7.OptionsColumn.ShowInCustomizationForm = false;
            this.gridColumn7.Visible = true;
            this.gridColumn7.VisibleIndex = 3;
            this.gridColumn7.Width = 66;
            // 
            // 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_classRemark";
            this.gridColumn8.Name = "gridColumn8";
            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.True;
            this.gridColumn8.OptionsColumn.ShowInCustomizationForm = false;
            this.gridColumn8.Visible = true;
            this.gridColumn8.VisibleIndex = 4;
            this.gridColumn8.Width = 83;
            // 
            // gridColumn39
            // 
            this.gridColumn39.Caption = "gridColumn39";
            this.gridColumn39.FieldName = "ClassNumber";
            this.gridColumn39.Name = "gridColumn39";
            // 
            // gridColumn40
            // 
            this.gridColumn40.Caption = "gridColumn40";
            this.gridColumn40.FieldName = "GradeNumber";
            this.gridColumn40.Name = "gridColumn40";
            // 
            // gridControl_BatchCreate_Grade
            // 
            this.gridControl_BatchCreate_Grade.Dock = System.Windows.Forms.DockStyle.Fill;
            this.gridControl_BatchCreate_Grade.Location = new System.Drawing.Point(2, 22);
            this.gridControl_BatchCreate_Grade.MainView = this.gridView1;
            this.gridControl_BatchCreate_Grade.Name = "gridControl_BatchCreate_Grade";
            this.gridControl_BatchCreate_Grade.Size = new System.Drawing.Size(460, 376);
            this.gridControl_BatchCreate_Grade.TabIndex = 0;
            this.gridControl_BatchCreate_Grade.ViewCollection.AddRange(new DevExpress.XtraGrid.Views.Base.BaseView[] {
            this.gridView1});
            this.gridControl_BatchCreate_Grade.Visible = false;
            // 
            // gridView1
            // 
            this.gridView1.Columns.AddRange(new DevExpress.XtraGrid.Columns.GridColumn[] {
            this.gridColumn1,
            this.gridColumn2,
            this.gridColumn3,
            this.gridColumn38});
            this.gridView1.GridControl = this.gridControl_BatchCreate_Grade;
            this.gridView1.Name = "gridView1";
            this.gridView1.OptionsCustomization.AllowFilter = false;
            this.gridView1.OptionsView.ShowFilterPanelMode = DevExpress.XtraGrid.Views.Base.ShowFilterPanelMode.Never;
            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_gradeNumber";
            this.gridColumn1.Name = "gridColumn1";
            this.gridColumn1.OptionsColumn.AllowGroup = DevExpress.Utils.DefaultBoolean.False;
            this.gridColumn1.OptionsColumn.AllowIncrementalSearch = false;
            this.gridColumn1.OptionsColumn.AllowMerge = DevExpress.Utils.DefaultBoolean.False;
            this.gridColumn1.OptionsColumn.AllowMove = false;
            this.gridColumn1.OptionsColumn.AllowSort = DevExpress.Utils.DefaultBoolean.True;
            this.gridColumn1.OptionsColumn.ShowInCustomizationForm = false;
            this.gridColumn1.Visible = true;
            this.gridColumn1.VisibleIndex = 0;
            this.gridColumn1.Width = 146;
            // 
            // 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_gradeName";
            this.gridColumn2.Name = "gridColumn2";
            this.gridColumn2.OptionsColumn.AllowGroup = DevExpress.Utils.DefaultBoolean.False;
            this.gridColumn2.OptionsColumn.AllowIncrementalSearch = false;
            this.gridColumn2.OptionsColumn.AllowMerge = DevExpress.Utils.DefaultBoolean.False;
            this.gridColumn2.OptionsColumn.AllowMove = false;
            this.gridColumn2.OptionsColumn.AllowSort = DevExpress.Utils.DefaultBoolean.True;
            this.gridColumn2.OptionsColumn.ShowInCustomizationForm = false;
            this.gridColumn2.Visible = true;
            this.gridColumn2.VisibleIndex = 1;
            this.gridColumn2.Width = 168;
            // 
            // 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_gradeRemark";
            this.gridColumn3.Name = "gridColumn3";
            this.gridColumn3.OptionsColumn.AllowGroup = DevExpress.Utils.DefaultBoolean.False;
            this.gridColumn3.OptionsColumn.AllowIncrementalSearch = false;
            this.gridColumn3.OptionsColumn.AllowMerge = DevExpress.Utils.DefaultBoolean.False;
            this.gridColumn3.OptionsColumn.AllowMove = false;
            this.gridColumn3.OptionsColumn.AllowSort = DevExpress.Utils.DefaultBoolean.True;
            this.gridColumn3.OptionsColumn.ShowInCustomizationForm = false;
            this.gridColumn3.Visible = true;
            this.gridColumn3.VisibleIndex = 2;
            this.gridColumn3.Width = 340;
            // 
            // gridColumn38
            // 
            this.gridColumn38.Caption = "gridColumn38";
            this.gridColumn38.FieldName = "GradeNumber";
            this.gridColumn38.Name = "gridColumn38";
            // 
            // xtraTabPage_UpdateGrade
            // 
            this.xtraTabPage_UpdateGrade.Appearance.PageClient.BackColor = System.Drawing.Color.WhiteSmoke;
            this.xtraTabPage_UpdateGrade.Appearance.PageClient.Options.UseBackColor = true;
            this.xtraTabPage_UpdateGrade.Controls.Add(this.splitContainerControl2);
            this.xtraTabPage_UpdateGrade.Controls.Add(this.splitterControl1);
            this.xtraTabPage_UpdateGrade.Name = "xtraTabPage_UpdateGrade";
            this.xtraTabPage_UpdateGrade.PageVisible = false;
            this.xtraTabPage_UpdateGrade.Size = new System.Drawing.Size(682, 400);
            this.xtraTabPage_UpdateGrade.Text = "年班升级";
            // 
            // splitContainerControl2
            // 
            this.splitContainerControl2.Dock = System.Windows.Forms.DockStyle.Fill;
            this.splitContainerControl2.Location = new System.Drawing.Point(5, 0);
            this.splitContainerControl2.Name = "splitContainerControl2";
            this.splitContainerControl2.Panel1.Controls.Add(this.groupControl9);
            this.splitContainerControl2.Panel1.Text = "splitContainerControl2_Panel1";
            this.splitContainerControl2.Panel2.Controls.Add(this.groupControl10);
            this.splitContainerControl2.Panel2.Controls.Add(this.panelControl1);
            this.splitContainerControl2.Panel2.Text = "splitContainerControl2_Panel2";
            this.splitContainerControl2.Size = new System.Drawing.Size(677, 400);
            this.splitContainerControl2.SplitterPosition = 220;
            this.splitContainerControl2.TabIndex = 1;
            this.splitContainerControl2.Text = "splitContainerControl2";
            // 
            // groupControl9
            // 
            this.groupControl9.AppearanceCaption.Font = new System.Drawing.Font("Tahoma", 9F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.groupControl9.AppearanceCaption.Options.UseFont = true;
            this.groupControl9.Controls.Add(this.comboBoxEdit_ClassNumber);
            this.groupControl9.Controls.Add(this.notePanel_ClassNumber);
            this.groupControl9.Controls.Add(this.comboBoxEdit_GradeNumber);
            this.groupControl9.Controls.Add(this.notePanel_GradeNumber);
            this.groupControl9.Controls.Add(this.notePanel12);
            this.groupControl9.Controls.Add(this.textEdit_DestClass);
            this.groupControl9.Controls.Add(this.notePanel_DestClass);
            this.groupControl9.Controls.Add(this.comboBoxEdit_SrcClass);
            this.groupControl9.Controls.Add(this.notePanel_SrcClass);
            this.groupControl9.Controls.Add(this.textEdit_DestGrade);
            this.groupControl9.Controls.Add(this.notePanel_DestGrade);
            this.groupControl9.Controls.Add(this.comboBoxEdit_SrcGrade);
            this.groupControl9.Controls.Add(this.notePanel_SrcGrade);
            this.groupControl9.Dock = System.Windows.Forms.DockStyle.Top;
            this.groupControl9.Location = new System.Drawing.Point(0, 0);
            this.groupControl9.Name = "groupControl9";
            this.groupControl9.Size = new System.Drawing.Size(220, 256);
            this.groupControl9.TabIndex = 0;
            this.groupControl9.Text = "年班变更";
            // 
            // comboBoxEdit_ClassNumber
            // 
            this.comboBoxEdit_ClassNumber.EditValue = "";
            this.comboBoxEdit_ClassNumber.Location = new System.Drawing.Point(112, 152);
            this.comboBoxEdit_ClassNumber.Name = "comboBoxEdit_ClassNumber";
            this.comboBoxEdit_ClassNumber.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
            new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
            this.comboBoxEdit_ClassNumber.Properties.TextEditStyle = DevExpress.XtraEditors.Controls.TextEditStyles.DisableTextEditor;
            this.comboBoxEdit_ClassNumber.Size = new System.Drawing.Size(88, 20);
            this.comboBoxEdit_ClassNumber.TabIndex = 39;
            this.comboBoxEdit_ClassNumber.SelectedIndexChanged += new System.EventHandler(this.comboBoxEdit_ClassNumber_SelectedIndexChanged);
            // 
            // notePanel_ClassNumber
            // 
            this.notePanel_ClassNumber.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(224)))), ((int)(((byte)(224)))), ((int)(((byte)(224)))));
            this.notePanel_ClassNumber.BackColor2 = System.Drawing.Color.DarkGray;
            this.notePanel_ClassNumber.Font = new System.Drawing.Font("Tahoma", 8F);
            this.notePanel_ClassNumber.ForeColor = System.Drawing.Color.Black;
            this.notePanel_ClassNumber.GradientMode = System.Drawing.Drawing2D.LinearGradientMode.Vertical;
            this.notePanel_ClassNumber.Location = new System.Drawing.Point(16, 152);
            this.notePanel_ClassNumber.MaxRows = 5;
            this.notePanel_ClassNumber.Name = "notePanel_ClassNumber";
            this.notePanel_ClassNumber.ParentAutoHeight = true;
            this.notePanel_ClassNumber.Size = new System.Drawing.Size(80, 22);
            this.notePanel_ClassNumber.TabIndex = 38;
            this.notePanel_ClassNumber.TabStop = false;
            this.notePanel_ClassNumber.Text = " 班级号:";
            // 
            // comboBoxEdit_GradeNumber
            // 
            this.comboBoxEdit_GradeNumber.EditValue = "";
            this.comboBoxEdit_GradeNumber.Location = new System.Drawing.Point(112, 56);
            this.comboBoxEdit_GradeNumber.Name = "comboBoxEdit_GradeNumber";
            this.comboBoxEdit_GradeNumber.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
            new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
            this.comboBoxEdit_GradeNumber.Properties.TextEditStyle = DevExpress.XtraEditors.Controls.TextEditStyles.DisableTextEditor;
            this.comboBoxEdit_GradeNumber.Size = new System.Drawing.Size(88, 20);
            this.comboBoxEdit_GradeNumber.TabIndex = 37;
            this.comboBoxEdit_GradeNumber.SelectedIndexChanged += new System.EventHandler(this.comboBoxEdit_GradeNumber_SelectedIndexChanged);
            // 
            // notePanel_GradeNumber
            // 
            this.notePanel_GradeNumber.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(224)))), ((int)(((byte)(224)))), ((int)(((byte)(224)))));
            this.notePanel_GradeNumber.BackColor2 = System.Drawing.Color.DarkGray;
            this.notePanel_GradeNumber.Font = new System.Drawing.Font("Tahoma", 8F);
            this.notePanel_GradeNumber.ForeColor = System.Drawing.Color.Black;
            this.notePanel_GradeNumber.GradientMode = System.Drawing.Drawing2D.LinearGradientMode.Vertical;
            this.notePanel_GradeNumber.Location = new System.Drawing.Point(16, 56);
            this.notePanel_GradeNumber.MaxRows = 5;
            this.notePanel_GradeNumber.Name = "notePanel_GradeNumber";
            this.notePanel_GradeNumber.ParentAutoHeight = true;
            this.notePanel_GradeNumber.Size = new System.Drawing.Size(80, 22);
            this.notePanel_GradeNumber.TabIndex = 36;
            this.notePanel_GradeNumber.TabStop = false;
            this.notePanel_GradeNumber.Text = " 年级号:";
            // 
            // notePanel12
            // 
            this.notePanel12.BackColor = System.Drawing.Color.LightGoldenrodYellow;
            this.notePanel12.Dock = System.Windows.Forms.DockStyle.Top;
            this.notePanel12.ForeColor = System.Drawing.Color.OrangeRed;
            this.notePanel12.GradientMode = System.Drawing.Drawing2D.LinearGradientMode.Vertical;
            this.notePanel12.Location = new System.Drawing.Point(2, 22);
            this.notePanel12.MaxRows = 5;
            this.notePanel12.Name = "notePanel12";
            this.notePanel12.ParentAutoHeight = true;
            this.notePanel12.Size = new System.Drawing.Size(216, 23);
            this.notePanel12.TabIndex = 35;
            this.notePanel12.TabStop = false;
            this.notePanel12.Text = "整体调整";
            // 
            // textEdit_DestClass
            // 
            this.textEdit_DestClass.EditValue = "";
            this.textEdit_DestClass.Location = new System.Drawing.Point(112, 216);
            this.textEdit_DestClass.Name = "textEdit_DestClass";
            this.textEdit_DestClass.Size = new System.Drawing.Size(88, 20);
            this.textEdit_DestClass.TabIndex = 34;
            this.textEdit_DestClass.KeyDown += new System.Windows.Forms.KeyEventHandler(this.textEdit_DestClass_KeyDown);
            // 
            // notePanel_DestClass
            // 
            this.notePanel_DestClass.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(224)))), ((int)(((byte)(224)))), ((int)(((byte)(224)))));
            this.notePanel_DestClass.BackColor2 = System.Drawing.Color.DarkGray;
            this.notePanel_DestClass.Font = new System.Drawing.Font("Tahoma", 8F);
            this.notePanel_DestClass.ForeColor = System.Drawing.Color.Black;
            this.notePanel_DestClass.GradientMode = System.Drawing.Drawing2D.LinearGradientMode.Vertical;
            this.notePanel_DestClass.Location = new System.Drawing.Point(16, 216);
            this.notePanel_DestClass.MaxRows = 5;
            this.notePanel_DestClass.Name = "notePanel_DestClass";
            this.notePanel_DestClass.ParentAutoHeight = true;
            this.notePanel_DestClass.Size = new System.Drawing.Size(80, 22);
            this.notePanel_DestClass.TabIndex = 33;
            this.notePanel_DestClass.TabStop = false;
            this.notePanel_DestClass.Text = "现班级名:";
            // 
            // comboBoxEdit_SrcClass
            // 
            this.comboBoxEdit_SrcClass.EditValue = "";
            this.comboBoxEdit_SrcClass.Location = new System.Drawing.Point(112, 184);
            this.comboBoxEdit_SrcClass.Name = "comboBoxEdit_SrcClass";
            this.comboBoxEdit_SrcClass.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
            new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
            this.comboBoxEdit_SrcClass.Properties.TextEditStyle = DevExpress.XtraEditors.Controls.TextEditStyles.DisableTextEditor;
            this.comboBoxEdit_SrcClass.Size = new System.Drawing.Size(88, 20);
            this.comboBoxEdit_SrcClass.TabIndex = 32;
            // 
            // notePanel_SrcClass
            // 
            this.notePanel_SrcClass.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(224)))), ((int)(((byte)(224)))), ((int)(((byte)(224)))));
            this.notePanel_SrcClass.BackColor2 = System.Drawing.Color.DarkGray;
            this.notePanel_SrcClass.Font = new System.Drawing.Font("Tahoma", 8F);
            this.notePanel_SrcClass.ForeColor = System.Drawing.Color.Black;
            this.notePanel_SrcClass.GradientMode = System.Drawing.Drawing2D.LinearGradientMode.Vertical;
            this.notePanel_SrcClass.Location = new System.Drawing.Point(16, 184);
            this.notePanel_SrcClass.MaxRows = 5;
            this.notePanel_SrcClass.Name = "notePanel_SrcClass";
            this.notePanel_SrcClass.ParentAutoHeight = true;
            this.notePanel_SrcClass.Size = new System.Drawing.Size(80, 22);
            this.notePanel_SrcClass.TabIndex = 31;
            this.notePanel_SrcClass.TabStop = false;
            this.notePanel_SrcClass.Text = "原班级名:";
            // 
            // textEdit_DestGrade
            // 
            this.textEdit_DestGrade.EditValue = "";
            this.textEdit_DestGrade.Location = new System.Drawing.Point(112, 120);
            this.textEdit_DestGrade.Name = "textEdit_DestGrade";
            this.textEdit_DestGrade.Size = new System.Drawing.Size(88, 20);
            this.textEdit_DestGrade.TabIndex = 30;
            this.textEdit_DestGrade.KeyDown += new System.Windows.Forms.KeyEventHandler(this.textEdit_DestGrade_KeyDown);
            // 
            // notePanel_DestGrade
            // 
            this.notePanel_DestGrade.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(224)))), ((int)(((byte)(224)))), ((int)(((byte)(224)))));
            this.notePanel_DestGrade.BackColor2 = System.Drawing.Color.DarkGray;
            this.notePanel_DestGrade.Font = new System.Drawing.Font("Tahoma", 8F);
            this.notePanel_DestGrade.ForeColor = System.Drawing.Color.Black;
            this.notePanel_DestGrade.GradientMode = System.Drawing.Drawing2D.LinearGradientMode.Vertical;
            this.notePanel_DestGrade.Location = new System.Drawing.Point(16, 120);
            this.notePanel_DestGrade.MaxRows = 5;
            this.notePanel_DestGrade.Name = "notePanel_DestGrade";
            this.notePanel_DestGrade.ParentAutoHeight = true;
            this.notePanel_DestGrade.Size = new System.Drawing.Size(80, 22);
            this.notePanel_DestGrade.TabIndex = 29;
            this.notePanel_DestGrade.TabStop = false;
            this.notePanel_DestGrade.Text = "现年级名:";
            // 
            // comboBoxEdit_SrcGrade
            // 
            this.comboBoxEdit_SrcGrade.EditValue = "";
            this.comboBoxEdit_SrcGrade.Location = new System.Drawing.Point(112, 88);
            this.comboBoxEdit_SrcGrade.Name = "comboBoxEdit_SrcGrade";
            this.comboBoxEdit_SrcGrade.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
            new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
            this.comboBoxEdit_SrcGrade.Properties.TextEditStyle = DevExpress.XtraEditors.Controls.TextEditStyles.DisableTextEditor;
            this.comboBoxEdit_SrcGrade.Size = new System.Drawing.Size(88, 20);
            this.comboBoxEdit_SrcGrade.TabIndex = 28;
            // 
            // notePanel_SrcGrade
            // 
            this.notePanel_SrcGrade.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(224)))), ((int)(((byte)(224)))), ((int)(((byte)(224)))));
            this.notePanel_SrcGrade.BackColor2 = System.Drawing.Color.DarkGray;
            this.notePanel_SrcGrade.Font = new System.Drawing.Font("Tahoma", 8F);
            this.notePanel_SrcGrade.ForeColor = System.Drawing.Color.Black;
            this.notePanel_SrcGrade.GradientMode = System.Drawing.Drawing2D.LinearGradientMode.Vertical;
            this.notePanel_SrcGrade.Location = new System.Drawing.Point(16, 88);
            this.notePanel_SrcGrade.MaxRows = 5;
            this.notePanel_SrcGrade.Name = "notePanel_SrcGrade";
            this.notePanel_SrcGrade.ParentAutoHeight = true;
            this.notePanel_SrcGrade.Size = new System.Drawing.Size(80, 22);
            this.notePanel_SrcGrade.TabIndex = 22;
            this.notePanel_SrcGrade.TabStop = false;
            this.notePanel_SrcGrade.Text = "原年级名:";
            // 
            // groupControl10
            // 
            this.groupControl10.AppearanceCaption.Font = new System.Drawing.Font("Tahoma", 9F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.groupControl10.AppearanceCaption.Options.UseFont = true;
            this.groupControl10.Controls.Add(this.gridControl_StudentAdjust);
            this.groupControl10.Controls.Add(this.notePanel13);
            this.groupControl10.Dock = System.Windows.Forms.DockStyle.Fill;
            this.groupControl10.Location = new System.Drawing.Point(0, 40);
            this.groupControl10.Name = "groupControl10";
            this.groupControl10.Size = new System.Drawing.Size(452, 360);
            this.groupControl10.TabIndex = 1;
            this.groupControl10.Text = "不匹配学生信息列表";
            // 
            // gridControl_StudentAdjust
            // 
            this.gridControl_StudentAdjust.Dock = System.Windows.Forms.DockStyle.Fill;
            this.gridControl_StudentAdjust.Location = new System.Drawing.Point(2, 45);
            this.gridControl_StudentAdjust.MainView = this.gridView3;
            this.gridControl_StudentAdjust.Name = "gridControl_StudentAdjust";
            this.gridControl_StudentAdjust.RepositoryItems.AddRange(new DevExpress.XtraEditors.Repository.RepositoryItem[] {
            this.repositoryItemCheckEdit1});
            this.gridControl_StudentAdjust.Size = new System.Drawing.Size(448, 313);
            this.gridControl_StudentAdjust.TabIndex = 37;
            this.gridControl_StudentAdjust.ViewCollection.AddRange(new DevExpress.XtraGrid.Views.Base.BaseView[] {
            this.gridView3});
            this.gridControl_StudentAdjust.DoubleClick += new System.EventHandler(this.gridControl_StudentAdjust_DoubleClick);
            // 
            // gridView3
            // 
            this.gridView3.Columns.AddRange(new DevExpress.XtraGrid.Columns.GridColumn[] {
            this.gridColumn49,
            this.gridColumn51,
            this.gridColumn54,
            this.gridColumn55,
            this.gridColumn56});
            this.gridView3.GridControl = this.gridControl_StudentAdjust;
            this.gridView3.Name = "gridView3";
            this.gridView3.OptionsCustomization.AllowFilter = false;
            this.gridView3.OptionsView.ShowAutoFilterRow = true;
            this.gridView3.OptionsView.ShowFilterPanelMode = DevExpress.XtraGrid.Views.Base.ShowFilterPanelMode.Never;
            this.gridView3.OptionsView.ShowGroupPanel = false;
            // 
            // gridColumn49
            // 
            this.gridColumn49.AppearanceCell.Options.UseTextOptions = true;
            this.gridColumn49.AppearanceCell.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
            this.gridColumn49.AppearanceHeader.Options.UseTextOptions = true;
            this.gridColumn49.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
            this.gridColumn49.Caption = "是否新生";
            this.gridColumn49.ColumnEdit = this.repositoryItemCheckEdit1;
            this.gridColumn49.FieldName = "info_checkType";
            this.gridColumn49.Name = "gridColumn49";
            this.gridColumn49.OptionsColumn.AllowGroup = DevExpress.Utils.DefaultBoolean.False;
            this.gridColumn49.OptionsColumn.AllowIncrementalSearch = false;
            this.gridColumn49.OptionsColumn.AllowMerge = DevExpress.Utils.DefaultBoolean.False;
            this.gridColumn49.OptionsColumn.AllowMove = false;
            this.gridColumn49.OptionsColumn.AllowSort = DevExpress.Utils.DefaultBoolean.True;
            this.gridColumn49.OptionsColumn.ShowInCustomizationForm = false;
            this.gridColumn49.Visible = true;
            this.gridColumn49.VisibleIndex = 0;
            this.gridColumn49.Width = 71;
            // 
            // repositoryItemCheckEdit1
            // 
            this.repositoryItemCheckEdit1.AutoHeight = false;
            this.repositoryItemCheckEdit1.Name = "repositoryItemCheckEdit1";
            this.repositoryItemCheckEdit1.NullStyle = DevExpress.XtraEditors.Controls.StyleIndeterminate.Unchecked;
            // 
            // gridColumn51
            // 
            this.gridColumn51.AppearanceCell.Options.UseTextOptions = true;
            this.gridColumn51.AppearanceCell.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
            this.gridColumn51.AppearanceHeader.Options.UseTextOptions = true;
            this.gridColumn51.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
            this.gridColumn51.Caption = "姓名";
            this.gridColumn51.FieldName = "info_stuName";
            this.gridColumn51.Name = "gridColumn51";
            this.gridColumn51.OptionsColumn.AllowEdit = false;
            this.gridColumn51.OptionsColumn.AllowFocus = false;
            this.gridColumn51.OptionsColumn.AllowGroup = DevExpress.Utils.DefaultBoolean.False;
            this.gridColumn51.OptionsColumn.AllowIncrementalSearch = false;
            this.gridColumn51.OptionsColumn.AllowMerge = DevExpress.Utils.DefaultBoolean.False;
            this.gridColumn51.OptionsColumn.AllowMove = false;
            this.gridColumn51.OptionsColumn.AllowSort = DevExpress.Utils.DefaultBoolean.True;
            this.gridColumn51.OptionsColumn.ReadOnly = true;
            this.gridColumn51.OptionsColumn.ShowInCustomizationForm = false;
            this.gridColumn51.Visible = true;
            this.gridColumn51.VisibleIndex = 1;
            this.gridColumn51.Width = 48;
            // 
            // gridColumn54
            // 
            this.gridColumn54.AppearanceCell.Options.UseTextOptions = true;
            this.gridColumn54.AppearanceCell.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
            this.gridColumn54.AppearanceHeader.Options.UseTextOptions = true;
            this.gridColumn54.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
            this.gridColumn54.Caption = "年级号";
            this.gridColumn54.FieldName = "info_stuGrade";
            this.gridColumn54.Name = "gridColumn54";
            this.gridColumn54.OptionsColumn.AllowEdit = false;
            this.gridColumn54.OptionsColumn.AllowFocus = false;
            this.gridColumn54.OptionsColumn.AllowGroup = DevExpress.Utils.DefaultBoolean.False;
            this.gridColumn54.OptionsColumn.AllowIncrementalSearch = false;
            this.gridColumn54.OptionsColumn.AllowMerge = DevExpress.Utils.DefaultBoolean.False;
            this.gridColumn54.OptionsColumn.AllowMove = false;
            this.gridColumn54.OptionsColumn.AllowSort = DevExpress.Utils.DefaultBoolean.True;
            this.gridColumn54.OptionsColumn.ReadOnly = true;
            this.gridColumn54.OptionsColumn.ShowInCustomizationForm = false;
            this.gridColumn54.Visible = true;
            this.gridColumn54.VisibleIndex = 2;
            this.gridColumn54.Width = 45;
            // 
            // gridColumn55
            // 
            this.gridColumn55.AppearanceCell.Options.UseTextOptions = true;
            this.gridColumn55.AppearanceCell.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
            this.gridColumn55.AppearanceHeader.Options.UseTextOptions = true;
            this.gridColumn55.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
            this.gridColumn55.Caption = "班级号";
            this.gridColumn55.FieldName = "info_stuClass";
            this.gridColumn55.Name = "gridColumn55";
            this.gridColumn55.OptionsColumn.AllowEdit = false;
            this.gridColumn55.OptionsColumn.AllowFocus = false;
            this.gridColumn55.OptionsColumn.AllowGroup = DevExpress.Utils.DefaultBoolean.False;
            this.gridColumn55.OptionsColumn.AllowIncrementalSearch = false;
            this.gridColumn55.OptionsColumn.AllowMerge = DevExpress.Utils.DefaultBoolean.False;
            this.gridColumn55.OptionsColumn.AllowMove = false;
            this.gridColumn55.OptionsColumn.AllowSort = DevExpress.Utils.DefaultBoolean.True;
            this.gridColumn55.OptionsColumn.ReadOnly = true;
            this.gridColumn55.OptionsColumn.ShowInCustomizationForm = false;
            this.gridColumn55.Visible = true;
            this.gridColumn55.VisibleIndex = 3;
            this.gridColumn55.Width = 48;
            // 
            // gridColumn56
            // 
            this.gridColumn56.AppearanceCell.Options.UseTextOptions = true;
            this.gridColumn56.AppearanceCell.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
            this.gridColumn56.AppearanceHeader.Options.UseTextOptions = true;
            this.gridColumn56.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
            this.gridColumn56.Caption = "入园类型";
            this.gridColumn56.FieldName = "info_type";
            this.gridColumn56.Name = "gridColumn56";
            this.gridColumn56.OptionsColumn.AllowEdit = false;
            this.gridColumn56.OptionsColumn.AllowFocus = false;
            this.gridColumn56.OptionsColumn.AllowGroup = DevExpress.Utils.DefaultBoolean.False;
            this.gridColumn56.OptionsColumn.AllowIncrementalSearch = false;
            this.gridColumn56.OptionsColumn.AllowMerge = DevExpress.Utils.DefaultBoolean.False;
            this.gridColumn56.OptionsColumn.AllowMove = false;
            this.gridColumn56.OptionsColumn.AllowSort = DevExpress.Utils.DefaultBoolean.True;
            this.gridColumn56.OptionsColumn.ReadOnly = true;
            this.gridColumn56.OptionsColumn.ShowInCustomizationForm = false;
            this.gridColumn56.Visible = true;
            this.gridColumn56.VisibleIndex = 4;
            this.gridColumn56.Width = 61;
            // 
            // notePanel13
            // 
            this.notePanel13.BackColor = System.Drawing.Color.LightGoldenrodYellow;
            this.notePanel13.Dock = System.Windows.Forms.DockStyle.Top;
            this.notePanel13.ForeColor = System.Drawing.Color.OrangeRed;
            this.notePanel13.GradientMode = System.Drawing.Drawing2D.LinearGradientMode.Vertical;
            this.notePanel13.Location = new System.Drawing.Point(2, 22);
            this.notePanel13.MaxRows = 5;
            this.notePanel13.Name = "notePanel13";
            this.notePanel13.ParentAutoHeight = true;
            this.notePanel13.Size = new System.Drawing.Size(448, 23);
            this.notePanel13.TabIndex = 36;
            this.notePanel13.TabStop = false;
            this.notePanel13.Text = "学生个别调整";
            // 
            // panelControl1
            // 
            this.panelControl1.Controls.Add(this.simpleButton_Submit);
            this.panelControl1.Controls.Add(this.simpleButton_LoadTable);
            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(452, 40);
            this.panelControl1.TabIndex = 0;
            // 
            // simpleButton_Submit
            // 
            this.simpleButton_Submit.Location = new System.Drawing.Point(120, 8);
            this.simpleButton_Submit.Name = "simpleButton_Submit";
            this.simpleButton_Submit.Size = new System.Drawing.Size(96, 23);
            this.simpleButton_Submit.TabIndex = 3;
            this.simpleButton_Submit.Text = "提交调整操作";
            this.simpleButton_Submit.Click += new System.EventHandler(this.simpleButton_Submit_Click);
            // 
            // simpleButton_LoadTable
            // 
            this.simpleButton_LoadTable.Location = new System.Drawing.Point(8, 8);
            this.simpleButton_LoadTable.Name = "simpleButton_LoadTable";
            this.simpleButton_LoadTable.Size = new System.Drawing.Size(104, 23);
            this.simpleButton_LoadTable.TabIndex = 2;
            this.simpleButton_LoadTable.Text = "载入学生调整表";
            this.simpleButton_LoadTable.Click += new System.EventHandler(this.simpleButton_LoadTable_Click);
            // 
            // splitterControl1
            // 
            this.splitterControl1.Location = new System.Drawing.Point(0, 0);
            this.splitterControl1.Name = "splitterControl1";
            this.splitterControl1.Size = new System.Drawing.Size(5, 400);
            this.splitterControl1.TabIndex = 0;
            this.splitterControl1.TabStop = false;
            // 
            // xtraTabPage_TerminalServ
            // 
            this.xtraTabPage_TerminalServ.Appearance.PageClient.BackColor = System.Drawing.Color.WhiteSmoke;
            this.xtraTabPage_TerminalServ.Appearance.PageClient.Options.UseBackColor = true;
            this.xtraTabPage_TerminalServ.Controls.Add(this.gridControl_SessionUser);
            this.xtraTabPage_TerminalServ.Name = "xtraTabPage_TerminalServ";
            this.xtraTabPage_TerminalServ.Size = new System.Drawing.Size(682, 400);
            this.xtraTabPage_TerminalServ.Text = "终端服务管理";
            // 
            // gridControl_SessionUser
            // 
            this.gridControl_SessionUser.Location = new System.Drawing.Point(136, 80);
            this.gridControl_SessionUser.MainView = this.gridView9;
            this.gridControl_SessionUser.Name = "gridControl_SessionUser";
            this.gridControl_SessionUser.Size = new System.Drawing.Size(448, 232);
            this.gridControl_SessionUser.TabIndex = 0;
            this.gridControl_SessionUser.ViewCollection.AddRange(new DevExpress.XtraGrid.Views.Base.BaseView[] {
            this.gridView9,
            this.gridView8});
            // 
            // gridView9
            // 
            this.gridView9.Columns.AddRange(new DevExpress.XtraGrid.Columns.GridColumn[] {
            this.gridColumn50,
            this.gridColumn52,
            this.gridColumn53,
            this.gridColumn57});
            this.gridView9.GridControl = this.gridControl_SessionUser;
            this.gridView9.Name = "gridView9";
            this.gridView9.OptionsCustomization.AllowFilter = false;
            this.gridView9.OptionsView.ShowFilterPanelMode = DevExpress.XtraGrid.Views.Base.ShowFilterPanelMode.Never;
            this.gridView9.OptionsView.ShowGroupPanel = false;
            // 
            // gridColumn50
            // 
            this.gridColumn50.AppearanceCell.Options.UseTextOptions = true;
            this.gridColumn50.AppearanceCell.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
            this.gridColumn50.AppearanceHeader.Options.UseTextOptions = true;
            this.gridColumn50.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
            this.gridColumn50.Caption = "登陆用户";
            this.gridColumn50.FieldName = "session_LoginUser";
            this.gridColumn50.Name = "gridColumn50";
            this.gridColumn50.OptionsColumn.AllowEdit = false;
            this.gridColumn50.OptionsColumn.AllowFocus = false;
            this.gridColumn50.OptionsColumn.AllowGroup = DevExpress.Utils.DefaultBoolean.False;
            this.gridColumn50.OptionsColumn.AllowIncrementalSearch = false;
            this.gridColumn50.OptionsColumn.AllowMerge = DevExpress.Utils.DefaultBoolean.False;
            this.gridColumn50.OptionsColumn.AllowMove = false;
            this.gridColumn50.OptionsColumn.AllowSort = DevExpress.Utils.DefaultBoolean.True;
            this.gridColumn50.OptionsColumn.FixedWidth = true;
            this.gridColumn50.OptionsColumn.ReadOnly = true;
            this.gridColumn50.OptionsColumn.ShowInCustomizationForm = false;
            this.gridColumn50.Visible = true;
            this.gridColumn50.VisibleIndex = 0;
            // 
            // gridColumn52
            // 
            this.gridColumn52.AppearanceCell.Options.UseTextOptions = true;
            this.gridColumn52.AppearanceCell.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
            this.gridColumn52.AppearanceHeader.Options.UseTextOptions = true;
            this.gridColumn52.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
            this.gridColumn52.Caption = "登陆IP";
            this.gridColumn52.FieldName = "session_LoginIP";
            this.gridColumn52.Name = "gridColumn52";
            this.gridColumn52.OptionsColumn.AllowEdit = false;
            this.gridColumn52.OptionsColumn.AllowFocus = false;
            this.gridColumn52.OptionsColumn.AllowGroup = DevExpress.Utils.DefaultBoolean.False;
            this.gridColumn52.OptionsColumn.AllowIncrementalSearch = false;
            this.gridColumn52.OptionsColumn.AllowMerge = DevExpress.Utils.DefaultBoolean.False;
            this.gridColumn52.OptionsColumn.AllowMove = false;
            this.gridColumn52.OptionsColumn.AllowSort = DevExpress.Utils.DefaultBoolean.True;
            this.gridColumn52.OptionsColumn.FixedWidth = true;
            this.gridColumn52.OptionsColumn.ReadOnly = true;
            this.gridColumn52.OptionsColumn.ShowInCustomizationForm = false;
            this.gridColumn52.Visible = true;
            this.gridColumn52.VisibleIndex = 1;
            // 
            // gridColumn53
            // 
            this.gridColumn53.AppearanceCell.Options.UseTextOptions = true;
            this.gridColumn53.AppearanceCell.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
            this.gridColumn53.AppearanceHeader.Options.UseTextOptions = true;
            this.gridColumn53.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
            this.gridColumn53.Caption = "登陆时间";
            this.gridColumn53.FieldName = "session_LoginDate";
            this.gridColumn53.Name = "gridColumn53";
            this.gridColumn53.OptionsColumn.AllowEdit = false;
            this.gridColumn53.OptionsColumn.AllowFocus = false;
            this.gridColumn53.OptionsColumn.AllowGroup = DevExpress.Utils.DefaultBoolean.False;
            this.gridColumn53.OptionsColumn.AllowIncrementalSearch = false;
            this.gridColumn53.OptionsColumn.AllowMerge = DevExpress.Utils.DefaultBoolean.False;
            this.gridColumn53.OptionsColumn.AllowMove = false;
            this.gridColumn53.OptionsColumn.AllowSort = DevExpress.Utils.DefaultBoolean.True;
            this.gridColumn53.OptionsColumn.FixedWidth = true;
            this.gridColumn53.OptionsColumn.ReadOnly = true;
            this.gridColumn53.OptionsColumn.ShowInCustomizationForm = false;
            this.gridColumn53.Visible = true;
            this.gridColumn53.VisibleIndex = 2;
            // 
            // gridColumn57
            // 
            this.gridColumn57.Caption = "MAC地址";
            this.gridColumn57.FieldName = "session_LoginMac";
            this.gridColumn57.Name = "gridColumn57";
            // 
            // gridView8
            // 
            this.gridView8.GridControl = this.gridControl_SessionUser;
            this.gridView8.Name = "gridView8";
            // 
            // xtraTabPage4
            // 
            this.xtraTabPage4.Appearance.PageClient.BackColor = System.Drawing.Color.WhiteSmoke;
            this.xtraTabPage4.Appearance.PageClient.Options.UseBackColor = true;
            this.xtraTabPage4.Controls.Add(this.groupControl11);
            this.xtraTabPage4.Name = "xtraTabPage4";
            this.xtraTabPage4.Size = new System.Drawing.Size(682, 400);
            this.xtraTabPage4.Text = "数据备份";
            // 
            // groupControl11
            // 
            this.groupControl11.Appearance.Font = new System.Drawing.Font("Tahoma", 9F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.groupControl11.Appearance.Options.UseFont = true;
            this.groupControl11.AppearanceCaption.Font = new System.Drawing.Font("Tahoma", 9F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.groupControl11.AppearanceCaption.Options.UseFont = true;
            this.groupControl11.Controls.Add(this.groupControl12);
            this.groupControl11.Controls.Add(this.tbxBackUpRoot);
            this.groupControl11.Controls.Add(this.smbRoot);
            this.groupControl11.Location = new System.Drawing.Point(120, 48);
            this.groupControl11.Name = "groupControl11";
            this.groupControl11.Size = new System.Drawing.Size(448, 280);
            this.groupControl11.TabIndex = 0;
            this.groupControl11.Text = "数据备份";
            // 
            // groupControl12
            // 
            this.groupControl12.Controls.Add(this.rbtDefault);
            this.groupControl12.Controls.Add(this.rbtIdle);
            this.groupControl12.Controls.Add(this.rbtStart);
            this.groupControl12.Controls.Add(this.smbBackUp);
            this.groupControl12.Location = new System.Drawing.Point(32, 64);
            this.groupControl12.Name = "groupControl12";
            this.groupControl12.Size = new System.Drawing.Size(384, 192);
            this.groupControl12.TabIndex = 4;
            this.groupControl12.Text = "备份方案";
            // 
            // rbtDefault
            // 
            this.rbtDefault.Checked = true;
            this.rbtDefault.Location = new System.Drawing.Point(80, 96);
            this.rbtDefault.Name = "rbtDefault";
            this.rbtDefault.Size = new System.Drawing.Size(136, 24);
            this.rbtDefault.TabIndex = 6;
            this.rbtDefault.TabStop = true;
            this.rbtDefault.Text = "系统默认的备份";
            // 
            // rbtIdle
            // 
            this.rbtIdle.Location = new System.Drawing.Point(80, 64);
            this.rbtIdle.Name = "rbtIdle";
            this.rbtIdle.Size = new System.Drawing.Size(200, 24);
            this.rbtIdle.TabIndex = 5;
            this.rbtIdle.Text = "每当CPU闲置时进行备份";
            // 
            // rbtStart
            // 
            this.rbtStart.Location = new System.Drawing.Point(80, 32);
            this.rbtStart.Name = "rbtStart";
            this.rbtStart.Size = new System.Drawing.Size(200, 24);
            this.rbtStart.TabIndex = 4;
            this.rbtStart.Text = "每当重新启动系统时进行备份";
            // 
            // smbBackUp
            // 
            this.smbBackUp.Location = new System.Drawing.Point(136, 136);
            this.smbBackUp.Name = "smbBackUp";
            this.smbBackUp.Size = new System.Drawing.Size(85, 23);
            this.smbBackUp.TabIndex = 3;
            this.smbBackUp.Text = "执行备份";
            this.smbBackUp.Click += new System.EventHandler(this.smbBackUp_Click);
            // 
            // tbxBackUpRoot
            // 
            this.tbxBackUpRoot.Location = new System.Drawing.Point(128, 40);
            this.tbxBackUpRoot.Name = "tbxBackUpRoot";
            this.tbxBackUpRoot.ReadOnly = true;
            this.tbxBackUpRoot.Size = new System.Drawing.Size(288, 22);
            this.tbxBackUpRoot.TabIndex = 3;
            // 
            // smbRoot
            // 
            this.smbRoot.Location = new System.Drawing.Point(32, 40);
            this.smbRoot.Name = "smbRoot";
            this.smbRoot.Size = new System.Drawing.Size(85, 23);
            this.smbRoot.TabIndex = 2;
            this.smbRoot.Text = "备份路径";
            this.smbRoot.Click += new System.EventHandler(this.smbRoot_Click);
            // 
            // xtraTabPage5
            // 
            this.xtraTabPage5.Controls.Add(this.groupBox1);
            this.xtraTabPage5.Name = "xtraTabPage5";
            this.xtraTabPage5.Size = new System.Drawing.Size(682, 400);
            this.xtraTabPage5.Text = "数据上传";
            // 
            // groupBox1
            // 
            this.groupBox1.Controls.Add(this.button1);
            this.groupBox1.Controls.Add(this.label1);
            this.groupBox1.Controls.Add(this.tbxUploadUrl);
            this.groupBox1.Location = new System.Drawing.Point(128, 72);
            this.groupBox1.Name = "groupBox1";
            this.groupBox1.Size = new System.Drawing.Size(432, 216);
            this.groupBox1.TabIndex = 0;
            this.groupBox1.TabStop = false;
            this.groupBox1.Text = "数据上传";
            // 
            // button1
            // 
            this.button1.Location = new System.Drawing.Point(24, 160);
            this.button1.Name = "button1";
            this.button1.Size = new System.Drawing.Size(75, 23);
            this.button1.TabIndex = 2;
            this.button1.Text = "确定";
            this.button1.Click += new System.EventHandler(this.button1_Click);
            // 
            // label1
            // 
            this.label1.Location = new System.Drawing.Point(16, 48);
            this.label1.Name = "label1";
            this.label1.Size = new System.Drawing.Size(40, 23);
            this.label1.TabIndex = 1;
            this.label1.Text = "地址:";
            // 
            // tbxUploadUrl
            // 
            this.tbxUploadUrl.Location = new System.Drawing.Point(60, 46);
            this.tbxUploadUrl.Name = "tbxUploadUrl";
            this.tbxUploadUrl.Size = new System.Drawing.Size(320, 22);
            this.tbxUploadUrl.TabIndex = 0;
            // 
            // xtraTabPage6
            // 
            this.xtraTabPage6.Controls.Add(this.groupControl13);
            this.xtraTabPage6.Name = "xtraTabPage6";
            this.xtraTabPage6.Size = new System.Drawing.Size(682, 400);
            this.xtraTabPage6.Text = "监控配置";
            // 
            // groupControl13
            // 
            this.groupControl13.Controls.Add(this.gridControl1);
            this.groupControl13.Dock = System.Windows.Forms.DockStyle.Fill;
            this.groupControl13.Location = new System.Drawing.Point(0, 0);
            this.groupControl13.Name = "groupControl13";
            this.groupControl13.Size = new System.Drawing.Size(682, 400);
            this.groupControl13.TabIndex = 0;
            this.groupControl13.Text = "摄像机列表(按回车键新增)";
            // 
            // gridControl1
            // 
            this.gridControl1.Dock = System.Windows.Forms.DockStyle.Fill;
            this.gridControl1.Location = new System.Drawing.Point(2, 22);
            this.gridControl1.MainView = this.gridView10;
            this.gridControl1.MenuManager = this.barManager1;
            this.gridControl1.Name = "gridControl1";
            this.gridControl1.RepositoryItems.AddRange(new DevExpress.XtraEditors.Repository.RepositoryItem[] {
            this.repositoryItemComboBox1,
            this.repositoryItemComboBox2,
            this.repositoryItemComboBox3,
            this.repositoryItemButtonEdit1,
            this.repositoryItemButtonEdit2,
            this.repositoryItemComboBox4,
            this.repositoryItemButtonEdit3});
            this.gridControl1.Size = new System.Drawing.Size(678, 376);
            this.gridControl1.TabIndex = 0;
            this.gridControl1.ViewCollection.AddRange(new DevExpress.XtraGrid.Views.Base.BaseView[] {
            this.gridView10});
            // 
            // gridView10
            // 
            this.gridView10.Columns.AddRange(new DevExpress.XtraGrid.Columns.GridColumn[] {
            this.gridColumn58,
            this.gridColumn59,
            this.gridColumn60,
            this.gridColumn61,
            this.gridColumn62,
            this.gridColumn63,
            this.gridColumn64});
            this.gridView10.GridControl = this.gridControl1;
            this.gridView10.Name = "gridView10";
            this.gridView10.OptionsView.ShowGroupPanel = false;
            this.gridView10.KeyDown += new System.Windows.Forms.KeyEventHandler(this.gridView10_KeyDown);
            // 
            // gridColumn58
            // 
            this.gridColumn58.Caption = "门口机";
            this.gridColumn58.ColumnEdit = this.repositoryItemComboBox4;
            this.gridColumn58.FieldName = "machineName";
            this.gridColumn58.Name = "gridColumn58";
            this.gridColumn58.Visible = true;
            this.gridColumn58.VisibleIndex = 0;
            // 
            // repositoryItemComboBox4
            // 
            this.repositoryItemComboBox4.AutoHeight = false;
            this.repositoryItemComboBox4.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
            new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
            this.repositoryItemComboBox4.Name = "repositoryItemComboBox4";
            // 
            // gridColumn59
            // 
            this.gridColumn59.Caption = "摄像机";
            this.gridColumn59.ColumnEdit = this.repositoryItemComboBox1;
            this.gridColumn59.FieldName = "cameraName";
            this.gridColumn59.Name = "gridColumn59";
            this.gridColumn59.Visible = true;
            this.gridColumn59.VisibleIndex = 1;
            // 
            // repositoryItemComboBox1
            // 
            this.repositoryItemComboBox1.AutoHeight = false;
            this.repositoryItemComboBox1.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
            new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
            this.repositoryItemComboBox1.Items.AddRange(new object[] {
            "线路1",
            "线路2",
            "线路3",
            "线路4"});
            this.repositoryItemComboBox1.Name = "repositoryItemComboBox1";
            // 
            // gridColumn60
            // 
            this.gridColumn60.Caption = "摄像机地址";
            this.gridColumn60.FieldName = "cameraAddr";
            this.gridColumn60.Name = "gridColumn60";
            this.gridColumn60.Visible = true;
            this.gridColumn60.VisibleIndex = 2;
            // 
            // gridColumn61
            // 
            this.gridColumn61.Caption = "视频码流";
            this.gridColumn61.ColumnEdit = this.repositoryItemComboBox2;
            this.gridColumn61.FieldName = "cameraStream";
            this.gridColumn61.Name = "gridColumn61";
            this.gridColumn61.Visible = true;
            this.gridColumn61.VisibleIndex = 3;
            // 
            // repositoryItemComboBox2
            // 
            this.repositoryItemComboBox2.AutoHeight = false;
            this.repositoryItemComboBox2.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
            new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
            this.repositoryItemComboBox2.Items.AddRange(new object[] {
            "RTSP"});
            this.repositoryItemComboBox2.Name = "repositoryItemComboBox2";
            // 
            // gridColumn62
            // 
            this.gridColumn62.Caption = "视频编码";
            this.gridColumn62.ColumnEdit = this.repositoryItemComboBox3;
            this.gridColumn62.FieldName = "cameraEncoding";
            this.gridColumn62.Name = "gridColumn62";
            this.gridColumn62.Visible = true;
            this.gridColumn62.VisibleIndex = 4;
            // 
            // repositoryItemComboBox3
            // 
            this.repositoryItemComboBox3.AutoHeight = false;
            this.repositoryItemComboBox3.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
            new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
            this.repositoryItemComboBox3.Items.AddRange(new object[] {
            "H.264"});
            this.repositoryItemComboBox3.Name = "repositoryItemComboBox3";
            // 
            // gridColumn63
            // 
            this.gridColumn63.Caption = "操作1";
            this.gridColumn63.ColumnEdit = this.repositoryItemButtonEdit1;
            this.gridColumn63.FieldName = "op1";
            this.gridColumn63.Name = "gridColumn63";
            this.gridColumn63.ShowButtonMode = DevExpress.XtraGrid.Views.Base.ShowButtonModeEnum.ShowAlways;
            this.gridColumn63.Visible = true;
            this.gridColumn63.VisibleIndex = 5;
            // 
            // repositoryItemButtonEdit1
            // 
            this.repositoryItemButtonEdit1.AutoHeight = false;
            this.repositoryItemButtonEdit1.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, null, new DevExpress.Utils.KeyShortcut(System.Windows.Forms.Keys.None), serializableAppearanceObject1, "", null, null, true)});
            this.repositoryItemButtonEdit1.ButtonsStyle = DevExpress.XtraEditors.Controls.BorderStyles.Simple;
            this.repositoryItemButtonEdit1.Name = "repositoryItemButtonEdit1";
            this.repositoryItemButtonEdit1.TextEditStyle = DevExpress.XtraEditors.Controls.TextEditStyles.HideTextEditor;
            this.repositoryItemButtonEdit1.ButtonClick += new DevExpress.XtraEditors.Controls.ButtonPressedEventHandler(this.repositoryItemButtonEdit1_ButtonClick);
            // 
            // gridColumn64
            // 
            this.gridColumn64.Caption = "操作2";
            this.gridColumn64.ColumnEdit = this.repositoryItemButtonEdit2;
            this.gridColumn64.FieldName = "op2";
            this.gridColumn64.Name = "gridColumn64";
            this.gridColumn64.ShowButtonMode = DevExpress.XtraGrid.Views.Base.ShowButtonModeEnum.ShowAlways;
            this.gridColumn64.Visible = true;
            this.gridColumn64.VisibleIndex = 6;
            // 
            // repositoryItemButtonEdit2
            // 
            this.repositoryItemButtonEdit2.AutoHeight = false;
            this.repositoryItemButtonEdit2.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, null, new DevExpress.Utils.KeyShortcut(System.Windows.Forms.Keys.None), serializableAppearanceObject2, "", null, null, true)});
            this.repositoryItemButtonEdit2.ButtonsStyle = DevExpress.XtraEditors.Controls.BorderStyles.Simple;
            this.repositoryItemButtonEdit2.Name = "repositoryItemButtonEdit2";
            this.repositoryItemButtonEdit2.TextEditStyle = DevExpress.XtraEditors.Controls.TextEditStyles.HideTextEditor;
            this.repositoryItemButtonEdit2.ButtonClick += new DevExpress.XtraEditors.Controls.ButtonPressedEventHandler(this.repositoryItemButtonEdit2_ButtonClick);
            // 
            // barManager1
            // 
            this.barManager1.DockControls.Add(this.barDockControlTop);
            this.barManager1.DockControls.Add(this.barDockControlBottom);
            this.barManager1.DockControls.Add(this.barDockControlLeft);
            this.barManager1.DockControls.Add(this.barDockControlRight);
            this.barManager1.Form = this;
            this.barManager1.Items.AddRange(new DevExpress.XtraBars.BarItem[] {
            this.barButtonItem_Refresh,
            this.barButtonItem_Modify,
            this.barButtonItem_Delete,
            this.barButtonItem1,
            this.barButtonItem_Add,
            this.barButtonItem_Save,
            this.barButtonItem_DeleteSession});
            this.barManager1.MaxItemId = 7;
            // 
            // 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(688, 0);
            // 
            // barDockControlBottom
            // 
            this.barDockControlBottom.CausesValidation = false;
            this.barDockControlBottom.Dock = System.Windows.Forms.DockStyle.Bottom;
            this.barDockControlBottom.Location = new System.Drawing.Point(0, 429);
            this.barDockControlBottom.Size = new System.Drawing.Size(688, 0);
            // 
            // barDockControlLeft
            // 
            this.barDockControlLeft.CausesValidation = false;
            this.barDockControlLeft.Dock = System.Windows.Forms.DockStyle.Left;
            this.barDockControlLeft.Location = new System.Drawing.Point(0, 0);
            this.barDockControlLeft.Size = new System.Drawing.Size(0, 429);
            // 
            // barDockControlRight
            // 
            this.barDockControlRight.CausesValidation = false;
            this.barDockControlRight.Dock = System.Windows.Forms.DockStyle.Right;
            this.barDockControlRight.Location = new System.Drawing.Point(688, 0);
            this.barDockControlRight.Size = new System.Drawing.Size(0, 429);
            // 
            // barButtonItem_Refresh
            // 
            this.barButtonItem_Refresh.Caption = "刷新记录";
            this.barButtonItem_Refresh.Id = 0;
            this.barButtonItem_Refresh.Name = "barButtonItem_Refresh";
            this.barButtonItem_Refresh.ItemClick += new DevExpress.XtraBars.ItemClickEventHandler(this.barButtonItem_Refresh_ItemClick);
            // 
            // barButtonItem_Modify
            // 
            this.barButtonItem_Modify.Caption = "修改记录";
            this.barButtonItem_Modify.Id = 1;
            this.barButtonItem_Modify.Name = "barButtonItem_Modify";
            this.barButtonItem_Modify.ItemClick += new DevExpress.XtraBars.ItemClickEventHandler(this.barButtonItem_Modify_ItemClick);
            // 
            // barButtonItem_Delete
            // 
            this.barButtonItem_Delete.Caption = "删除记录";
            this.barButtonItem_Delete.Id = 2;
            this.barButtonItem_Delete.Name = "barButtonItem_Delete";
            this.barButtonItem_Delete.ItemClick += new DevExpress.XtraBars.ItemClickEventHandler(this.barButtonItem_Delete_ItemClick);
            // 
            // barButtonItem1
            // 
            this.barButtonItem1.Caption = "barButtonItem1";
            this.barButtonItem1.Id = 3;
            this.barButtonItem1.Name = "barButtonItem1";
            // 
            // barButtonItem_Add
            // 
            this.barButtonItem_Add.Caption = "添加条空记录";
            this.barButtonItem_Add.Id = 4;
            this.barButtonItem_Add.Name = "barButtonItem_Add";
            this.barButtonItem_Add.ItemClick += new DevExpress.XtraBars.ItemClickEventHandler(this.barButtonItem_Add_ItemClick);
            // 
            // barButtonItem_Save
            // 
            this.barButtonItem_Save.Caption = "保存这条记录";
            this.barButtonItem_Save.Id = 5;
            this.barButtonItem_Save.Name = "barButtonItem_Save";
            this.barButtonItem_Save.ItemClick += new DevExpress.XtraBars.ItemClickEventHandler(this.barButtonItem_Save_ItemClick);
            // 
            // barButtonItem_DeleteSession
            // 
            this.barButtonItem_DeleteSession.Caption = "断开";
            this.barButtonItem_DeleteSession.Id = 6;
            this.barButtonItem_DeleteSession.Name = "barButtonItem_DeleteSession";
            this.barButtonItem_DeleteSession.ItemClick += new DevExpress.XtraBars.ItemClickEventHandler(this.barButtonItem_DeleteSession_ItemClick);
            // 
            // repositoryItemButtonEdit3
            // 
            this.repositoryItemButtonEdit3.AutoHeight = false;
            this.repositoryItemButtonEdit3.BorderStyle = DevExpress.XtraEditors.Controls.BorderStyles.Simple;
            this.repositoryItemButtonEdit3.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
            new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.SpinRight)});
            this.repositoryItemButtonEdit3.Name = "repositoryItemButtonEdit3";
            this.repositoryItemButtonEdit3.TextEditStyle = DevExpress.XtraEditors.Controls.TextEditStyles.HideTextEditor;
            this.repositoryItemButtonEdit3.ButtonClick += new DevExpress.XtraEditors.Controls.ButtonPressedEventHandler(this.repositoryItemButtonEdit3_ButtonClick);
            // 
            // popupMenu2
            // 
            this.popupMenu2.LinksPersistInfo.AddRange(new DevExpress.XtraBars.LinkPersistInfo[] {
            new DevExpress.XtraBars.LinkPersistInfo(this.barButtonItem_DeleteSession)});
            this.popupMenu2.Manager = this.barManager1;
            this.popupMenu2.Name = "popupMenu2";
            // 
            // popupMenu1
            // 
            this.popupMenu1.LinksPersistInfo.AddRange(new DevExpress.XtraBars.LinkPersistInfo[] {
            new DevExpress.XtraBars.LinkPersistInfo(this.barButtonItem_Refresh),
            new DevExpress.XtraBars.LinkPersistInfo(this.barButtonItem_Add),
            new DevExpress.XtraBars.LinkPersistInfo(this.barButtonItem_Save),
            new DevExpress.XtraBars.LinkPersistInfo(this.barButtonItem_Modify),
            new DevExpress.XtraBars.LinkPersistInfo(this.barButtonItem_Delete)});
            this.popupMenu1.Manager = this.barManager1;
            this.popupMenu1.Name = "popupMenu1";
            // 
            // OptionsForm
            // 
            this.Appearance.BackColor = System.Drawing.Color.WhiteSmoke;
            this.Appearance.Options.UseBackColor = true;
            this.AutoScaleBaseSize = new System.Drawing.Size(6, 15);
            this.ClientSize = new System.Drawing.Size(688, 429);
            this.Controls.Add(this.xtraTabControl_Options);
            this.Controls.Add(this.barDockControlLeft);
            this.Controls.Add(this.barDockControlRight);
            this.Controls.Add(this.barDockControlBottom);
            this.Controls.Add(this.barDockControlTop);
            this.Icon = ((System.Drawing.Icon)(resources.GetObject("$this.Icon")));
            this.MaximizeBox = false;
            this.Name = "OptionsForm";
            this.ShowInTaskbar = false;
            this.Text = "选项";
            this.Load += new System.EventHandler(this.OptionsForm_Load);
            ((System.ComponentModel.ISupportInitialize)(this.xtraTabControl_Options)).EndInit();
            this.xtraTabControl_Options.ResumeLayout(false);
            this.xtraTabPage3.ResumeLayout(false);
            ((System.ComponentModel.ISupportInitialize)(this.groupControl5)).EndInit();
            this.groupControl5.ResumeLayout(false);
            ((System.ComponentModel.ISupportInitialize)(this.textEdit_DBUser.Properties)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.textEdit_DBPwd.Properties)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.textEdit_DBName.Properties)).EndInit();
            this.xtraTabPage_ComPortSet.ResumeLayout(false);
            ((System.ComponentModel.ISupportInitialize)(this.groupControl_ComPortSet)).EndInit();
            this.groupControl_ComPortSet.ResumeLayout(false);
            this.xtraTabPage_AutoShutDown.ResumeLayout(false);
            ((System.ComponentModel.ISupportInitialize)(this.groupControl2)).EndInit();
            this.groupControl2.ResumeLayout(false);
            ((System.ComponentModel.ISupportInitialize)(this.checkEdit1.Properties)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.timeEdit_DutyStartTime.Properties)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.checkEdit2.Properties)).EndInit();
            this.xtraTabPage_AutoSendSmsTimeSet.ResumeLayout(false);
            ((System.ComponentModel.ISupportInitialize)(this.groupControl3)).EndInit();
            this.groupControl3.ResumeLayout(false);
            ((System.ComponentModel.ISupportInitialize)(this.timeEdit_SMSMorningTime.Properties)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.timeEdit_SMSNightTime.Properties)).EndInit();
            this.xtraTabPage1.ResumeLayout(false);
            ((System.ComponentModel.ISupportInitialize)(this.groupControl4)).EndInit();
            this.groupControl4.ResumeLayout(false);
            ((System.ComponentModel.ISupportInitialize)(this.textEdit_NewPwd.Properties)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.textEdit_ConfirmPwd.Properties)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.textEdit_OldPwd.Properties)).EndInit();
            this.xtraTabPage2.ResumeLayout(false);
            ((System.ComponentModel.ISupportInitialize)(this.groupControl1)).EndInit();
            this.groupControl1.ResumeLayout(false);
            ((System.ComponentModel.ISupportInitialize)(this.textEdit_UpdateAddress.Properties)).EndInit();
            this.xtraTabPage_BatchCreate.ResumeLayout(false);
            ((System.ComponentModel.ISupportInitialize)(this.splitContainerControl1)).EndInit();
            this.splitContainerControl1.ResumeLayout(false);
            ((System.ComponentModel.ISupportInitialize)(this.groupControl8)).EndInit();
            this.groupControl8.ResumeLayout(false);
            ((System.ComponentModel.ISupportInitialize)(this.textEdit_ClassVol.Properties)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.textEdit_BatchCreate_TerminalNumbers.Properties)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.textEdit_BatchCreate_ClassNumbers.Properties)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.groupControl6)).EndInit();
            this.groupControl6.ResumeLayout(false);
            ((System.ComponentModel.ISupportInitialize)(this.textEdit_BatchCreate_CardNumber.Properties)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.comboBoxEdit_BatchCreate_Load.Properties)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.comboBoxEdit_BatchCreate_Type.Properties)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.textEdit_BatchCreate_Number.Properties)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.textEdit_BatchCreate_Name.Properties)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.comboBoxEdit_BatchCreate_Class.Properties)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.comboBoxEdit_BatchCreate_Grade.Properties)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.groupControl7)).EndInit();
            this.groupControl7.ResumeLayout(false);
            ((System.ComponentModel.ISupportInitialize)(this.gridControl_BatchCreate_Machine)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.gridView7)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.repositoryItemTextEdit1)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.repositoryItemTextEdit2)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.gridControl_BatchCreate_TeaCard)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.gridView6)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.gridControl1_BatchCreate_TeaBasicInfo)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.gridView5)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.gridControl_BatchCreate_StuCard)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.gridView4)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.gridControl_BatchCreate_StuBasicInfo)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.advBandedGridView1)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.gridControl_BatchCreate_Class)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.gridView2)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.gridControl_BatchCreate_Grade)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.gridView1)).EndInit();
            this.xtraTabPage_UpdateGrade.ResumeLayout(false);
            ((System.ComponentModel.ISupportInitialize)(this.splitContainerControl2)).EndInit();
            this.splitContainerControl2.ResumeLayout(false);
            ((System.ComponentModel.ISupportInitialize)(this.groupControl9)).EndInit();
            this.groupControl9.ResumeLayout(false);
            ((System.ComponentModel.ISupportInitialize)(this.comboBoxEdit_ClassNumber.Properties)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.comboBoxEdit_GradeNumber.Properties)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.textEdit_DestClass.Properties)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.comboBoxEdit_SrcClass.Properties)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.textEdit_DestGrade.Properties)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.comboBoxEdit_SrcGrade.Properties)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.groupControl10)).EndInit();
            this.groupControl10.ResumeLayout(false);
            ((System.ComponentModel.ISupportInitialize)(this.gridControl_StudentAdjust)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.gridView3)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.repositoryItemCheckEdit1)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.panelControl1)).EndInit();
            this.panelControl1.ResumeLayout(false);
            this.xtraTabPage_TerminalServ.ResumeLayout(false);
            ((System.ComponentModel.ISupportInitialize)(this.gridControl_SessionUser)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.gridView9)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.gridView8)).EndInit();
            this.xtraTabPage4.ResumeLayout(false);
            ((System.ComponentModel.ISupportInitialize)(this.groupControl11)).EndInit();
            this.groupControl11.ResumeLayout(false);
            this.groupControl11.PerformLayout();
            ((System.ComponentModel.ISupportInitialize)(this.groupControl12)).EndInit();
            this.groupControl12.ResumeLayout(false);
            this.xtraTabPage5.ResumeLayout(false);
            this.groupBox1.ResumeLayout(false);
            this.groupBox1.PerformLayout();
            this.xtraTabPage6.ResumeLayout(false);
            ((System.ComponentModel.ISupportInitialize)(this.groupControl13)).EndInit();
            this.groupControl13.ResumeLayout(false);
            ((System.ComponentModel.ISupportInitialize)(this.gridControl1)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.gridView10)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.repositoryItemComboBox4)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.repositoryItemComboBox1)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.repositoryItemComboBox2)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.repositoryItemComboBox3)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.repositoryItemButtonEdit1)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.repositoryItemButtonEdit2)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.barManager1)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.repositoryItemButtonEdit3)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.popupMenu2)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.popupMenu1)).EndInit();
            this.ResumeLayout(false);

		}
Example #20
0
        /// <summary>
        /// 设置单据显示
        /// </summary>
        /// <param name="templateCofig">单据配置</param>
        /// <param name="control">控件</param>
        /// <param name="dgv">列表控件</param>
        /// <param name="strLocalCacheLayoutFilePath">本地缓存文件</param>
        /// <returns></returns>
        public void SetVoucherControl(VoucherTemplateConfiguration templateCofig, System.Windows.Forms.Control control, GridView dgv, string strLocalCacheLayoutFilePath)
        {
            DataTable dtColums = templateCofig.dtColumns;

            dgv.OptionsBehavior.ReadOnly         = true;
            dgv.OptionsView.ColumnAutoWidth      = false;
            dgv.OptionsSelection.MultiSelect     = true;
            dgv.OptionsSelection.MultiSelectMode = GridMultiSelectMode.CellSelect;
            dgv.SelectionChanged += templateCofig.GridView_SelectionChanged;
            if (dtColums != null)
            {
                //DataView dataView = dtColums.DefaultView;
                //dataView.Sort = "iOrder asc"; //处理排序问题
                //DataTable dt = dataView.ToTable();
                //dgv.AutoGenerateColumns = false;
                //dgv.AllowUserToAddRows = false;
                //dgv.AllowUserToDeleteRows = false;
                //dgv.ColumnHeadersDefaultCellStyle.Alignment = DataGridViewContentAlignment.MiddleCenter;

                List <DataRow> lstT = dtColums.Select("cCardSection='T'", "iOrder asc").ToList();
                List <DataRow> lstB = dtColums.Select("cCardSection='B'", "iOrder asc").ToList();
                //表头处理

                //表体处理
                foreach (DataRow dr in lstB)
                {
                    GridColumn dgvTxtCol = new GridColumn();
                    dgvTxtCol.Name      = string.Format("txt{0}", dr["cFieldName"].ToString());
                    dgvTxtCol.FieldName = dr["cFieldName"].ToString();
                    dgvTxtCol.Caption   = dr["cCaption"].ToString();
                    dgvTxtCol.Width     = Convert.ToInt32(dr["iWidth"]);
                    dgvTxtCol.OptionsColumn.ReadOnly = Convert.ToBoolean(dr["bReadOnly"]);
                    dgvTxtCol.Visible = Convert.ToBoolean(dr["bVisible"]) == true ? false : true;

                    switch (dr["cColType"].ToString().ToLower())
                    {
                    case "cmb":
                        var cmb = new DevExpress.XtraEditors.Repository.RepositoryItemComboBox();
                        // refer.ButtonClick += templateCofig.bodyRefer_ButtonClick;
                        dgvTxtCol.ColumnEdit = cmb;
                        cmb.AutoHeight       = false;
                        break;

                    case "chk":

                        break;

                    case "date":
                        var date = new DevExpress.XtraEditors.Repository.RepositoryItemDateEdit();
                        // refer.ButtonClick += templateCofig.bodyRefer_ButtonClick;
                        dgvTxtCol.ColumnEdit = date;
                        date.AutoHeight      = false;

                        break;

                    case "refer":
                        //DevExpress.Utils.SerializableAppearanceObject serializableAppearanceObject1 = new DevExpress.Utils.SerializableAppearanceObject();
                        //GridColumn dgvReferCol = new GridColumn();
                        //dgvReferCol.Name = string.Format("txt{0}", dr["cFieldName"].ToString());
                        //dgvReferCol.FieldName = dr["cFieldName"].ToString();
                        //dgvReferCol.Caption = dr["cCaption"].ToString();
                        //dgvReferCol.Width = Convert.ToInt32(dr["iWidth"]);
                        //dgvReferCol.Visible = Convert.ToBoolean(dr["bVisible"]) == true ? false : true;
                        //if (Convert.ToBoolean(dr["bNeedSum"]))
                        //{
                        //    dgvReferCol.SummaryItem.FieldName = dr["cFieldName"].ToString();
                        //    dgvReferCol.SummaryItem.SummaryType = SummaryItemType.Sum;
                        //}
                        //if (Convert.ToInt32(dr["iAlignment"]) != 0)
                        //{
                        //    SetAlignment(dgvTxtCol, Convert.ToInt32(dr["iAlignment"]));
                        //}
                        //if (string.IsNullOrEmpty(dr["cFormat"].ToString()) == false)
                        //{
                        //    SetFormat(dgvTxtCol, dr["cFormat"].ToString());
                        //}
                        //if (Convert.ToBoolean(dr["bIsNull"]))
                        //{
                        //    dgvTxtCol.AppearanceHeader.ForeColor = DXColor.Blue;
                        //    dgvTxtCol.AppearanceHeader.Options.UseForeColor = true;
                        //}

                        var refer = new DevExpress.XtraEditors.Repository.RepositoryItemButtonEdit();

                        dgvTxtCol.ColumnEdit     = refer;
                        refer.AutoHeight         = false;
                        refer.Buttons[0].Caption = dr["refObject"].ToString();
                        refer.ButtonClick       += templateCofig.BodyRefer_ButtonClick;
                        refer.Validating        += templateCofig.Body_Validating;

                        //refer.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
                        //new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Ellipsis, dr["refObject"].ToString(), -1, true, true, false, DevExpress.XtraEditors.ImageLocation.MiddleCenter, null, new DevExpress.Utils.KeyShortcut(System.Windows.Forms.Keys.None), serializableAppearanceObject1, "", null, null, true)});

                        break;

                    case "calc":
                        var Calc = new DevExpress.XtraEditors.Repository.RepositoryItemCalcEdit();
                        // refer.ButtonClick += templateCofig.bodyRefer_ButtonClick;
                        Calc.Validating     += templateCofig.Body_Validating;
                        dgvTxtCol.ColumnEdit = Calc;
                        Calc.AutoHeight      = false;

                        if (Convert.ToBoolean(dr["bNeedSum"]))
                        {
                            dgvTxtCol.SummaryItem.FieldName   = dr["cFieldName"].ToString();
                            dgvTxtCol.SummaryItem.SummaryType = SummaryItemType.Sum;
                            if (string.IsNullOrEmpty(dr["cFormat"].ToString()) == false)
                            {
                                dgvTxtCol.SummaryItem.DisplayFormat = "{0:" + dr["cFormat"].ToString() + "}";
                            }
                        }
                        break;

                    default:     //txt
                        var Txt = new DevExpress.XtraEditors.Repository.RepositoryItemTextEdit();
                        Txt.AutoHeight       = false;
                        Txt.Validating      += templateCofig.Body_Validating;
                        dgvTxtCol.ColumnEdit = Txt;
                        //if (Convert.ToBoolean(dr["bNeedSum"]))
                        //{
                        //    dgvTxtCol.SummaryItem.FieldName = dr["cFieldName"].ToString();
                        //    dgvTxtCol.SummaryItem.SummaryType = SummaryItemType.Sum;
                        //    if (string.IsNullOrEmpty(dr["cFormat"].ToString()) == false)
                        //    {
                        //        dgvTxtCol.SummaryItem.DisplayFormat = "{0:" + dr["cFormat"].ToString() + "}";
                        //    }
                        //}
                        break;
                    }

                    if (Convert.ToInt32(dr["iAlignment"]) != 0)
                    {
                        SetAlignment(dgvTxtCol, Convert.ToInt32(dr["iAlignment"]));
                    }

                    if (string.IsNullOrEmpty(dr["cFormat"].ToString()) == false)
                    {
                        SetFormat(dgvTxtCol, dr["cFormat"].ToString());
                    }
                    if (Convert.ToBoolean(dr["bIsNull"]))
                    {
                        dgvTxtCol.AppearanceHeader.ForeColor            = DXColor.Blue;
                        dgvTxtCol.AppearanceHeader.Options.UseForeColor = true;
                    }

                    dgv.Columns.Add(dgvTxtCol);
                }
            }
            else
            {
                throw new Exception("未查到到任何配置信息");
            }
        }
 /// <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();
     System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(PhieuCamDo));
     this.layoutControl1 = new DevExpress.XtraLayout.LayoutControl();
     this.cbInThongTinRutGon = new DevExpress.XtraEditors.CheckEdit();
     this.bm = new DevExpress.XtraBars.BarManager(this.components);
     this.bar3 = new DevExpress.XtraBars.Bar();
     this.bbiTaoMoi = new DevExpress.XtraBars.BarButtonItem();
     this.bbiLuu = new DevExpress.XtraBars.BarButtonItem();
     this.bbiLuuVaIn = 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.img = new DevExpress.Utils.ImageCollection(this.components);
     this.bbiXoa = new DevExpress.XtraBars.BarButtonItem();
     this.bbiXoaTatCa = new DevExpress.XtraBars.BarButtonItem();
     this.txtKhachHang = new DevExpress.XtraEditors.TextEdit();
     this.txtSoTienCamBangChu = new DevExpress.XtraEditors.TextEdit();
     this.txtNgaySinh = new DevExpress.XtraEditors.TextEdit();
     this.btnChonHangHoa = new DevExpress.XtraEditors.SimpleButton();
     this.txtLien = new DevExpress.XtraEditors.TextEdit();
     this.btnTimDiaChi = new DevExpress.XtraEditors.SimpleButton();
     this.txtGhiChu = new DevExpress.XtraEditors.TextEdit();
     this.gcList_HangHoa = new DevExpress.XtraGrid.GridControl();
     this.dANHSACHHANGHOABindingSource = new System.Windows.Forms.BindingSource(this.components);
     this.dsCamDo = new Phan_Mem_Quan_Ly_Cam_Do.CamDo.DS.dsCamDo();
     this.gbList_HangHoa = new DevExpress.XtraGrid.Views.Grid.GridView();
     this.colTen_Tai_San1 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.txtBo = new DevExpress.XtraEditors.SimpleButton();
     this.btnTimKhachHang = new DevExpress.XtraEditors.SimpleButton();
     this.txtTuNgay = new DevExpress.XtraEditors.TextEdit();
     this.layoutControl3 = new DevExpress.XtraLayout.LayoutControl();
     this.layoutControlGroup3 = new DevExpress.XtraLayout.LayoutControlGroup();
     this.txtDenNgay = new DevExpress.XtraEditors.TextEdit();
     this.txtSo = new DevExpress.XtraEditors.TextEdit();
     this.txtChuTiem = new DevExpress.XtraEditors.TextEdit();
     this.txtSoDienThoai = new DevExpress.XtraEditors.TextEdit();
     this.txtNoiCap = new DevExpress.XtraEditors.TextEdit();
     this.txtNgayCap = new DevExpress.XtraEditors.TextEdit();
     this.txtCMNDSo = new DevExpress.XtraEditors.TextEdit();
     this.txtSoTienCam = new DevExpress.XtraEditors.CalcEdit();
     this.txtDiaChi = new DevExpress.XtraEditors.TextEdit();
     this.txtNgay = new DevExpress.XtraEditors.DateEdit();
     this.txtMaChungTu = new DevExpress.XtraEditors.TextEdit();
     this.gcList = new DevExpress.XtraGrid.GridControl();
     this.cHUNGTUCHITIETBindingSource = new System.Windows.Forms.BindingSource(this.components);
     this.gbList = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridView();
     this.gridBand1 = new DevExpress.XtraGrid.Views.BandedGrid.GridBand();
     this.colMa_Chi_Tiet = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
     this.colMa_Chung_Tu = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
     this.colTen_Tai_San = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
     this.rptTenTaiSan = new DevExpress.XtraEditors.Repository.RepositoryItemComboBox();
     this.colLoai_Vang = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
     this.rptLoaiVang = new DevExpress.XtraEditors.Repository.RepositoryItemComboBox();
     this.gridBand3 = new DevExpress.XtraGrid.Views.BandedGrid.GridBand();
     this.colTrong_Luong_Vang_18k = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
     this.rptMayTinh = new DevExpress.XtraEditors.Repository.RepositoryItemCalcEdit();
     this.colTrong_Luong_Vang_24k = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
     this.colTrong_Luong_Khac = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
     this.colTrong_Luong = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
     this.gridBand2 = new DevExpress.XtraGrid.Views.BandedGrid.GridBand();
     this.colChuan_Do = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
     this.colGia_Tri_Vat_Cam = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
     this.colSap_Xep = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
     this.txtHangHoa = new DevExpress.XtraEditors.Repository.RepositoryItemTextEdit();
     this.txtLoaiVang = new DevExpress.XtraEditors.Repository.RepositoryItemTextEdit();
     this.txtLaiSuatNgay = new DevExpress.XtraEditors.CalcEdit();
     this.txtLaiSuatThang = new DevExpress.XtraEditors.CalcEdit();
     this.layoutControlGroup1 = new DevExpress.XtraLayout.LayoutControlGroup();
     this.layoutControlItem1 = new DevExpress.XtraLayout.LayoutControlItem();
     this.layoutControlItem2 = new DevExpress.XtraLayout.LayoutControlItem();
     this.layoutControlItem4 = new DevExpress.XtraLayout.LayoutControlItem();
     this.splitterItem1 = new DevExpress.XtraLayout.SplitterItem();
     this.layoutControlItem5 = new DevExpress.XtraLayout.LayoutControlItem();
     this.layoutControlItem7 = new DevExpress.XtraLayout.LayoutControlItem();
     this.layoutControlItem14 = new DevExpress.XtraLayout.LayoutControlItem();
     this.layoutControlItem15 = new DevExpress.XtraLayout.LayoutControlItem();
     this.layoutControlItem16 = new DevExpress.XtraLayout.LayoutControlItem();
     this.layoutControlItem17 = new DevExpress.XtraLayout.LayoutControlItem();
     this.layoutControlItem6 = new DevExpress.XtraLayout.LayoutControlItem();
     this.layoutControlItem9 = new DevExpress.XtraLayout.LayoutControlItem();
     this.layoutControlItem10 = new DevExpress.XtraLayout.LayoutControlItem();
     this.layoutControlItem18 = new DevExpress.XtraLayout.LayoutControlItem();
     this.layoutControlItem8 = new DevExpress.XtraLayout.LayoutControlItem();
     this.layoutControlItem12 = new DevExpress.XtraLayout.LayoutControlItem();
     this.layoutControlItem19 = new DevExpress.XtraLayout.LayoutControlItem();
     this.layoutControlItem11 = new DevExpress.XtraLayout.LayoutControlItem();
     this.layoutControlItem13 = new DevExpress.XtraLayout.LayoutControlItem();
     this.layoutControlItem20 = new DevExpress.XtraLayout.LayoutControlItem();
     this.splitterItem2 = new DevExpress.XtraLayout.SplitterItem();
     this.layoutControlItem21 = new DevExpress.XtraLayout.LayoutControlItem();
     this.layoutControlItem22 = new DevExpress.XtraLayout.LayoutControlItem();
     this.layoutControlItem23 = new DevExpress.XtraLayout.LayoutControlItem();
     this.layoutControlItem24 = new DevExpress.XtraLayout.LayoutControlItem();
     this.layoutControlItem26 = new DevExpress.XtraLayout.LayoutControlItem();
     this.layoutControlItem25 = new DevExpress.XtraLayout.LayoutControlItem();
     this.layoutControlItem3 = new DevExpress.XtraLayout.LayoutControlItem();
     this.layoutControlItem27 = new DevExpress.XtraLayout.LayoutControlItem();
     this.cHUNG_TU_CHI_TIETTableAdapter = new Phan_Mem_Quan_Ly_Cam_Do.CamDo.DS.dsCamDoTableAdapters.CHUNG_TU_CHI_TIETTableAdapter();
     this.pm = new DevExpress.XtraBars.PopupMenu(this.components);
     this.dANH_SACH_HANG_HOATableAdapter = new Phan_Mem_Quan_Ly_Cam_Do.CamDo.DS.dsCamDoTableAdapters.DANH_SACH_HANG_HOATableAdapter();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControl1)).BeginInit();
     this.layoutControl1.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.cbInThongTinRutGon.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.bm)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.img)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtKhachHang.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtSoTienCamBangChu.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtNgaySinh.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtLien.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtGhiChu.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.gcList_HangHoa)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.dANHSACHHANGHOABindingSource)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.dsCamDo)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.gbList_HangHoa)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtTuNgay.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControl3)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlGroup3)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtDenNgay.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtSo.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtChuTiem.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtSoDienThoai.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtNoiCap.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtNgayCap.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtCMNDSo.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtSoTienCam.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtDiaChi.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtNgay.Properties.CalendarTimeProperties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtNgay.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtMaChungTu.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.gcList)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.cHUNGTUCHITIETBindingSource)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.gbList)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.rptTenTaiSan)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.rptLoaiVang)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.rptMayTinh)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtHangHoa)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtLoaiVang)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtLaiSuatNgay.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtLaiSuatThang.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlGroup1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem2)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem4)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.splitterItem1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem5)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem7)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem14)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem15)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem16)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem17)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem6)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem9)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem10)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem18)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem8)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem12)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem19)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem11)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem13)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem20)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.splitterItem2)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem21)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem22)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem23)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem24)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem26)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem25)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem3)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem27)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.pm)).BeginInit();
     this.SuspendLayout();
     //
     // layoutControl1
     //
     this.layoutControl1.Controls.Add(this.cbInThongTinRutGon);
     this.layoutControl1.Controls.Add(this.txtKhachHang);
     this.layoutControl1.Controls.Add(this.txtSoTienCamBangChu);
     this.layoutControl1.Controls.Add(this.txtNgaySinh);
     this.layoutControl1.Controls.Add(this.btnChonHangHoa);
     this.layoutControl1.Controls.Add(this.txtLien);
     this.layoutControl1.Controls.Add(this.btnTimDiaChi);
     this.layoutControl1.Controls.Add(this.txtGhiChu);
     this.layoutControl1.Controls.Add(this.gcList_HangHoa);
     this.layoutControl1.Controls.Add(this.txtBo);
     this.layoutControl1.Controls.Add(this.btnTimKhachHang);
     this.layoutControl1.Controls.Add(this.txtTuNgay);
     this.layoutControl1.Controls.Add(this.layoutControl3);
     this.layoutControl1.Controls.Add(this.txtDenNgay);
     this.layoutControl1.Controls.Add(this.txtSo);
     this.layoutControl1.Controls.Add(this.txtChuTiem);
     this.layoutControl1.Controls.Add(this.txtSoDienThoai);
     this.layoutControl1.Controls.Add(this.txtNoiCap);
     this.layoutControl1.Controls.Add(this.txtNgayCap);
     this.layoutControl1.Controls.Add(this.txtCMNDSo);
     this.layoutControl1.Controls.Add(this.txtSoTienCam);
     this.layoutControl1.Controls.Add(this.txtDiaChi);
     this.layoutControl1.Controls.Add(this.txtNgay);
     this.layoutControl1.Controls.Add(this.txtMaChungTu);
     this.layoutControl1.Controls.Add(this.gcList);
     this.layoutControl1.Controls.Add(this.txtLaiSuatNgay);
     this.layoutControl1.Controls.Add(this.txtLaiSuatThang);
     this.layoutControl1.Dock = System.Windows.Forms.DockStyle.Fill;
     this.layoutControl1.Location = new System.Drawing.Point(0, 0);
     this.layoutControl1.Name = "layoutControl1";
     this.layoutControl1.Root = this.layoutControlGroup1;
     this.layoutControl1.Size = new System.Drawing.Size(1091, 612);
     this.layoutControl1.TabIndex = 0;
     this.layoutControl1.Text = "layoutControl1";
     //
     // cbInThongTinRutGon
     //
     this.cbInThongTinRutGon.EditValue = true;
     this.cbInThongTinRutGon.Location = new System.Drawing.Point(870, 98);
     this.cbInThongTinRutGon.MenuManager = this.bm;
     this.cbInThongTinRutGon.Name = "cbInThongTinRutGon";
     this.cbInThongTinRutGon.Properties.Appearance.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold);
     this.cbInThongTinRutGon.Properties.Appearance.ForeColor = System.Drawing.Color.Red;
     this.cbInThongTinRutGon.Properties.Appearance.Options.UseFont = true;
     this.cbInThongTinRutGon.Properties.Appearance.Options.UseForeColor = true;
     this.cbInThongTinRutGon.Properties.Caption = "In thông tin rút gọn trên liên 1";
     this.cbInThongTinRutGon.Size = new System.Drawing.Size(219, 19);
     this.cbInThongTinRutGon.StyleController = this.layoutControl1;
     this.cbInThongTinRutGon.TabIndex = 28;
     //
     // bm
     //
     this.bm.Bars.AddRange(new DevExpress.XtraBars.Bar[] {
     this.bar3});
     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.bbiTaoMoi,
     this.bbiLuu,
     this.bbiDong,
     this.bbiXoa,
     this.bbiXoaTatCa,
     this.bbiLuuVaIn});
     this.bm.LargeImages = this.img;
     this.bm.MaxItemId = 6;
     this.bm.StatusBar = this.bar3;
     //
     // bar3
     //
     this.bar3.BarItemHorzIndent = 20;
     this.bar3.BarName = "Status bar";
     this.bar3.CanDockStyle = DevExpress.XtraBars.BarCanDockStyle.Bottom;
     this.bar3.DockCol = 0;
     this.bar3.DockRow = 0;
     this.bar3.DockStyle = DevExpress.XtraBars.BarDockStyle.Bottom;
     this.bar3.LinksPersistInfo.AddRange(new DevExpress.XtraBars.LinkPersistInfo[] {
     new DevExpress.XtraBars.LinkPersistInfo(this.bbiTaoMoi),
     new DevExpress.XtraBars.LinkPersistInfo(this.bbiLuu),
     new DevExpress.XtraBars.LinkPersistInfo(this.bbiLuuVaIn),
     new DevExpress.XtraBars.LinkPersistInfo(this.bbiDong)});
     this.bar3.OptionsBar.AllowQuickCustomization = false;
     this.bar3.OptionsBar.DrawDragBorder = false;
     this.bar3.OptionsBar.UseWholeRow = true;
     this.bar3.Text = "Status bar";
     //
     // bbiTaoMoi
     //
     this.bbiTaoMoi.Border = DevExpress.XtraEditors.Controls.BorderStyles.Simple;
     this.bbiTaoMoi.Caption = "Tạo Mới";
     this.bbiTaoMoi.Id = 0;
     this.bbiTaoMoi.ImageIndex = 1;
     this.bbiTaoMoi.Name = "bbiTaoMoi";
     this.bbiTaoMoi.PaintStyle = DevExpress.XtraBars.BarItemPaintStyle.CaptionGlyph;
     this.bbiTaoMoi.ItemClick += new DevExpress.XtraBars.ItemClickEventHandler(this.bbiTaoMoi_ItemClick);
     //
     // bbiLuu
     //
     this.bbiLuu.Border = DevExpress.XtraEditors.Controls.BorderStyles.Simple;
     this.bbiLuu.Caption = "Lưu";
     this.bbiLuu.Id = 1;
     this.bbiLuu.ImageIndex = 4;
     this.bbiLuu.Name = "bbiLuu";
     this.bbiLuu.PaintStyle = DevExpress.XtraBars.BarItemPaintStyle.CaptionGlyph;
     this.bbiLuu.ItemClick += new DevExpress.XtraBars.ItemClickEventHandler(this.bbiLuu_ItemClick);
     //
     // bbiLuuVaIn
     //
     this.bbiLuuVaIn.Caption = "Lưu và In";
     this.bbiLuuVaIn.Id = 5;
     this.bbiLuuVaIn.ImageIndex = 3;
     this.bbiLuuVaIn.Name = "bbiLuuVaIn";
     this.bbiLuuVaIn.PaintStyle = DevExpress.XtraBars.BarItemPaintStyle.CaptionGlyph;
     this.bbiLuuVaIn.ItemClick += new DevExpress.XtraBars.ItemClickEventHandler(this.bbiLuuVaIn_ItemClick);
     //
     // bbiDong
     //
     this.bbiDong.Border = DevExpress.XtraEditors.Controls.BorderStyles.Simple;
     this.bbiDong.Caption = "Đóng";
     this.bbiDong.Id = 2;
     this.bbiDong.ImageIndex = 7;
     this.bbiDong.Name = "bbiDong";
     this.bbiDong.PaintStyle = DevExpress.XtraBars.BarItemPaintStyle.CaptionGlyph;
     this.bbiDong.ItemClick += new DevExpress.XtraBars.ItemClickEventHandler(this.bbiDong_ItemClick);
     //
     // barDockControlTop
     //
     this.barDockControlTop.CausesValidation = false;
     this.barDockControlTop.Dock = System.Windows.Forms.DockStyle.Top;
     this.barDockControlTop.Location = new System.Drawing.Point(0, 0);
     this.barDockControlTop.Size = new System.Drawing.Size(1091, 0);
     //
     // barDockControlBottom
     //
     this.barDockControlBottom.CausesValidation = false;
     this.barDockControlBottom.Dock = System.Windows.Forms.DockStyle.Bottom;
     this.barDockControlBottom.Location = new System.Drawing.Point(0, 612);
     this.barDockControlBottom.Size = new System.Drawing.Size(1091, 29);
     //
     // barDockControlLeft
     //
     this.barDockControlLeft.CausesValidation = false;
     this.barDockControlLeft.Dock = System.Windows.Forms.DockStyle.Left;
     this.barDockControlLeft.Location = new System.Drawing.Point(0, 0);
     this.barDockControlLeft.Size = new System.Drawing.Size(0, 612);
     //
     // barDockControlRight
     //
     this.barDockControlRight.CausesValidation = false;
     this.barDockControlRight.Dock = System.Windows.Forms.DockStyle.Right;
     this.barDockControlRight.Location = new System.Drawing.Point(1091, 0);
     this.barDockControlRight.Size = new System.Drawing.Size(0, 612);
     //
     // img
     //
     this.img.ImageStream = ((DevExpress.Utils.ImageCollectionStreamer)(resources.GetObject("img.ImageStream")));
     this.img.Images.SetKeyName(0, "add.png");
     this.img.Images.SetKeyName(1, "create.png");
     this.img.Images.SetKeyName(2, "plus.png");
     this.img.Images.SetKeyName(3, "accept.png");
     this.img.Images.SetKeyName(4, "apply.png");
     this.img.Images.SetKeyName(5, "OK.png");
     this.img.Images.SetKeyName(6, "yes.png");
     this.img.Images.SetKeyName(7, "cancel.png");
     this.img.Images.SetKeyName(8, "close.png");
     this.img.Images.SetKeyName(9, "no.png");
     this.img.Images.SetKeyName(10, "stop.png");
     this.img.Images.SetKeyName(11, "turn off.png");
     this.img.Images.SetKeyName(12, "delete_red.png");
     this.img.Images.SetKeyName(13, "next_arrow_1.png");
     this.img.Images.SetKeyName(14, "next_arrow_2.png");
     //
     // bbiXoa
     //
     this.bbiXoa.Caption = "Xóa";
     this.bbiXoa.Id = 3;
     this.bbiXoa.ImageIndex = 12;
     this.bbiXoa.Name = "bbiXoa";
     this.bbiXoa.ItemClick += new DevExpress.XtraBars.ItemClickEventHandler(this.bbiXoa_ItemClick);
     //
     // bbiXoaTatCa
     //
     this.bbiXoaTatCa.Caption = "Xóa tất cả";
     this.bbiXoaTatCa.Id = 4;
     this.bbiXoaTatCa.ImageIndex = 12;
     this.bbiXoaTatCa.Name = "bbiXoaTatCa";
     this.bbiXoaTatCa.ItemClick += new DevExpress.XtraBars.ItemClickEventHandler(this.bbiXoaTatCa_ItemClick);
     //
     // txtKhachHang
     //
     this.txtKhachHang.Location = new System.Drawing.Point(227, 2);
     this.txtKhachHang.MenuManager = this.bm;
     this.txtKhachHang.Name = "txtKhachHang";
     this.txtKhachHang.Size = new System.Drawing.Size(256, 20);
     this.txtKhachHang.StyleController = this.layoutControl1;
     this.txtKhachHang.TabIndex = 27;
     //
     // txtSoTienCamBangChu
     //
     this.txtSoTienCamBangChu.Location = new System.Drawing.Point(402, 535);
     this.txtSoTienCamBangChu.MenuManager = this.bm;
     this.txtSoTienCamBangChu.Name = "txtSoTienCamBangChu";
     this.txtSoTienCamBangChu.Properties.Appearance.Font = new System.Drawing.Font("Tahoma", 9F, System.Drawing.FontStyle.Bold);
     this.txtSoTienCamBangChu.Properties.Appearance.Options.UseFont = true;
     this.txtSoTienCamBangChu.Properties.ReadOnly = true;
     this.txtSoTienCamBangChu.Size = new System.Drawing.Size(687, 20);
     this.txtSoTienCamBangChu.StyleController = this.layoutControl1;
     this.txtSoTienCamBangChu.TabIndex = 20;
     //
     // txtNgaySinh
     //
     this.txtNgaySinh.Location = new System.Drawing.Point(712, 2);
     this.txtNgaySinh.MenuManager = this.bm;
     this.txtNgaySinh.Name = "txtNgaySinh";
     this.txtNgaySinh.Size = new System.Drawing.Size(149, 20);
     this.txtNgaySinh.StyleController = this.layoutControl1;
     this.txtNgaySinh.TabIndex = 3;
     //
     // btnChonHangHoa
     //
     this.btnChonHangHoa.Appearance.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold);
     this.btnChonHangHoa.Appearance.Options.UseFont = true;
     this.btnChonHangHoa.ImageIndex = 13;
     this.btnChonHangHoa.ImageList = this.img;
     this.btnChonHangHoa.ImageLocation = DevExpress.XtraEditors.ImageLocation.MiddleRight;
     this.btnChonHangHoa.Location = new System.Drawing.Point(2, 126);
     this.btnChonHangHoa.Name = "btnChonHangHoa";
     this.btnChonHangHoa.Size = new System.Drawing.Size(279, 22);
     this.btnChonHangHoa.StyleController = this.layoutControl1;
     this.btnChonHangHoa.TabIndex = 16;
     this.btnChonHangHoa.Text = "Chọn hàng hóa";
     this.btnChonHangHoa.Click += new System.EventHandler(this.btnChonHangHoa_Click);
     //
     // txtLien
     //
     this.txtLien.Location = new System.Drawing.Point(955, 50);
     this.txtLien.MenuManager = this.bm;
     this.txtLien.Name = "txtLien";
     this.txtLien.Size = new System.Drawing.Size(134, 20);
     this.txtLien.StyleController = this.layoutControl1;
     this.txtLien.TabIndex = 14;
     //
     // btnTimDiaChi
     //
     this.btnTimDiaChi.Location = new System.Drawing.Point(485, 52);
     this.btnTimDiaChi.MaximumSize = new System.Drawing.Size(90, 0);
     this.btnTimDiaChi.MinimumSize = new System.Drawing.Size(90, 0);
     this.btnTimDiaChi.Name = "btnTimDiaChi";
     this.btnTimDiaChi.Size = new System.Drawing.Size(90, 22);
     this.btnTimDiaChi.StyleController = this.layoutControl1;
     this.btnTimDiaChi.TabIndex = 8;
     this.btnTimDiaChi.Text = "Tìm";
     this.btnTimDiaChi.Click += new System.EventHandler(this.btnTimDiaChi_Click);
     //
     // txtGhiChu
     //
     this.txtGhiChu.Location = new System.Drawing.Point(57, 102);
     this.txtGhiChu.MenuManager = this.bm;
     this.txtGhiChu.Name = "txtGhiChu";
     this.txtGhiChu.Size = new System.Drawing.Size(804, 20);
     this.txtGhiChu.StyleController = this.layoutControl1;
     this.txtGhiChu.TabIndex = 11;
     //
     // gcList_HangHoa
     //
     this.gcList_HangHoa.DataSource = this.dANHSACHHANGHOABindingSource;
     this.gcList_HangHoa.Location = new System.Drawing.Point(2, 152);
     this.gcList_HangHoa.MainView = this.gbList_HangHoa;
     this.gcList_HangHoa.MenuManager = this.bm;
     this.gcList_HangHoa.Name = "gcList_HangHoa";
     this.gcList_HangHoa.Size = new System.Drawing.Size(279, 379);
     this.gcList_HangHoa.TabIndex = 17;
     this.gcList_HangHoa.ViewCollection.AddRange(new DevExpress.XtraGrid.Views.Base.BaseView[] {
     this.gbList_HangHoa});
     //
     // dANHSACHHANGHOABindingSource
     //
     this.dANHSACHHANGHOABindingSource.DataMember = "DANH_SACH_HANG_HOA";
     this.dANHSACHHANGHOABindingSource.DataSource = this.dsCamDo;
     //
     // dsCamDo
     //
     this.dsCamDo.DataSetName = "dsCamDo";
     this.dsCamDo.SchemaSerializationMode = System.Data.SchemaSerializationMode.IncludeSchema;
     //
     // gbList_HangHoa
     //
     this.gbList_HangHoa.Columns.AddRange(new DevExpress.XtraGrid.Columns.GridColumn[] {
     this.colTen_Tai_San1});
     this.gbList_HangHoa.GridControl = this.gcList_HangHoa;
     this.gbList_HangHoa.IndicatorWidth = 40;
     this.gbList_HangHoa.Name = "gbList_HangHoa";
     this.gbList_HangHoa.OptionsSelection.InvertSelection = true;
     this.gbList_HangHoa.OptionsView.ShowAutoFilterRow = true;
     this.gbList_HangHoa.OptionsView.ShowFooter = true;
     this.gbList_HangHoa.OptionsView.ShowGroupPanel = false;
     this.gbList_HangHoa.CustomDrawRowIndicator += new DevExpress.XtraGrid.Views.Grid.RowIndicatorCustomDrawEventHandler(this.gbList_HangHoa_CustomDrawRowIndicator);
     //
     // colTen_Tai_San1
     //
     this.colTen_Tai_San1.Caption = "Tên Tài Sản";
     this.colTen_Tai_San1.FieldName = "Ten_Tai_San";
     this.colTen_Tai_San1.Name = "colTen_Tai_San1";
     this.colTen_Tai_San1.OptionsColumn.ReadOnly = true;
     this.colTen_Tai_San1.OptionsFilter.AutoFilterCondition = DevExpress.XtraGrid.Columns.AutoFilterCondition.Contains;
     this.colTen_Tai_San1.Visible = true;
     this.colTen_Tai_San1.VisibleIndex = 0;
     //
     // txtBo
     //
     this.txtBo.Location = new System.Drawing.Point(567, 2);
     this.txtBo.Name = "txtBo";
     this.txtBo.Size = new System.Drawing.Size(76, 22);
     this.txtBo.StyleController = this.layoutControl1;
     this.txtBo.TabIndex = 2;
     this.txtBo.Text = "Bỏ";
     this.txtBo.Click += new System.EventHandler(this.txtBo_Click);
     //
     // btnTimKhachHang
     //
     this.btnTimKhachHang.Location = new System.Drawing.Point(487, 2);
     this.btnTimKhachHang.Name = "btnTimKhachHang";
     this.btnTimKhachHang.Size = new System.Drawing.Size(76, 22);
     this.btnTimKhachHang.StyleController = this.layoutControl1;
     this.btnTimKhachHang.TabIndex = 1;
     this.btnTimKhachHang.Text = "Tìm";
     this.btnTimKhachHang.Click += new System.EventHandler(this.btnTimKhachHang_Click);
     //
     // txtTuNgay
     //
     this.txtTuNgay.Location = new System.Drawing.Point(167, 564);
     this.txtTuNgay.MenuManager = this.bm;
     this.txtTuNgay.Name = "txtTuNgay";
     this.txtTuNgay.Size = new System.Drawing.Size(131, 20);
     this.txtTuNgay.StyleController = this.layoutControl1;
     this.txtTuNgay.TabIndex = 21;
     //
     // layoutControl3
     //
     this.layoutControl3.Location = new System.Drawing.Point(360, 589);
     this.layoutControl3.Name = "layoutControl3";
     this.layoutControl3.Root = this.layoutControlGroup3;
     this.layoutControl3.Size = new System.Drawing.Size(729, 21);
     this.layoutControl3.TabIndex = 25;
     this.layoutControl3.Text = "layoutControl3";
     //
     // layoutControlGroup3
     //
     this.layoutControlGroup3.CustomizationFormText = "layoutControlGroup3";
     this.layoutControlGroup3.EnableIndentsWithoutBorders = DevExpress.Utils.DefaultBoolean.True;
     this.layoutControlGroup3.GroupBordersVisible = false;
     this.layoutControlGroup3.Location = new System.Drawing.Point(0, 0);
     this.layoutControlGroup3.Name = "layoutControlGroup3";
     this.layoutControlGroup3.Size = new System.Drawing.Size(729, 21);
     this.layoutControlGroup3.Text = "layoutControlGroup3";
     this.layoutControlGroup3.TextVisible = false;
     //
     // txtDenNgay
     //
     this.txtDenNgay.Location = new System.Drawing.Point(367, 564);
     this.txtDenNgay.MenuManager = this.bm;
     this.txtDenNgay.Name = "txtDenNgay";
     this.txtDenNgay.Size = new System.Drawing.Size(231, 20);
     this.txtDenNgay.StyleController = this.layoutControl1;
     this.txtDenNgay.TabIndex = 22;
     //
     // txtSo
     //
     this.txtSo.Location = new System.Drawing.Point(955, 26);
     this.txtSo.MenuManager = this.bm;
     this.txtSo.Name = "txtSo";
     this.txtSo.Size = new System.Drawing.Size(134, 20);
     this.txtSo.StyleController = this.layoutControl1;
     this.txtSo.TabIndex = 13;
     //
     // txtChuTiem
     //
     this.txtChuTiem.Location = new System.Drawing.Point(157, 78);
     this.txtChuTiem.MenuManager = this.bm;
     this.txtChuTiem.Name = "txtChuTiem";
     this.txtChuTiem.Size = new System.Drawing.Size(704, 20);
     this.txtChuTiem.StyleController = this.layoutControl1;
     this.txtChuTiem.TabIndex = 10;
     //
     // txtSoDienThoai
     //
     this.txtSoDienThoai.Location = new System.Drawing.Point(664, 52);
     this.txtSoDienThoai.MenuManager = this.bm;
     this.txtSoDienThoai.Name = "txtSoDienThoai";
     this.txtSoDienThoai.Size = new System.Drawing.Size(197, 20);
     this.txtSoDienThoai.StyleController = this.layoutControl1;
     this.txtSoDienThoai.TabIndex = 9;
     //
     // txtNoiCap
     //
     this.txtNoiCap.Location = new System.Drawing.Point(431, 28);
     this.txtNoiCap.MenuManager = this.bm;
     this.txtNoiCap.Name = "txtNoiCap";
     this.txtNoiCap.Size = new System.Drawing.Size(430, 20);
     this.txtNoiCap.StyleController = this.layoutControl1;
     this.txtNoiCap.TabIndex = 6;
     //
     // txtNgayCap
     //
     this.txtNgayCap.Location = new System.Drawing.Point(282, 28);
     this.txtNgayCap.MenuManager = this.bm;
     this.txtNgayCap.Name = "txtNgayCap";
     this.txtNgayCap.Size = new System.Drawing.Size(80, 20);
     this.txtNgayCap.StyleController = this.layoutControl1;
     this.txtNgayCap.TabIndex = 5;
     //
     // txtCMNDSo
     //
     this.txtCMNDSo.Location = new System.Drawing.Point(57, 28);
     this.txtCMNDSo.MenuManager = this.bm;
     this.txtCMNDSo.Name = "txtCMNDSo";
     this.txtCMNDSo.Size = new System.Drawing.Size(161, 20);
     this.txtCMNDSo.StyleController = this.layoutControl1;
     this.txtCMNDSo.TabIndex = 4;
     //
     // txtSoTienCam
     //
     this.txtSoTienCam.EditValue = new decimal(new int[] {
     0,
     0,
     0,
     0});
     this.txtSoTienCam.Location = new System.Drawing.Point(84, 535);
     this.txtSoTienCam.Name = "txtSoTienCam";
     this.txtSoTienCam.Properties.Appearance.Font = new System.Drawing.Font("Tahoma", 9F, System.Drawing.FontStyle.Bold);
     this.txtSoTienCam.Properties.Appearance.Options.UseFont = true;
     this.txtSoTienCam.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.txtSoTienCam.Properties.DisplayFormat.FormatString = "{0:##,##0.###}";
     this.txtSoTienCam.Properties.DisplayFormat.FormatType = DevExpress.Utils.FormatType.Custom;
     this.txtSoTienCam.Properties.EditFormat.FormatString = "{0:##,##0.###}";
     this.txtSoTienCam.Properties.EditFormat.FormatType = DevExpress.Utils.FormatType.Custom;
     this.txtSoTienCam.Size = new System.Drawing.Size(314, 20);
     this.txtSoTienCam.StyleController = this.layoutControl1;
     this.txtSoTienCam.TabIndex = 19;
     this.txtSoTienCam.EditValueChanged += new System.EventHandler(this.txtSoTienCam_EditValueChanged);
     //
     // txtDiaChi
     //
     this.txtDiaChi.Location = new System.Drawing.Point(57, 52);
     this.txtDiaChi.MenuManager = this.bm;
     this.txtDiaChi.Name = "txtDiaChi";
     this.txtDiaChi.Size = new System.Drawing.Size(424, 20);
     this.txtDiaChi.StyleController = this.layoutControl1;
     this.txtDiaChi.TabIndex = 7;
     //
     // txtNgay
     //
     this.txtNgay.EditValue = null;
     this.txtNgay.Location = new System.Drawing.Point(955, 74);
     this.txtNgay.Name = "txtNgay";
     this.txtNgay.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.txtNgay.Properties.CalendarTimeProperties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton()});
     this.txtNgay.Properties.DisplayFormat.FormatString = "dd/MM/yyyy";
     this.txtNgay.Properties.DisplayFormat.FormatType = DevExpress.Utils.FormatType.DateTime;
     this.txtNgay.Properties.EditFormat.FormatString = "dd/MM/yyyy";
     this.txtNgay.Properties.EditFormat.FormatType = DevExpress.Utils.FormatType.DateTime;
     this.txtNgay.Properties.Mask.EditMask = "dd/MM/yyyy";
     this.txtNgay.Size = new System.Drawing.Size(134, 20);
     this.txtNgay.StyleController = this.layoutControl1;
     this.txtNgay.TabIndex = 15;
     this.txtNgay.EditValueChanged += new System.EventHandler(this.txtNgay_EditValueChanged);
     //
     // txtMaChungTu
     //
     this.txtMaChungTu.Location = new System.Drawing.Point(955, 2);
     this.txtMaChungTu.Name = "txtMaChungTu";
     this.txtMaChungTu.Size = new System.Drawing.Size(134, 20);
     this.txtMaChungTu.StyleController = this.layoutControl1;
     this.txtMaChungTu.TabIndex = 12;
     //
     // gcList
     //
     this.gcList.DataSource = this.cHUNGTUCHITIETBindingSource;
     this.gcList.Location = new System.Drawing.Point(290, 126);
     this.gcList.MainView = this.gbList;
     this.gcList.Name = "gcList";
     this.gcList.RepositoryItems.AddRange(new DevExpress.XtraEditors.Repository.RepositoryItem[] {
     this.rptMayTinh,
     this.rptTenTaiSan,
     this.rptLoaiVang,
     this.txtHangHoa,
     this.txtLoaiVang});
     this.gcList.Size = new System.Drawing.Size(799, 405);
     this.gcList.TabIndex = 18;
     this.gcList.ViewCollection.AddRange(new DevExpress.XtraGrid.Views.Base.BaseView[] {
     this.gbList});
     //
     // cHUNGTUCHITIETBindingSource
     //
     this.cHUNGTUCHITIETBindingSource.DataMember = "CHUNG_TU_CHI_TIET";
     this.cHUNGTUCHITIETBindingSource.DataSource = this.dsCamDo;
     //
     // gbList
     //
     this.gbList.Bands.AddRange(new DevExpress.XtraGrid.Views.BandedGrid.GridBand[] {
     this.gridBand1,
     this.gridBand3,
     this.gridBand2});
     this.gbList.Columns.AddRange(new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn[] {
     this.colMa_Chi_Tiet,
     this.colMa_Chung_Tu,
     this.colTen_Tai_San,
     this.colLoai_Vang,
     this.colTrong_Luong,
     this.colChuan_Do,
     this.colGia_Tri_Vat_Cam,
     this.colSap_Xep,
     this.colTrong_Luong_Vang_18k,
     this.colTrong_Luong_Vang_24k,
     this.colTrong_Luong_Khac});
     this.gbList.CustomizationFormBounds = new System.Drawing.Rectangle(592, 274, 216, 178);
     this.gbList.GridControl = this.gcList;
     this.gbList.IndicatorWidth = 40;
     this.gbList.Name = "gbList";
     this.gbList.OptionsBehavior.AllowAddRows = DevExpress.Utils.DefaultBoolean.True;
     this.gbList.OptionsCustomization.AllowFilter = false;
     this.gbList.OptionsCustomization.AllowGroup = false;
     this.gbList.OptionsCustomization.AllowRowSizing = true;
     this.gbList.OptionsCustomization.AllowSort = false;
     this.gbList.OptionsNavigation.EnterMoveNextColumn = true;
     this.gbList.OptionsSelection.InvertSelection = true;
     this.gbList.OptionsSelection.MultiSelect = true;
     this.gbList.OptionsView.ColumnAutoWidth = false;
     this.gbList.OptionsView.NewItemRowPosition = DevExpress.XtraGrid.Views.Grid.NewItemRowPosition.Bottom;
     this.gbList.OptionsView.ShowButtonMode = DevExpress.XtraGrid.Views.Base.ShowButtonModeEnum.ShowAlways;
     this.gbList.OptionsView.ShowFooter = true;
     this.gbList.OptionsView.ShowGroupPanel = false;
     this.gbList.CustomDrawRowIndicator += new DevExpress.XtraGrid.Views.Grid.RowIndicatorCustomDrawEventHandler(this.gbList_CustomDrawRowIndicator);
     this.gbList.ShownEditor += new System.EventHandler(this.gbList_ShownEditor);
     this.gbList.CellValueChanged += new DevExpress.XtraGrid.Views.Base.CellValueChangedEventHandler(this.gbList_CellValueChanged);
     //
     // gridBand1
     //
     this.gridBand1.Columns.Add(this.colMa_Chi_Tiet);
     this.gridBand1.Columns.Add(this.colMa_Chung_Tu);
     this.gridBand1.Columns.Add(this.colTen_Tai_San);
     this.gridBand1.Columns.Add(this.colLoai_Vang);
     this.gridBand1.MinWidth = 20;
     this.gridBand1.Name = "gridBand1";
     this.gridBand1.VisibleIndex = 0;
     this.gridBand1.Width = 325;
     //
     // colMa_Chi_Tiet
     //
     this.colMa_Chi_Tiet.AppearanceHeader.Options.UseTextOptions = true;
     this.colMa_Chi_Tiet.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.colMa_Chi_Tiet.FieldName = "Ma_Chi_Tiet";
     this.colMa_Chi_Tiet.Name = "colMa_Chi_Tiet";
     //
     // colMa_Chung_Tu
     //
     this.colMa_Chung_Tu.AppearanceHeader.Options.UseTextOptions = true;
     this.colMa_Chung_Tu.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.colMa_Chung_Tu.FieldName = "Ma_Chung_Tu";
     this.colMa_Chung_Tu.Name = "colMa_Chung_Tu";
     //
     // colTen_Tai_San
     //
     this.colTen_Tai_San.AppearanceHeader.Options.UseTextOptions = true;
     this.colTen_Tai_San.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.colTen_Tai_San.Caption = "Tên tài sản";
     this.colTen_Tai_San.ColumnEdit = this.rptTenTaiSan;
     this.colTen_Tai_San.FieldName = "Ten_Tai_San";
     this.colTen_Tai_San.Name = "colTen_Tai_San";
     this.colTen_Tai_San.ShowButtonMode = DevExpress.XtraGrid.Views.Base.ShowButtonModeEnum.ShowAlways;
     this.colTen_Tai_San.Visible = true;
     this.colTen_Tai_San.Width = 249;
     //
     // rptTenTaiSan
     //
     this.rptTenTaiSan.AutoComplete = false;
     this.rptTenTaiSan.AutoHeight = false;
     this.rptTenTaiSan.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Plus, "Chọn", -1, true, true, false, DevExpress.XtraEditors.ImageLocation.MiddleCenter, null, new DevExpress.Utils.KeyShortcut(System.Windows.Forms.Keys.None), serializableAppearanceObject1, "", "Chọn", null, true)});
     this.rptTenTaiSan.ImmediatePopup = true;
     this.rptTenTaiSan.Name = "rptTenTaiSan";
     this.rptTenTaiSan.ButtonClick += new DevExpress.XtraEditors.Controls.ButtonPressedEventHandler(this.rptTenTaiSan_ButtonClick);
     //
     // colLoai_Vang
     //
     this.colLoai_Vang.AppearanceHeader.Options.UseTextOptions = true;
     this.colLoai_Vang.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.colLoai_Vang.Caption = "Loại Vàng";
     this.colLoai_Vang.ColumnEdit = this.rptLoaiVang;
     this.colLoai_Vang.FieldName = "Loai_Vang";
     this.colLoai_Vang.Name = "colLoai_Vang";
     this.colLoai_Vang.ShowButtonMode = DevExpress.XtraGrid.Views.Base.ShowButtonModeEnum.ShowAlways;
     this.colLoai_Vang.Visible = true;
     this.colLoai_Vang.Width = 76;
     //
     // rptLoaiVang
     //
     this.rptLoaiVang.AutoComplete = false;
     this.rptLoaiVang.AutoHeight = false;
     this.rptLoaiVang.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Plus, "", -1, true, true, false, DevExpress.XtraEditors.ImageLocation.MiddleCenter, null, new DevExpress.Utils.KeyShortcut(System.Windows.Forms.Keys.None), serializableAppearanceObject2, "", "Chọn", null, true)});
     this.rptLoaiVang.Name = "rptLoaiVang";
     this.rptLoaiVang.ButtonClick += new DevExpress.XtraEditors.Controls.ButtonPressedEventHandler(this.rptLoaiVang_ButtonClick);
     //
     // gridBand3
     //
     this.gridBand3.AppearanceHeader.Options.UseTextOptions = true;
     this.gridBand3.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.gridBand3.Caption = "Trọng Lượng (Đơn vị: Chỉ)";
     this.gridBand3.Columns.Add(this.colTrong_Luong_Vang_18k);
     this.gridBand3.Columns.Add(this.colTrong_Luong_Vang_24k);
     this.gridBand3.Columns.Add(this.colTrong_Luong_Khac);
     this.gridBand3.Columns.Add(this.colTrong_Luong);
     this.gridBand3.MinWidth = 20;
     this.gridBand3.Name = "gridBand3";
     this.gridBand3.VisibleIndex = 1;
     this.gridBand3.Width = 353;
     //
     // colTrong_Luong_Vang_18k
     //
     this.colTrong_Luong_Vang_18k.AppearanceHeader.Options.UseTextOptions = true;
     this.colTrong_Luong_Vang_18k.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.colTrong_Luong_Vang_18k.Caption = "18k";
     this.colTrong_Luong_Vang_18k.ColumnEdit = this.rptMayTinh;
     this.colTrong_Luong_Vang_18k.FieldName = "Trong_Luong_Vang_18k";
     this.colTrong_Luong_Vang_18k.Name = "colTrong_Luong_Vang_18k";
     this.colTrong_Luong_Vang_18k.Summary.AddRange(new DevExpress.XtraGrid.GridSummaryItem[] {
     new DevExpress.XtraGrid.GridColumnSummaryItem(DevExpress.Data.SummaryItemType.Sum, "Trong_Luong_Vang_18k", "{0:##,##0.###}")});
     this.colTrong_Luong_Vang_18k.Visible = true;
     this.colTrong_Luong_Vang_18k.Width = 68;
     //
     // 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";
     this.rptMayTinh.NullText = "0";
     this.rptMayTinh.ShowCloseButton = true;
     //
     // colTrong_Luong_Vang_24k
     //
     this.colTrong_Luong_Vang_24k.AppearanceHeader.Options.UseTextOptions = true;
     this.colTrong_Luong_Vang_24k.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.colTrong_Luong_Vang_24k.Caption = "24k";
     this.colTrong_Luong_Vang_24k.ColumnEdit = this.rptMayTinh;
     this.colTrong_Luong_Vang_24k.FieldName = "Trong_Luong_Vang_24k";
     this.colTrong_Luong_Vang_24k.Name = "colTrong_Luong_Vang_24k";
     this.colTrong_Luong_Vang_24k.Summary.AddRange(new DevExpress.XtraGrid.GridSummaryItem[] {
     new DevExpress.XtraGrid.GridColumnSummaryItem(DevExpress.Data.SummaryItemType.Sum, "Trong_Luong_Vang_24k", "{0:##,##0.###}")});
     this.colTrong_Luong_Vang_24k.Visible = true;
     //
     // colTrong_Luong_Khac
     //
     this.colTrong_Luong_Khac.AppearanceHeader.Options.UseTextOptions = true;
     this.colTrong_Luong_Khac.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.colTrong_Luong_Khac.Caption = "Khác";
     this.colTrong_Luong_Khac.ColumnEdit = this.rptMayTinh;
     this.colTrong_Luong_Khac.FieldName = "Trong_Luong_Khac";
     this.colTrong_Luong_Khac.Name = "colTrong_Luong_Khac";
     this.colTrong_Luong_Khac.Summary.AddRange(new DevExpress.XtraGrid.GridSummaryItem[] {
     new DevExpress.XtraGrid.GridColumnSummaryItem(DevExpress.Data.SummaryItemType.Sum, "Trong_Luong_Khac", "{0:##,##0.###}")});
     this.colTrong_Luong_Khac.Visible = true;
     //
     // colTrong_Luong
     //
     this.colTrong_Luong.AppearanceHeader.Options.UseTextOptions = true;
     this.colTrong_Luong.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.colTrong_Luong.Caption = "Trọng Lượng";
     this.colTrong_Luong.FieldName = "Trong_Luong";
     this.colTrong_Luong.Name = "colTrong_Luong";
     this.colTrong_Luong.Visible = true;
     this.colTrong_Luong.Width = 135;
     //
     // gridBand2
     //
     this.gridBand2.Columns.Add(this.colChuan_Do);
     this.gridBand2.Columns.Add(this.colGia_Tri_Vat_Cam);
     this.gridBand2.Columns.Add(this.colSap_Xep);
     this.gridBand2.MinWidth = 20;
     this.gridBand2.Name = "gridBand2";
     this.gridBand2.VisibleIndex = 2;
     this.gridBand2.Width = 167;
     //
     // colChuan_Do
     //
     this.colChuan_Do.AppearanceHeader.Options.UseTextOptions = true;
     this.colChuan_Do.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.colChuan_Do.Caption = "Chuẩn Độ";
     this.colChuan_Do.FieldName = "Chuan_Do";
     this.colChuan_Do.Name = "colChuan_Do";
     this.colChuan_Do.Visible = true;
     this.colChuan_Do.Width = 82;
     //
     // colGia_Tri_Vat_Cam
     //
     this.colGia_Tri_Vat_Cam.AppearanceHeader.Options.UseTextOptions = true;
     this.colGia_Tri_Vat_Cam.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.colGia_Tri_Vat_Cam.Caption = "Giá Trị Vật Cầm";
     this.colGia_Tri_Vat_Cam.ColumnEdit = this.rptMayTinh;
     this.colGia_Tri_Vat_Cam.FieldName = "Gia_Tri_Vat_Cam";
     this.colGia_Tri_Vat_Cam.Name = "colGia_Tri_Vat_Cam";
     this.colGia_Tri_Vat_Cam.Summary.AddRange(new DevExpress.XtraGrid.GridSummaryItem[] {
     new DevExpress.XtraGrid.GridColumnSummaryItem(DevExpress.Data.SummaryItemType.Sum, "Gia_Tri_Vat_Cam", "{0:##,##0.###}")});
     this.colGia_Tri_Vat_Cam.Visible = true;
     this.colGia_Tri_Vat_Cam.Width = 85;
     //
     // colSap_Xep
     //
     this.colSap_Xep.AppearanceHeader.Options.UseTextOptions = true;
     this.colSap_Xep.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.colSap_Xep.FieldName = "Sap_Xep";
     this.colSap_Xep.Name = "colSap_Xep";
     //
     // txtHangHoa
     //
     this.txtHangHoa.AutoHeight = false;
     this.txtHangHoa.Name = "txtHangHoa";
     //
     // txtLoaiVang
     //
     this.txtLoaiVang.AutoHeight = false;
     this.txtLoaiVang.Name = "txtLoaiVang";
     //
     // txtLaiSuatNgay
     //
     this.txtLaiSuatNgay.EditValue = new decimal(new int[] {
     0,
     0,
     0,
     0});
     this.txtLaiSuatNgay.Location = new System.Drawing.Point(87, 589);
     this.txtLaiSuatNgay.MenuManager = this.bm;
     this.txtLaiSuatNgay.Name = "txtLaiSuatNgay";
     this.txtLaiSuatNgay.Properties.Appearance.Font = new System.Drawing.Font("Tahoma", 9F, System.Drawing.FontStyle.Bold);
     this.txtLaiSuatNgay.Properties.Appearance.Options.UseFont = true;
     this.txtLaiSuatNgay.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.txtLaiSuatNgay.Properties.DisplayFormat.FormatString = "{0:##,##0.###} %";
     this.txtLaiSuatNgay.Properties.DisplayFormat.FormatType = DevExpress.Utils.FormatType.Custom;
     this.txtLaiSuatNgay.Properties.EditFormat.FormatString = "{0:##,##0.###}";
     this.txtLaiSuatNgay.Properties.EditFormat.FormatType = DevExpress.Utils.FormatType.Custom;
     this.txtLaiSuatNgay.Size = new System.Drawing.Size(91, 20);
     this.txtLaiSuatNgay.StyleController = this.layoutControl1;
     this.txtLaiSuatNgay.TabIndex = 23;
     this.txtLaiSuatNgay.TabStop = false;
     //
     // txtLaiSuatThang
     //
     this.txtLaiSuatThang.EditValue = new decimal(new int[] {
     0,
     0,
     0,
     0});
     this.txtLaiSuatThang.Location = new System.Drawing.Point(227, 589);
     this.txtLaiSuatThang.MenuManager = this.bm;
     this.txtLaiSuatThang.Name = "txtLaiSuatThang";
     this.txtLaiSuatThang.Properties.Appearance.Font = new System.Drawing.Font("Tahoma", 9F, System.Drawing.FontStyle.Bold);
     this.txtLaiSuatThang.Properties.Appearance.Options.UseFont = true;
     this.txtLaiSuatThang.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.txtLaiSuatThang.Properties.DisplayFormat.FormatString = "{0:##,##0.###} %";
     this.txtLaiSuatThang.Properties.DisplayFormat.FormatType = DevExpress.Utils.FormatType.Custom;
     this.txtLaiSuatThang.Properties.EditFormat.FormatString = "{0:##,##0.###}";
     this.txtLaiSuatThang.Properties.EditFormat.FormatType = DevExpress.Utils.FormatType.Custom;
     this.txtLaiSuatThang.Size = new System.Drawing.Size(91, 20);
     this.txtLaiSuatThang.StyleController = this.layoutControl1;
     this.txtLaiSuatThang.TabIndex = 24;
     this.txtLaiSuatThang.TabStop = false;
     this.txtLaiSuatThang.EditValueChanged += new System.EventHandler(this.txtLaiSuatThang_EditValueChanged);
     //
     // 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.layoutControlItem1,
     this.layoutControlItem2,
     this.layoutControlItem4,
     this.splitterItem1,
     this.layoutControlItem5,
     this.layoutControlItem7,
     this.layoutControlItem14,
     this.layoutControlItem15,
     this.layoutControlItem16,
     this.layoutControlItem17,
     this.layoutControlItem6,
     this.layoutControlItem9,
     this.layoutControlItem10,
     this.layoutControlItem18,
     this.layoutControlItem8,
     this.layoutControlItem12,
     this.layoutControlItem19,
     this.layoutControlItem11,
     this.layoutControlItem13,
     this.layoutControlItem20,
     this.splitterItem2,
     this.layoutControlItem21,
     this.layoutControlItem22,
     this.layoutControlItem23,
     this.layoutControlItem24,
     this.layoutControlItem26,
     this.layoutControlItem25,
     this.layoutControlItem3,
     this.layoutControlItem27});
     this.layoutControlGroup1.Location = new System.Drawing.Point(0, 0);
     this.layoutControlGroup1.Name = "Root";
     this.layoutControlGroup1.Padding = new DevExpress.XtraLayout.Utils.Padding(0, 0, 0, 0);
     this.layoutControlGroup1.Size = new System.Drawing.Size(1091, 612);
     this.layoutControlGroup1.Text = "Root";
     this.layoutControlGroup1.TextVisible = false;
     //
     // layoutControlItem1
     //
     this.layoutControlItem1.Control = this.gcList;
     this.layoutControlItem1.CustomizationFormText = "layoutControlItem1";
     this.layoutControlItem1.Location = new System.Drawing.Point(288, 124);
     this.layoutControlItem1.Name = "layoutControlItem1";
     this.layoutControlItem1.Size = new System.Drawing.Size(803, 409);
     this.layoutControlItem1.Text = "layoutControlItem1";
     this.layoutControlItem1.TextSize = new System.Drawing.Size(0, 0);
     this.layoutControlItem1.TextToControlDistance = 0;
     this.layoutControlItem1.TextVisible = false;
     //
     // layoutControlItem2
     //
     this.layoutControlItem2.AppearanceItemCaption.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold);
     this.layoutControlItem2.AppearanceItemCaption.ForeColor = System.Drawing.Color.Red;
     this.layoutControlItem2.AppearanceItemCaption.Options.UseFont = true;
     this.layoutControlItem2.AppearanceItemCaption.Options.UseForeColor = true;
     this.layoutControlItem2.Control = this.txtMaChungTu;
     this.layoutControlItem2.CustomizationFormText = "Mã chứng từ:";
     this.layoutControlItem2.Location = new System.Drawing.Point(868, 0);
     this.layoutControlItem2.Name = "layoutControlItem2";
     this.layoutControlItem2.Size = new System.Drawing.Size(223, 24);
     this.layoutControlItem2.Text = "Mã chứng từ:";
     this.layoutControlItem2.TextAlignMode = DevExpress.XtraLayout.TextAlignModeItem.CustomSize;
     this.layoutControlItem2.TextSize = new System.Drawing.Size(80, 13);
     this.layoutControlItem2.TextToControlDistance = 5;
     //
     // layoutControlItem4
     //
     this.layoutControlItem4.AppearanceItemCaption.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold);
     this.layoutControlItem4.AppearanceItemCaption.ForeColor = System.Drawing.Color.Red;
     this.layoutControlItem4.AppearanceItemCaption.Options.UseFont = true;
     this.layoutControlItem4.AppearanceItemCaption.Options.UseForeColor = true;
     this.layoutControlItem4.Control = this.txtNgay;
     this.layoutControlItem4.CustomizationFormText = "Ngày:";
     this.layoutControlItem4.Location = new System.Drawing.Point(868, 72);
     this.layoutControlItem4.Name = "layoutControlItem4";
     this.layoutControlItem4.Size = new System.Drawing.Size(223, 24);
     this.layoutControlItem4.Text = "Ngày:";
     this.layoutControlItem4.TextAlignMode = DevExpress.XtraLayout.TextAlignModeItem.CustomSize;
     this.layoutControlItem4.TextSize = new System.Drawing.Size(80, 13);
     this.layoutControlItem4.TextToControlDistance = 5;
     //
     // splitterItem1
     //
     this.splitterItem1.AllowHotTrack = true;
     this.splitterItem1.CustomizationFormText = "splitterItem1";
     this.splitterItem1.Location = new System.Drawing.Point(863, 0);
     this.splitterItem1.Name = "splitterItem1";
     this.splitterItem1.Size = new System.Drawing.Size(5, 124);
     //
     // layoutControlItem5
     //
     this.layoutControlItem5.AppearanceItemCaption.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold);
     this.layoutControlItem5.AppearanceItemCaption.ForeColor = System.Drawing.Color.Red;
     this.layoutControlItem5.AppearanceItemCaption.Options.UseFont = true;
     this.layoutControlItem5.AppearanceItemCaption.Options.UseForeColor = true;
     this.layoutControlItem5.Control = this.txtCMNDSo;
     this.layoutControlItem5.CustomizationFormText = "CMND số:";
     this.layoutControlItem5.Location = new System.Drawing.Point(0, 26);
     this.layoutControlItem5.Name = "layoutControlItem5";
     this.layoutControlItem5.Size = new System.Drawing.Size(220, 24);
     this.layoutControlItem5.Text = "CMND số:";
     this.layoutControlItem5.TextAlignMode = DevExpress.XtraLayout.TextAlignModeItem.CustomSize;
     this.layoutControlItem5.TextSize = new System.Drawing.Size(50, 20);
     this.layoutControlItem5.TextToControlDistance = 5;
     //
     // layoutControlItem7
     //
     this.layoutControlItem7.AppearanceItemCaption.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold);
     this.layoutControlItem7.AppearanceItemCaption.ForeColor = System.Drawing.Color.Red;
     this.layoutControlItem7.AppearanceItemCaption.Options.UseFont = true;
     this.layoutControlItem7.AppearanceItemCaption.Options.UseForeColor = true;
     this.layoutControlItem7.Control = this.txtNgayCap;
     this.layoutControlItem7.CustomizationFormText = "Ngày cấp:";
     this.layoutControlItem7.Location = new System.Drawing.Point(220, 26);
     this.layoutControlItem7.Name = "layoutControlItem7";
     this.layoutControlItem7.Size = new System.Drawing.Size(144, 24);
     this.layoutControlItem7.Text = "Ngày cấp:";
     this.layoutControlItem7.TextAlignMode = DevExpress.XtraLayout.TextAlignModeItem.CustomSize;
     this.layoutControlItem7.TextSize = new System.Drawing.Size(55, 20);
     this.layoutControlItem7.TextToControlDistance = 5;
     //
     // layoutControlItem14
     //
     this.layoutControlItem14.AppearanceItemCaption.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold);
     this.layoutControlItem14.AppearanceItemCaption.ForeColor = System.Drawing.Color.Red;
     this.layoutControlItem14.AppearanceItemCaption.Options.UseFont = true;
     this.layoutControlItem14.AppearanceItemCaption.Options.UseForeColor = true;
     this.layoutControlItem14.Control = this.txtNoiCap;
     this.layoutControlItem14.CustomizationFormText = "Nơi cấp:";
     this.layoutControlItem14.Location = new System.Drawing.Point(364, 26);
     this.layoutControlItem14.Name = "layoutControlItem14";
     this.layoutControlItem14.Size = new System.Drawing.Size(499, 24);
     this.layoutControlItem14.Text = "Nơi cấp:";
     this.layoutControlItem14.TextAlignMode = DevExpress.XtraLayout.TextAlignModeItem.CustomSize;
     this.layoutControlItem14.TextSize = new System.Drawing.Size(60, 20);
     this.layoutControlItem14.TextToControlDistance = 5;
     //
     // layoutControlItem15
     //
     this.layoutControlItem15.AppearanceItemCaption.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold);
     this.layoutControlItem15.AppearanceItemCaption.ForeColor = System.Drawing.Color.Red;
     this.layoutControlItem15.AppearanceItemCaption.Options.UseFont = true;
     this.layoutControlItem15.AppearanceItemCaption.Options.UseForeColor = true;
     this.layoutControlItem15.Control = this.txtDiaChi;
     this.layoutControlItem15.CustomizationFormText = "Địa chỉ:";
     this.layoutControlItem15.Location = new System.Drawing.Point(0, 50);
     this.layoutControlItem15.Name = "layoutControlItem15";
     this.layoutControlItem15.Size = new System.Drawing.Size(483, 26);
     this.layoutControlItem15.Text = "Địa chỉ:";
     this.layoutControlItem15.TextAlignMode = DevExpress.XtraLayout.TextAlignModeItem.CustomSize;
     this.layoutControlItem15.TextSize = new System.Drawing.Size(50, 20);
     this.layoutControlItem15.TextToControlDistance = 5;
     //
     // layoutControlItem16
     //
     this.layoutControlItem16.AppearanceItemCaption.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold);
     this.layoutControlItem16.AppearanceItemCaption.ForeColor = System.Drawing.Color.Red;
     this.layoutControlItem16.AppearanceItemCaption.Options.UseFont = true;
     this.layoutControlItem16.AppearanceItemCaption.Options.UseForeColor = true;
     this.layoutControlItem16.Control = this.txtSoDienThoai;
     this.layoutControlItem16.CustomizationFormText = "Số điện thoại:";
     this.layoutControlItem16.Location = new System.Drawing.Point(577, 50);
     this.layoutControlItem16.Name = "layoutControlItem16";
     this.layoutControlItem16.Size = new System.Drawing.Size(286, 26);
     this.layoutControlItem16.Text = "Số điện thoại:";
     this.layoutControlItem16.TextAlignMode = DevExpress.XtraLayout.TextAlignModeItem.CustomSize;
     this.layoutControlItem16.TextSize = new System.Drawing.Size(80, 20);
     this.layoutControlItem16.TextToControlDistance = 5;
     //
     // layoutControlItem17
     //
     this.layoutControlItem17.AppearanceItemCaption.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold);
     this.layoutControlItem17.AppearanceItemCaption.ForeColor = System.Drawing.Color.Red;
     this.layoutControlItem17.AppearanceItemCaption.Options.UseFont = true;
     this.layoutControlItem17.AppearanceItemCaption.Options.UseForeColor = true;
     this.layoutControlItem17.Control = this.txtChuTiem;
     this.layoutControlItem17.CustomizationFormText = "Biên nhận cầm đồ (Bên B):";
     this.layoutControlItem17.Location = new System.Drawing.Point(0, 76);
     this.layoutControlItem17.Name = "layoutControlItem17";
     this.layoutControlItem17.Size = new System.Drawing.Size(863, 24);
     this.layoutControlItem17.Text = "Biên nhận cầm đồ (Bên B):";
     this.layoutControlItem17.TextAlignMode = DevExpress.XtraLayout.TextAlignModeItem.CustomSize;
     this.layoutControlItem17.TextSize = new System.Drawing.Size(150, 20);
     this.layoutControlItem17.TextToControlDistance = 5;
     //
     // layoutControlItem6
     //
     this.layoutControlItem6.AppearanceItemCaption.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold);
     this.layoutControlItem6.AppearanceItemCaption.ForeColor = System.Drawing.Color.Red;
     this.layoutControlItem6.AppearanceItemCaption.Options.UseFont = true;
     this.layoutControlItem6.AppearanceItemCaption.Options.UseForeColor = true;
     this.layoutControlItem6.Control = this.txtSo;
     this.layoutControlItem6.CustomizationFormText = "Số:";
     this.layoutControlItem6.Location = new System.Drawing.Point(868, 24);
     this.layoutControlItem6.Name = "layoutControlItem6";
     this.layoutControlItem6.Size = new System.Drawing.Size(223, 24);
     this.layoutControlItem6.Text = "Số:";
     this.layoutControlItem6.TextAlignMode = DevExpress.XtraLayout.TextAlignModeItem.CustomSize;
     this.layoutControlItem6.TextSize = new System.Drawing.Size(80, 20);
     this.layoutControlItem6.TextToControlDistance = 5;
     //
     // layoutControlItem9
     //
     this.layoutControlItem9.AppearanceItemCaption.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold);
     this.layoutControlItem9.AppearanceItemCaption.ForeColor = System.Drawing.Color.Red;
     this.layoutControlItem9.AppearanceItemCaption.Options.UseFont = true;
     this.layoutControlItem9.AppearanceItemCaption.Options.UseForeColor = true;
     this.layoutControlItem9.Control = this.txtLaiSuatNgay;
     this.layoutControlItem9.CustomizationFormText = "- Lãi suất cầm";
     this.layoutControlItem9.Location = new System.Drawing.Point(0, 587);
     this.layoutControlItem9.MaxSize = new System.Drawing.Size(180, 25);
     this.layoutControlItem9.MinSize = new System.Drawing.Size(1, 25);
     this.layoutControlItem9.Name = "layoutControlItem9";
     this.layoutControlItem9.Size = new System.Drawing.Size(180, 25);
     this.layoutControlItem9.SizeConstraintsType = DevExpress.XtraLayout.SizeConstraintsType.Custom;
     this.layoutControlItem9.Text = "- Lãi suất cầm";
     this.layoutControlItem9.TextAlignMode = DevExpress.XtraLayout.TextAlignModeItem.CustomSize;
     this.layoutControlItem9.TextSize = new System.Drawing.Size(80, 20);
     this.layoutControlItem9.TextToControlDistance = 5;
     //
     // layoutControlItem10
     //
     this.layoutControlItem10.AppearanceItemCaption.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold);
     this.layoutControlItem10.AppearanceItemCaption.ForeColor = System.Drawing.Color.Red;
     this.layoutControlItem10.AppearanceItemCaption.Options.UseFont = true;
     this.layoutControlItem10.AppearanceItemCaption.Options.UseForeColor = true;
     this.layoutControlItem10.Control = this.txtLaiSuatThang;
     this.layoutControlItem10.CustomizationFormText = "ngày";
     this.layoutControlItem10.Location = new System.Drawing.Point(180, 587);
     this.layoutControlItem10.MaxSize = new System.Drawing.Size(140, 25);
     this.layoutControlItem10.MinSize = new System.Drawing.Size(1, 25);
     this.layoutControlItem10.Name = "layoutControlItem10";
     this.layoutControlItem10.Size = new System.Drawing.Size(140, 25);
     this.layoutControlItem10.SizeConstraintsType = DevExpress.XtraLayout.SizeConstraintsType.Custom;
     this.layoutControlItem10.Text = "ngày,";
     this.layoutControlItem10.TextAlignMode = DevExpress.XtraLayout.TextAlignModeItem.CustomSize;
     this.layoutControlItem10.TextSize = new System.Drawing.Size(40, 20);
     this.layoutControlItem10.TextToControlDistance = 5;
     //
     // layoutControlItem18
     //
     this.layoutControlItem18.AppearanceItemCaption.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold);
     this.layoutControlItem18.AppearanceItemCaption.ForeColor = System.Drawing.Color.Red;
     this.layoutControlItem18.AppearanceItemCaption.Options.UseFont = true;
     this.layoutControlItem18.AppearanceItemCaption.Options.UseForeColor = true;
     this.layoutControlItem18.Control = this.layoutControl3;
     this.layoutControlItem18.CustomizationFormText = "tháng";
     this.layoutControlItem18.Location = new System.Drawing.Point(320, 587);
     this.layoutControlItem18.MaxSize = new System.Drawing.Size(0, 25);
     this.layoutControlItem18.MinSize = new System.Drawing.Size(137, 25);
     this.layoutControlItem18.Name = "layoutControlItem18";
     this.layoutControlItem18.Size = new System.Drawing.Size(771, 25);
     this.layoutControlItem18.SizeConstraintsType = DevExpress.XtraLayout.SizeConstraintsType.Custom;
     this.layoutControlItem18.Text = "tháng";
     this.layoutControlItem18.TextAlignMode = DevExpress.XtraLayout.TextAlignModeItem.AutoSize;
     this.layoutControlItem18.TextSize = new System.Drawing.Size(33, 13);
     this.layoutControlItem18.TextToControlDistance = 5;
     //
     // layoutControlItem8
     //
     this.layoutControlItem8.AppearanceItemCaption.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold);
     this.layoutControlItem8.AppearanceItemCaption.ForeColor = System.Drawing.Color.Red;
     this.layoutControlItem8.AppearanceItemCaption.Options.UseFont = true;
     this.layoutControlItem8.AppearanceItemCaption.Options.UseForeColor = true;
     this.layoutControlItem8.Control = this.txtSoTienCam;
     this.layoutControlItem8.CustomizationFormText = "Thành Tiền:";
     this.layoutControlItem8.Location = new System.Drawing.Point(0, 533);
     this.layoutControlItem8.MaxSize = new System.Drawing.Size(400, 29);
     this.layoutControlItem8.MinSize = new System.Drawing.Size(116, 29);
     this.layoutControlItem8.Name = "layoutControlItem8";
     this.layoutControlItem8.Size = new System.Drawing.Size(400, 29);
     this.layoutControlItem8.SizeConstraintsType = DevExpress.XtraLayout.SizeConstraintsType.Custom;
     this.layoutControlItem8.Text = "- Số tiền cầm:";
     this.layoutControlItem8.TextAlignMode = DevExpress.XtraLayout.TextAlignModeItem.AutoSize;
     this.layoutControlItem8.TextSize = new System.Drawing.Size(77, 13);
     this.layoutControlItem8.TextToControlDistance = 5;
     //
     // layoutControlItem12
     //
     this.layoutControlItem12.AppearanceItemCaption.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold);
     this.layoutControlItem12.AppearanceItemCaption.ForeColor = System.Drawing.Color.Red;
     this.layoutControlItem12.AppearanceItemCaption.Options.UseFont = true;
     this.layoutControlItem12.AppearanceItemCaption.Options.UseForeColor = true;
     this.layoutControlItem12.Control = this.txtDenNgay;
     this.layoutControlItem12.CustomizationFormText = "đến ngày";
     this.layoutControlItem12.Location = new System.Drawing.Point(300, 562);
     this.layoutControlItem12.MaxSize = new System.Drawing.Size(300, 25);
     this.layoutControlItem12.MinSize = new System.Drawing.Size(1, 25);
     this.layoutControlItem12.Name = "layoutControlItem12";
     this.layoutControlItem12.Size = new System.Drawing.Size(791, 25);
     this.layoutControlItem12.SizeConstraintsType = DevExpress.XtraLayout.SizeConstraintsType.Custom;
     this.layoutControlItem12.Text = "đến ngày";
     this.layoutControlItem12.TextAlignMode = DevExpress.XtraLayout.TextAlignModeItem.CustomSize;
     this.layoutControlItem12.TextSize = new System.Drawing.Size(60, 20);
     this.layoutControlItem12.TextToControlDistance = 5;
     //
     // layoutControlItem19
     //
     this.layoutControlItem19.AppearanceItemCaption.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold);
     this.layoutControlItem19.AppearanceItemCaption.ForeColor = System.Drawing.Color.Red;
     this.layoutControlItem19.AppearanceItemCaption.Options.UseFont = true;
     this.layoutControlItem19.AppearanceItemCaption.Options.UseForeColor = true;
     this.layoutControlItem19.Control = this.txtTuNgay;
     this.layoutControlItem19.CustomizationFormText = "Thời gian cầm kể từ ngày";
     this.layoutControlItem19.Location = new System.Drawing.Point(0, 562);
     this.layoutControlItem19.MaxSize = new System.Drawing.Size(300, 25);
     this.layoutControlItem19.MinSize = new System.Drawing.Size(1, 25);
     this.layoutControlItem19.Name = "layoutControlItem19";
     this.layoutControlItem19.Size = new System.Drawing.Size(300, 25);
     this.layoutControlItem19.SizeConstraintsType = DevExpress.XtraLayout.SizeConstraintsType.Custom;
     this.layoutControlItem19.Text = "- Thời gian cầm kể từ ngày";
     this.layoutControlItem19.TextAlignMode = DevExpress.XtraLayout.TextAlignModeItem.CustomSize;
     this.layoutControlItem19.TextSize = new System.Drawing.Size(160, 20);
     this.layoutControlItem19.TextToControlDistance = 5;
     //
     // layoutControlItem11
     //
     this.layoutControlItem11.Control = this.btnTimKhachHang;
     this.layoutControlItem11.CustomizationFormText = "layoutControlItem11";
     this.layoutControlItem11.Location = new System.Drawing.Point(485, 0);
     this.layoutControlItem11.MaxSize = new System.Drawing.Size(80, 26);
     this.layoutControlItem11.MinSize = new System.Drawing.Size(80, 26);
     this.layoutControlItem11.Name = "layoutControlItem11";
     this.layoutControlItem11.Size = new System.Drawing.Size(80, 26);
     this.layoutControlItem11.SizeConstraintsType = DevExpress.XtraLayout.SizeConstraintsType.Custom;
     this.layoutControlItem11.Text = "layoutControlItem11";
     this.layoutControlItem11.TextSize = new System.Drawing.Size(0, 0);
     this.layoutControlItem11.TextToControlDistance = 0;
     this.layoutControlItem11.TextVisible = false;
     //
     // layoutControlItem13
     //
     this.layoutControlItem13.Control = this.txtBo;
     this.layoutControlItem13.CustomizationFormText = "layoutControlItem13";
     this.layoutControlItem13.Location = new System.Drawing.Point(565, 0);
     this.layoutControlItem13.MaxSize = new System.Drawing.Size(80, 26);
     this.layoutControlItem13.MinSize = new System.Drawing.Size(80, 26);
     this.layoutControlItem13.Name = "layoutControlItem13";
     this.layoutControlItem13.Size = new System.Drawing.Size(80, 26);
     this.layoutControlItem13.SizeConstraintsType = DevExpress.XtraLayout.SizeConstraintsType.Custom;
     this.layoutControlItem13.Text = "layoutControlItem13";
     this.layoutControlItem13.TextSize = new System.Drawing.Size(0, 0);
     this.layoutControlItem13.TextToControlDistance = 0;
     this.layoutControlItem13.TextVisible = false;
     //
     // layoutControlItem20
     //
     this.layoutControlItem20.Control = this.gcList_HangHoa;
     this.layoutControlItem20.CustomizationFormText = "layoutControlItem20";
     this.layoutControlItem20.Location = new System.Drawing.Point(0, 150);
     this.layoutControlItem20.Name = "layoutControlItem20";
     this.layoutControlItem20.Size = new System.Drawing.Size(283, 383);
     this.layoutControlItem20.Text = "layoutControlItem20";
     this.layoutControlItem20.TextSize = new System.Drawing.Size(0, 0);
     this.layoutControlItem20.TextToControlDistance = 0;
     this.layoutControlItem20.TextVisible = false;
     //
     // splitterItem2
     //
     this.splitterItem2.AllowHotTrack = true;
     this.splitterItem2.CustomizationFormText = "splitterItem2";
     this.splitterItem2.Location = new System.Drawing.Point(283, 124);
     this.splitterItem2.Name = "splitterItem2";
     this.splitterItem2.Size = new System.Drawing.Size(5, 409);
     //
     // layoutControlItem21
     //
     this.layoutControlItem21.AppearanceItemCaption.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold);
     this.layoutControlItem21.AppearanceItemCaption.ForeColor = System.Drawing.Color.Red;
     this.layoutControlItem21.AppearanceItemCaption.Options.UseFont = true;
     this.layoutControlItem21.AppearanceItemCaption.Options.UseForeColor = true;
     this.layoutControlItem21.Control = this.txtGhiChu;
     this.layoutControlItem21.CustomizationFormText = "Ghi chú:";
     this.layoutControlItem21.Location = new System.Drawing.Point(0, 100);
     this.layoutControlItem21.Name = "layoutControlItem21";
     this.layoutControlItem21.Size = new System.Drawing.Size(863, 24);
     this.layoutControlItem21.Text = "Ghi chú:";
     this.layoutControlItem21.TextAlignMode = DevExpress.XtraLayout.TextAlignModeItem.CustomSize;
     this.layoutControlItem21.TextSize = new System.Drawing.Size(50, 20);
     this.layoutControlItem21.TextToControlDistance = 5;
     //
     // layoutControlItem22
     //
     this.layoutControlItem22.Control = this.btnTimDiaChi;
     this.layoutControlItem22.CustomizationFormText = "layoutControlItem22";
     this.layoutControlItem22.Location = new System.Drawing.Point(483, 50);
     this.layoutControlItem22.Name = "layoutControlItem22";
     this.layoutControlItem22.Size = new System.Drawing.Size(94, 26);
     this.layoutControlItem22.Text = "layoutControlItem22";
     this.layoutControlItem22.TextSize = new System.Drawing.Size(0, 0);
     this.layoutControlItem22.TextToControlDistance = 0;
     this.layoutControlItem22.TextVisible = false;
     //
     // layoutControlItem23
     //
     this.layoutControlItem23.AppearanceItemCaption.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold);
     this.layoutControlItem23.AppearanceItemCaption.ForeColor = System.Drawing.Color.Red;
     this.layoutControlItem23.AppearanceItemCaption.Options.UseFont = true;
     this.layoutControlItem23.AppearanceItemCaption.Options.UseForeColor = true;
     this.layoutControlItem23.Control = this.txtLien;
     this.layoutControlItem23.CustomizationFormText = "Liên:";
     this.layoutControlItem23.Location = new System.Drawing.Point(868, 48);
     this.layoutControlItem23.Name = "layoutControlItem23";
     this.layoutControlItem23.Size = new System.Drawing.Size(223, 24);
     this.layoutControlItem23.Text = "Liên:";
     this.layoutControlItem23.TextAlignMode = DevExpress.XtraLayout.TextAlignModeItem.CustomSize;
     this.layoutControlItem23.TextSize = new System.Drawing.Size(80, 20);
     this.layoutControlItem23.TextToControlDistance = 5;
     //
     // layoutControlItem24
     //
     this.layoutControlItem24.Control = this.btnChonHangHoa;
     this.layoutControlItem24.CustomizationFormText = "layoutControlItem24";
     this.layoutControlItem24.Location = new System.Drawing.Point(0, 124);
     this.layoutControlItem24.Name = "layoutControlItem24";
     this.layoutControlItem24.Size = new System.Drawing.Size(283, 26);
     this.layoutControlItem24.Text = "layoutControlItem24";
     this.layoutControlItem24.TextSize = new System.Drawing.Size(0, 0);
     this.layoutControlItem24.TextToControlDistance = 0;
     this.layoutControlItem24.TextVisible = false;
     //
     // layoutControlItem26
     //
     this.layoutControlItem26.Control = this.txtSoTienCamBangChu;
     this.layoutControlItem26.CustomizationFormText = "layoutControlItem26";
     this.layoutControlItem26.Location = new System.Drawing.Point(400, 533);
     this.layoutControlItem26.Name = "layoutControlItem26";
     this.layoutControlItem26.Size = new System.Drawing.Size(691, 29);
     this.layoutControlItem26.Text = "layoutControlItem26";
     this.layoutControlItem26.TextSize = new System.Drawing.Size(0, 0);
     this.layoutControlItem26.TextToControlDistance = 0;
     this.layoutControlItem26.TextVisible = false;
     //
     // layoutControlItem25
     //
     this.layoutControlItem25.AppearanceItemCaption.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold);
     this.layoutControlItem25.AppearanceItemCaption.ForeColor = System.Drawing.Color.Red;
     this.layoutControlItem25.AppearanceItemCaption.Options.UseFont = true;
     this.layoutControlItem25.AppearanceItemCaption.Options.UseForeColor = true;
     this.layoutControlItem25.Control = this.txtNgaySinh;
     this.layoutControlItem25.CustomizationFormText = "Ngày sinh:";
     this.layoutControlItem25.Location = new System.Drawing.Point(645, 0);
     this.layoutControlItem25.Name = "layoutControlItem25";
     this.layoutControlItem25.Size = new System.Drawing.Size(218, 26);
     this.layoutControlItem25.Text = "Ngày sinh:";
     this.layoutControlItem25.TextAlignMode = DevExpress.XtraLayout.TextAlignModeItem.CustomSize;
     this.layoutControlItem25.TextSize = new System.Drawing.Size(60, 20);
     this.layoutControlItem25.TextToControlDistance = 5;
     //
     // layoutControlItem3
     //
     this.layoutControlItem3.AppearanceItemCaption.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold);
     this.layoutControlItem3.AppearanceItemCaption.ForeColor = System.Drawing.Color.Red;
     this.layoutControlItem3.AppearanceItemCaption.Options.UseFont = true;
     this.layoutControlItem3.AppearanceItemCaption.Options.UseForeColor = true;
     this.layoutControlItem3.Control = this.txtKhachHang;
     this.layoutControlItem3.CustomizationFormText = "Bên có tài sản cầm đồ (Bên A) Ông (Bà):";
     this.layoutControlItem3.Location = new System.Drawing.Point(0, 0);
     this.layoutControlItem3.Name = "layoutControlItem3";
     this.layoutControlItem3.Size = new System.Drawing.Size(485, 26);
     this.layoutControlItem3.Text = "Bên có tài sản cầm đồ (Bên A) Ông (Bà):";
     this.layoutControlItem3.TextSize = new System.Drawing.Size(222, 13);
     //
     // layoutControlItem27
     //
     this.layoutControlItem27.Control = this.cbInThongTinRutGon;
     this.layoutControlItem27.CustomizationFormText = "layoutControlItem27";
     this.layoutControlItem27.Location = new System.Drawing.Point(868, 96);
     this.layoutControlItem27.Name = "layoutControlItem27";
     this.layoutControlItem27.Size = new System.Drawing.Size(223, 28);
     this.layoutControlItem27.Text = "layoutControlItem27";
     this.layoutControlItem27.TextSize = new System.Drawing.Size(0, 0);
     this.layoutControlItem27.TextToControlDistance = 0;
     this.layoutControlItem27.TextVisible = false;
     //
     // cHUNG_TU_CHI_TIETTableAdapter
     //
     this.cHUNG_TU_CHI_TIETTableAdapter.ClearBeforeFill = true;
     //
     // pm
     //
     this.pm.LinksPersistInfo.AddRange(new DevExpress.XtraBars.LinkPersistInfo[] {
     new DevExpress.XtraBars.LinkPersistInfo(this.bbiXoa),
     new DevExpress.XtraBars.LinkPersistInfo(this.bbiXoaTatCa)});
     this.pm.Manager = this.bm;
     this.pm.Name = "pm";
     //
     // dANH_SACH_HANG_HOATableAdapter
     //
     this.dANH_SACH_HANG_HOATableAdapter.ClearBeforeFill = true;
     //
     // PhieuCamDo
     //
     this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
     this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
     this.ClientSize = new System.Drawing.Size(1091, 641);
     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.Icon = ((System.Drawing.Icon)(resources.GetObject("$this.Icon")));
     this.Name = "PhieuCamDo";
     this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen;
     this.Text = "Cầm Đồ";
     ((System.ComponentModel.ISupportInitialize)(this.layoutControl1)).EndInit();
     this.layoutControl1.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.cbInThongTinRutGon.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.bm)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.img)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtKhachHang.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtSoTienCamBangChu.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtNgaySinh.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtLien.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtGhiChu.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.gcList_HangHoa)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.dANHSACHHANGHOABindingSource)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.dsCamDo)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.gbList_HangHoa)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtTuNgay.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControl3)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlGroup3)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtDenNgay.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtSo.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtChuTiem.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtSoDienThoai.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtNoiCap.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtNgayCap.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtCMNDSo.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtSoTienCam.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtDiaChi.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtNgay.Properties.CalendarTimeProperties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtNgay.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtMaChungTu.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.gcList)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.cHUNGTUCHITIETBindingSource)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.gbList)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.rptTenTaiSan)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.rptLoaiVang)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.rptMayTinh)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtHangHoa)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtLoaiVang)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtLaiSuatNgay.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtLaiSuatThang.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlGroup1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem2)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem4)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.splitterItem1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem5)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem7)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem14)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem15)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem16)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem17)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem6)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem9)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem10)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem18)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem8)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem12)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem19)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem11)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem13)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem20)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.splitterItem2)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem21)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem22)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem23)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem24)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem26)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem25)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem3)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem27)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.pm)).EndInit();
     this.ResumeLayout(false);
 }
Example #22
0
 /// <summary>
 /// 设计器支持所需的方法 - 不要
 /// 使用代码编辑器修改此方法的内容。
 /// </summary>
 private void InitializeComponent()
 {
     this.components = new System.ComponentModel.Container();
     FarPoint.Win.Spread.TipAppearance tipAppearance2 = new FarPoint.Win.Spread.TipAppearance();
     System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(FrmBDZGH));
     this.fpSpread1 = new FarPoint.Win.Spread.FpSpread();
     this.imageList1 = new System.Windows.Forms.ImageList(this.components);
     this.barManager1 = new DevExpress.XtraBars.BarManager();
     this.bar1 = new DevExpress.XtraBars.Bar();
     this.barBtnSave = new DevExpress.XtraBars.BarButtonItem();
     this.barBtnRefreshData = new DevExpress.XtraBars.BarButtonItem();
     this.barBtnDaochuExcel = new DevExpress.XtraBars.BarButtonItem();
     this.barBtnClose = new DevExpress.XtraBars.BarButtonItem();
     this.repositoryItemComboBox1 = new DevExpress.XtraEditors.Repository.RepositoryItemComboBox();
     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.repositoryItemTextEdit1 = new DevExpress.XtraEditors.Repository.RepositoryItemTextEdit();
     this.repositoryItemComboBox2 = new DevExpress.XtraEditors.Repository.RepositoryItemComboBox();
     ((System.ComponentModel.ISupportInitialize)(this.fpSpread1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.barManager1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemComboBox1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemTextEdit1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemComboBox2)).BeginInit();
     this.SuspendLayout();
     //
     // fpSpread1
     //
     this.fpSpread1.AccessibleDescription = "fpSpread1";
     this.fpSpread1.Location = new System.Drawing.Point(0, 28);
     this.fpSpread1.Name = "fpSpread1";
     this.fpSpread1.Size = new System.Drawing.Size(612, 446);
     this.fpSpread1.TabIndex = 9;
     tipAppearance2.BackColor = System.Drawing.SystemColors.Info;
     tipAppearance2.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
     tipAppearance2.ForeColor = System.Drawing.SystemColors.InfoText;
     this.fpSpread1.TextTipAppearance = tipAppearance2;
     this.fpSpread1.ActiveSheetIndex = -1;
     //
     // imageList1
     //
     this.imageList1.ImageStream = ((System.Windows.Forms.ImageListStreamer)(resources.GetObject("imageList1.ImageStream")));
     this.imageList1.TransparentColor = System.Drawing.Color.Transparent;
     this.imageList1.Images.SetKeyName(0, "保存.ico");
     this.imageList1.Images.SetKeyName(1, "布局.ico");
     this.imageList1.Images.SetKeyName(2, "查询.ico");
     this.imageList1.Images.SetKeyName(3, "打回重新编.ico");
     this.imageList1.Images.SetKeyName(4, "打印.ico");
     this.imageList1.Images.SetKeyName(5, "发送.ico");
     this.imageList1.Images.SetKeyName(6, "工具.ico");
     this.imageList1.Images.SetKeyName(7, "关闭1.ico");
     this.imageList1.Images.SetKeyName(8, "关闭.ico");
     this.imageList1.Images.SetKeyName(9, "角色.ico");
     this.imageList1.Images.SetKeyName(10, "删除.ico");
     this.imageList1.Images.SetKeyName(11, "审核.ico");
     this.imageList1.Images.SetKeyName(12, "审批.ico");
     this.imageList1.Images.SetKeyName(13, "授权.ico");
     this.imageList1.Images.SetKeyName(14, "刷新.ico");
     this.imageList1.Images.SetKeyName(15, "添加同级.ico");
     this.imageList1.Images.SetKeyName(16, "添加下级.ico");
     this.imageList1.Images.SetKeyName(17, "新建.ico");
     this.imageList1.Images.SetKeyName(18, "修改.ico");
     this.imageList1.Images.SetKeyName(19, "作废.ico");
     //
     // barManager1
     //
     this.barManager1.Bars.AddRange(new DevExpress.XtraBars.Bar[] {
     this.bar1});
     this.barManager1.DockControls.Add(this.barDockControlTop);
     this.barManager1.DockControls.Add(this.barDockControlBottom);
     this.barManager1.DockControls.Add(this.barDockControlLeft);
     this.barManager1.DockControls.Add(this.barDockControlRight);
     this.barManager1.Form = this;
     this.barManager1.Images = this.imageList1;
     this.barManager1.Items.AddRange(new DevExpress.XtraBars.BarItem[] {
     this.barBtnSave,
     this.barBtnRefreshData,
     this.barBtnDaochuExcel,
     this.barBtnClose});
     this.barManager1.MainMenu = this.bar1;
     this.barManager1.MaxItemId = 9;
     this.barManager1.RepositoryItems.AddRange(new DevExpress.XtraEditors.Repository.RepositoryItem[] {
     this.repositoryItemTextEdit1,
     this.repositoryItemComboBox1,
     this.repositoryItemComboBox2});
     //
     // bar1
     //
     this.bar1.BarName = "Custom 1";
     this.bar1.DockCol = 0;
     this.bar1.DockRow = 0;
     this.bar1.DockStyle = DevExpress.XtraBars.BarDockStyle.Top;
     this.bar1.LinksPersistInfo.AddRange(new DevExpress.XtraBars.LinkPersistInfo[] {
     new DevExpress.XtraBars.LinkPersistInfo(DevExpress.XtraBars.BarLinkUserDefines.PaintStyle, this.barBtnSave, DevExpress.XtraBars.BarItemPaintStyle.CaptionGlyph),
     new DevExpress.XtraBars.LinkPersistInfo(DevExpress.XtraBars.BarLinkUserDefines.PaintStyle, this.barBtnRefreshData, DevExpress.XtraBars.BarItemPaintStyle.CaptionGlyph),
     new DevExpress.XtraBars.LinkPersistInfo(DevExpress.XtraBars.BarLinkUserDefines.PaintStyle, this.barBtnDaochuExcel, DevExpress.XtraBars.BarItemPaintStyle.CaptionGlyph),
     new DevExpress.XtraBars.LinkPersistInfo(DevExpress.XtraBars.BarLinkUserDefines.PaintStyle, this.barBtnClose, DevExpress.XtraBars.BarItemPaintStyle.CaptionGlyph)});
     this.bar1.OptionsBar.MultiLine = true;
     this.bar1.OptionsBar.UseWholeRow = true;
     this.bar1.Text = "Custom 1";
     //
     // barBtnSave
     //
     this.barBtnSave.Caption = "保存";
     this.barBtnSave.Id = 0;
     this.barBtnSave.ImageIndex = 0;
     this.barBtnSave.Name = "barBtnSave";
     this.barBtnSave.ItemClick += new DevExpress.XtraBars.ItemClickEventHandler(this.barBtnSave_ItemClick);
     //
     // barBtnRefreshData
     //
     this.barBtnRefreshData.Caption = "更新数据";
     this.barBtnRefreshData.Id = 1;
     this.barBtnRefreshData.ImageIndex = 14;
     this.barBtnRefreshData.Name = "barBtnRefreshData";
     this.barBtnRefreshData.ItemClick += new DevExpress.XtraBars.ItemClickEventHandler(this.barBtnRefreshData_ItemClick);
     //
     // barBtnDaochuExcel
     //
     this.barBtnDaochuExcel.Caption = "导出";
     this.barBtnDaochuExcel.Id = 2;
     this.barBtnDaochuExcel.ImageIndex = 5;
     this.barBtnDaochuExcel.Name = "barBtnDaochuExcel";
     this.barBtnDaochuExcel.ItemClick += new DevExpress.XtraBars.ItemClickEventHandler(this.barBtnDaochuExcel_ItemClick);
     //
     // barBtnClose
     //
     this.barBtnClose.Caption = "关闭";
     this.barBtnClose.Id = 3;
     this.barBtnClose.ImageIndex = 7;
     this.barBtnClose.Name = "barBtnClose";
     this.barBtnClose.ItemClick += new DevExpress.XtraBars.ItemClickEventHandler(this.barBtnClose_ItemClick);
     //
     // repositoryItemComboBox1
     //
     this.repositoryItemComboBox1.AutoHeight = false;
     this.repositoryItemComboBox1.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.repositoryItemComboBox1.Name = "repositoryItemComboBox1";
     //
     // repositoryItemTextEdit1
     //
     this.repositoryItemTextEdit1.AutoHeight = false;
     this.repositoryItemTextEdit1.Name = "repositoryItemTextEdit1";
     //
     // repositoryItemComboBox2
     //
     this.repositoryItemComboBox2.AutoHeight = false;
     this.repositoryItemComboBox2.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.repositoryItemComboBox2.Name = "repositoryItemComboBox2";
     //
     // FrmDYGH
     //
     this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 12F);
     this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
     this.ClientSize = new System.Drawing.Size(612, 473);
     this.Controls.Add(this.fpSpread1);
     this.Controls.Add(this.barDockControlLeft);
     this.Controls.Add(this.barDockControlRight);
     this.Controls.Add(this.barDockControlBottom);
     this.Controls.Add(this.barDockControlTop);
     this.Name = "FrmDYGH";
     this.Text = "FrmDYGH";
     this.Load += new System.EventHandler(this.FrmPDWXZ_Load);
     ((System.ComponentModel.ISupportInitialize)(this.fpSpread1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.barManager1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemComboBox1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemTextEdit1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemComboBox2)).EndInit();
     this.ResumeLayout(false);
 }
Example #23
0
        private void LoadConfigTemplates(int pNewConfigTemplateId = 0)
        {
            try
            {
                DevExpress.XtraEditors.Repository.RepositoryItemComboBox cboType = new DevExpress.XtraEditors.Repository.RepositoryItemComboBox();
                cboType.TextEditStyle = TextEditStyles.DisableTextEditor;
                cboType.Items.Add("Company Status");
                cboType.Items.Add("Lead Status");
                cboType.Items.Add("Contact Status");
                cboType.Items.Add("General Settings");

                gcTemplate.DataSource = m_efDbModel.FIGetSubCampaignConfigTemplates().ToList();
                gvTemplate.Columns["type"].ColumnEdit = cboType;
                gvTemplate.BestFitColumns();

                /**
                 * set focus on the newly added template config.
                 */
                if (pNewConfigTemplateId > 0) {
                    for (int i = 0; i < gvTemplate.RowCount; i++)
                        if (Convert.ToInt32(gvTemplate.GetRowCellValue(i, "id")) == pNewConfigTemplateId)
                            gvTemplate.FocusedRowHandle = i;
                }
            }
            catch { }
        }
Example #24
0
 private void InitializeComponent()
 {
     this.layoutControl1              = new DevExpress.XtraLayout.LayoutControl();
     this.ceConnectMajorClass         = new DevExpress.XtraEditors.CheckEdit();
     this.ceConnectFacility           = new DevExpress.XtraEditors.CheckEdit();
     this.ceSelectAll                 = new DevExpress.XtraEditors.CheckEdit();
     this.gridControl1                = new DevExpress.XtraGrid.GridControl();
     this.gridView1                   = new DevExpress.XtraGrid.Views.Grid.GridView();
     this.gridColumn1                 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.repositoryItemCheckEdit1    = new DevExpress.XtraEditors.Repository.RepositoryItemCheckEdit();
     this.gridColumnFeatureClassAlias = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumnFeatureClassName  = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumnFacilityClass     = new DevExpress.XtraGrid.Columns.GridColumn();
     this.repositoryItemComboBox1     = new DevExpress.XtraEditors.Repository.RepositoryItemComboBox();
     this.gridColumnMajorClass        = new DevExpress.XtraGrid.Columns.GridColumn();
     this.repositoryItemComboBox2     = new DevExpress.XtraEditors.Repository.RepositoryItemComboBox();
     this.gridColumnFeatureClass      = new DevExpress.XtraGrid.Columns.GridColumn();
     this.btn_quit            = new DevExpress.XtraEditors.SimpleButton();
     this.btn_ok              = new DevExpress.XtraEditors.SimpleButton();
     this.layoutControlGroup1 = new DevExpress.XtraLayout.LayoutControlGroup();
     this.emptySpaceItem1     = new DevExpress.XtraLayout.EmptySpaceItem();
     this.layoutControlItem2  = new DevExpress.XtraLayout.LayoutControlItem();
     this.layoutControlItem3  = new DevExpress.XtraLayout.LayoutControlItem();
     this.layoutControlItem1  = new DevExpress.XtraLayout.LayoutControlItem();
     this.layoutControlItem4  = new DevExpress.XtraLayout.LayoutControlItem();
     this.layoutControlItem5  = new DevExpress.XtraLayout.LayoutControlItem();
     this.layoutControlItem6  = new DevExpress.XtraLayout.LayoutControlItem();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControl1)).BeginInit();
     this.layoutControl1.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.ceConnectMajorClass.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.ceConnectFacility.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.ceSelectAll.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridControl1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridView1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemCheckEdit1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemComboBox1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemComboBox2)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlGroup1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.emptySpaceItem1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem2)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem3)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem4)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem5)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem6)).BeginInit();
     this.SuspendLayout();
     //
     // layoutControl1
     //
     this.layoutControl1.Controls.Add(this.ceConnectMajorClass);
     this.layoutControl1.Controls.Add(this.ceConnectFacility);
     this.layoutControl1.Controls.Add(this.ceSelectAll);
     this.layoutControl1.Controls.Add(this.gridControl1);
     this.layoutControl1.Controls.Add(this.btn_quit);
     this.layoutControl1.Controls.Add(this.btn_ok);
     this.layoutControl1.Dock     = System.Windows.Forms.DockStyle.Fill;
     this.layoutControl1.Location = new System.Drawing.Point(0, 0);
     this.layoutControl1.Name     = "layoutControl1";
     this.layoutControl1.Root     = this.layoutControlGroup1;
     this.layoutControl1.Size     = new System.Drawing.Size(600, 392);
     this.layoutControl1.TabIndex = 0;
     this.layoutControl1.Text     = "layoutControl1";
     //
     // ceConnectMajorClass
     //
     this.ceConnectMajorClass.EditValue          = true;
     this.ceConnectMajorClass.Location           = new System.Drawing.Point(191, 368);
     this.ceConnectMajorClass.Name               = "ceConnectMajorClass";
     this.ceConnectMajorClass.Properties.Caption = "关联大类";
     this.ceConnectMajorClass.Size               = new System.Drawing.Size(77, 19);
     this.ceConnectMajorClass.StyleController    = this.layoutControl1;
     this.ceConnectMajorClass.TabIndex           = 12;
     //
     // ceConnectFacility
     //
     this.ceConnectFacility.EditValue          = true;
     this.ceConnectFacility.Location           = new System.Drawing.Point(105, 368);
     this.ceConnectFacility.Name               = "ceConnectFacility";
     this.ceConnectFacility.Properties.Caption = "关联设施类";
     this.ceConnectFacility.Size               = new System.Drawing.Size(82, 19);
     this.ceConnectFacility.StyleController    = this.layoutControl1;
     this.ceConnectFacility.TabIndex           = 11;
     //
     // ceSelectAll
     //
     this.ceSelectAll.EditValue          = true;
     this.ceSelectAll.Location           = new System.Drawing.Point(2, 368);
     this.ceSelectAll.Name               = "ceSelectAll";
     this.ceSelectAll.Properties.Caption = "全选/取消全选";
     this.ceSelectAll.Size               = new System.Drawing.Size(99, 19);
     this.ceSelectAll.StyleController    = this.layoutControl1;
     this.ceSelectAll.TabIndex           = 8;
     this.ceSelectAll.CheckedChanged    += new System.EventHandler(this.ceSelectAll_CheckedChanged);
     //
     // gridControl1
     //
     this.gridControl1.Location = new System.Drawing.Point(2, 2);
     this.gridControl1.MainView = this.gridView1;
     this.gridControl1.Name     = "gridControl1";
     this.gridControl1.RepositoryItems.AddRange(new DevExpress.XtraEditors.Repository.RepositoryItem[] {
         this.repositoryItemComboBox1,
         this.repositoryItemComboBox2,
         this.repositoryItemCheckEdit1
     });
     this.gridControl1.Size     = new System.Drawing.Size(596, 362);
     this.gridControl1.TabIndex = 7;
     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.gridColumnFeatureClassAlias,
         this.gridColumnFeatureClassName,
         this.gridColumnFacilityClass,
         this.gridColumnMajorClass,
         this.gridColumnFeatureClass
     });
     this.gridView1.GridControl = this.gridControl1;
     this.gridView1.Name        = "gridView1";
     this.gridView1.OptionsView.ShowGroupPanel = false;
     //
     // gridColumn1
     //
     this.gridColumn1.Caption    = "  ";
     this.gridColumn1.ColumnEdit = this.repositoryItemCheckEdit1;
     this.gridColumn1.FieldName  = "CheckState";
     this.gridColumn1.Name       = "gridColumn1";
     this.gridColumn1.OptionsColumn.AllowSize   = false;
     this.gridColumn1.OptionsColumn.FixedWidth  = true;
     this.gridColumn1.OptionsFilter.AllowFilter = false;
     this.gridColumn1.Visible      = true;
     this.gridColumn1.VisibleIndex = 0;
     this.gridColumn1.Width        = 33;
     //
     // repositoryItemCheckEdit1
     //
     this.repositoryItemCheckEdit1.AutoHeight      = false;
     this.repositoryItemCheckEdit1.Caption         = "Check";
     this.repositoryItemCheckEdit1.Name            = "repositoryItemCheckEdit1";
     this.repositoryItemCheckEdit1.CheckedChanged += new System.EventHandler(this.repositoryItemCheckEdit1_CheckedChanged);
     //
     // gridColumnFeatureClassAlias
     //
     this.gridColumnFeatureClassAlias.Caption   = "要素类别名";
     this.gridColumnFeatureClassAlias.FieldName = "FeatureClassAlias";
     this.gridColumnFeatureClassAlias.Name      = "gridColumnFeatureClassAlias";
     this.gridColumnFeatureClassAlias.OptionsColumn.AllowEdit = false;
     this.gridColumnFeatureClassAlias.Visible      = true;
     this.gridColumnFeatureClassAlias.VisibleIndex = 1;
     this.gridColumnFeatureClassAlias.Width        = 250;
     //
     // gridColumnFeatureClassName
     //
     this.gridColumnFeatureClassName.Caption   = "要素类名称";
     this.gridColumnFeatureClassName.FieldName = "FeatureClassName";
     this.gridColumnFeatureClassName.Name      = "gridColumnFeatureClassName";
     this.gridColumnFeatureClassName.OptionsColumn.AllowEdit = false;
     this.gridColumnFeatureClassName.Visible      = true;
     this.gridColumnFeatureClassName.VisibleIndex = 2;
     this.gridColumnFeatureClassName.Width        = 250;
     //
     // gridColumnFacilityClass
     //
     this.gridColumnFacilityClass.Caption      = "所属设施类";
     this.gridColumnFacilityClass.ColumnEdit   = this.repositoryItemComboBox1;
     this.gridColumnFacilityClass.FieldName    = "FacilityClass";
     this.gridColumnFacilityClass.Name         = "gridColumnFacilityClass";
     this.gridColumnFacilityClass.Visible      = true;
     this.gridColumnFacilityClass.VisibleIndex = 3;
     this.gridColumnFacilityClass.Width        = 250;
     //
     // repositoryItemComboBox1
     //
     this.repositoryItemComboBox1.AutoHeight = false;
     this.repositoryItemComboBox1.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
         new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)
     });
     this.repositoryItemComboBox1.Name = "repositoryItemComboBox1";
     //
     // gridColumnMajorClass
     //
     this.gridColumnMajorClass.Caption      = "所属大类";
     this.gridColumnMajorClass.ColumnEdit   = this.repositoryItemComboBox2;
     this.gridColumnMajorClass.FieldName    = "MajorClass";
     this.gridColumnMajorClass.Name         = "gridColumnMajorClass";
     this.gridColumnMajorClass.Visible      = true;
     this.gridColumnMajorClass.VisibleIndex = 4;
     this.gridColumnMajorClass.Width        = 261;
     //
     // repositoryItemComboBox2
     //
     this.repositoryItemComboBox2.AutoHeight = false;
     this.repositoryItemComboBox2.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
         new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)
     });
     this.repositoryItemComboBox2.Name = "repositoryItemComboBox2";
     //
     // gridColumnFeatureClass
     //
     this.gridColumnFeatureClass.Caption   = "要素类对象";
     this.gridColumnFeatureClass.FieldName = "FeatureClass";
     this.gridColumnFeatureClass.Name      = "gridColumnFeatureClass";
     //
     // btn_quit
     //
     this.btn_quit.DialogResult    = System.Windows.Forms.DialogResult.Cancel;
     this.btn_quit.Location        = new System.Drawing.Point(477, 368);
     this.btn_quit.Name            = "btn_quit";
     this.btn_quit.Size            = new System.Drawing.Size(121, 22);
     this.btn_quit.StyleController = this.layoutControl1;
     this.btn_quit.TabIndex        = 6;
     this.btn_quit.Text            = "退出";
     this.btn_quit.Click          += new System.EventHandler(this.btn_quit_Click);
     //
     // btn_ok
     //
     this.btn_ok.Location        = new System.Drawing.Point(353, 368);
     this.btn_ok.Name            = "btn_ok";
     this.btn_ok.Size            = new System.Drawing.Size(120, 22);
     this.btn_ok.StyleController = this.layoutControl1;
     this.btn_ok.TabIndex        = 5;
     this.btn_ok.Text            = "确定";
     this.btn_ok.Click          += new System.EventHandler(this.btn_ok_Click);
     //
     // 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.emptySpaceItem1,
         this.layoutControlItem2,
         this.layoutControlItem3,
         this.layoutControlItem1,
         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(600, 392);
     this.layoutControlGroup1.Text        = "layoutControlGroup1";
     this.layoutControlGroup1.TextVisible = false;
     //
     // emptySpaceItem1
     //
     this.emptySpaceItem1.AllowHotTrack         = false;
     this.emptySpaceItem1.CustomizationFormText = "emptySpaceItem1";
     this.emptySpaceItem1.Location = new System.Drawing.Point(270, 366);
     this.emptySpaceItem1.Name     = "emptySpaceItem1";
     this.emptySpaceItem1.Size     = new System.Drawing.Size(81, 26);
     this.emptySpaceItem1.Text     = "emptySpaceItem1";
     this.emptySpaceItem1.TextSize = new System.Drawing.Size(0, 0);
     //
     // layoutControlItem2
     //
     this.layoutControlItem2.Control = this.btn_ok;
     this.layoutControlItem2.CustomizationFormText = "layoutControlItem2";
     this.layoutControlItem2.Location = new System.Drawing.Point(351, 366);
     this.layoutControlItem2.Name     = "layoutControlItem2";
     this.layoutControlItem2.Size     = new System.Drawing.Size(124, 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.btn_quit;
     this.layoutControlItem3.CustomizationFormText = "layoutControlItem3";
     this.layoutControlItem3.Location = new System.Drawing.Point(475, 366);
     this.layoutControlItem3.Name     = "layoutControlItem3";
     this.layoutControlItem3.Size     = new System.Drawing.Size(125, 26);
     this.layoutControlItem3.Text     = "layoutControlItem3";
     this.layoutControlItem3.TextSize = new System.Drawing.Size(0, 0);
     this.layoutControlItem3.TextToControlDistance = 0;
     this.layoutControlItem3.TextVisible           = false;
     //
     // layoutControlItem1
     //
     this.layoutControlItem1.Control = this.gridControl1;
     this.layoutControlItem1.CustomizationFormText = "layoutControlItem1";
     this.layoutControlItem1.Location = new System.Drawing.Point(0, 0);
     this.layoutControlItem1.Name     = "layoutControlItem1";
     this.layoutControlItem1.Size     = new System.Drawing.Size(600, 366);
     this.layoutControlItem1.Text     = "layoutControlItem1";
     this.layoutControlItem1.TextSize = new System.Drawing.Size(0, 0);
     this.layoutControlItem1.TextToControlDistance = 0;
     this.layoutControlItem1.TextVisible           = false;
     //
     // layoutControlItem4
     //
     this.layoutControlItem4.Control = this.ceSelectAll;
     this.layoutControlItem4.CustomizationFormText = "layoutControlItem4";
     this.layoutControlItem4.Location = new System.Drawing.Point(0, 366);
     this.layoutControlItem4.Name     = "layoutControlItem4";
     this.layoutControlItem4.Size     = new System.Drawing.Size(103, 26);
     this.layoutControlItem4.Text     = "layoutControlItem4";
     this.layoutControlItem4.TextSize = new System.Drawing.Size(0, 0);
     this.layoutControlItem4.TextToControlDistance = 0;
     this.layoutControlItem4.TextVisible           = false;
     //
     // layoutControlItem5
     //
     this.layoutControlItem5.Control = this.ceConnectFacility;
     this.layoutControlItem5.CustomizationFormText = "layoutControlItem5";
     this.layoutControlItem5.Location = new System.Drawing.Point(103, 366);
     this.layoutControlItem5.Name     = "layoutControlItem5";
     this.layoutControlItem5.Size     = new System.Drawing.Size(86, 26);
     this.layoutControlItem5.Text     = "layoutControlItem5";
     this.layoutControlItem5.TextSize = new System.Drawing.Size(0, 0);
     this.layoutControlItem5.TextToControlDistance = 0;
     this.layoutControlItem5.TextVisible           = false;
     //
     // layoutControlItem6
     //
     this.layoutControlItem6.Control = this.ceConnectMajorClass;
     this.layoutControlItem6.CustomizationFormText = "layoutControlItem6";
     this.layoutControlItem6.Location = new System.Drawing.Point(189, 366);
     this.layoutControlItem6.Name     = "layoutControlItem6";
     this.layoutControlItem6.Size     = new System.Drawing.Size(81, 26);
     this.layoutControlItem6.Text     = "layoutControlItem6";
     this.layoutControlItem6.TextSize = new System.Drawing.Size(0, 0);
     this.layoutControlItem6.TextToControlDistance = 0;
     this.layoutControlItem6.TextVisible           = false;
     //
     // MainForm
     //
     this.AcceptButton = this.btn_ok;
     this.CancelButton = this.btn_quit;
     this.ClientSize   = new System.Drawing.Size(600, 392);
     this.Controls.Add(this.layoutControl1);
     this.MinimizeBox   = false;
     this.Name          = "MainForm";
     this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen;
     this.Text          = "二维数据关联";
     this.Load         += new System.EventHandler(this.MainForm_Load);
     ((System.ComponentModel.ISupportInitialize)(this.layoutControl1)).EndInit();
     this.layoutControl1.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.ceConnectMajorClass.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.ceConnectFacility.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.ceSelectAll.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridControl1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridView1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemCheckEdit1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemComboBox1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemComboBox2)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlGroup1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.emptySpaceItem1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem2)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem3)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem4)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem5)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem6)).EndInit();
     this.ResumeLayout(false);
 }
Example #25
0
 private void InitializeComponent()
 {
     this.components = new System.ComponentModel.Container();
     System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(frmGridMunicipio));
     DevExpress.Utils.SerializableAppearanceObject  serializableAppearanceObject4 = new DevExpress.Utils.SerializableAppearanceObject();
     this.dgdTabela = new DevExpress.XtraGrid.GridControl();
     this.MunicipioDTOBindingSource = new System.Windows.Forms.BindingSource(this.components);
     this.gridView                  = new DevExpress.XtraGrid.Views.Grid.GridView();
     this.colCodigoibge             = new DevExpress.XtraGrid.Columns.GridColumn();
     this.colNome                   = new DevExpress.XtraGrid.Columns.GridColumn();
     this.colUF                     = new DevExpress.XtraGrid.Columns.GridColumn();
     this.dxErrorProvider           = new DevExpress.XtraEditors.DXErrorProvider.DXErrorProvider(this.components);
     this.barManager                = new DevExpress.XtraBars.BarManager(this.components);
     this.barOpcoes                 = new DevExpress.XtraBars.Bar();
     this.btnInserir                = new DevExpress.XtraBars.BarButtonItem();
     this.btnEditar                 = new DevExpress.XtraBars.BarButtonItem();
     this.btnExcluir                = new DevExpress.XtraBars.BarButtonItem();
     this.btnVisualizar             = new DevExpress.XtraBars.BarButtonItem();
     this.btnSelecionar             = new DevExpress.XtraBars.BarButtonItem();
     this.btnImprimir               = new DevExpress.XtraBars.BarButtonItem();
     this.barPesquisa               = new DevExpress.XtraBars.Bar();
     this.lblPesquisar              = new DevExpress.XtraBars.BarStaticItem();
     this.Filtro                    = new DevExpress.XtraBars.BarEditItem();
     this.btnFiltro                 = new DevExpress.XtraEditors.Repository.RepositoryItemComboBox();
     this.txtConsulta               = new DevExpress.XtraBars.BarEditItem();
     this.btnPesquisa               = new DevExpress.XtraEditors.Repository.RepositoryItemButtonEdit();
     this.barDockControlTop         = new DevExpress.XtraBars.BarDockControl();
     this.barDockControlBottom      = new DevExpress.XtraBars.BarDockControl();
     this.barDockControlLeft        = new DevExpress.XtraBars.BarDockControl();
     this.barDockControlRight       = new DevExpress.XtraBars.BarDockControl();
     this.barEditItem1              = new DevExpress.XtraBars.BarEditItem();
     this.repositoryItemTextEdit1   = new DevExpress.XtraEditors.Repository.RepositoryItemTextEdit();
     this.repositoryItemButtonEdit1 = new DevExpress.XtraEditors.Repository.RepositoryItemButtonEdit();
     ((System.ComponentModel.ISupportInitialize)(this.dgdTabela)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.MunicipioDTOBindingSource)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridView)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.dxErrorProvider)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.barManager)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.btnFiltro)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.btnPesquisa)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemTextEdit1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemButtonEdit1)).BeginInit();
     this.SuspendLayout();
     //
     // dgdTabela
     //
     this.dgdTabela.DataSource = this.MunicipioDTOBindingSource;
     this.dgdTabela.Dock       = System.Windows.Forms.DockStyle.Fill;
     this.dgdTabela.Location   = new System.Drawing.Point(0, 26);
     this.dgdTabela.MainView   = this.gridView;
     this.dgdTabela.Name       = "dgdTabela";
     this.dgdTabela.Size       = new System.Drawing.Size(844, 463);
     this.dgdTabela.TabIndex   = 5;
     this.dgdTabela.ViewCollection.AddRange(new DevExpress.XtraGrid.Views.Base.BaseView[] {
         this.gridView
     });
     this.dgdTabela.DoubleClick += new System.EventHandler(this.dgdTabela_DoubleClick);
     //
     // MunicipioDTOBindingSource
     //
     this.MunicipioDTOBindingSource.DataSource = typeof(MechTech.Entities.MunicipioDTO);
     //
     // gridView
     //
     this.gridView.Columns.AddRange(new DevExpress.XtraGrid.Columns.GridColumn[] {
         this.colCodigoibge,
         this.colNome,
         this.colUF
     });
     this.gridView.GridControl = this.dgdTabela;
     this.gridView.Name        = "gridView";
     this.gridView.OptionsBehavior.Editable = false;
     this.gridView.OptionsCustomization.AllowColumnResizing = false;
     this.gridView.OptionsCustomization.AllowFilter         = false;
     this.gridView.OptionsMenu.EnableColumnMenu             = false;
     this.gridView.OptionsMenu.EnableFooterMenu             = false;
     this.gridView.OptionsMenu.EnableGroupPanelMenu         = false;
     this.gridView.OptionsNavigation.EnterMoveNextColumn    = true;
     this.gridView.CustomUnboundColumnData += new DevExpress.XtraGrid.Views.Base.CustomColumnDataEventHandler(this.gridView_CustomUnboundColumnData);
     this.gridView.RowCountChanged         += new System.EventHandler(this.gridView_RowCountChanged_1);
     //
     // colCodigoibge
     //
     this.colCodigoibge.AppearanceHeader.Options.UseTextOptions = true;
     this.colCodigoibge.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.colCodigoibge.Caption      = "Código IBGE";
     this.colCodigoibge.FieldName    = "Codigoibge";
     this.colCodigoibge.Name         = "colCodigoibge";
     this.colCodigoibge.Visible      = true;
     this.colCodigoibge.VisibleIndex = 0;
     this.colCodigoibge.Width        = 90;
     //
     // colNome
     //
     this.colNome.AppearanceHeader.Options.UseTextOptions = true;
     this.colNome.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.colNome.Caption      = "Nome";
     this.colNome.FieldName    = "Nome";
     this.colNome.Name         = "colNome";
     this.colNome.Visible      = true;
     this.colNome.VisibleIndex = 1;
     this.colNome.Width        = 470;
     //
     // colUF
     //
     this.colUF.AppearanceCell.Options.UseTextOptions   = true;
     this.colUF.AppearanceCell.TextOptions.HAlignment   = DevExpress.Utils.HorzAlignment.Center;
     this.colUF.AppearanceHeader.Options.UseTextOptions = true;
     this.colUF.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.colUF.Caption      = "Estado (UF)";
     this.colUF.FieldName    = "UF.Codigo";
     this.colUF.Name         = "colUF";
     this.colUF.UnboundType  = DevExpress.Data.UnboundColumnType.String;
     this.colUF.Visible      = true;
     this.colUF.VisibleIndex = 2;
     this.colUF.Width        = 95;
     //
     // dxErrorProvider
     //
     this.dxErrorProvider.ContainerControl = this;
     //
     // barManager
     //
     this.barManager.AllowCustomization      = false;
     this.barManager.AllowMoveBarOnToolbar   = false;
     this.barManager.AllowQuickCustomization = false;
     this.barManager.AllowShowToolbarsPopup  = false;
     this.barManager.Bars.AddRange(new DevExpress.XtraBars.Bar[] {
         this.barOpcoes,
         this.barPesquisa
     });
     this.barManager.DockControls.Add(this.barDockControlTop);
     this.barManager.DockControls.Add(this.barDockControlBottom);
     this.barManager.DockControls.Add(this.barDockControlLeft);
     this.barManager.DockControls.Add(this.barDockControlRight);
     this.barManager.Form = this;
     this.barManager.Items.AddRange(new DevExpress.XtraBars.BarItem[] {
         this.btnInserir,
         this.btnEditar,
         this.btnExcluir,
         this.btnVisualizar,
         this.btnSelecionar,
         this.btnImprimir,
         this.lblPesquisar,
         this.Filtro,
         this.barEditItem1,
         this.txtConsulta
     });
     this.barManager.MaxItemId = 11;
     this.barManager.RepositoryItems.AddRange(new DevExpress.XtraEditors.Repository.RepositoryItem[] {
         this.repositoryItemButtonEdit1,
         this.repositoryItemTextEdit1,
         this.btnPesquisa,
         this.btnFiltro
     });
     //
     // barOpcoes
     //
     this.barOpcoes.BarName   = "Opções";
     this.barOpcoes.DockCol   = 0;
     this.barOpcoes.DockRow   = 0;
     this.barOpcoes.DockStyle = DevExpress.XtraBars.BarDockStyle.Top;
     this.barOpcoes.LinksPersistInfo.AddRange(new DevExpress.XtraBars.LinkPersistInfo[] {
         new DevExpress.XtraBars.LinkPersistInfo(DevExpress.XtraBars.BarLinkUserDefines.PaintStyle, this.btnInserir, DevExpress.XtraBars.BarItemPaintStyle.CaptionGlyph),
         new DevExpress.XtraBars.LinkPersistInfo(DevExpress.XtraBars.BarLinkUserDefines.PaintStyle, this.btnEditar, DevExpress.XtraBars.BarItemPaintStyle.CaptionGlyph),
         new DevExpress.XtraBars.LinkPersistInfo(DevExpress.XtraBars.BarLinkUserDefines.PaintStyle, this.btnExcluir, DevExpress.XtraBars.BarItemPaintStyle.CaptionGlyph),
         new DevExpress.XtraBars.LinkPersistInfo(DevExpress.XtraBars.BarLinkUserDefines.PaintStyle, this.btnVisualizar, DevExpress.XtraBars.BarItemPaintStyle.CaptionGlyph),
         new DevExpress.XtraBars.LinkPersistInfo(DevExpress.XtraBars.BarLinkUserDefines.PaintStyle, this.btnSelecionar, DevExpress.XtraBars.BarItemPaintStyle.CaptionGlyph),
         new DevExpress.XtraBars.LinkPersistInfo(DevExpress.XtraBars.BarLinkUserDefines.PaintStyle, this.btnImprimir, DevExpress.XtraBars.BarItemPaintStyle.CaptionGlyph)
     });
     this.barOpcoes.OptionsBar.AllowQuickCustomization = false;
     this.barOpcoes.OptionsBar.DrawDragBorder          = false;
     this.barOpcoes.Text = "Opções";
     //
     // btnInserir
     //
     this.btnInserir.Caption    = "&Novo";
     this.btnInserir.Glyph      = ((System.Drawing.Image)(resources.GetObject("btnInserir.Glyph")));
     this.btnInserir.Hint       = "Inserção de registro";
     this.btnInserir.Id         = 0;
     this.btnInserir.ImageIndex = 6;
     this.btnInserir.LargeGlyph = ((System.Drawing.Image)(resources.GetObject("btnInserir.LargeGlyph")));
     this.btnInserir.Name       = "btnInserir";
     this.btnInserir.ItemClick += new DevExpress.XtraBars.ItemClickEventHandler(this.btnInserir_ItemClick);
     //
     // btnEditar
     //
     this.btnEditar.Caption    = "&Alterar";
     this.btnEditar.Enabled    = false;
     this.btnEditar.Glyph      = ((System.Drawing.Image)(resources.GetObject("btnEditar.Glyph")));
     this.btnEditar.Hint       = "Atualização de registro";
     this.btnEditar.Id         = 2;
     this.btnEditar.ImageIndex = 2;
     this.btnEditar.LargeGlyph = ((System.Drawing.Image)(resources.GetObject("btnEditar.LargeGlyph")));
     this.btnEditar.Name       = "btnEditar";
     this.btnEditar.ItemClick += new DevExpress.XtraBars.ItemClickEventHandler(this.btnEditar_ItemClick);
     //
     // btnExcluir
     //
     this.btnExcluir.Caption    = "&Excluir";
     this.btnExcluir.Enabled    = false;
     this.btnExcluir.Glyph      = ((System.Drawing.Image)(resources.GetObject("btnExcluir.Glyph")));
     this.btnExcluir.Hint       = "Exclusão de registro";
     this.btnExcluir.Id         = 3;
     this.btnExcluir.ImageIndex = 4;
     this.btnExcluir.LargeGlyph = ((System.Drawing.Image)(resources.GetObject("btnExcluir.LargeGlyph")));
     this.btnExcluir.Name       = "btnExcluir";
     this.btnExcluir.ItemClick += new DevExpress.XtraBars.ItemClickEventHandler(this.btnExcluir_ItemClick);
     //
     // btnVisualizar
     //
     this.btnVisualizar.Caption    = "&Visualizar";
     this.btnVisualizar.Enabled    = false;
     this.btnVisualizar.Glyph      = ((System.Drawing.Image)(resources.GetObject("btnVisualizar.Glyph")));
     this.btnVisualizar.Hint       = "Visualização";
     this.btnVisualizar.Id         = 4;
     this.btnVisualizar.ImageIndex = 0;
     this.btnVisualizar.LargeGlyph = ((System.Drawing.Image)(resources.GetObject("btnVisualizar.LargeGlyph")));
     this.btnVisualizar.Name       = "btnVisualizar";
     this.btnVisualizar.ItemClick += new DevExpress.XtraBars.ItemClickEventHandler(this.btnVisualizar_ItemClick);
     //
     // btnSelecionar
     //
     this.btnSelecionar.Caption    = "&Selecionar";
     this.btnSelecionar.Enabled    = false;
     this.btnSelecionar.Glyph      = ((System.Drawing.Image)(resources.GetObject("btnSelecionar.Glyph")));
     this.btnSelecionar.Hint       = "Seleção";
     this.btnSelecionar.Id         = 5;
     this.btnSelecionar.ImageIndex = 9;
     this.btnSelecionar.LargeGlyph = ((System.Drawing.Image)(resources.GetObject("btnSelecionar.LargeGlyph")));
     this.btnSelecionar.Name       = "btnSelecionar";
     this.btnSelecionar.ItemClick += new DevExpress.XtraBars.ItemClickEventHandler(this.btnSelecionar_ItemClick);
     //
     // btnImprimir
     //
     this.btnImprimir.Caption    = "&Imprimir";
     this.btnImprimir.Enabled    = false;
     this.btnImprimir.Glyph      = ((System.Drawing.Image)(resources.GetObject("btnImprimir.Glyph")));
     this.btnImprimir.Hint       = "Impressão";
     this.btnImprimir.Id         = 6;
     this.btnImprimir.ImageIndex = 5;
     this.btnImprimir.LargeGlyph = ((System.Drawing.Image)(resources.GetObject("btnImprimir.LargeGlyph")));
     this.btnImprimir.Name       = "btnImprimir";
     this.btnImprimir.ItemClick += new DevExpress.XtraBars.ItemClickEventHandler(this.btnImprimir_ItemClick);
     //
     // barPesquisa
     //
     this.barPesquisa.BarName   = "Pesquisa";
     this.barPesquisa.DockCol   = 1;
     this.barPesquisa.DockRow   = 0;
     this.barPesquisa.DockStyle = DevExpress.XtraBars.BarDockStyle.Top;
     this.barPesquisa.LinksPersistInfo.AddRange(new DevExpress.XtraBars.LinkPersistInfo[] {
         new DevExpress.XtraBars.LinkPersistInfo(this.lblPesquisar),
         new DevExpress.XtraBars.LinkPersistInfo(DevExpress.XtraBars.BarLinkUserDefines.Width, this.Filtro, "", false, true, true, 124),
         new DevExpress.XtraBars.LinkPersistInfo(this.txtConsulta)
     });
     this.barPesquisa.OptionsBar.AllowQuickCustomization = false;
     this.barPesquisa.OptionsBar.DrawDragBorder          = false;
     this.barPesquisa.Text = "Pesquisa";
     //
     // lblPesquisar
     //
     this.lblPesquisar.Border        = DevExpress.XtraEditors.Controls.BorderStyles.NoBorder;
     this.lblPesquisar.Caption       = "Pesquisar por:";
     this.lblPesquisar.Id            = 7;
     this.lblPesquisar.Name          = "lblPesquisar";
     this.lblPesquisar.TextAlignment = System.Drawing.StringAlignment.Near;
     //
     // Filtro
     //
     this.Filtro.Edit              = this.btnFiltro;
     this.Filtro.EditValue         = "Nome";
     this.Filtro.Hint              = "Campo a ser pesquisado";
     this.Filtro.Id                = 8;
     this.Filtro.Name              = "Filtro";
     this.Filtro.EditValueChanged += new System.EventHandler(this.Filtro_EditValueChanged);
     //
     // btnFiltro
     //
     this.btnFiltro.AutoHeight = false;
     this.btnFiltro.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
         new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)
     });
     this.btnFiltro.Items.AddRange(new object[] {
         "Código IBGE",
         "Nome"
     });
     this.btnFiltro.Name          = "btnFiltro";
     this.btnFiltro.TextEditStyle = DevExpress.XtraEditors.Controls.TextEditStyles.DisableTextEditor;
     //
     // txtConsulta
     //
     this.txtConsulta.AutoFillWidth = true;
     this.txtConsulta.Edit          = this.btnPesquisa;
     this.txtConsulta.Hint          = "Conteúdo a ser pesquisado";
     this.txtConsulta.Id            = 10;
     this.txtConsulta.Name          = "txtConsulta";
     //
     // btnPesquisa
     //
     this.btnPesquisa.AutoHeight = false;
     this.btnPesquisa.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("btnPesquisa.Buttons"))), new DevExpress.Utils.KeyShortcut(System.Windows.Forms.Keys.None), serializableAppearanceObject4, "", null, null, true)
     });
     this.btnPesquisa.Name         = "btnPesquisa";
     this.btnPesquisa.ButtonClick += new DevExpress.XtraEditors.Controls.ButtonPressedEventHandler(this.btnPesquisa_ButtonClick);
     this.btnPesquisa.Click       += new System.EventHandler(this.btnPesquisa_Click);
     this.btnPesquisa.KeyDown     += new System.Windows.Forms.KeyEventHandler(this.btnPesquisa_KeyDown);
     //
     // 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(844, 26);
     //
     // barDockControlBottom
     //
     this.barDockControlBottom.CausesValidation = false;
     this.barDockControlBottom.Dock             = System.Windows.Forms.DockStyle.Bottom;
     this.barDockControlBottom.Location         = new System.Drawing.Point(0, 489);
     this.barDockControlBottom.Size             = new System.Drawing.Size(844, 0);
     //
     // barDockControlLeft
     //
     this.barDockControlLeft.CausesValidation = false;
     this.barDockControlLeft.Dock             = System.Windows.Forms.DockStyle.Left;
     this.barDockControlLeft.Location         = new System.Drawing.Point(0, 26);
     this.barDockControlLeft.Size             = new System.Drawing.Size(0, 463);
     //
     // barDockControlRight
     //
     this.barDockControlRight.CausesValidation = false;
     this.barDockControlRight.Dock             = System.Windows.Forms.DockStyle.Right;
     this.barDockControlRight.Location         = new System.Drawing.Point(844, 26);
     this.barDockControlRight.Size             = new System.Drawing.Size(0, 463);
     //
     // barEditItem1
     //
     this.barEditItem1.Caption = "barEditItem1";
     this.barEditItem1.Edit    = this.repositoryItemTextEdit1;
     this.barEditItem1.Id      = 9;
     this.barEditItem1.Name    = "barEditItem1";
     //
     // repositoryItemTextEdit1
     //
     this.repositoryItemTextEdit1.AutoHeight = false;
     this.repositoryItemTextEdit1.Name       = "repositoryItemTextEdit1";
     //
     // repositoryItemButtonEdit1
     //
     this.repositoryItemButtonEdit1.AutoHeight = false;
     this.repositoryItemButtonEdit1.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
         new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)
     });
     this.repositoryItemButtonEdit1.Name = "repositoryItemButtonEdit1";
     //
     // frmGridMunicipio
     //
     this.Appearance.Options.UseFont = true;
     this.AutoScaleDimensions        = new System.Drawing.SizeF(6F, 13F);
     this.ClientSize = new System.Drawing.Size(844, 489);
     this.Controls.Add(this.dgdTabela);
     this.Controls.Add(this.barDockControlLeft);
     this.Controls.Add(this.barDockControlRight);
     this.Controls.Add(this.barDockControlBottom);
     this.Controls.Add(this.barDockControlTop);
     this.Name        = "frmGridMunicipio";
     this.Text        = "Cadastro de Municípios";
     this.FormClosed += new System.Windows.Forms.FormClosedEventHandler(this.frmGridMunicipio_FormClosed);
     this.Load       += new System.EventHandler(this.frmGridMunicipio_Load);
     ((System.ComponentModel.ISupportInitialize)(this.dgdTabela)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.MunicipioDTOBindingSource)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridView)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.dxErrorProvider)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.barManager)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.btnFiltro)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.btnPesquisa)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemTextEdit1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemButtonEdit1)).EndInit();
     this.ResumeLayout(false);
 }
Example #26
0
        private static string GetFirstSpellFromUser(ArrayList alPinyinData)
        {
            #region 初始化Form
            DevExpress.XtraEditors.XtraForm         frmPinyin  = NewForm();
            DevExpress.XtraGrid.GridControl         gridPinyin = new DevExpress.XtraGrid.GridControl();
            DevExpress.XtraGrid.Views.Grid.GridView viewPinyin = new DevExpress.XtraGrid.Views.Grid.GridView();
            CJia.Controls.CJiaPanel cJiaPanel1 = new CJiaPanel();
            CJia.Controls.CJiaLabel cJiaLabel1 = new CJiaLabel();
            CJia.Controls.BtnSave   btnSave1   = new BtnSave();
            DevExpress.XtraEditors.XtraUserControl userControl1 = new DevExpress.XtraEditors.XtraUserControl();
            CJia.Controls.CJiaPanel cJiaPanel2 = new CJiaPanel();
            //
            // cJiaPanel1
            //
            cJiaPanel1.Appearance.BackColor            = System.Drawing.Color.FromArgb(((int)(((byte)(102)))), ((int)(((byte)(180)))), ((int)(((byte)(228)))));
            cJiaPanel1.Appearance.Options.UseBackColor = true;
            cJiaPanel1.BorderStyle = DevExpress.XtraEditors.Controls.BorderStyles.NoBorder;
            cJiaPanel1.Controls.Add(cJiaLabel1);
            cJiaPanel1.Dock     = System.Windows.Forms.DockStyle.Top;
            cJiaPanel1.Location = new System.Drawing.Point(0, 0);
            cJiaPanel1.LookAndFeel.UseDefaultLookAndFeel = false;
            cJiaPanel1.Name     = "cJiaPanel1";
            cJiaPanel1.Size     = new System.Drawing.Size(525, 35);
            cJiaPanel1.TabIndex = 2;
            //
            // cJiaLabel1
            //
            cJiaLabel1.Appearance.Font      = new System.Drawing.Font("Tahoma", 10F, System.Drawing.FontStyle.Bold);
            cJiaLabel1.Appearance.ForeColor = System.Drawing.Color.White;
            cJiaLabel1.Location             = new System.Drawing.Point(5, 11);
            cJiaLabel1.Name     = "cJiaLabel1";
            cJiaLabel1.Size     = new System.Drawing.Size(144, 16);
            cJiaLabel1.TabIndex = 2;
            cJiaLabel1.Text     = "请确认多音字拼音码";
            // gridPinyin
            gridPinyin.EmbeddedNavigator.Name = "";
            gridPinyin.Dock                 = System.Windows.Forms.DockStyle.Top;
            gridPinyin.Location             = new System.Drawing.Point(0, 35);
            gridPinyin.LookAndFeel.SkinName = "Office 2010 Blue";
            gridPinyin.LookAndFeel.UseDefaultLookAndFeel = false;
            gridPinyin.MainView = viewPinyin;
            gridPinyin.Name     = "gridPinyin";
            gridPinyin.Size     = new System.Drawing.Size(525, 141);
            gridPinyin.TabIndex = 1;
            gridPinyin.ViewCollection.AddRange(new DevExpress.XtraGrid.Views.Base.BaseView[] {
                viewPinyin
            });
            // viewPinyin
            #region viewPinyin
            viewPinyin.GridControl = gridPinyin;
            viewPinyin.Name        = "viewPinyin";
            viewPinyin.OptionsView.ColumnAutoWidth                                = false;
            viewPinyin.Appearance.ColumnFilterButton.BackColor                    = System.Drawing.Color.FromArgb(((int)(((byte)(104)))), ((int)(((byte)(184)))), ((int)(((byte)(251)))));
            viewPinyin.Appearance.ColumnFilterButton.BorderColor                  = System.Drawing.Color.FromArgb(((int)(((byte)(104)))), ((int)(((byte)(184)))), ((int)(((byte)(251)))));
            viewPinyin.Appearance.ColumnFilterButton.ForeColor                    = System.Drawing.Color.White;
            viewPinyin.Appearance.ColumnFilterButton.Options.UseBackColor         = true;
            viewPinyin.Appearance.ColumnFilterButton.Options.UseBorderColor       = true;
            viewPinyin.Appearance.ColumnFilterButton.Options.UseForeColor         = true;
            viewPinyin.Appearance.ColumnFilterButtonActive.BackColor              = System.Drawing.Color.FromArgb(((int)(((byte)(170)))), ((int)(((byte)(216)))), ((int)(((byte)(254)))));
            viewPinyin.Appearance.ColumnFilterButtonActive.BorderColor            = System.Drawing.Color.FromArgb(((int)(((byte)(170)))), ((int)(((byte)(216)))), ((int)(((byte)(254)))));
            viewPinyin.Appearance.ColumnFilterButtonActive.ForeColor              = System.Drawing.Color.Black;
            viewPinyin.Appearance.ColumnFilterButtonActive.Options.UseBackColor   = true;
            viewPinyin.Appearance.ColumnFilterButtonActive.Options.UseBorderColor = true;
            viewPinyin.Appearance.ColumnFilterButtonActive.Options.UseForeColor   = true;
            viewPinyin.Appearance.Empty.BackColor                          = System.Drawing.Color.FromArgb(((int)(((byte)(236)))), ((int)(((byte)(246)))), ((int)(((byte)(255)))));
            viewPinyin.Appearance.Empty.BackColor2                         = System.Drawing.Color.White;
            viewPinyin.Appearance.Empty.Options.UseBackColor               = true;
            viewPinyin.Appearance.EvenRow.BackColor                        = System.Drawing.Color.FromArgb(((int)(((byte)(247)))), ((int)(((byte)(251)))), ((int)(((byte)(255)))));
            viewPinyin.Appearance.EvenRow.BorderColor                      = System.Drawing.Color.FromArgb(((int)(((byte)(247)))), ((int)(((byte)(251)))), ((int)(((byte)(255)))));
            viewPinyin.Appearance.EvenRow.ForeColor                        = System.Drawing.Color.Black;
            viewPinyin.Appearance.EvenRow.Options.UseBackColor             = true;
            viewPinyin.Appearance.EvenRow.Options.UseBorderColor           = true;
            viewPinyin.Appearance.EvenRow.Options.UseForeColor             = true;
            viewPinyin.Appearance.FilterCloseButton.BackColor              = System.Drawing.Color.FromArgb(((int)(((byte)(104)))), ((int)(((byte)(184)))), ((int)(((byte)(251)))));
            viewPinyin.Appearance.FilterCloseButton.BorderColor            = System.Drawing.Color.FromArgb(((int)(((byte)(104)))), ((int)(((byte)(184)))), ((int)(((byte)(251)))));
            viewPinyin.Appearance.FilterCloseButton.ForeColor              = System.Drawing.Color.White;
            viewPinyin.Appearance.FilterCloseButton.Options.UseBackColor   = true;
            viewPinyin.Appearance.FilterCloseButton.Options.UseBorderColor = true;
            viewPinyin.Appearance.FilterCloseButton.Options.UseForeColor   = true;
            viewPinyin.Appearance.FilterPanel.BackColor                    = System.Drawing.Color.FromArgb(((int)(((byte)(236)))), ((int)(((byte)(246)))), ((int)(((byte)(255)))));
            viewPinyin.Appearance.FilterPanel.BackColor2                   = System.Drawing.Color.White;
            viewPinyin.Appearance.FilterPanel.ForeColor                    = System.Drawing.Color.Black;
            viewPinyin.Appearance.FilterPanel.Options.UseBackColor         = true;
            viewPinyin.Appearance.FilterPanel.Options.UseForeColor         = true;
            viewPinyin.Appearance.FixedLine.BackColor                      = System.Drawing.Color.FromArgb(((int)(((byte)(170)))), ((int)(((byte)(216)))), ((int)(((byte)(254)))));
            viewPinyin.Appearance.FixedLine.BorderColor                    = System.Drawing.Color.FromArgb(((int)(((byte)(170)))), ((int)(((byte)(216)))), ((int)(((byte)(254)))));
            viewPinyin.Appearance.FixedLine.Options.UseBackColor           = true;
            viewPinyin.Appearance.FixedLine.Options.UseBorderColor         = true;
            viewPinyin.Appearance.FocusedCell.BackColor                    = System.Drawing.Color.FromArgb(((int)(((byte)(170)))), ((int)(((byte)(216)))), ((int)(((byte)(254)))));
            viewPinyin.Appearance.FocusedCell.BorderColor                  = System.Drawing.Color.FromArgb(((int)(((byte)(170)))), ((int)(((byte)(216)))), ((int)(((byte)(254)))));
            viewPinyin.Appearance.FocusedCell.ForeColor                    = System.Drawing.Color.White;
            viewPinyin.Appearance.FocusedCell.Options.UseBackColor         = true;
            viewPinyin.Appearance.FocusedCell.Options.UseForeColor         = true;
            viewPinyin.Appearance.FocusedRow.BackColor                     = System.Drawing.Color.White;
            viewPinyin.Appearance.FocusedRow.ForeColor                     = System.Drawing.Color.Black;
            viewPinyin.Appearance.FocusedRow.Options.UseBackColor          = true;
            viewPinyin.Appearance.FocusedRow.Options.UseBorderColor        = true;
            viewPinyin.Appearance.FocusedRow.Options.UseFont               = true;
            viewPinyin.Appearance.FocusedRow.Options.UseForeColor          = true;
            viewPinyin.Appearance.FooterPanel.BackColor                    = System.Drawing.Color.FromArgb(((int)(((byte)(104)))), ((int)(((byte)(184)))), ((int)(((byte)(251)))));
            viewPinyin.Appearance.FooterPanel.BorderColor                  = System.Drawing.Color.FromArgb(((int)(((byte)(104)))), ((int)(((byte)(184)))), ((int)(((byte)(251)))));
            viewPinyin.Appearance.FooterPanel.ForeColor                    = System.Drawing.Color.Black;
            viewPinyin.Appearance.FooterPanel.Options.UseBackColor         = true;
            viewPinyin.Appearance.FooterPanel.Options.UseBorderColor       = true;
            viewPinyin.Appearance.FooterPanel.Options.UseForeColor         = true;
            viewPinyin.Appearance.GroupButton.BackColor                    = System.Drawing.Color.FromArgb(((int)(((byte)(104)))), ((int)(((byte)(184)))), ((int)(((byte)(251)))));
            viewPinyin.Appearance.GroupButton.BorderColor                  = System.Drawing.Color.FromArgb(((int)(((byte)(104)))), ((int)(((byte)(184)))), ((int)(((byte)(251)))));
            viewPinyin.Appearance.GroupButton.Options.UseBackColor         = true;
            viewPinyin.Appearance.GroupButton.Options.UseBorderColor       = true;
            viewPinyin.Appearance.GroupFooter.BackColor                    = System.Drawing.Color.FromArgb(((int)(((byte)(170)))), ((int)(((byte)(216)))), ((int)(((byte)(254)))));
            viewPinyin.Appearance.GroupFooter.BorderColor                  = System.Drawing.Color.FromArgb(((int)(((byte)(170)))), ((int)(((byte)(216)))), ((int)(((byte)(254)))));
            viewPinyin.Appearance.GroupFooter.ForeColor                    = System.Drawing.Color.Black;
            viewPinyin.Appearance.GroupFooter.Options.UseBackColor         = true;
            viewPinyin.Appearance.GroupFooter.Options.UseBorderColor       = true;
            viewPinyin.Appearance.GroupFooter.Options.UseForeColor         = true;
            viewPinyin.Appearance.GroupPanel.BackColor                     = System.Drawing.Color.FromArgb(((int)(((byte)(236)))), ((int)(((byte)(246)))), ((int)(((byte)(255)))));
            viewPinyin.Appearance.GroupPanel.BackColor2                    = System.Drawing.Color.White;
            viewPinyin.Appearance.GroupPanel.ForeColor                     = System.Drawing.Color.Black;
            viewPinyin.Appearance.GroupPanel.Options.UseBackColor          = true;
            viewPinyin.Appearance.GroupPanel.Options.UseForeColor          = true;
            viewPinyin.Appearance.GroupRow.BackColor                       = System.Drawing.Color.FromArgb(((int)(((byte)(170)))), ((int)(((byte)(216)))), ((int)(((byte)(254)))));
            viewPinyin.Appearance.GroupRow.BorderColor                     = System.Drawing.Color.FromArgb(((int)(((byte)(170)))), ((int)(((byte)(216)))), ((int)(((byte)(254)))));
            viewPinyin.Appearance.GroupRow.ForeColor                       = System.Drawing.Color.Black;
            viewPinyin.Appearance.GroupRow.Options.UseBackColor            = true;
            viewPinyin.Appearance.GroupRow.Options.UseBorderColor          = true;
            viewPinyin.Appearance.GroupRow.Options.UseForeColor            = true;
            viewPinyin.Appearance.HeaderPanel.BackColor                    = System.Drawing.Color.FromArgb(((int)(((byte)(170)))), ((int)(((byte)(216)))), ((int)(((byte)(254)))));
            viewPinyin.Appearance.HeaderPanel.BorderColor                  = System.Drawing.Color.FromArgb(((int)(((byte)(170)))), ((int)(((byte)(216)))), ((int)(((byte)(254)))));
            viewPinyin.Appearance.HeaderPanel.Options.UseBackColor         = true;
            viewPinyin.Appearance.HeaderPanel.Options.UseBorderColor       = true;
            viewPinyin.Appearance.HideSelectionRow.BackColor               = System.Drawing.Color.FromArgb(((int)(((byte)(105)))), ((int)(((byte)(170)))), ((int)(((byte)(225)))));
            viewPinyin.Appearance.HideSelectionRow.BorderColor             = System.Drawing.Color.FromArgb(((int)(((byte)(83)))), ((int)(((byte)(155)))), ((int)(((byte)(215)))));
            viewPinyin.Appearance.HideSelectionRow.ForeColor               = System.Drawing.Color.FromArgb(((int)(((byte)(236)))), ((int)(((byte)(246)))), ((int)(((byte)(255)))));
            viewPinyin.Appearance.HideSelectionRow.Options.UseBackColor    = true;
            viewPinyin.Appearance.HideSelectionRow.Options.UseBorderColor  = true;
            viewPinyin.Appearance.HideSelectionRow.Options.UseForeColor    = true;
            viewPinyin.Appearance.HorzLine.BackColor                       = System.Drawing.Color.FromArgb(((int)(((byte)(104)))), ((int)(((byte)(184)))), ((int)(((byte)(251)))));
            viewPinyin.Appearance.HorzLine.Options.UseBackColor            = true;
            viewPinyin.Appearance.OddRow.BackColor                         = System.Drawing.Color.FromArgb(((int)(((byte)(236)))), ((int)(((byte)(246)))), ((int)(((byte)(255)))));
            viewPinyin.Appearance.OddRow.BorderColor                       = System.Drawing.Color.FromArgb(((int)(((byte)(236)))), ((int)(((byte)(246)))), ((int)(((byte)(255)))));
            viewPinyin.Appearance.OddRow.ForeColor                         = System.Drawing.Color.Black;
            viewPinyin.Appearance.OddRow.Options.UseBackColor              = true;
            viewPinyin.Appearance.OddRow.Options.UseBorderColor            = true;
            viewPinyin.Appearance.OddRow.Options.UseForeColor              = true;
            viewPinyin.Appearance.Preview.Font                      = new System.Drawing.Font("Verdana", 7.5F);
            viewPinyin.Appearance.Preview.ForeColor                 = System.Drawing.Color.FromArgb(((int)(((byte)(83)))), ((int)(((byte)(155)))), ((int)(((byte)(215)))));
            viewPinyin.Appearance.Preview.Options.UseFont           = true;
            viewPinyin.Appearance.Preview.Options.UseForeColor      = true;
            viewPinyin.Appearance.Row.BackColor                     = System.Drawing.Color.FromArgb(((int)(((byte)(247)))), ((int)(((byte)(251)))), ((int)(((byte)(255)))));
            viewPinyin.Appearance.Row.ForeColor                     = System.Drawing.Color.Black;
            viewPinyin.Appearance.Row.Options.UseBackColor          = true;
            viewPinyin.Appearance.Row.Options.UseForeColor          = true;
            viewPinyin.Appearance.RowSeparator.BackColor            = System.Drawing.Color.FromArgb(((int)(((byte)(236)))), ((int)(((byte)(246)))), ((int)(((byte)(255)))));
            viewPinyin.Appearance.RowSeparator.BackColor2           = System.Drawing.Color.White;
            viewPinyin.Appearance.RowSeparator.Options.UseBackColor = true;
            viewPinyin.Appearance.SelectedRow.BackColor             = System.Drawing.Color.FromArgb(((int)(((byte)(83)))), ((int)(((byte)(155)))), ((int)(((byte)(215)))));
            viewPinyin.Appearance.SelectedRow.ForeColor             = System.Drawing.Color.White;
            viewPinyin.Appearance.SelectedRow.Options.UseBackColor  = true;
            viewPinyin.Appearance.SelectedRow.Options.UseForeColor  = true;
            viewPinyin.Appearance.TopNewRow.BackColor               = System.Drawing.Color.White;
            viewPinyin.Appearance.TopNewRow.Options.UseBackColor    = true;
            viewPinyin.Appearance.VertLine.BackColor                = System.Drawing.Color.FromArgb(((int)(((byte)(104)))), ((int)(((byte)(184)))), ((int)(((byte)(251)))));
            viewPinyin.Appearance.VertLine.Options.UseBackColor     = true;

            viewPinyin.FocusRectStyle = DevExpress.XtraGrid.Views.Grid.DrawFocusRectStyle.None;
            //viewPinyin.OptionsBehavior.Editable = false;
            viewPinyin.OptionsCustomization.AllowFilter             = false;
            viewPinyin.OptionsSelection.EnableAppearanceFocusedCell = true;
            viewPinyin.OptionsView.EnableAppearanceEvenRow          = true;
            viewPinyin.OptionsView.EnableAppearanceOddRow           = true;
            viewPinyin.OptionsView.ShowGroupPanel = false;
            viewPinyin.RowHeight = 25;
            viewPinyin.OptionsView.ShowIndicator = false;
            viewPinyin.ShowButtonMode            = DevExpress.XtraGrid.Views.Base.ShowButtonModeEnum.ShowAlways;
            #endregion
            //
            // btnSave1
            //
            btnSave1.Appearance.Font                 = new System.Drawing.Font("微软雅黑", 10F);
            btnSave1.Appearance.ForeColor            = System.Drawing.Color.FromArgb(((int)(((byte)(30)))), ((int)(((byte)(57)))), ((int)(((byte)(91)))));
            btnSave1.Appearance.Options.UseFont      = true;
            btnSave1.Appearance.Options.UseForeColor = true;
            btnSave1.CustomText           = "确认";
            btnSave1.Image                = Properties.Resources.Save;
            btnSave1.Location             = new System.Drawing.Point(435, 7);
            btnSave1.LookAndFeel.SkinName = "Office 2010 Blue";
            btnSave1.LookAndFeel.UseDefaultLookAndFeel = false;
            btnSave1.Name       = "btnSave1";
            btnSave1.Selectable = false;
            btnSave1.Size       = new System.Drawing.Size(80, 28);
            btnSave1.TabIndex   = 4;
            btnSave1.Text       = "确认";
            btnSave1.Click     += new EventHandler(btnOk_Click);
            //
            // cJiaPanel2
            //
            cJiaPanel2.Appearance.BackColor              = System.Drawing.Color.FromArgb(((int)(((byte)(237)))), ((int)(((byte)(247)))), ((int)(((byte)(255)))));
            cJiaPanel2.Appearance.BackColor2             = System.Drawing.Color.White;
            cJiaPanel2.Appearance.BorderColor            = System.Drawing.Color.FromArgb(((int)(((byte)(132)))), ((int)(((byte)(157)))), ((int)(((byte)(189)))));
            cJiaPanel2.Appearance.Options.UseBackColor   = true;
            cJiaPanel2.Appearance.Options.UseBorderColor = true;
            cJiaPanel2.BorderStyle = DevExpress.XtraEditors.Controls.BorderStyles.Simple;
            cJiaPanel2.Controls.Add(btnSave1);
            cJiaPanel2.Dock                 = System.Windows.Forms.DockStyle.Bottom;
            cJiaPanel2.Location             = new System.Drawing.Point(0, 172);
            cJiaPanel2.LookAndFeel.SkinName = "Office 2010 Silver";
            cJiaPanel2.LookAndFeel.Style    = DevExpress.LookAndFeel.LookAndFeelStyle.UltraFlat;
            cJiaPanel2.LookAndFeel.UseDefaultLookAndFeel = false;
            cJiaPanel2.Name     = "cJiaPanel2";
            cJiaPanel2.Size     = new System.Drawing.Size(525, 41);
            cJiaPanel2.TabIndex = 4;
            //
            // UserControl1
            //
            userControl1.AutoScaleDimensions = new System.Drawing.SizeF(6F, 12F);
            userControl1.AutoScaleMode       = System.Windows.Forms.AutoScaleMode.Font;
            userControl1.Controls.Add(cJiaPanel2);
            userControl1.Controls.Add(gridPinyin);
            userControl1.Controls.Add(cJiaPanel1);
            userControl1.Name = "UserControl1";
            userControl1.Size = new System.Drawing.Size(525, 215);

            frmPinyin.Controls.Add(userControl1);
            userControl1.Dock      = DockStyle.Fill;
            frmPinyin.AcceptButton = btnSave1;
            #endregion

            #region 获取拼音
            DataTable dt = BuildTable(alPinyinData);
            DataRow   dr = dt.NewRow();
            for (int i = 0; i <= alPinyinData.Count - 1; i++)
            {
                string[] pyData = (string[])alPinyinData[i];

                #region New Grid Column
                DevExpress.XtraGrid.Columns.GridColumn gridColumn = new DevExpress.XtraGrid.Columns.GridColumn();
                gridColumn.Caption   = pyData[0];
                gridColumn.FieldName = dt.Columns[i].ColumnName;
                gridColumn.OptionsColumn.AllowEdit = false;
                gridColumn.Visible      = true;
                gridColumn.VisibleIndex = viewPinyin.Columns.Count + 1;
                gridColumn.Width        = 60;
                gridColumn.AppearanceCell.Options.UseTextOptions   = true;
                gridColumn.AppearanceCell.TextOptions.HAlignment   = DevExpress.Utils.HorzAlignment.Center;
                gridColumn.AppearanceHeader.Options.UseTextOptions = true;
                gridColumn.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
                #endregion

                dr[i] = pyData[1];
                if (pyData.Length > 2)
                {
                    DevExpress.XtraEditors.Repository.RepositoryItemComboBox boxPinyin = new DevExpress.XtraEditors.Repository.RepositoryItemComboBox();
                    boxPinyin.AutoHeight    = false;
                    boxPinyin.TextEditStyle = DevExpress.XtraEditors.Controls.TextEditStyles.DisableTextEditor;
                    for (int j = 1; j <= pyData.Length - 1; j++)
                    {
                        boxPinyin.Items.Add(pyData[j]);
                    }
                    gridColumn.ColumnEdit = boxPinyin;
                    gridColumn.OptionsColumn.AllowEdit               = true;
                    gridColumn.AppearanceHeader.ForeColor            = System.Drawing.Color.Red;
                    gridColumn.AppearanceHeader.Options.UseForeColor = true;
                }
                viewPinyin.Columns.Add(gridColumn);
            }
            dt.Rows.Add(dr);
            gridPinyin.DataSource = dt;
            frmPinyin.ShowDialog();
            viewPinyin.PostEditor();
            #endregion

            StringBuilder sb = new StringBuilder();
            for (int i = 0; i <= alPinyinData.Count - 1; i++)
            {
                sb.Append(dt.Rows[0][i].ToString().Substring(0, 1));
            }
            return(sb.ToString());
        }
 /// <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(Form1));
     this.gridControl1            = new DevExpress.XtraGrid.GridControl();
     this.bindingSource1          = new System.Windows.Forms.BindingSource(this.components);
     this.dataSet1                = new System.Data.DataSet();
     this.dataTable1              = new System.Data.DataTable();
     this.dataColumn1             = new System.Data.DataColumn();
     this.dataColumn2             = new System.Data.DataColumn();
     this.dataColumn3             = new System.Data.DataColumn();
     this.gridView1               = new DevExpress.XtraGrid.Views.Grid.GridView();
     this.colParameter            = new DevExpress.XtraGrid.Columns.GridColumn();
     this.colUnit                 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.repositoryItemComboBox1 = new DevExpress.XtraEditors.Repository.RepositoryItemComboBox();
     this.colValue                = new DevExpress.XtraGrid.Columns.GridColumn();
     ((System.ComponentModel.ISupportInitialize)(this.gridControl1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.bindingSource1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.dataSet1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.dataTable1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridView1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemComboBox1)).BeginInit();
     this.SuspendLayout();
     //
     // gridControl1
     //
     this.gridControl1.DataSource = this.bindingSource1;
     resources.ApplyResources(this.gridControl1, "gridControl1");
     this.gridControl1.MainView = this.gridView1;
     this.gridControl1.Name     = "gridControl1";
     this.gridControl1.RepositoryItems.AddRange(new DevExpress.XtraEditors.Repository.RepositoryItem[] {
         this.repositoryItemComboBox1
     });
     this.gridControl1.ViewCollection.AddRange(new DevExpress.XtraGrid.Views.Base.BaseView[] {
         this.gridView1
     });
     //
     // bindingSource1
     //
     this.bindingSource1.DataMember = "Table1";
     this.bindingSource1.DataSource = this.dataSet1;
     //
     // dataSet1
     //
     this.dataSet1.DataSetName = "NewDataSet";
     this.dataSet1.Locale      = new System.Globalization.CultureInfo("en-US");
     this.dataSet1.Tables.AddRange(new System.Data.DataTable[] {
         this.dataTable1
     });
     //
     // dataTable1
     //
     this.dataTable1.Columns.AddRange(new System.Data.DataColumn[] {
         this.dataColumn1,
         this.dataColumn2,
         this.dataColumn3
     });
     this.dataTable1.TableName = "Table1";
     //
     // dataColumn1
     //
     this.dataColumn1.ColumnName = "Parameter";
     //
     // dataColumn2
     //
     this.dataColumn2.ColumnName = "Unit";
     //
     // dataColumn3
     //
     this.dataColumn3.ColumnName = "Value";
     this.dataColumn3.DataType   = typeof(decimal);
     //
     // gridView1
     //
     this.gridView1.Columns.AddRange(new DevExpress.XtraGrid.Columns.GridColumn[] {
         this.colParameter,
         this.colUnit,
         this.colValue
     });
     this.gridView1.GridControl = this.gridControl1;
     resources.ApplyResources(this.gridView1, "gridView1");
     this.gridView1.Name         = "gridView1";
     this.gridView1.ShownEditor += new System.EventHandler(this.gridView1_ShownEditor);
     //
     // colParameter
     //
     resources.ApplyResources(this.colParameter, "colParameter");
     this.colParameter.FieldName = "Parameter";
     this.colParameter.Name      = "colParameter";
     //
     // colUnit
     //
     resources.ApplyResources(this.colUnit, "colUnit");
     this.colUnit.ColumnEdit = this.repositoryItemComboBox1;
     this.colUnit.FieldName  = "Unit";
     this.colUnit.Name       = "colUnit";
     //
     // repositoryItemComboBox1
     //
     resources.ApplyResources(this.repositoryItemComboBox1, "repositoryItemComboBox1");
     this.repositoryItemComboBox1.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
         new DevExpress.XtraEditors.Controls.EditorButton(((DevExpress.XtraEditors.Controls.ButtonPredefines)(resources.GetObject("repositoryItemComboBox1.Buttons"))))
     });
     this.repositoryItemComboBox1.Name = "repositoryItemComboBox1";
     //
     // colValue
     //
     resources.ApplyResources(this.colValue, "colValue");
     this.colValue.FieldName = "Value";
     this.colValue.Name      = "colValue";
     //
     // Form1
     //
     resources.ApplyResources(this, "$this");
     this.Controls.Add(this.gridControl1);
     this.Name  = "Form1";
     this.Load += new System.EventHandler(this.Form1_Load);
     ((System.ComponentModel.ISupportInitialize)(this.gridControl1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.bindingSource1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.dataSet1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.dataTable1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridView1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemComboBox1)).EndInit();
     this.ResumeLayout(false);
 }
Example #28
0
 /// <summary>
 /// Required method for Designer support - do not modify
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     this.components              = new System.ComponentModel.Container();
     this.comboBoxEdit1           = new DevExpress.XtraEditors.ComboBoxEdit();
     this.simpleButton1           = new DevExpress.XtraEditors.SimpleButton();
     this.gridControl1            = new DevExpress.XtraGrid.GridControl();
     this.dataTable1              = new System.Data.DataTable();
     this.dataColumn1             = new System.Data.DataColumn();
     this.persistentRepository1   = new DevExpress.XtraEditors.Repository.PersistentRepository(this.components);
     this.repositoryItemComboBox1 = new DevExpress.XtraEditors.Repository.RepositoryItemComboBox();
     this.gridView1            = new DevExpress.XtraGrid.Views.Grid.GridView();
     this.colDay               = new DevExpress.XtraGrid.Columns.GridColumn();
     this.barManager1          = new DevExpress.XtraBars.BarManager(this.components);
     this.bar1                 = new DevExpress.XtraBars.Bar();
     this.barEditItem1         = new DevExpress.XtraBars.BarEditItem();
     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.dataSet1             = new System.Data.DataSet();
     this.simpleButton2        = new DevExpress.XtraEditors.SimpleButton();
     this.bindingSource1       = new System.Windows.Forms.BindingSource(this.components);
     ((System.ComponentModel.ISupportInitialize)(this.comboBoxEdit1.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridControl1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.dataTable1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemComboBox1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridView1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.barManager1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.dataSet1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.bindingSource1)).BeginInit();
     this.SuspendLayout();
     //
     // comboBoxEdit1
     //
     this.comboBoxEdit1.Location = new System.Drawing.Point(8, 32);
     this.comboBoxEdit1.Name     = "comboBoxEdit1";
     this.comboBoxEdit1.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
         new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)
     });
     this.comboBoxEdit1.Size     = new System.Drawing.Size(208, 20);
     this.comboBoxEdit1.TabIndex = 0;
     //
     // simpleButton1
     //
     this.simpleButton1.Location = new System.Drawing.Point(367, 32);
     this.simpleButton1.Name     = "simpleButton1";
     this.simpleButton1.Size     = new System.Drawing.Size(168, 23);
     this.simpleButton1.TabIndex = 1;
     this.simpleButton1.Text     = "Set Day Index 1";
     this.simpleButton1.Click   += new System.EventHandler(this.simpleButton1_Click);
     //
     // gridControl1
     //
     this.gridControl1.DataSource         = this.bindingSource1;
     this.gridControl1.ExternalRepository = this.persistentRepository1;
     this.gridControl1.Location           = new System.Drawing.Point(8, 64);
     this.gridControl1.MainView           = this.gridView1;
     this.gridControl1.Name     = "gridControl1";
     this.gridControl1.Size     = new System.Drawing.Size(325, 208);
     this.gridControl1.TabIndex = 2;
     this.gridControl1.ViewCollection.AddRange(new DevExpress.XtraGrid.Views.Base.BaseView[] {
         this.gridView1
     });
     //
     // dataTable1
     //
     this.dataTable1.Columns.AddRange(new System.Data.DataColumn[] {
         this.dataColumn1
     });
     this.dataTable1.TableName = "Table1";
     //
     // dataColumn1
     //
     this.dataColumn1.ColumnName = "Day";
     //
     // persistentRepository1
     //
     this.persistentRepository1.Items.AddRange(new DevExpress.XtraEditors.Repository.RepositoryItem[] {
         this.repositoryItemComboBox1
     });
     //
     // repositoryItemComboBox1
     //
     this.repositoryItemComboBox1.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
         new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)
     });
     this.repositoryItemComboBox1.Items.AddRange(new object[] {
         "Sunday",
         "Monday",
         "Tuesday",
         "Wednesday",
         "Thursday",
         "Friday",
         "Saturday"
     });
     this.repositoryItemComboBox1.Name          = "repositoryItemComboBox1";
     this.repositoryItemComboBox1.TextEditStyle = DevExpress.XtraEditors.Controls.TextEditStyles.DisableTextEditor;
     //
     // gridView1
     //
     this.gridView1.Columns.AddRange(new DevExpress.XtraGrid.Columns.GridColumn[] {
         this.colDay
     });
     this.gridView1.GridControl = this.gridControl1;
     this.gridView1.Name        = "gridView1";
     //
     // colDay
     //
     this.colDay.Caption      = "Day";
     this.colDay.ColumnEdit   = this.repositoryItemComboBox1;
     this.colDay.FieldName    = "Day";
     this.colDay.Name         = "colDay";
     this.colDay.Visible      = true;
     this.colDay.VisibleIndex = 0;
     //
     // barManager1
     //
     this.barManager1.Bars.AddRange(new DevExpress.XtraBars.Bar[] {
         this.bar1
     });
     this.barManager1.DockControls.Add(this.barDockControlTop);
     this.barManager1.DockControls.Add(this.barDockControlBottom);
     this.barManager1.DockControls.Add(this.barDockControlLeft);
     this.barManager1.DockControls.Add(this.barDockControlRight);
     this.barManager1.ExternalRepository = this.persistentRepository1;
     this.barManager1.Form = this;
     this.barManager1.Items.AddRange(new DevExpress.XtraBars.BarItem[] {
         this.barEditItem1
     });
     this.barManager1.MaxItemId = 2;
     //
     // bar1
     //
     this.bar1.BarName   = "Custom 1";
     this.bar1.DockCol   = 0;
     this.bar1.DockRow   = 0;
     this.bar1.DockStyle = DevExpress.XtraBars.BarDockStyle.Top;
     this.bar1.LinksPersistInfo.AddRange(new DevExpress.XtraBars.LinkPersistInfo[] {
         new DevExpress.XtraBars.LinkPersistInfo(DevExpress.XtraBars.BarLinkUserDefines.Width, this.barEditItem1, "", false, true, true, 201)
     });
     this.bar1.Text = "Custom 1";
     //
     // barEditItem1
     //
     this.barEditItem1.Caption = "barEditItem1";
     this.barEditItem1.Edit    = this.repositoryItemComboBox1;
     this.barEditItem1.Id      = 0;
     this.barEditItem1.Name    = "barEditItem1";
     //
     // dataSet1
     //
     this.dataSet1.DataSetName = "NewDataSet";
     this.dataSet1.Locale      = new System.Globalization.CultureInfo("en-US");
     this.dataSet1.Tables.AddRange(new System.Data.DataTable[] {
         this.dataTable1
     });
     //
     // simpleButton2
     //
     this.simpleButton2.Location = new System.Drawing.Point(367, 61);
     this.simpleButton2.Name     = "simpleButton2";
     this.simpleButton2.Size     = new System.Drawing.Size(168, 23);
     this.simpleButton2.TabIndex = 1;
     this.simpleButton2.Text     = "Get Selected Day and Index";
     this.simpleButton2.Click   += new System.EventHandler(this.simpleButton2_Click);
     //
     // bindingSource1
     //
     this.bindingSource1.DataMember = "Table1";
     this.bindingSource1.DataSource = this.dataSet1;
     //
     // Form1
     //
     this.AutoScaleBaseSize = new System.Drawing.Size(5, 13);
     this.ClientSize        = new System.Drawing.Size(545, 280);
     this.Controls.Add(this.gridControl1);
     this.Controls.Add(this.simpleButton2);
     this.Controls.Add(this.simpleButton1);
     this.Controls.Add(this.comboBoxEdit1);
     this.Controls.Add(this.barDockControlLeft);
     this.Controls.Add(this.barDockControlRight);
     this.Controls.Add(this.barDockControlBottom);
     this.Controls.Add(this.barDockControlTop);
     this.Name  = "Form1";
     this.Text  = "Form1";
     this.Load += new System.EventHandler(this.Form1_Load);
     ((System.ComponentModel.ISupportInitialize)(this.comboBoxEdit1.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridControl1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.dataTable1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemComboBox1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridView1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.barManager1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.dataSet1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.bindingSource1)).EndInit();
     this.ResumeLayout(false);
 }
 /// <summary>
 /// �����֧������ķ��� - ��Ҫ
 /// ʹ�ô���༭���޸Ĵ˷��������ݡ�
 /// </summary>
 private void InitializeComponent()
 {
     this.components = new System.ComponentModel.Container();
     System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(FormHistoryDL));
     this.barManager1 = new DevExpress.XtraBars.BarManager(this.components);
     this.bar1 = new DevExpress.XtraBars.Bar();
     this.barSubItem1 = new DevExpress.XtraBars.BarSubItem();
     this.barButtonItem7 = new DevExpress.XtraBars.BarButtonItem();
     this.barButtonItem1 = new DevExpress.XtraBars.BarButtonItem();
     this.barButtonItem3 = new DevExpress.XtraBars.BarButtonItem();
     this.barButtonItem2 = new DevExpress.XtraBars.BarButtonItem();
     this.barButtonItem10 = new DevExpress.XtraBars.BarButtonItem();
     this.barButtonItem13 = new DevExpress.XtraBars.BarButtonItem();
     this.barButtonItem12 = new DevExpress.XtraBars.BarButtonItem();
     this.barSubItem3 = new DevExpress.XtraBars.BarSubItem();
     this.barButtonItem20 = new DevExpress.XtraBars.BarButtonItem();
     this.barButtonItem21 = new DevExpress.XtraBars.BarButtonItem();
     this.barButtonItem22 = new DevExpress.XtraBars.BarButtonItem();
     this.barButtonItem9 = new DevExpress.XtraBars.BarButtonItem();
     this.barButtonItem4 = new DevExpress.XtraBars.BarButtonItem();
     this.barButtonItem5 = new DevExpress.XtraBars.BarButtonItem();
     this.barButtonItem8 = new DevExpress.XtraBars.BarButtonItem();
     this.barSubItem2 = new DevExpress.XtraBars.BarSubItem();
     this.barButtonItem15 = new DevExpress.XtraBars.BarButtonItem();
     this.barButtonItem16 = new DevExpress.XtraBars.BarButtonItem();
     this.barDockControlTop = new DevExpress.XtraBars.BarDockControl();
     this.barDockControlBottom = new DevExpress.XtraBars.BarDockControl();
     this.barDockControlLeft = new DevExpress.XtraBars.BarDockControl();
     this.barDockControlRight = new DevExpress.XtraBars.BarDockControl();
     this.imageList1 = new System.Windows.Forms.ImageList(this.components);
     this.barButtonItem6 = new DevExpress.XtraBars.BarButtonItem();
     this.barButtonItem11 = new DevExpress.XtraBars.BarButtonItem();
     this.barCheckItem1 = new DevExpress.XtraBars.BarCheckItem();
     this.barEditItem1 = new DevExpress.XtraBars.BarEditItem();
     this.barCheckItem2 = new DevExpress.XtraBars.BarCheckItem();
     this.barCheckItem3 = new DevExpress.XtraBars.BarCheckItem();
     this.barCheckItem4 = new DevExpress.XtraBars.BarCheckItem();
     this.barCheckItem5 = new DevExpress.XtraBars.BarCheckItem();
     this.barCheckItem6 = new DevExpress.XtraBars.BarCheckItem();
     this.barCheckItem7 = new DevExpress.XtraBars.BarCheckItem();
     this.repositoryItemComboBox1 = new DevExpress.XtraEditors.Repository.RepositoryItemComboBox();
     this.splitterControl1 = new DevExpress.XtraEditors.SplitterControl();
     this.splitContainerControl2 = new DevExpress.XtraEditors.SplitContainerControl();
     this.treeList1 = new DevExpress.XtraTreeList.TreeList();
     this.chart_user1 = new Itop.Client.Using.chart_user();
     this.barButtonItem14 = new DevExpress.XtraBars.BarButtonItem();
     ((System.ComponentModel.ISupportInitialize)(this.barManager1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemComboBox1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.splitContainerControl2)).BeginInit();
     this.splitContainerControl2.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.treeList1)).BeginInit();
     this.SuspendLayout();
     //
     // barManager1
     //
     this.barManager1.AllowCustomization = false;
     this.barManager1.AllowQuickCustomization = false;
     this.barManager1.AllowShowToolbarsPopup = false;
     this.barManager1.Bars.AddRange(new DevExpress.XtraBars.Bar[] {
     this.bar1});
     this.barManager1.DockControls.Add(this.barDockControlTop);
     this.barManager1.DockControls.Add(this.barDockControlBottom);
     this.barManager1.DockControls.Add(this.barDockControlLeft);
     this.barManager1.DockControls.Add(this.barDockControlRight);
     this.barManager1.Form = this;
     this.barManager1.Images = this.imageList1;
     this.barManager1.Items.AddRange(new DevExpress.XtraBars.BarItem[] {
     this.barSubItem3,
     this.barButtonItem20,
     this.barButtonItem21,
     this.barButtonItem22,
     this.barButtonItem6,
     this.barSubItem1,
     this.barButtonItem1,
     this.barButtonItem2,
     this.barButtonItem3,
     this.barButtonItem4,
     this.barButtonItem5,
     this.barButtonItem7,
     this.barButtonItem8,
     this.barButtonItem9,
     this.barButtonItem10,
     this.barButtonItem11,
     this.barButtonItem12,
     this.barButtonItem13,
     this.barSubItem2,
     this.barButtonItem15,
     this.barButtonItem16,
     this.barCheckItem1,
     this.barEditItem1,
     this.barCheckItem2,
     this.barCheckItem3,
     this.barCheckItem4,
     this.barCheckItem5,
     this.barCheckItem6,
     this.barCheckItem7,
     this.barButtonItem14});
     this.barManager1.MaxItemId = 91;
     this.barManager1.RepositoryItems.AddRange(new DevExpress.XtraEditors.Repository.RepositoryItem[] {
     this.repositoryItemComboBox1});
     //
     // bar1
     //
     this.bar1.BarName = "Custom 1";
     this.bar1.DockCol = 0;
     this.bar1.DockRow = 0;
     this.bar1.DockStyle = DevExpress.XtraBars.BarDockStyle.Top;
     this.bar1.LinksPersistInfo.AddRange(new DevExpress.XtraBars.LinkPersistInfo[] {
     new DevExpress.XtraBars.LinkPersistInfo(this.barSubItem1, true),
     new DevExpress.XtraBars.LinkPersistInfo(this.barButtonItem13, true),
     new DevExpress.XtraBars.LinkPersistInfo(this.barButtonItem12),
     new DevExpress.XtraBars.LinkPersistInfo(this.barSubItem3, true),
     new DevExpress.XtraBars.LinkPersistInfo(this.barButtonItem22, true),
     new DevExpress.XtraBars.LinkPersistInfo(this.barButtonItem9, true),
     new DevExpress.XtraBars.LinkPersistInfo(this.barButtonItem4, true),
     new DevExpress.XtraBars.LinkPersistInfo(this.barButtonItem5),
     new DevExpress.XtraBars.LinkPersistInfo(this.barButtonItem8, true),
     new DevExpress.XtraBars.LinkPersistInfo(DevExpress.XtraBars.BarLinkUserDefines.PaintStyle, this.barSubItem2, DevExpress.XtraBars.BarItemPaintStyle.CaptionGlyph),
     new DevExpress.XtraBars.LinkPersistInfo(DevExpress.XtraBars.BarLinkUserDefines.PaintStyle, this.barButtonItem14, DevExpress.XtraBars.BarItemPaintStyle.CaptionGlyph)});
     this.bar1.OptionsBar.AllowQuickCustomization = false;
     this.bar1.OptionsBar.DrawDragBorder = false;
     this.bar1.OptionsBar.UseWholeRow = true;
     this.bar1.Text = "Custom 1";
     //
     // barSubItem1
     //
     this.barSubItem1.Caption = "�������";
     this.barSubItem1.Id = 46;
     this.barSubItem1.ImageIndex = 13;
     this.barSubItem1.LinksPersistInfo.AddRange(new DevExpress.XtraBars.LinkPersistInfo[] {
     new DevExpress.XtraBars.LinkPersistInfo(this.barButtonItem7),
     new DevExpress.XtraBars.LinkPersistInfo(this.barButtonItem1),
     new DevExpress.XtraBars.LinkPersistInfo(this.barButtonItem3),
     new DevExpress.XtraBars.LinkPersistInfo(this.barButtonItem2),
     new DevExpress.XtraBars.LinkPersistInfo(this.barButtonItem10)});
     this.barSubItem1.Name = "barSubItem1";
     this.barSubItem1.PaintStyle = DevExpress.XtraBars.BarItemPaintStyle.CaptionGlyph;
     //
     // barButtonItem7
     //
     this.barButtonItem7.Caption = "���һ������";
     this.barButtonItem7.Id = 59;
     this.barButtonItem7.ImageIndex = 15;
     this.barButtonItem7.Name = "barButtonItem7";
     this.barButtonItem7.ItemClick += new DevExpress.XtraBars.ItemClickEventHandler(this.barButtonItem7_ItemClick);
     //
     // barButtonItem1
     //
     this.barButtonItem1.Caption = "����ӷ���";
     this.barButtonItem1.Id = 47;
     this.barButtonItem1.ImageIndex = 16;
     this.barButtonItem1.Name = "barButtonItem1";
     this.barButtonItem1.PaintStyle = DevExpress.XtraBars.BarItemPaintStyle.CaptionGlyph;
     this.barButtonItem1.ItemClick += new DevExpress.XtraBars.ItemClickEventHandler(this.barButtonItem1_ItemClick);
     //
     // barButtonItem3
     //
     this.barButtonItem3.Caption = "�޸ķ���";
     this.barButtonItem3.Id = 56;
     this.barButtonItem3.ImageIndex = 18;
     this.barButtonItem3.Name = "barButtonItem3";
     this.barButtonItem3.PaintStyle = DevExpress.XtraBars.BarItemPaintStyle.CaptionGlyph;
     this.barButtonItem3.ItemClick += new DevExpress.XtraBars.ItemClickEventHandler(this.barButtonItem3_ItemClick);
     //
     // barButtonItem2
     //
     this.barButtonItem2.Caption = "ɾ������";
     this.barButtonItem2.Id = 48;
     this.barButtonItem2.ImageIndex = 10;
     this.barButtonItem2.Name = "barButtonItem2";
     this.barButtonItem2.PaintStyle = DevExpress.XtraBars.BarItemPaintStyle.CaptionGlyph;
     this.barButtonItem2.ItemClick += new DevExpress.XtraBars.ItemClickEventHandler(this.barButtonItem2_ItemClick);
     //
     // barButtonItem10
     //
     this.barButtonItem10.Caption = "Ĭ��������";
     this.barButtonItem10.Id = 62;
     this.barButtonItem10.ImageIndex = 13;
     this.barButtonItem10.Name = "barButtonItem10";
     this.barButtonItem10.ItemClick += new DevExpress.XtraBars.ItemClickEventHandler(this.barButtonItem10_ItemClick);
     //
     // barButtonItem13
     //
     this.barButtonItem13.Hint = "����һλ";
     this.barButtonItem13.Id = 65;
     this.barButtonItem13.ImageIndex = 20;
     this.barButtonItem13.Name = "barButtonItem13";
     this.barButtonItem13.ItemClick += new DevExpress.XtraBars.ItemClickEventHandler(this.barButtonItem13_ItemClick);
     //
     // barButtonItem12
     //
     this.barButtonItem12.Hint = "����һλ";
     this.barButtonItem12.Id = 64;
     this.barButtonItem12.ImageIndex = 21;
     this.barButtonItem12.Name = "barButtonItem12";
     this.barButtonItem12.ItemClick += new DevExpress.XtraBars.ItemClickEventHandler(this.barButtonItem12_ItemClick);
     //
     // barSubItem3
     //
     this.barSubItem3.Caption = "����";
     this.barSubItem3.Id = 29;
     this.barSubItem3.ImageIndex = 5;
     this.barSubItem3.LinksPersistInfo.AddRange(new DevExpress.XtraBars.LinkPersistInfo[] {
     new DevExpress.XtraBars.LinkPersistInfo(this.barButtonItem20),
     new DevExpress.XtraBars.LinkPersistInfo(this.barButtonItem21)});
     this.barSubItem3.Name = "barSubItem3";
     this.barSubItem3.PaintStyle = DevExpress.XtraBars.BarItemPaintStyle.CaptionGlyph;
     //
     // barButtonItem20
     //
     this.barButtonItem20.Caption = "��������";
     this.barButtonItem20.Id = 30;
     this.barButtonItem20.ImageIndex = 5;
     this.barButtonItem20.Name = "barButtonItem20";
     this.barButtonItem20.PaintStyle = DevExpress.XtraBars.BarItemPaintStyle.CaptionGlyph;
     this.barButtonItem20.ItemClick += new DevExpress.XtraBars.ItemClickEventHandler(this.barButtonItem20_ItemClick);
     //
     // barButtonItem21
     //
     this.barButtonItem21.Caption = "����ͼ��";
     this.barButtonItem21.Id = 31;
     this.barButtonItem21.ImageIndex = 5;
     this.barButtonItem21.Name = "barButtonItem21";
     this.barButtonItem21.PaintStyle = DevExpress.XtraBars.BarItemPaintStyle.CaptionGlyph;
     this.barButtonItem21.ItemClick += new DevExpress.XtraBars.ItemClickEventHandler(this.barButtonItem21_ItemClick);
     //
     // barButtonItem22
     //
     this.barButtonItem22.Caption = "ͼ����ɫ";
     this.barButtonItem22.Id = 32;
     this.barButtonItem22.ImageIndex = 12;
     this.barButtonItem22.Name = "barButtonItem22";
     this.barButtonItem22.PaintStyle = DevExpress.XtraBars.BarItemPaintStyle.CaptionGlyph;
     this.barButtonItem22.ItemClick += new DevExpress.XtraBars.ItemClickEventHandler(this.barButtonItem22_ItemClick);
     //
     // barButtonItem9
     //
     this.barButtonItem9.Caption = "��������";
     this.barButtonItem9.Id = 61;
     this.barButtonItem9.ImageIndex = 3;
     this.barButtonItem9.Name = "barButtonItem9";
     this.barButtonItem9.PaintStyle = DevExpress.XtraBars.BarItemPaintStyle.CaptionGlyph;
     this.barButtonItem9.ItemClick += new DevExpress.XtraBars.ItemClickEventHandler(this.barButtonItem9_ItemClick);
     //
     // barButtonItem4
     //
     this.barButtonItem4.Caption = "�趨���";
     this.barButtonItem4.Id = 57;
     this.barButtonItem4.ImageIndex = 1;
     this.barButtonItem4.Name = "barButtonItem4";
     this.barButtonItem4.PaintStyle = DevExpress.XtraBars.BarItemPaintStyle.CaptionGlyph;
     this.barButtonItem4.ItemClick += new DevExpress.XtraBars.ItemClickEventHandler(this.barButtonItem4_ItemClick);
     //
     // barButtonItem5
     //
     this.barButtonItem5.Caption = "���ݿ���";
     this.barButtonItem5.Id = 58;
     this.barButtonItem5.ImageIndex = 11;
     this.barButtonItem5.Name = "barButtonItem5";
     this.barButtonItem5.PaintStyle = DevExpress.XtraBars.BarItemPaintStyle.CaptionGlyph;
     this.barButtonItem5.ItemClick += new DevExpress.XtraBars.ItemClickEventHandler(this.barButtonItem5_ItemClick);
     //
     // barButtonItem8
     //
     this.barButtonItem8.Caption = "�����������";
     this.barButtonItem8.Id = 60;
     this.barButtonItem8.ImageIndex = 10;
     this.barButtonItem8.Name = "barButtonItem8";
     this.barButtonItem8.PaintStyle = DevExpress.XtraBars.BarItemPaintStyle.CaptionGlyph;
     this.barButtonItem8.ItemClick += new DevExpress.XtraBars.ItemClickEventHandler(this.barButtonItem8_ItemClick);
     //
     // barSubItem2
     //
     this.barSubItem2.Caption = "ͳ��";
     this.barSubItem2.Id = 68;
     this.barSubItem2.ImageIndex = 9;
     this.barSubItem2.LinksPersistInfo.AddRange(new DevExpress.XtraBars.LinkPersistInfo[] {
     new DevExpress.XtraBars.LinkPersistInfo(this.barButtonItem15),
     new DevExpress.XtraBars.LinkPersistInfo(this.barButtonItem16)});
     this.barSubItem2.Name = "barSubItem2";
     //
     // barButtonItem15
     //
     this.barButtonItem15.Caption = "����ҵ�õ����";
     this.barButtonItem15.Id = 71;
     this.barButtonItem15.Name = "barButtonItem15";
     this.barButtonItem15.ItemClick += new DevExpress.XtraBars.ItemClickEventHandler(this.barButtonItem15_ItemClick);
     //
     // barButtonItem16
     //
     this.barButtonItem16.Caption = "��ᾭ�ü��õ����";
     this.barButtonItem16.Id = 72;
     this.barButtonItem16.Name = "barButtonItem16";
     this.barButtonItem16.ItemClick += new DevExpress.XtraBars.ItemClickEventHandler(this.barButtonItem16_ItemClick);
     //
     // barDockControlTop
     //
     this.barDockControlTop.Dock = System.Windows.Forms.DockStyle.Top;
     this.barDockControlTop.Location = new System.Drawing.Point(0, 0);
     this.barDockControlTop.Size = new System.Drawing.Size(1100, 34);
     //
     // barDockControlBottom
     //
     this.barDockControlBottom.Dock = System.Windows.Forms.DockStyle.Bottom;
     this.barDockControlBottom.Location = new System.Drawing.Point(0, 729);
     this.barDockControlBottom.Size = new System.Drawing.Size(1100, 0);
     //
     // barDockControlLeft
     //
     this.barDockControlLeft.Dock = System.Windows.Forms.DockStyle.Left;
     this.barDockControlLeft.Location = new System.Drawing.Point(0, 34);
     this.barDockControlLeft.Size = new System.Drawing.Size(0, 695);
     //
     // barDockControlRight
     //
     this.barDockControlRight.Dock = System.Windows.Forms.DockStyle.Right;
     this.barDockControlRight.Location = new System.Drawing.Point(1100, 34);
     this.barDockControlRight.Size = new System.Drawing.Size(0, 695);
     //
     // imageList1
     //
     this.imageList1.ImageStream = ((System.Windows.Forms.ImageListStreamer)(resources.GetObject("imageList1.ImageStream")));
     this.imageList1.TransparentColor = System.Drawing.Color.Transparent;
     this.imageList1.Images.SetKeyName(0, "����.ico");
     this.imageList1.Images.SetKeyName(1, "����.ico");
     this.imageList1.Images.SetKeyName(2, "��ѯ.ico");
     this.imageList1.Images.SetKeyName(3, "������±�.ico");
     this.imageList1.Images.SetKeyName(4, "��ӡ.ico");
     this.imageList1.Images.SetKeyName(5, "����.ico");
     this.imageList1.Images.SetKeyName(6, "�ر�1.ico");
     this.imageList1.Images.SetKeyName(7, "�ر�.ico");
     this.imageList1.Images.SetKeyName(8, "��ɫ.ico");
     this.imageList1.Images.SetKeyName(9, "���ȹ���1.ico");
     this.imageList1.Images.SetKeyName(10, "ɾ��.ico");
     this.imageList1.Images.SetKeyName(11, "���.ico");
     this.imageList1.Images.SetKeyName(12, "����.ico");
     this.imageList1.Images.SetKeyName(13, "��Ȩ.ico");
     this.imageList1.Images.SetKeyName(14, "ˢ��.ico");
     this.imageList1.Images.SetKeyName(15, "���ͬ��.ico");
     this.imageList1.Images.SetKeyName(16, "����¼�.ico");
     this.imageList1.Images.SetKeyName(17, "�½�.ico");
     this.imageList1.Images.SetKeyName(18, "�޸�.ico");
     this.imageList1.Images.SetKeyName(19, "����.ico");
     this.imageList1.Images.SetKeyName(20, "FillUpHS.png");
     this.imageList1.Images.SetKeyName(21, "FillDownHS.png");
     //
     // barButtonItem6
     //
     this.barButtonItem6.Caption = "�ر�";
     this.barButtonItem6.Id = 35;
     this.barButtonItem6.ImageIndex = 7;
     this.barButtonItem6.Name = "barButtonItem6";
     this.barButtonItem6.PaintStyle = DevExpress.XtraBars.BarItemPaintStyle.CaptionGlyph;
     this.barButtonItem6.ItemClick += new DevExpress.XtraBars.ItemClickEventHandler(this.barButtonItem6_ItemClick);
     //
     // barButtonItem11
     //
     this.barButtonItem11.Id = 63;
     this.barButtonItem11.Name = "barButtonItem11";
     //
     // barCheckItem1
     //
     this.barCheckItem1.Id = 81;
     this.barCheckItem1.Name = "barCheckItem1";
     //
     // barEditItem1
     //
     this.barEditItem1.Edit = null;
     this.barEditItem1.Id = 82;
     this.barEditItem1.Name = "barEditItem1";
     //
     // barCheckItem2
     //
     this.barCheckItem2.Id = 83;
     this.barCheckItem2.Name = "barCheckItem2";
     //
     // barCheckItem3
     //
     this.barCheckItem3.Id = 84;
     this.barCheckItem3.Name = "barCheckItem3";
     //
     // barCheckItem4
     //
     this.barCheckItem4.Id = 85;
     this.barCheckItem4.Name = "barCheckItem4";
     //
     // barCheckItem5
     //
     this.barCheckItem5.Id = 86;
     this.barCheckItem5.Name = "barCheckItem5";
     //
     // barCheckItem6
     //
     this.barCheckItem6.Id = 87;
     this.barCheckItem6.Name = "barCheckItem6";
     //
     // barCheckItem7
     //
     this.barCheckItem7.Id = 88;
     this.barCheckItem7.Name = "barCheckItem7";
     //
     // repositoryItemComboBox1
     //
     this.repositoryItemComboBox1.AutoHeight = false;
     this.repositoryItemComboBox1.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.repositoryItemComboBox1.Name = "repositoryItemComboBox1";
     //
     // splitterControl1
     //
     this.splitterControl1.Dock = System.Windows.Forms.DockStyle.Top;
     this.splitterControl1.Location = new System.Drawing.Point(0, 34);
     this.splitterControl1.Name = "splitterControl1";
     this.splitterControl1.Size = new System.Drawing.Size(1100, 6);
     this.splitterControl1.TabIndex = 5;
     this.splitterControl1.TabStop = false;
     //
     // splitContainerControl2
     //
     this.splitContainerControl2.Dock = System.Windows.Forms.DockStyle.Fill;
     this.splitContainerControl2.FixedPanel = DevExpress.XtraEditors.SplitFixedPanel.Panel2;
     this.splitContainerControl2.Horizontal = false;
     this.splitContainerControl2.Location = new System.Drawing.Point(0, 40);
     this.splitContainerControl2.Name = "splitContainerControl2";
     this.splitContainerControl2.Panel1.Controls.Add(this.treeList1);
     this.splitContainerControl2.Panel1.Text = "splitContainerControl2_Panel1";
     this.splitContainerControl2.Panel2.Controls.Add(this.chart_user1);
     this.splitContainerControl2.Panel2.Text = "splitContainerControl2_Panel2";
     this.splitContainerControl2.Size = new System.Drawing.Size(1100, 689);
     this.splitContainerControl2.SplitterPosition = 309;
     this.splitContainerControl2.TabIndex = 10;
     this.splitContainerControl2.Text = "splitContainerControl2";
     //
     // treeList1
     //
     this.treeList1.AllowDrop = true;
     this.treeList1.Dock = System.Windows.Forms.DockStyle.Fill;
     this.treeList1.Location = new System.Drawing.Point(0, 0);
     this.treeList1.Name = "treeList1";
     this.treeList1.OptionsBehavior.DragNodes = true;
     this.treeList1.OptionsMenu.EnableColumnMenu = false;
     this.treeList1.OptionsMenu.EnableFooterMenu = false;
     this.treeList1.OptionsView.AutoWidth = false;
     this.treeList1.Size = new System.Drawing.Size(1100, 374);
     this.treeList1.TabIndex = 1;
     this.treeList1.FocusedNodeChanged += new DevExpress.XtraTreeList.FocusedNodeChangedEventHandler(this.treeList1_FocusedNodeChanged);
     this.treeList1.FocusedColumnChanged += new DevExpress.XtraTreeList.FocusedColumnChangedEventHandler(this.treeList1_FocusedColumnChanged);
     this.treeList1.CellValueChanged += new DevExpress.XtraTreeList.CellValueChangedEventHandler(this.treeList1_CellValueChanged);
     this.treeList1.ShowingEditor += new System.ComponentModel.CancelEventHandler(this.treeList1_ShowingEditor);
     //
     // chart_user1
     //
     this.chart_user1.Dock = System.Windows.Forms.DockStyle.Fill;
     this.chart_user1.Location = new System.Drawing.Point(0, 0);
     this.chart_user1.Name = "chart_user1";
     this.chart_user1.Size = new System.Drawing.Size(1100, 309);
     this.chart_user1.TabIndex = 0;
     //
     // barButtonItem14
     //
     this.barButtonItem14.Caption = "�ر�";
     this.barButtonItem14.Id = 90;
     this.barButtonItem14.Name = "barButtonItem14";
     this.barButtonItem14.ItemClick += new DevExpress.XtraBars.ItemClickEventHandler(this.barButtonItem14_ItemClick_1);
     //
     // FormHistoryDL
     //
     this.AutoScaleDimensions = new System.Drawing.SizeF(7F, 14F);
     this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
     this.ClientSize = new System.Drawing.Size(1100, 729);
     this.Controls.Add(this.splitContainerControl2);
     this.Controls.Add(this.splitterControl1);
     this.Controls.Add(this.barDockControlLeft);
     this.Controls.Add(this.barDockControlRight);
     this.Controls.Add(this.barDockControlBottom);
     this.Controls.Add(this.barDockControlTop);
     this.Name = "FormHistoryDL";
     this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen;
     this.Text = "����Ԥ���";
     this.WindowState = System.Windows.Forms.FormWindowState.Maximized;
     this.Load += new System.EventHandler(this.Form8Forecast_Load);
     ((System.ComponentModel.ISupportInitialize)(this.barManager1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemComboBox1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.splitContainerControl2)).EndInit();
     this.splitContainerControl2.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.treeList1)).EndInit();
     this.ResumeLayout(false);
 }
Example #30
0
 private void InitializeComponent()
 {
     System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(CustomDesignForm));
     this.xrDesignBarManager1 = new DevExpress.XtraReports.UserDesigner.XRDesignBarManager();
     this.designBar1 = new DevExpress.XtraReports.UserDesigner.DesignBar();
     this.barSubItem1 = new DevExpress.XtraBars.BarSubItem();
     this.commandBarItem31 = new DevExpress.XtraReports.UserDesigner.CommandBarItem();
     this.commandBarItem39 = new DevExpress.XtraReports.UserDesigner.CommandBarItem();
     this.commandBarItem32 = new DevExpress.XtraReports.UserDesigner.CommandBarItem();
     this.commandBarItem33 = new DevExpress.XtraReports.UserDesigner.CommandBarItem();
     this.commandBarItem40 = new DevExpress.XtraReports.UserDesigner.CommandBarItem();
     this.commandBarItem41 = new DevExpress.XtraReports.UserDesigner.CommandBarItem();
     this.barSubItem2 = new DevExpress.XtraBars.BarSubItem();
     this.commandBarItem37 = new DevExpress.XtraReports.UserDesigner.CommandBarItem();
     this.commandBarItem38 = new DevExpress.XtraReports.UserDesigner.CommandBarItem();
     this.commandBarItem34 = new DevExpress.XtraReports.UserDesigner.CommandBarItem();
     this.commandBarItem35 = new DevExpress.XtraReports.UserDesigner.CommandBarItem();
     this.commandBarItem36 = new DevExpress.XtraReports.UserDesigner.CommandBarItem();
     this.commandBarItem42 = new DevExpress.XtraReports.UserDesigner.CommandBarItem();
     this.commandBarItem43 = new DevExpress.XtraReports.UserDesigner.CommandBarItem();
     this.barSubItem3 = new DevExpress.XtraBars.BarSubItem();
     this.barReportTabButtonsListItem1 = new DevExpress.XtraReports.UserDesigner.BarReportTabButtonsListItem();
     this.barSubItem4 = new DevExpress.XtraBars.BarSubItem();
     this.xrBarToolbarsListItem1 = new DevExpress.XtraReports.UserDesigner.XRBarToolbarsListItem();
     this.barSubItem5 = new DevExpress.XtraBars.BarSubItem();
     this.barDockPanelsListItem1 = new DevExpress.XtraReports.UserDesigner.BarDockPanelsListItem();
     this.barSubItem6 = new DevExpress.XtraBars.BarSubItem();
     this.commandColorBarItem1 = new DevExpress.XtraReports.UserDesigner.CommandColorBarItem();
     this.commandColorBarItem2 = new DevExpress.XtraReports.UserDesigner.CommandColorBarItem();
     this.barSubItem7 = new DevExpress.XtraBars.BarSubItem();
     this.commandBarItem1 = new DevExpress.XtraReports.UserDesigner.CommandBarItem();
     this.commandBarItem2 = new DevExpress.XtraReports.UserDesigner.CommandBarItem();
     this.commandBarItem3 = new DevExpress.XtraReports.UserDesigner.CommandBarItem();
     this.barSubItem8 = new DevExpress.XtraBars.BarSubItem();
     this.commandBarItem4 = new DevExpress.XtraReports.UserDesigner.CommandBarItem();
     this.commandBarItem5 = new DevExpress.XtraReports.UserDesigner.CommandBarItem();
     this.commandBarItem6 = new DevExpress.XtraReports.UserDesigner.CommandBarItem();
     this.commandBarItem7 = new DevExpress.XtraReports.UserDesigner.CommandBarItem();
     this.barSubItem9 = new DevExpress.XtraBars.BarSubItem();
     this.commandBarItem9 = new DevExpress.XtraReports.UserDesigner.CommandBarItem();
     this.commandBarItem10 = new DevExpress.XtraReports.UserDesigner.CommandBarItem();
     this.commandBarItem11 = new DevExpress.XtraReports.UserDesigner.CommandBarItem();
     this.commandBarItem12 = new DevExpress.XtraReports.UserDesigner.CommandBarItem();
     this.commandBarItem13 = new DevExpress.XtraReports.UserDesigner.CommandBarItem();
     this.commandBarItem14 = new DevExpress.XtraReports.UserDesigner.CommandBarItem();
     this.commandBarItem8 = new DevExpress.XtraReports.UserDesigner.CommandBarItem();
     this.barSubItem10 = new DevExpress.XtraBars.BarSubItem();
     this.commandBarItem15 = new DevExpress.XtraReports.UserDesigner.CommandBarItem();
     this.commandBarItem16 = new DevExpress.XtraReports.UserDesigner.CommandBarItem();
     this.commandBarItem17 = new DevExpress.XtraReports.UserDesigner.CommandBarItem();
     this.commandBarItem18 = new DevExpress.XtraReports.UserDesigner.CommandBarItem();
     this.barSubItem11 = new DevExpress.XtraBars.BarSubItem();
     this.commandBarItem19 = new DevExpress.XtraReports.UserDesigner.CommandBarItem();
     this.commandBarItem20 = new DevExpress.XtraReports.UserDesigner.CommandBarItem();
     this.commandBarItem21 = new DevExpress.XtraReports.UserDesigner.CommandBarItem();
     this.commandBarItem22 = new DevExpress.XtraReports.UserDesigner.CommandBarItem();
     this.barSubItem12 = new DevExpress.XtraBars.BarSubItem();
     this.commandBarItem23 = new DevExpress.XtraReports.UserDesigner.CommandBarItem();
     this.commandBarItem24 = new DevExpress.XtraReports.UserDesigner.CommandBarItem();
     this.commandBarItem25 = new DevExpress.XtraReports.UserDesigner.CommandBarItem();
     this.commandBarItem26 = new DevExpress.XtraReports.UserDesigner.CommandBarItem();
     this.barSubItem13 = new DevExpress.XtraBars.BarSubItem();
     this.commandBarItem27 = new DevExpress.XtraReports.UserDesigner.CommandBarItem();
     this.commandBarItem28 = new DevExpress.XtraReports.UserDesigner.CommandBarItem();
     this.barSubItem14 = new DevExpress.XtraBars.BarSubItem();
     this.commandBarItem29 = new DevExpress.XtraReports.UserDesigner.CommandBarItem();
     this.commandBarItem30 = new DevExpress.XtraReports.UserDesigner.CommandBarItem();
     this.bsiLookAndFeel = new DevExpress.XtraBars.BarSubItem();
     this.designBar2 = new DevExpress.XtraReports.UserDesigner.DesignBar();
     this.designBar3 = new DevExpress.XtraReports.UserDesigner.DesignBar();
     this.barEditItem1 = new DevExpress.XtraBars.BarEditItem();
     this.ricbFontName = new DevExpress.XtraReports.UserDesigner.RecentlyUsedItemsComboBox();
     this.barEditItem2 = new DevExpress.XtraBars.BarEditItem();
     this.ricbFontSize = new DevExpress.XtraEditors.Repository.RepositoryItemComboBox();
     this.designBar4 = new DevExpress.XtraReports.UserDesigner.DesignBar();
     this.designBar5 = new DevExpress.XtraReports.UserDesigner.DesignBar();
     this.barStaticItem1 = new DevExpress.XtraBars.BarStaticItem();
     this.designBar6 = new DevExpress.XtraReports.UserDesigner.DesignBar();
     this.commandBarItem44 = new DevExpress.XtraReports.UserDesigner.CommandBarItem();
     this.xrZoomBarEditItem1 = new DevExpress.XtraReports.UserDesigner.XRZoomBarEditItem();
     this.designRepositoryItemComboBox1 = new DevExpress.XtraReports.UserDesigner.DesignRepositoryItemComboBox();
     this.commandBarItem45 = new DevExpress.XtraReports.UserDesigner.CommandBarItem();
     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.xrDesignDockManager1 = new DevExpress.XtraReports.UserDesigner.XRDesignDockManager();
     this.panelContainer1 = new DevExpress.XtraBars.Docking.DockPanel();
     this.panelContainer2 = new DevExpress.XtraBars.Docking.DockPanel();
     this.reportExplorerDockPanel1 = new DevExpress.XtraReports.UserDesigner.ReportExplorerDockPanel();
     this.reportExplorerDockPanel1_Container = new DevExpress.XtraReports.UserDesigner.DesignControlContainer();
     this.fieldListDockPanel1 = new DevExpress.XtraReports.UserDesigner.FieldListDockPanel();
     this.fieldListDockPanel1_Container = new DevExpress.XtraReports.UserDesigner.DesignControlContainer();
     this.propertyGridDockPanel1 = new DevExpress.XtraReports.UserDesigner.PropertyGridDockPanel();
     this.propertyGridDockPanel1_Container = new DevExpress.XtraReports.UserDesigner.DesignControlContainer();
     this.toolBoxDockPanel1 = new DevExpress.XtraReports.UserDesigner.ToolBoxDockPanel();
     this.toolBoxDockPanel1_Container = new DevExpress.XtraReports.UserDesigner.DesignControlContainer();
     this.groupAndSortDockPanel1 = new DevExpress.XtraReports.UserDesigner.GroupAndSortDockPanel();
     this.groupAndSortDockPanel1_Container = new DevExpress.XtraReports.UserDesigner.DesignControlContainer();
     ((System.ComponentModel.ISupportInitialize)(this.xrDesignPanel)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.xrDesignBarManager1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.ricbFontName)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.ricbFontSize)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.designRepositoryItemComboBox1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.xrDesignDockManager1)).BeginInit();
     this.panelContainer1.SuspendLayout();
     this.panelContainer2.SuspendLayout();
     this.reportExplorerDockPanel1.SuspendLayout();
     this.fieldListDockPanel1.SuspendLayout();
     this.propertyGridDockPanel1.SuspendLayout();
     this.toolBoxDockPanel1.SuspendLayout();
     this.groupAndSortDockPanel1.SuspendLayout();
     this.SuspendLayout();
     //
     // xrDesignPanel
     //
     this.xrDesignPanel.Location = new System.Drawing.Point(165, 76);
     this.xrDesignPanel.ShowComponentTray = false;
     this.xrDesignPanel.Size = new System.Drawing.Size(417, 312);
     //
     // xrDesignBarManager1
     //
     this.xrDesignBarManager1.Bars.AddRange(new DevExpress.XtraBars.Bar[] {
     this.designBar1,
     this.designBar2,
     this.designBar3,
     this.designBar4,
     this.designBar5,
     this.designBar6});
     this.xrDesignBarManager1.DockControls.Add(this.barDockControlTop);
     this.xrDesignBarManager1.DockControls.Add(this.barDockControlBottom);
     this.xrDesignBarManager1.DockControls.Add(this.barDockControlLeft);
     this.xrDesignBarManager1.DockControls.Add(this.barDockControlRight);
     this.xrDesignBarManager1.DockManager = this.xrDesignDockManager1;
     this.xrDesignBarManager1.FontNameBox = this.ricbFontName;
     this.xrDesignBarManager1.FontNameEdit = this.barEditItem1;
     this.xrDesignBarManager1.FontSizeBox = this.ricbFontSize;
     this.xrDesignBarManager1.FontSizeEdit = this.barEditItem2;
     this.xrDesignBarManager1.Form = this;
     this.xrDesignBarManager1.FormattingToolbar = this.designBar3;
     this.xrDesignBarManager1.HintStaticItem = this.barStaticItem1;
     this.xrDesignBarManager1.ImageStream = ((DevExpress.Utils.ImageCollectionStreamer)(resources.GetObject("xrDesignBarManager1.ImageStream")));
     this.xrDesignBarManager1.Items.AddRange(new DevExpress.XtraBars.BarItem[] {
     this.barEditItem1,
     this.barEditItem2,
     this.commandBarItem1,
     this.commandBarItem2,
     this.commandBarItem3,
     this.commandColorBarItem1,
     this.commandColorBarItem2,
     this.commandBarItem4,
     this.commandBarItem5,
     this.commandBarItem6,
     this.commandBarItem7,
     this.commandBarItem8,
     this.commandBarItem9,
     this.commandBarItem10,
     this.commandBarItem11,
     this.commandBarItem12,
     this.commandBarItem13,
     this.commandBarItem14,
     this.commandBarItem15,
     this.commandBarItem16,
     this.commandBarItem17,
     this.commandBarItem18,
     this.commandBarItem19,
     this.commandBarItem20,
     this.commandBarItem21,
     this.commandBarItem22,
     this.commandBarItem23,
     this.commandBarItem24,
     this.commandBarItem25,
     this.commandBarItem26,
     this.commandBarItem27,
     this.commandBarItem28,
     this.commandBarItem29,
     this.commandBarItem30,
     this.commandBarItem31,
     this.commandBarItem32,
     this.commandBarItem33,
     this.commandBarItem34,
     this.commandBarItem35,
     this.commandBarItem36,
     this.commandBarItem37,
     this.commandBarItem38,
     this.barStaticItem1,
     this.barSubItem1,
     this.barSubItem2,
     this.barSubItem3,
     this.barReportTabButtonsListItem1,
     this.barSubItem4,
     this.xrBarToolbarsListItem1,
     this.barSubItem5,
     this.barDockPanelsListItem1,
     this.barSubItem6,
     this.barSubItem7,
     this.barSubItem8,
     this.barSubItem9,
     this.barSubItem10,
     this.barSubItem11,
     this.barSubItem12,
     this.barSubItem13,
     this.barSubItem14,
     this.commandBarItem39,
     this.commandBarItem40,
     this.commandBarItem41,
     this.commandBarItem42,
     this.commandBarItem43,
     this.bsiLookAndFeel,
     this.commandBarItem44,
     this.xrZoomBarEditItem1,
     this.commandBarItem45});
     this.xrDesignBarManager1.LayoutToolbar = this.designBar4;
     this.xrDesignBarManager1.MainMenu = this.designBar1;
     this.xrDesignBarManager1.MaxItemId = 69;
     this.xrDesignBarManager1.RepositoryItems.AddRange(new DevExpress.XtraEditors.Repository.RepositoryItem[] {
     this.ricbFontName,
     this.ricbFontSize,
     this.designRepositoryItemComboBox1});
     this.xrDesignBarManager1.StatusBar = this.designBar5;
     this.xrDesignBarManager1.Toolbar = this.designBar2;
     this.xrDesignBarManager1.XRDesignPanel = this.xrDesignPanel;
     this.xrDesignBarManager1.ZoomItem = this.xrZoomBarEditItem1;
     //
     // designBar1
     //
     this.designBar1.BarName = "MainMenu";
     this.designBar1.DockCol = 0;
     this.designBar1.DockRow = 0;
     this.designBar1.DockStyle = DevExpress.XtraBars.BarDockStyle.Top;
     this.designBar1.LinksPersistInfo.AddRange(new DevExpress.XtraBars.LinkPersistInfo[] {
     new DevExpress.XtraBars.LinkPersistInfo(this.barSubItem1),
     new DevExpress.XtraBars.LinkPersistInfo(this.barSubItem2),
     new DevExpress.XtraBars.LinkPersistInfo(this.barSubItem3),
     new DevExpress.XtraBars.LinkPersistInfo(this.barSubItem6),
     new DevExpress.XtraBars.LinkPersistInfo(this.bsiLookAndFeel)});
     this.designBar1.OptionsBar.MultiLine = true;
     this.designBar1.OptionsBar.UseWholeRow = true;
     this.designBar1.Text = "Ana Menü";
     //
     // barSubItem1
     //
     this.barSubItem1.Caption = "&Dosya";
     this.barSubItem1.Id = 43;
     this.barSubItem1.LinksPersistInfo.AddRange(new DevExpress.XtraBars.LinkPersistInfo[] {
     new DevExpress.XtraBars.LinkPersistInfo(this.commandBarItem31),
     new DevExpress.XtraBars.LinkPersistInfo(this.commandBarItem39),
     new DevExpress.XtraBars.LinkPersistInfo(this.commandBarItem32),
     new DevExpress.XtraBars.LinkPersistInfo(this.commandBarItem33, true),
     new DevExpress.XtraBars.LinkPersistInfo(this.commandBarItem40),
     new DevExpress.XtraBars.LinkPersistInfo(this.commandBarItem41, true)});
     this.barSubItem1.Name = "barSubItem1";
     //
     // commandBarItem31
     //
     this.commandBarItem31.Caption = "&Yeni";
     this.commandBarItem31.Command = DevExpress.XtraReports.UserDesigner.ReportCommand.NewReport;
     this.commandBarItem31.Hint = "Create a new blank report";
     this.commandBarItem31.Id = 34;
     this.commandBarItem31.ImageIndex = 9;
     this.commandBarItem31.ItemShortcut = new DevExpress.XtraBars.BarShortcut((System.Windows.Forms.Keys.Control | System.Windows.Forms.Keys.N));
     this.commandBarItem31.Name = "commandBarItem31";
     //
     // commandBarItem39
     //
     this.commandBarItem39.Caption = "New with &Wizard...";
     this.commandBarItem39.Command = DevExpress.XtraReports.UserDesigner.ReportCommand.NewReportWizard;
     this.commandBarItem39.Hint = "Create a new report using the Wizard";
     this.commandBarItem39.Id = 60;
     this.commandBarItem39.ItemShortcut = new DevExpress.XtraBars.BarShortcut((System.Windows.Forms.Keys.Control | System.Windows.Forms.Keys.W));
     this.commandBarItem39.Name = "commandBarItem39";
     //
     // commandBarItem32
     //
     this.commandBarItem32.Caption = "&Aç...";
     this.commandBarItem32.Command = DevExpress.XtraReports.UserDesigner.ReportCommand.OpenFile;
     this.commandBarItem32.Hint = "Open a report";
     this.commandBarItem32.Id = 35;
     this.commandBarItem32.ImageIndex = 10;
     this.commandBarItem32.ItemShortcut = new DevExpress.XtraBars.BarShortcut((System.Windows.Forms.Keys.Control | System.Windows.Forms.Keys.O));
     this.commandBarItem32.Name = "commandBarItem32";
     //
     // commandBarItem33
     //
     this.commandBarItem33.Caption = "&Kaydet";
     this.commandBarItem33.Command = DevExpress.XtraReports.UserDesigner.ReportCommand.SaveFile;
     this.commandBarItem33.Enabled = false;
     this.commandBarItem33.Hint = "Save a report";
     this.commandBarItem33.Id = 36;
     this.commandBarItem33.ImageIndex = 11;
     this.commandBarItem33.ItemShortcut = new DevExpress.XtraBars.BarShortcut((System.Windows.Forms.Keys.Control | System.Windows.Forms.Keys.S));
     this.commandBarItem33.Name = "commandBarItem33";
     //
     // commandBarItem40
     //
     this.commandBarItem40.Caption = "Save &As...";
     this.commandBarItem40.Command = DevExpress.XtraReports.UserDesigner.ReportCommand.SaveFileAs;
     this.commandBarItem40.Enabled = false;
     this.commandBarItem40.Hint = "Save a report with a new name";
     this.commandBarItem40.Id = 61;
     this.commandBarItem40.Name = "commandBarItem40";
     //
     // commandBarItem41
     //
     this.commandBarItem41.Caption = "Back to the Reports Main Demo";
     this.commandBarItem41.Command = DevExpress.XtraReports.UserDesigner.ReportCommand.Exit;
     this.commandBarItem41.Hint = "Close the designer";
     this.commandBarItem41.Id = 62;
     this.commandBarItem41.Name = "commandBarItem41";
     //
     // barSubItem2
     //
     this.barSubItem2.Caption = "D&üzenle";
     this.barSubItem2.Id = 44;
     this.barSubItem2.LinksPersistInfo.AddRange(new DevExpress.XtraBars.LinkPersistInfo[] {
     new DevExpress.XtraBars.LinkPersistInfo(this.commandBarItem37, true),
     new DevExpress.XtraBars.LinkPersistInfo(this.commandBarItem38),
     new DevExpress.XtraBars.LinkPersistInfo(this.commandBarItem34, true),
     new DevExpress.XtraBars.LinkPersistInfo(this.commandBarItem35),
     new DevExpress.XtraBars.LinkPersistInfo(this.commandBarItem36),
     new DevExpress.XtraBars.LinkPersistInfo(this.commandBarItem42),
     new DevExpress.XtraBars.LinkPersistInfo(this.commandBarItem43, true)});
     this.barSubItem2.Name = "barSubItem2";
     //
     // commandBarItem37
     //
     this.commandBarItem37.Caption = "&Geri Al";
     this.commandBarItem37.Command = DevExpress.XtraReports.UserDesigner.ReportCommand.Undo;
     this.commandBarItem37.Enabled = false;
     this.commandBarItem37.Hint = "Undo the last operation";
     this.commandBarItem37.Id = 40;
     this.commandBarItem37.ImageIndex = 15;
     this.commandBarItem37.ItemShortcut = new DevExpress.XtraBars.BarShortcut((System.Windows.Forms.Keys.Control | System.Windows.Forms.Keys.Z));
     this.commandBarItem37.Name = "commandBarItem37";
     //
     // commandBarItem38
     //
     this.commandBarItem38.Caption = "&Ýleri Al";
     this.commandBarItem38.Command = DevExpress.XtraReports.UserDesigner.ReportCommand.Redo;
     this.commandBarItem38.Enabled = false;
     this.commandBarItem38.Hint = "Redo the last operation";
     this.commandBarItem38.Id = 41;
     this.commandBarItem38.ImageIndex = 16;
     this.commandBarItem38.ItemShortcut = new DevExpress.XtraBars.BarShortcut((System.Windows.Forms.Keys.Control | System.Windows.Forms.Keys.Y));
     this.commandBarItem38.Name = "commandBarItem38";
     //
     // commandBarItem34
     //
     this.commandBarItem34.Caption = "Kes";
     this.commandBarItem34.Command = DevExpress.XtraReports.UserDesigner.ReportCommand.Cut;
     this.commandBarItem34.Enabled = false;
     this.commandBarItem34.Hint = "Delete the control and copy it to the clipboard";
     this.commandBarItem34.Id = 37;
     this.commandBarItem34.ImageIndex = 12;
     this.commandBarItem34.ItemShortcut = new DevExpress.XtraBars.BarShortcut((System.Windows.Forms.Keys.Control | System.Windows.Forms.Keys.X));
     this.commandBarItem34.Name = "commandBarItem34";
     //
     // commandBarItem35
     //
     this.commandBarItem35.Caption = "Kopyala";
     this.commandBarItem35.Command = DevExpress.XtraReports.UserDesigner.ReportCommand.Copy;
     this.commandBarItem35.Enabled = false;
     this.commandBarItem35.Hint = "Copy the control to the clipboard";
     this.commandBarItem35.Id = 38;
     this.commandBarItem35.ImageIndex = 13;
     this.commandBarItem35.ItemShortcut = new DevExpress.XtraBars.BarShortcut((System.Windows.Forms.Keys.Control | System.Windows.Forms.Keys.C));
     this.commandBarItem35.Name = "commandBarItem35";
     //
     // commandBarItem36
     //
     this.commandBarItem36.Caption = "Yapýþtýr";
     this.commandBarItem36.Command = DevExpress.XtraReports.UserDesigner.ReportCommand.Paste;
     this.commandBarItem36.Enabled = false;
     this.commandBarItem36.Hint = "Add the control from the clipboard";
     this.commandBarItem36.Id = 39;
     this.commandBarItem36.ImageIndex = 14;
     this.commandBarItem36.ItemShortcut = new DevExpress.XtraBars.BarShortcut((System.Windows.Forms.Keys.Control | System.Windows.Forms.Keys.V));
     this.commandBarItem36.Name = "commandBarItem36";
     //
     // commandBarItem42
     //
     this.commandBarItem42.Caption = "&Delete";
     this.commandBarItem42.Command = DevExpress.XtraReports.UserDesigner.ReportCommand.Delete;
     this.commandBarItem42.Enabled = false;
     this.commandBarItem42.Hint = "Delete the control";
     this.commandBarItem42.Id = 63;
     this.commandBarItem42.Name = "commandBarItem42";
     //
     // commandBarItem43
     //
     this.commandBarItem43.Caption = "Select &All";
     this.commandBarItem43.Command = DevExpress.XtraReports.UserDesigner.ReportCommand.SelectAll;
     this.commandBarItem43.Enabled = false;
     this.commandBarItem43.Hint = "Select all the controls in the document";
     this.commandBarItem43.Id = 64;
     this.commandBarItem43.ItemShortcut = new DevExpress.XtraBars.BarShortcut((System.Windows.Forms.Keys.Control | System.Windows.Forms.Keys.A));
     this.commandBarItem43.Name = "commandBarItem43";
     //
     // barSubItem3
     //
     this.barSubItem3.Caption = "&Görünüm";
     this.barSubItem3.Id = 45;
     this.barSubItem3.LinksPersistInfo.AddRange(new DevExpress.XtraBars.LinkPersistInfo[] {
     new DevExpress.XtraBars.LinkPersistInfo(this.barReportTabButtonsListItem1),
     new DevExpress.XtraBars.LinkPersistInfo(this.barSubItem4, true),
     new DevExpress.XtraBars.LinkPersistInfo(this.barSubItem5, true)});
     this.barSubItem3.Name = "barSubItem3";
     //
     // barReportTabButtonsListItem1
     //
     this.barReportTabButtonsListItem1.Caption = "Tab Buttons";
     this.barReportTabButtonsListItem1.Id = 46;
     this.barReportTabButtonsListItem1.Name = "barReportTabButtonsListItem1";
     //
     // barSubItem4
     //
     this.barSubItem4.Caption = "&Toolbars";
     this.barSubItem4.Id = 47;
     this.barSubItem4.LinksPersistInfo.AddRange(new DevExpress.XtraBars.LinkPersistInfo[] {
     new DevExpress.XtraBars.LinkPersistInfo(this.xrBarToolbarsListItem1)});
     this.barSubItem4.Name = "barSubItem4";
     //
     // xrBarToolbarsListItem1
     //
     this.xrBarToolbarsListItem1.Caption = "&Toolbars";
     this.xrBarToolbarsListItem1.Id = 48;
     this.xrBarToolbarsListItem1.Name = "xrBarToolbarsListItem1";
     //
     // barSubItem5
     //
     this.barSubItem5.Caption = "&Windows";
     this.barSubItem5.Id = 49;
     this.barSubItem5.LinksPersistInfo.AddRange(new DevExpress.XtraBars.LinkPersistInfo[] {
     new DevExpress.XtraBars.LinkPersistInfo(this.barDockPanelsListItem1)});
     this.barSubItem5.Name = "barSubItem5";
     //
     // barDockPanelsListItem1
     //
     this.barDockPanelsListItem1.Caption = "&Windows";
     this.barDockPanelsListItem1.Id = 50;
     this.barDockPanelsListItem1.Name = "barDockPanelsListItem1";
     this.barDockPanelsListItem1.ShowCustomizationItem = false;
     this.barDockPanelsListItem1.ShowDockPanels = true;
     this.barDockPanelsListItem1.ShowToolbars = false;
     //
     // barSubItem6
     //
     this.barSubItem6.Caption = "&Biçim";
     this.barSubItem6.Id = 51;
     this.barSubItem6.LinksPersistInfo.AddRange(new DevExpress.XtraBars.LinkPersistInfo[] {
     new DevExpress.XtraBars.LinkPersistInfo(this.commandColorBarItem1),
     new DevExpress.XtraBars.LinkPersistInfo(this.commandColorBarItem2),
     new DevExpress.XtraBars.LinkPersistInfo(this.barSubItem7, true),
     new DevExpress.XtraBars.LinkPersistInfo(this.barSubItem8),
     new DevExpress.XtraBars.LinkPersistInfo(this.barSubItem9, true),
     new DevExpress.XtraBars.LinkPersistInfo(this.barSubItem10),
     new DevExpress.XtraBars.LinkPersistInfo(this.barSubItem11, true),
     new DevExpress.XtraBars.LinkPersistInfo(this.barSubItem12),
     new DevExpress.XtraBars.LinkPersistInfo(this.barSubItem13, true),
     new DevExpress.XtraBars.LinkPersistInfo(this.barSubItem14, true)});
     this.barSubItem6.Name = "barSubItem6";
     //
     // commandColorBarItem1
     //
     this.commandColorBarItem1.ButtonStyle = DevExpress.XtraBars.BarButtonStyle.DropDown;
     this.commandColorBarItem1.Caption = "Yazý Rengi";
     this.commandColorBarItem1.Command = DevExpress.XtraReports.UserDesigner.ReportCommand.ForeColor;
     this.commandColorBarItem1.Enabled = false;
     this.commandColorBarItem1.Glyph = ((System.Drawing.Image)(resources.GetObject("commandColorBarItem1.Glyph")));
     this.commandColorBarItem1.Hint = "Set the foreground color of the control";
     this.commandColorBarItem1.Id = 5;
     this.commandColorBarItem1.Name = "commandColorBarItem1";
     //
     // commandColorBarItem2
     //
     this.commandColorBarItem2.ButtonStyle = DevExpress.XtraBars.BarButtonStyle.DropDown;
     this.commandColorBarItem2.Caption = "Zemin Rengi";
     this.commandColorBarItem2.Command = DevExpress.XtraReports.UserDesigner.ReportCommand.BackColor;
     this.commandColorBarItem2.Enabled = false;
     this.commandColorBarItem2.Glyph = ((System.Drawing.Image)(resources.GetObject("commandColorBarItem2.Glyph")));
     this.commandColorBarItem2.Hint = "Set the background color of the control";
     this.commandColorBarItem2.Id = 6;
     this.commandColorBarItem2.Name = "commandColorBarItem2";
     //
     // barSubItem7
     //
     this.barSubItem7.Caption = "&Font";
     this.barSubItem7.Id = 52;
     this.barSubItem7.LinksPersistInfo.AddRange(new DevExpress.XtraBars.LinkPersistInfo[] {
     new DevExpress.XtraBars.LinkPersistInfo(this.commandBarItem1, true),
     new DevExpress.XtraBars.LinkPersistInfo(this.commandBarItem2),
     new DevExpress.XtraBars.LinkPersistInfo(this.commandBarItem3)});
     this.barSubItem7.Name = "barSubItem7";
     //
     // commandBarItem1
     //
     this.commandBarItem1.Caption = "&Kalýn";
     this.commandBarItem1.Command = DevExpress.XtraReports.UserDesigner.ReportCommand.FontBold;
     this.commandBarItem1.Enabled = false;
     this.commandBarItem1.Hint = "Make the font bold";
     this.commandBarItem1.Id = 2;
     this.commandBarItem1.ImageIndex = 0;
     this.commandBarItem1.ItemShortcut = new DevExpress.XtraBars.BarShortcut((System.Windows.Forms.Keys.Control | System.Windows.Forms.Keys.B));
     this.commandBarItem1.Name = "commandBarItem1";
     //
     // commandBarItem2
     //
     this.commandBarItem2.Caption = "&Eðik";
     this.commandBarItem2.Command = DevExpress.XtraReports.UserDesigner.ReportCommand.FontItalic;
     this.commandBarItem2.Enabled = false;
     this.commandBarItem2.Hint = "Make the font italic";
     this.commandBarItem2.Id = 3;
     this.commandBarItem2.ImageIndex = 1;
     this.commandBarItem2.ItemShortcut = new DevExpress.XtraBars.BarShortcut((System.Windows.Forms.Keys.Control | System.Windows.Forms.Keys.I));
     this.commandBarItem2.Name = "commandBarItem2";
     //
     // commandBarItem3
     //
     this.commandBarItem3.Caption = "&Altý Çizgili";
     this.commandBarItem3.Command = DevExpress.XtraReports.UserDesigner.ReportCommand.FontUnderline;
     this.commandBarItem3.Enabled = false;
     this.commandBarItem3.Hint = "Underline the font";
     this.commandBarItem3.Id = 4;
     this.commandBarItem3.ImageIndex = 2;
     this.commandBarItem3.ItemShortcut = new DevExpress.XtraBars.BarShortcut((System.Windows.Forms.Keys.Control | System.Windows.Forms.Keys.U));
     this.commandBarItem3.Name = "commandBarItem3";
     //
     // barSubItem8
     //
     this.barSubItem8.Caption = "&Justify";
     this.barSubItem8.Id = 53;
     this.barSubItem8.LinksPersistInfo.AddRange(new DevExpress.XtraBars.LinkPersistInfo[] {
     new DevExpress.XtraBars.LinkPersistInfo(this.commandBarItem4, true),
     new DevExpress.XtraBars.LinkPersistInfo(this.commandBarItem5),
     new DevExpress.XtraBars.LinkPersistInfo(this.commandBarItem6),
     new DevExpress.XtraBars.LinkPersistInfo(this.commandBarItem7)});
     this.barSubItem8.Name = "barSubItem8";
     //
     // commandBarItem4
     //
     this.commandBarItem4.Caption = "&Sola Yasla";
     this.commandBarItem4.Command = DevExpress.XtraReports.UserDesigner.ReportCommand.JustifyLeft;
     this.commandBarItem4.Enabled = false;
     this.commandBarItem4.Hint = "Align the control’s text to the left";
     this.commandBarItem4.Id = 7;
     this.commandBarItem4.ImageIndex = 5;
     this.commandBarItem4.Name = "commandBarItem4";
     //
     // commandBarItem5
     //
     this.commandBarItem5.Caption = "&Ortala";
     this.commandBarItem5.Command = DevExpress.XtraReports.UserDesigner.ReportCommand.JustifyCenter;
     this.commandBarItem5.Enabled = false;
     this.commandBarItem5.Hint = "Align the control’s text to the center";
     this.commandBarItem5.Id = 8;
     this.commandBarItem5.ImageIndex = 6;
     this.commandBarItem5.Name = "commandBarItem5";
     //
     // commandBarItem6
     //
     this.commandBarItem6.Caption = "&Saða Yasla";
     this.commandBarItem6.Command = DevExpress.XtraReports.UserDesigner.ReportCommand.JustifyRight;
     this.commandBarItem6.Enabled = false;
     this.commandBarItem6.Hint = "Align the control’s text to the right";
     this.commandBarItem6.Id = 9;
     this.commandBarItem6.ImageIndex = 7;
     this.commandBarItem6.Name = "commandBarItem6";
     //
     // commandBarItem7
     //
     this.commandBarItem7.Caption = "&Ýki tarafa yasla";
     this.commandBarItem7.Command = DevExpress.XtraReports.UserDesigner.ReportCommand.JustifyJustify;
     this.commandBarItem7.Enabled = false;
     this.commandBarItem7.Hint = "Justify the control’s text";
     this.commandBarItem7.Id = 10;
     this.commandBarItem7.ImageIndex = 8;
     this.commandBarItem7.Name = "commandBarItem7";
     //
     // barSubItem9
     //
     this.barSubItem9.Caption = "&Align";
     this.barSubItem9.Id = 54;
     this.barSubItem9.LinksPersistInfo.AddRange(new DevExpress.XtraBars.LinkPersistInfo[] {
     new DevExpress.XtraBars.LinkPersistInfo(this.commandBarItem9, true),
     new DevExpress.XtraBars.LinkPersistInfo(this.commandBarItem10),
     new DevExpress.XtraBars.LinkPersistInfo(this.commandBarItem11),
     new DevExpress.XtraBars.LinkPersistInfo(this.commandBarItem12, true),
     new DevExpress.XtraBars.LinkPersistInfo(this.commandBarItem13),
     new DevExpress.XtraBars.LinkPersistInfo(this.commandBarItem14),
     new DevExpress.XtraBars.LinkPersistInfo(this.commandBarItem8, true)});
     this.barSubItem9.Name = "barSubItem9";
     //
     // commandBarItem9
     //
     this.commandBarItem9.Caption = "&Lefts";
     this.commandBarItem9.Command = DevExpress.XtraReports.UserDesigner.ReportCommand.AlignLeft;
     this.commandBarItem9.Enabled = false;
     this.commandBarItem9.Hint = "Left align the selected controls";
     this.commandBarItem9.Id = 12;
     this.commandBarItem9.ImageIndex = 18;
     this.commandBarItem9.Name = "commandBarItem9";
     //
     // commandBarItem10
     //
     this.commandBarItem10.Caption = "&Centers";
     this.commandBarItem10.Command = DevExpress.XtraReports.UserDesigner.ReportCommand.AlignVerticalCenters;
     this.commandBarItem10.Enabled = false;
     this.commandBarItem10.Hint = "Align the centers of the selected controls vertically";
     this.commandBarItem10.Id = 13;
     this.commandBarItem10.ImageIndex = 19;
     this.commandBarItem10.Name = "commandBarItem10";
     //
     // commandBarItem11
     //
     this.commandBarItem11.Caption = "&Rights";
     this.commandBarItem11.Command = DevExpress.XtraReports.UserDesigner.ReportCommand.AlignRight;
     this.commandBarItem11.Enabled = false;
     this.commandBarItem11.Hint = "Right align the selected controls";
     this.commandBarItem11.Id = 14;
     this.commandBarItem11.ImageIndex = 20;
     this.commandBarItem11.Name = "commandBarItem11";
     //
     // commandBarItem12
     //
     this.commandBarItem12.Caption = "&Tops";
     this.commandBarItem12.Command = DevExpress.XtraReports.UserDesigner.ReportCommand.AlignTop;
     this.commandBarItem12.Enabled = false;
     this.commandBarItem12.Hint = "Align the tops of the selected controls";
     this.commandBarItem12.Id = 15;
     this.commandBarItem12.ImageIndex = 21;
     this.commandBarItem12.Name = "commandBarItem12";
     //
     // commandBarItem13
     //
     this.commandBarItem13.Caption = "&Middles";
     this.commandBarItem13.Command = DevExpress.XtraReports.UserDesigner.ReportCommand.AlignHorizontalCenters;
     this.commandBarItem13.Enabled = false;
     this.commandBarItem13.Hint = "Align the centers of the selected controls horizontally";
     this.commandBarItem13.Id = 16;
     this.commandBarItem13.ImageIndex = 22;
     this.commandBarItem13.Name = "commandBarItem13";
     //
     // commandBarItem14
     //
     this.commandBarItem14.Caption = "&Bottoms";
     this.commandBarItem14.Command = DevExpress.XtraReports.UserDesigner.ReportCommand.AlignBottom;
     this.commandBarItem14.Enabled = false;
     this.commandBarItem14.Hint = "Align the bottoms of the selected controls";
     this.commandBarItem14.Id = 17;
     this.commandBarItem14.ImageIndex = 23;
     this.commandBarItem14.Name = "commandBarItem14";
     //
     // commandBarItem8
     //
     this.commandBarItem8.Caption = "to &Grid";
     this.commandBarItem8.Command = DevExpress.XtraReports.UserDesigner.ReportCommand.AlignToGrid;
     this.commandBarItem8.Enabled = false;
     this.commandBarItem8.Hint = "Align the positions of the selected controls to the grid";
     this.commandBarItem8.Id = 11;
     this.commandBarItem8.ImageIndex = 17;
     this.commandBarItem8.Name = "commandBarItem8";
     //
     // barSubItem10
     //
     this.barSubItem10.Caption = "&Make Same Size";
     this.barSubItem10.Id = 55;
     this.barSubItem10.LinksPersistInfo.AddRange(new DevExpress.XtraBars.LinkPersistInfo[] {
     new DevExpress.XtraBars.LinkPersistInfo(this.commandBarItem15, true),
     new DevExpress.XtraBars.LinkPersistInfo(this.commandBarItem16),
     new DevExpress.XtraBars.LinkPersistInfo(this.commandBarItem17),
     new DevExpress.XtraBars.LinkPersistInfo(this.commandBarItem18)});
     this.barSubItem10.Name = "barSubItem10";
     //
     // commandBarItem15
     //
     this.commandBarItem15.Caption = "&Width";
     this.commandBarItem15.Command = DevExpress.XtraReports.UserDesigner.ReportCommand.SizeToControlWidth;
     this.commandBarItem15.Enabled = false;
     this.commandBarItem15.Hint = "Make the selected controls have the same width";
     this.commandBarItem15.Id = 18;
     this.commandBarItem15.ImageIndex = 24;
     this.commandBarItem15.Name = "commandBarItem15";
     //
     // commandBarItem16
     //
     this.commandBarItem16.Caption = "Size to Gri&d";
     this.commandBarItem16.Command = DevExpress.XtraReports.UserDesigner.ReportCommand.SizeToGrid;
     this.commandBarItem16.Enabled = false;
     this.commandBarItem16.Hint = "Size the selected controls to the grid";
     this.commandBarItem16.Id = 19;
     this.commandBarItem16.ImageIndex = 25;
     this.commandBarItem16.Name = "commandBarItem16";
     //
     // commandBarItem17
     //
     this.commandBarItem17.Caption = "&Height";
     this.commandBarItem17.Command = DevExpress.XtraReports.UserDesigner.ReportCommand.SizeToControlHeight;
     this.commandBarItem17.Enabled = false;
     this.commandBarItem17.Hint = "Make the selected controls have the same height";
     this.commandBarItem17.Id = 20;
     this.commandBarItem17.ImageIndex = 26;
     this.commandBarItem17.Name = "commandBarItem17";
     //
     // commandBarItem18
     //
     this.commandBarItem18.Caption = "&Both";
     this.commandBarItem18.Command = DevExpress.XtraReports.UserDesigner.ReportCommand.SizeToControl;
     this.commandBarItem18.Enabled = false;
     this.commandBarItem18.Hint = "Make the selected controls the same size";
     this.commandBarItem18.Id = 21;
     this.commandBarItem18.ImageIndex = 27;
     this.commandBarItem18.Name = "commandBarItem18";
     //
     // barSubItem11
     //
     this.barSubItem11.Caption = "&Horizontal Spacing";
     this.barSubItem11.Id = 56;
     this.barSubItem11.LinksPersistInfo.AddRange(new DevExpress.XtraBars.LinkPersistInfo[] {
     new DevExpress.XtraBars.LinkPersistInfo(this.commandBarItem19, true),
     new DevExpress.XtraBars.LinkPersistInfo(this.commandBarItem20),
     new DevExpress.XtraBars.LinkPersistInfo(this.commandBarItem21),
     new DevExpress.XtraBars.LinkPersistInfo(this.commandBarItem22)});
     this.barSubItem11.Name = "barSubItem11";
     //
     // commandBarItem19
     //
     this.commandBarItem19.Caption = "Make &Equal";
     this.commandBarItem19.Command = DevExpress.XtraReports.UserDesigner.ReportCommand.HorizSpaceMakeEqual;
     this.commandBarItem19.Enabled = false;
     this.commandBarItem19.Hint = "Make the spacing between the selected controls equal";
     this.commandBarItem19.Id = 22;
     this.commandBarItem19.ImageIndex = 28;
     this.commandBarItem19.Name = "commandBarItem19";
     //
     // commandBarItem20
     //
     this.commandBarItem20.Caption = "&Increase";
     this.commandBarItem20.Command = DevExpress.XtraReports.UserDesigner.ReportCommand.HorizSpaceIncrease;
     this.commandBarItem20.Enabled = false;
     this.commandBarItem20.Hint = "Increase the spacing between the selected controls";
     this.commandBarItem20.Id = 23;
     this.commandBarItem20.ImageIndex = 29;
     this.commandBarItem20.Name = "commandBarItem20";
     //
     // commandBarItem21
     //
     this.commandBarItem21.Caption = "&Decrease";
     this.commandBarItem21.Command = DevExpress.XtraReports.UserDesigner.ReportCommand.HorizSpaceDecrease;
     this.commandBarItem21.Enabled = false;
     this.commandBarItem21.Hint = "Decrease the spacing between the selected controls";
     this.commandBarItem21.Id = 24;
     this.commandBarItem21.ImageIndex = 30;
     this.commandBarItem21.Name = "commandBarItem21";
     //
     // commandBarItem22
     //
     this.commandBarItem22.Caption = "&Remove";
     this.commandBarItem22.Command = DevExpress.XtraReports.UserDesigner.ReportCommand.HorizSpaceConcatenate;
     this.commandBarItem22.Enabled = false;
     this.commandBarItem22.Hint = "Remove the spacing between the selected controls";
     this.commandBarItem22.Id = 25;
     this.commandBarItem22.ImageIndex = 31;
     this.commandBarItem22.Name = "commandBarItem22";
     //
     // barSubItem12
     //
     this.barSubItem12.Caption = "&Vertical Spacing";
     this.barSubItem12.Id = 57;
     this.barSubItem12.LinksPersistInfo.AddRange(new DevExpress.XtraBars.LinkPersistInfo[] {
     new DevExpress.XtraBars.LinkPersistInfo(this.commandBarItem23, true),
     new DevExpress.XtraBars.LinkPersistInfo(this.commandBarItem24),
     new DevExpress.XtraBars.LinkPersistInfo(this.commandBarItem25),
     new DevExpress.XtraBars.LinkPersistInfo(this.commandBarItem26)});
     this.barSubItem12.Name = "barSubItem12";
     //
     // commandBarItem23
     //
     this.commandBarItem23.Caption = "Make &Equal";
     this.commandBarItem23.Command = DevExpress.XtraReports.UserDesigner.ReportCommand.VertSpaceMakeEqual;
     this.commandBarItem23.Enabled = false;
     this.commandBarItem23.Hint = "Make the spacing between the selected controls equal";
     this.commandBarItem23.Id = 26;
     this.commandBarItem23.ImageIndex = 32;
     this.commandBarItem23.Name = "commandBarItem23";
     //
     // commandBarItem24
     //
     this.commandBarItem24.Caption = "&Increase";
     this.commandBarItem24.Command = DevExpress.XtraReports.UserDesigner.ReportCommand.VertSpaceIncrease;
     this.commandBarItem24.Enabled = false;
     this.commandBarItem24.Hint = "Increase the spacing between the selected controls";
     this.commandBarItem24.Id = 27;
     this.commandBarItem24.ImageIndex = 33;
     this.commandBarItem24.Name = "commandBarItem24";
     //
     // commandBarItem25
     //
     this.commandBarItem25.Caption = "&Decrease";
     this.commandBarItem25.Command = DevExpress.XtraReports.UserDesigner.ReportCommand.VertSpaceDecrease;
     this.commandBarItem25.Enabled = false;
     this.commandBarItem25.Hint = "Decrease the spacing between the selected controls";
     this.commandBarItem25.Id = 28;
     this.commandBarItem25.ImageIndex = 34;
     this.commandBarItem25.Name = "commandBarItem25";
     //
     // commandBarItem26
     //
     this.commandBarItem26.Caption = "&Remove";
     this.commandBarItem26.Command = DevExpress.XtraReports.UserDesigner.ReportCommand.VertSpaceConcatenate;
     this.commandBarItem26.Enabled = false;
     this.commandBarItem26.Hint = "Remove the spacing between the selected controls";
     this.commandBarItem26.Id = 29;
     this.commandBarItem26.ImageIndex = 35;
     this.commandBarItem26.Name = "commandBarItem26";
     //
     // barSubItem13
     //
     this.barSubItem13.Caption = "&Center in Form";
     this.barSubItem13.Id = 58;
     this.barSubItem13.LinksPersistInfo.AddRange(new DevExpress.XtraBars.LinkPersistInfo[] {
     new DevExpress.XtraBars.LinkPersistInfo(this.commandBarItem27, true),
     new DevExpress.XtraBars.LinkPersistInfo(this.commandBarItem28)});
     this.barSubItem13.Name = "barSubItem13";
     //
     // commandBarItem27
     //
     this.commandBarItem27.Caption = "&Horizontally";
     this.commandBarItem27.Command = DevExpress.XtraReports.UserDesigner.ReportCommand.CenterHorizontally;
     this.commandBarItem27.Enabled = false;
     this.commandBarItem27.Hint = "Horizontally center the selected controls within a band";
     this.commandBarItem27.Id = 30;
     this.commandBarItem27.ImageIndex = 36;
     this.commandBarItem27.Name = "commandBarItem27";
     //
     // commandBarItem28
     //
     this.commandBarItem28.Caption = "&Vertically";
     this.commandBarItem28.Command = DevExpress.XtraReports.UserDesigner.ReportCommand.CenterVertically;
     this.commandBarItem28.Enabled = false;
     this.commandBarItem28.Hint = "Vertically center the selected controls within a band";
     this.commandBarItem28.Id = 31;
     this.commandBarItem28.ImageIndex = 37;
     this.commandBarItem28.Name = "commandBarItem28";
     //
     // barSubItem14
     //
     this.barSubItem14.Caption = "&Order";
     this.barSubItem14.Id = 59;
     this.barSubItem14.LinksPersistInfo.AddRange(new DevExpress.XtraBars.LinkPersistInfo[] {
     new DevExpress.XtraBars.LinkPersistInfo(this.commandBarItem29, true),
     new DevExpress.XtraBars.LinkPersistInfo(this.commandBarItem30)});
     this.barSubItem14.Name = "barSubItem14";
     //
     // commandBarItem29
     //
     this.commandBarItem29.Caption = "&Bring to Front";
     this.commandBarItem29.Command = DevExpress.XtraReports.UserDesigner.ReportCommand.BringToFront;
     this.commandBarItem29.Enabled = false;
     this.commandBarItem29.Hint = "Bring the selected controls to the front";
     this.commandBarItem29.Id = 32;
     this.commandBarItem29.ImageIndex = 38;
     this.commandBarItem29.Name = "commandBarItem29";
     //
     // commandBarItem30
     //
     this.commandBarItem30.Caption = "&Send to Back";
     this.commandBarItem30.Command = DevExpress.XtraReports.UserDesigner.ReportCommand.SendToBack;
     this.commandBarItem30.Enabled = false;
     this.commandBarItem30.Hint = "Move the selected controls to the back";
     this.commandBarItem30.Id = 33;
     this.commandBarItem30.ImageIndex = 39;
     this.commandBarItem30.Name = "commandBarItem30";
     //
     // bsiLookAndFeel
     //
     this.bsiLookAndFeel.Caption = "&Look and Feel";
     this.bsiLookAndFeel.Id = 65;
     this.bsiLookAndFeel.Name = "bsiLookAndFeel";
     //
     // designBar2
     //
     this.designBar2.BarName = "ToolBar";
     this.designBar2.DockCol = 0;
     this.designBar2.DockRow = 1;
     this.designBar2.DockStyle = DevExpress.XtraBars.BarDockStyle.Top;
     this.designBar2.LinksPersistInfo.AddRange(new DevExpress.XtraBars.LinkPersistInfo[] {
     new DevExpress.XtraBars.LinkPersistInfo(this.commandBarItem31),
     new DevExpress.XtraBars.LinkPersistInfo(this.commandBarItem32),
     new DevExpress.XtraBars.LinkPersistInfo(this.commandBarItem33),
     new DevExpress.XtraBars.LinkPersistInfo(this.commandBarItem34, true),
     new DevExpress.XtraBars.LinkPersistInfo(this.commandBarItem35),
     new DevExpress.XtraBars.LinkPersistInfo(this.commandBarItem36),
     new DevExpress.XtraBars.LinkPersistInfo(this.commandBarItem37, true),
     new DevExpress.XtraBars.LinkPersistInfo(this.commandBarItem38)});
     this.designBar2.Text = "Standart";
     //
     // designBar3
     //
     this.designBar3.BarName = "FormattingToolBar";
     this.designBar3.DockCol = 1;
     this.designBar3.DockRow = 1;
     this.designBar3.DockStyle = DevExpress.XtraBars.BarDockStyle.Top;
     this.designBar3.LinksPersistInfo.AddRange(new DevExpress.XtraBars.LinkPersistInfo[] {
     new DevExpress.XtraBars.LinkPersistInfo(this.barEditItem1),
     new DevExpress.XtraBars.LinkPersistInfo(this.barEditItem2),
     new DevExpress.XtraBars.LinkPersistInfo(this.commandBarItem1),
     new DevExpress.XtraBars.LinkPersistInfo(this.commandBarItem2),
     new DevExpress.XtraBars.LinkPersistInfo(this.commandBarItem3),
     new DevExpress.XtraBars.LinkPersistInfo(this.commandColorBarItem1, true),
     new DevExpress.XtraBars.LinkPersistInfo(this.commandColorBarItem2),
     new DevExpress.XtraBars.LinkPersistInfo(this.commandBarItem4, true),
     new DevExpress.XtraBars.LinkPersistInfo(this.commandBarItem5),
     new DevExpress.XtraBars.LinkPersistInfo(this.commandBarItem6),
     new DevExpress.XtraBars.LinkPersistInfo(this.commandBarItem7)});
     this.designBar3.Text = "Biçimlendirme";
     //
     // barEditItem1
     //
     this.barEditItem1.Caption = "Font Ýsmi";
     this.barEditItem1.Edit = this.ricbFontName;
     this.barEditItem1.Hint = "Font Name";
     this.barEditItem1.Id = 0;
     this.barEditItem1.Name = "barEditItem1";
     this.barEditItem1.Width = 120;
     //
     // ricbFontName
     //
     this.ricbFontName.AutoHeight = false;
     this.ricbFontName.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.ricbFontName.DropDownRows = 12;
     this.ricbFontName.Name = "ricbFontName";
     //
     // barEditItem2
     //
     this.barEditItem2.Caption = "Font Boyutu";
     this.barEditItem2.Edit = this.ricbFontSize;
     this.barEditItem2.Hint = "Font Size";
     this.barEditItem2.Id = 1;
     this.barEditItem2.Name = "barEditItem2";
     this.barEditItem2.Width = 55;
     //
     // ricbFontSize
     //
     this.ricbFontSize.AutoHeight = false;
     this.ricbFontSize.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.ricbFontSize.Items.AddRange(new object[] {
     ((byte)(8)),
     ((byte)(9)),
     ((byte)(10)),
     ((byte)(11)),
     ((byte)(12)),
     ((byte)(14)),
     ((byte)(16)),
     ((byte)(18)),
     ((byte)(20)),
     ((byte)(22)),
     ((byte)(24)),
     ((byte)(26)),
     ((byte)(28)),
     ((byte)(36)),
     ((byte)(48)),
     ((byte)(72))});
     this.ricbFontSize.Name = "ricbFontSize";
     //
     // designBar4
     //
     this.designBar4.BarName = "LayoutToolBar";
     this.designBar4.DockCol = 0;
     this.designBar4.DockRow = 2;
     this.designBar4.DockStyle = DevExpress.XtraBars.BarDockStyle.Top;
     this.designBar4.LinksPersistInfo.AddRange(new DevExpress.XtraBars.LinkPersistInfo[] {
     new DevExpress.XtraBars.LinkPersistInfo(this.commandBarItem8),
     new DevExpress.XtraBars.LinkPersistInfo(this.commandBarItem9, true),
     new DevExpress.XtraBars.LinkPersistInfo(this.commandBarItem10),
     new DevExpress.XtraBars.LinkPersistInfo(this.commandBarItem11),
     new DevExpress.XtraBars.LinkPersistInfo(this.commandBarItem12, true),
     new DevExpress.XtraBars.LinkPersistInfo(this.commandBarItem13),
     new DevExpress.XtraBars.LinkPersistInfo(this.commandBarItem14),
     new DevExpress.XtraBars.LinkPersistInfo(this.commandBarItem15, true),
     new DevExpress.XtraBars.LinkPersistInfo(this.commandBarItem16),
     new DevExpress.XtraBars.LinkPersistInfo(this.commandBarItem17),
     new DevExpress.XtraBars.LinkPersistInfo(this.commandBarItem18),
     new DevExpress.XtraBars.LinkPersistInfo(this.commandBarItem19, true),
     new DevExpress.XtraBars.LinkPersistInfo(this.commandBarItem20),
     new DevExpress.XtraBars.LinkPersistInfo(this.commandBarItem21),
     new DevExpress.XtraBars.LinkPersistInfo(this.commandBarItem22),
     new DevExpress.XtraBars.LinkPersistInfo(this.commandBarItem23, true),
     new DevExpress.XtraBars.LinkPersistInfo(this.commandBarItem24),
     new DevExpress.XtraBars.LinkPersistInfo(this.commandBarItem25),
     new DevExpress.XtraBars.LinkPersistInfo(this.commandBarItem26),
     new DevExpress.XtraBars.LinkPersistInfo(this.commandBarItem27, true),
     new DevExpress.XtraBars.LinkPersistInfo(this.commandBarItem28),
     new DevExpress.XtraBars.LinkPersistInfo(this.commandBarItem29, true),
     new DevExpress.XtraBars.LinkPersistInfo(this.commandBarItem30)});
     this.designBar4.Text = "Yerleþim";
     //
     // designBar5
     //
     this.designBar5.BarName = "StatusBar";
     this.designBar5.CanDockStyle = DevExpress.XtraBars.BarCanDockStyle.Bottom;
     this.designBar5.DockCol = 0;
     this.designBar5.DockRow = 0;
     this.designBar5.DockStyle = DevExpress.XtraBars.BarDockStyle.Bottom;
     this.designBar5.LinksPersistInfo.AddRange(new DevExpress.XtraBars.LinkPersistInfo[] {
     new DevExpress.XtraBars.LinkPersistInfo(this.barStaticItem1)});
     this.designBar5.OptionsBar.AllowQuickCustomization = false;
     this.designBar5.OptionsBar.DrawDragBorder = false;
     this.designBar5.OptionsBar.UseWholeRow = true;
     this.designBar5.Text = "Durum Çubuðu";
     //
     // barStaticItem1
     //
     this.barStaticItem1.AutoSize = DevExpress.XtraBars.BarStaticItemSize.Spring;
     this.barStaticItem1.Id = 42;
     this.barStaticItem1.Name = "barStaticItem1";
     this.barStaticItem1.TextAlignment = System.Drawing.StringAlignment.Near;
     this.barStaticItem1.Width = 32;
     //
     // designBar6
     //
     this.designBar6.BarName = "Zoom Bar";
     this.designBar6.DockCol = 1;
     this.designBar6.DockRow = 2;
     this.designBar6.DockStyle = DevExpress.XtraBars.BarDockStyle.Top;
     this.designBar6.LinksPersistInfo.AddRange(new DevExpress.XtraBars.LinkPersistInfo[] {
     new DevExpress.XtraBars.LinkPersistInfo(this.commandBarItem44),
     new DevExpress.XtraBars.LinkPersistInfo(this.xrZoomBarEditItem1),
     new DevExpress.XtraBars.LinkPersistInfo(this.commandBarItem45)});
     this.designBar6.Text = "Yakýnlaþtýrma";
     //
     // commandBarItem44
     //
     this.commandBarItem44.Caption = "Uzaklaþtýr";
     this.commandBarItem44.Command = DevExpress.XtraReports.UserDesigner.ReportCommand.ZoomOut;
     this.commandBarItem44.Enabled = false;
     this.commandBarItem44.Hint = "Zoom out the design surface";
     this.commandBarItem44.Id = 66;
     this.commandBarItem44.ImageIndex = 40;
     this.commandBarItem44.ItemShortcut = new DevExpress.XtraBars.BarShortcut((System.Windows.Forms.Keys.Control | System.Windows.Forms.Keys.Subtract));
     this.commandBarItem44.Name = "commandBarItem44";
     //
     // xrZoomBarEditItem1
     //
     this.xrZoomBarEditItem1.Caption = "Zoom";
     this.xrZoomBarEditItem1.Edit = this.designRepositoryItemComboBox1;
     this.xrZoomBarEditItem1.Enabled = false;
     this.xrZoomBarEditItem1.Hint = "Select or input the zoom factor";
     this.xrZoomBarEditItem1.Id = 67;
     this.xrZoomBarEditItem1.Name = "xrZoomBarEditItem1";
     this.xrZoomBarEditItem1.Width = 70;
     //
     // designRepositoryItemComboBox1
     //
     this.designRepositoryItemComboBox1.AutoComplete = false;
     this.designRepositoryItemComboBox1.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.designRepositoryItemComboBox1.Name = "designRepositoryItemComboBox1";
     //
     // commandBarItem45
     //
     this.commandBarItem45.Caption = "Yakýnlaþtýr";
     this.commandBarItem45.Command = DevExpress.XtraReports.UserDesigner.ReportCommand.ZoomIn;
     this.commandBarItem45.Enabled = false;
     this.commandBarItem45.Hint = "Zoom in the design surface";
     this.commandBarItem45.Id = 68;
     this.commandBarItem45.ImageIndex = 41;
     this.commandBarItem45.ItemShortcut = new DevExpress.XtraBars.BarShortcut((System.Windows.Forms.Keys.Control | System.Windows.Forms.Keys.Add));
     this.commandBarItem45.Name = "commandBarItem45";
     //
     // xrDesignDockManager1
     //
     this.xrDesignDockManager1.Form = this;
     this.xrDesignDockManager1.ImageStream = ((DevExpress.Utils.ImageCollectionStreamer)(resources.GetObject("xrDesignDockManager1.ImageStream")));
     this.xrDesignDockManager1.RootPanels.AddRange(new DevExpress.XtraBars.Docking.DockPanel[] {
     this.panelContainer1,
     this.toolBoxDockPanel1,
     this.groupAndSortDockPanel1});
     this.xrDesignDockManager1.TopZIndexControls.AddRange(new string[] {
     "DevExpress.XtraBars.BarDockControl",
     "System.Windows.Forms.StatusBar"});
     this.xrDesignDockManager1.XRDesignPanel = this.xrDesignPanel;
     //
     // panelContainer1
     //
     this.panelContainer1.Controls.Add(this.panelContainer2);
     this.panelContainer1.Controls.Add(this.propertyGridDockPanel1);
     this.panelContainer1.Dock = DevExpress.XtraBars.Docking.DockingStyle.Right;
     this.panelContainer1.ID = new System.Guid("c924e71d-fc07-4f71-80db-150e46515172");
     this.panelContainer1.Location = new System.Drawing.Point(582, 76);
     this.panelContainer1.Name = "panelContainer1";
     this.panelContainer1.Size = new System.Drawing.Size(250, 312);
     this.panelContainer1.Text = "panelContainer1";
     //
     // panelContainer2
     //
     this.panelContainer2.ActiveChild = this.reportExplorerDockPanel1;
     this.panelContainer2.Controls.Add(this.reportExplorerDockPanel1);
     this.panelContainer2.Controls.Add(this.fieldListDockPanel1);
     this.panelContainer2.Dock = DevExpress.XtraBars.Docking.DockingStyle.Fill;
     this.panelContainer2.ID = new System.Guid("f590a4cc-96cf-4036-aaa1-6a23922194fc");
     this.panelContainer2.ImageIndex = 2;
     this.panelContainer2.Location = new System.Drawing.Point(0, 0);
     this.panelContainer2.Name = "panelContainer2";
     this.panelContainer2.Size = new System.Drawing.Size(250, 355);
     this.panelContainer2.Tabbed = true;
     this.panelContainer2.Text = "panelContainer2";
     //
     // reportExplorerDockPanel1
     //
     this.reportExplorerDockPanel1.Controls.Add(this.reportExplorerDockPanel1_Container);
     this.reportExplorerDockPanel1.Dock = DevExpress.XtraBars.Docking.DockingStyle.Fill;
     this.reportExplorerDockPanel1.ID = new System.Guid("fb3ec6cc-3b9b-4b9c-91cf-cff78c1edbf1");
     this.reportExplorerDockPanel1.ImageIndex = 2;
     this.reportExplorerDockPanel1.Location = new System.Drawing.Point(3, 25);
     this.reportExplorerDockPanel1.Name = "reportExplorerDockPanel1";
     this.reportExplorerDockPanel1.Size = new System.Drawing.Size(244, 304);
     this.reportExplorerDockPanel1.Text = "Rapor Gezgini";
     this.reportExplorerDockPanel1.XRDesignPanel = this.xrDesignPanel;
     //
     // reportExplorerDockPanel1_Container
     //
     this.reportExplorerDockPanel1_Container.Location = new System.Drawing.Point(0, 0);
     this.reportExplorerDockPanel1_Container.Name = "reportExplorerDockPanel1_Container";
     this.reportExplorerDockPanel1_Container.Size = new System.Drawing.Size(244, 304);
     this.reportExplorerDockPanel1_Container.TabIndex = 0;
     //
     // fieldListDockPanel1
     //
     this.fieldListDockPanel1.Controls.Add(this.fieldListDockPanel1_Container);
     this.fieldListDockPanel1.Dock = DevExpress.XtraBars.Docking.DockingStyle.Fill;
     this.fieldListDockPanel1.ID = new System.Guid("faf69838-a93f-4114-83e8-d0d09cc5ce95");
     this.fieldListDockPanel1.ImageIndex = 0;
     this.fieldListDockPanel1.Location = new System.Drawing.Point(3, 25);
     this.fieldListDockPanel1.Name = "fieldListDockPanel1";
     this.fieldListDockPanel1.Size = new System.Drawing.Size(244, 304);
     this.fieldListDockPanel1.Text = "Alan Listesi";
     this.fieldListDockPanel1.XRDesignPanel = this.xrDesignPanel;
     //
     // fieldListDockPanel1_Container
     //
     this.fieldListDockPanel1_Container.Location = new System.Drawing.Point(0, 0);
     this.fieldListDockPanel1_Container.Name = "fieldListDockPanel1_Container";
     this.fieldListDockPanel1_Container.Size = new System.Drawing.Size(244, 304);
     this.fieldListDockPanel1_Container.TabIndex = 0;
     //
     // propertyGridDockPanel1
     //
     this.propertyGridDockPanel1.Controls.Add(this.propertyGridDockPanel1_Container);
     this.propertyGridDockPanel1.Dock = DevExpress.XtraBars.Docking.DockingStyle.Fill;
     this.propertyGridDockPanel1.ID = new System.Guid("b38d12c3-cd06-4dec-b93d-63a0088e495a");
     this.propertyGridDockPanel1.ImageIndex = 1;
     this.propertyGridDockPanel1.Location = new System.Drawing.Point(0, 355);
     this.propertyGridDockPanel1.Name = "propertyGridDockPanel1";
     this.propertyGridDockPanel1.Size = new System.Drawing.Size(250, 117);
     this.propertyGridDockPanel1.Text = "Özellikler";
     this.propertyGridDockPanel1.XRDesignPanel = this.xrDesignPanel;
     //
     // propertyGridDockPanel1_Container
     //
     this.propertyGridDockPanel1_Container.Location = new System.Drawing.Point(3, 25);
     this.propertyGridDockPanel1_Container.Name = "propertyGridDockPanel1_Container";
     this.propertyGridDockPanel1_Container.Size = new System.Drawing.Size(244, 89);
     this.propertyGridDockPanel1_Container.TabIndex = 0;
     //
     // toolBoxDockPanel1
     //
     this.toolBoxDockPanel1.Controls.Add(this.toolBoxDockPanel1_Container);
     this.toolBoxDockPanel1.Dock = DevExpress.XtraBars.Docking.DockingStyle.Left;
     this.toolBoxDockPanel1.ID = new System.Guid("161a5a1a-d9b9-4f06-9ac4-d0c3e507c54f");
     this.toolBoxDockPanel1.ImageIndex = 3;
     this.toolBoxDockPanel1.Location = new System.Drawing.Point(0, 76);
     this.toolBoxDockPanel1.Name = "toolBoxDockPanel1";
     this.toolBoxDockPanel1.Size = new System.Drawing.Size(165, 472);
     this.toolBoxDockPanel1.Text = "Araç Kutusu";
     this.toolBoxDockPanel1.XRDesignPanel = this.xrDesignPanel;
     //
     // toolBoxDockPanel1_Container
     //
     this.toolBoxDockPanel1_Container.Location = new System.Drawing.Point(3, 25);
     this.toolBoxDockPanel1_Container.Name = "toolBoxDockPanel1_Container";
     this.toolBoxDockPanel1_Container.Size = new System.Drawing.Size(159, 444);
     this.toolBoxDockPanel1_Container.TabIndex = 0;
     //
     // groupAndSortDockPanel1
     //
     this.groupAndSortDockPanel1.Controls.Add(this.groupAndSortDockPanel1_Container);
     this.groupAndSortDockPanel1.Dock = DevExpress.XtraBars.Docking.DockingStyle.Bottom;
     this.groupAndSortDockPanel1.ID = new System.Guid("4bab159e-c495-4d67-87dc-f4e895da443e");
     this.groupAndSortDockPanel1.ImageIndex = 4;
     this.groupAndSortDockPanel1.Location = new System.Drawing.Point(165, 388);
     this.groupAndSortDockPanel1.Name = "groupAndSortDockPanel1";
     this.groupAndSortDockPanel1.Size = new System.Drawing.Size(667, 160);
     this.groupAndSortDockPanel1.Text = "Gruplama ve Sýralama";
     this.groupAndSortDockPanel1.XRDesignPanel = this.xrDesignPanel;
     //
     // groupAndSortDockPanel1_Container
     //
     this.groupAndSortDockPanel1_Container.Location = new System.Drawing.Point(3, 25);
     this.groupAndSortDockPanel1_Container.Name = "groupAndSortDockPanel1_Container";
     this.groupAndSortDockPanel1_Container.Size = new System.Drawing.Size(411, 132);
     this.groupAndSortDockPanel1_Container.TabIndex = 0;
     //
     // CustomDesignForm
     //
     this.ClientSize = new System.Drawing.Size(832, 571);
     this.Controls.Add(this.panelContainer1);
     this.Controls.Add(this.groupAndSortDockPanel1);
     this.Controls.Add(this.toolBoxDockPanel1);
     this.Controls.Add(this.barDockControlLeft);
     this.Controls.Add(this.barDockControlRight);
     this.Controls.Add(this.barDockControlBottom);
     this.Controls.Add(this.barDockControlTop);
     this.Name = "CustomDesignForm";
     this.Controls.SetChildIndex(this.barDockControlTop, 0);
     this.Controls.SetChildIndex(this.barDockControlBottom, 0);
     this.Controls.SetChildIndex(this.barDockControlRight, 0);
     this.Controls.SetChildIndex(this.barDockControlLeft, 0);
     this.Controls.SetChildIndex(this.toolBoxDockPanel1, 0);
     this.Controls.SetChildIndex(this.groupAndSortDockPanel1, 0);
     this.Controls.SetChildIndex(this.panelContainer1, 0);
     this.Controls.SetChildIndex(this.xrDesignPanel, 0);
     ((System.ComponentModel.ISupportInitialize)(this.xrDesignPanel)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.xrDesignBarManager1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.ricbFontName)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.ricbFontSize)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.designRepositoryItemComboBox1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.xrDesignDockManager1)).EndInit();
     this.panelContainer1.ResumeLayout(false);
     this.panelContainer2.ResumeLayout(false);
     this.reportExplorerDockPanel1.ResumeLayout(false);
     this.fieldListDockPanel1.ResumeLayout(false);
     this.propertyGridDockPanel1.ResumeLayout(false);
     this.toolBoxDockPanel1.ResumeLayout(false);
     this.groupAndSortDockPanel1.ResumeLayout(false);
     this.ResumeLayout(false);
 }
Example #31
0
        /// <summary>
        /// 初始化列,
        /// </summary>
        public void InitColumns() {

            //需要隐藏列时在这写代码

            hideColumn("ParentID");
            //hideColumn("c1");
            hideColumn("c2");
            hideColumn("c3");
            DevExpress.XtraEditors.Repository.RepositoryItemComboBox cbox=new DevExpress.XtraEditors.Repository.RepositoryItemComboBox();
            cbox.Items.Add("设备");
            cbox.Items.Add("材料");
            gridView1.Columns["c1"].ColumnEdit = cbox;
            gridView1.Columns["c1"].VisibleIndex = 2;
            
        }
Example #32
0
 /// <summary>
 /// Required method for Designer support - do not modify
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     this.components = new System.ComponentModel.Container();
     System.Resources.ResourceManager resources = new System.Resources.ResourceManager(typeof(Finan2Details));
     this.notePanel_FinanQuery = new DevExpress.Utils.Frames.NotePanel();
     this.notePanel1           = new DevExpress.Utils.Frames.NotePanel();
     this.txtTemplateName      = new DevExpress.XtraEditors.TextEdit();
     this.gridControl1         = new DevExpress.XtraGrid.GridControl();
     this.gridView1            = new DevExpress.XtraGrid.Views.Grid.GridView();
     this.费用名                     = new DevExpress.XtraGrid.Columns.GridColumn();
     this.fullDays                = new DevExpress.XtraGrid.Columns.GridColumn();
     this.fullDaysSpend           = new DevExpress.XtraGrid.Columns.GridColumn();
     this.halfDaysSpend           = new DevExpress.XtraGrid.Columns.GridColumn();
     this.perDaySpend             = new DevExpress.XtraGrid.Columns.GridColumn();
     this.noSpendMonth            = new DevExpress.XtraGrid.Columns.GridColumn();
     this.halfSpendMonth          = new DevExpress.XtraGrid.Columns.GridColumn();
     this.指定年级                    = new DevExpress.XtraGrid.Columns.GridColumn();
     this.repositoryItemComboBox1 = new DevExpress.XtraEditors.Repository.RepositoryItemComboBox();
     this.指定班级                    = new DevExpress.XtraGrid.Columns.GridColumn();
     this.repositoryItemComboBox2 = new DevExpress.XtraEditors.Repository.RepositoryItemComboBox();
     this.toolTipController1      = new DevExpress.Utils.ToolTipController(this.components);
     this.btnAdd                  = new DevExpress.XtraEditors.SimpleButton();
     this.btnSave                 = new DevExpress.XtraEditors.SimpleButton();
     this.btnDelete               = new DevExpress.XtraEditors.SimpleButton();
     ((System.ComponentModel.ISupportInitialize)(this.txtTemplateName.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridControl1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridView1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemComboBox1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemComboBox2)).BeginInit();
     this.SuspendLayout();
     //
     // notePanel_FinanQuery
     //
     this.notePanel_FinanQuery.BackColor        = System.Drawing.Color.LightGoldenrodYellow;
     this.notePanel_FinanQuery.Dock             = System.Windows.Forms.DockStyle.Top;
     this.notePanel_FinanQuery.ForeColor        = System.Drawing.Color.OrangeRed;
     this.notePanel_FinanQuery.GradientMode     = System.Drawing.Drawing2D.LinearGradientMode.Vertical;
     this.notePanel_FinanQuery.Location         = new System.Drawing.Point(0, 0);
     this.notePanel_FinanQuery.MaxRows          = 5;
     this.notePanel_FinanQuery.Name             = "notePanel_FinanQuery";
     this.notePanel_FinanQuery.ParentAutoHeight = true;
     this.notePanel_FinanQuery.Size             = new System.Drawing.Size(632, 23);
     this.notePanel_FinanQuery.TabIndex         = 47;
     this.notePanel_FinanQuery.TabStop          = false;
     this.notePanel_FinanQuery.Text             = "不用的项目请用\"-\"表示。\"排除月\"用于\"不来不交费\",有多个的话,请用\",\"隔开";
     //
     // notePanel1
     //
     this.notePanel1.BackColor        = System.Drawing.Color.FromArgb(((System.Byte)(224)), ((System.Byte)(224)), ((System.Byte)(224)));
     this.notePanel1.BackColor2       = System.Drawing.Color.DarkGray;
     this.notePanel1.Font             = new System.Drawing.Font("Tahoma", 8F);
     this.notePanel1.ForeColor        = System.Drawing.Color.Black;
     this.notePanel1.GradientMode     = System.Drawing.Drawing2D.LinearGradientMode.Vertical;
     this.notePanel1.Location         = new System.Drawing.Point(24, 40);
     this.notePanel1.MaxRows          = 5;
     this.notePanel1.Name             = "notePanel1";
     this.notePanel1.ParentAutoHeight = true;
     this.notePanel1.Size             = new System.Drawing.Size(80, 22);
     this.notePanel1.TabIndex         = 48;
     this.notePanel1.TabStop          = false;
     this.notePanel1.Text             = "模板名称";
     //
     // txtTemplateName
     //
     this.txtTemplateName.EditValue = "";
     this.txtTemplateName.Location  = new System.Drawing.Point(120, 40);
     this.txtTemplateName.Name      = "txtTemplateName";
     this.txtTemplateName.Size      = new System.Drawing.Size(152, 23);
     this.txtTemplateName.TabIndex  = 49;
     //
     // gridControl1
     //
     //
     // gridControl1.EmbeddedNavigator
     //
     this.gridControl1.EmbeddedNavigator.Name = "";
     this.gridControl1.Location = new System.Drawing.Point(24, 112);
     this.gridControl1.MainView = this.gridView1;
     this.gridControl1.Name     = "gridControl1";
     this.gridControl1.RepositoryItems.AddRange(new DevExpress.XtraEditors.Repository.RepositoryItem[] {
         this.repositoryItemComboBox1,
         this.repositoryItemComboBox2
     });
     this.gridControl1.Size              = new System.Drawing.Size(560, 312);
     this.gridControl1.TabIndex          = 50;
     this.gridControl1.ToolTipController = this.toolTipController1;
     this.gridControl1.ViewCollection.AddRange(new DevExpress.XtraGrid.Views.Base.BaseView[] {
         this.gridView1
     });
     //
     // gridView1
     //
     this.gridView1.Columns.AddRange(new DevExpress.XtraGrid.Columns.GridColumn[] {
         this.费用名,
         this.fullDays,
         this.fullDaysSpend,
         this.halfDaysSpend,
         this.perDaySpend,
         this.noSpendMonth,
         this.halfSpendMonth,
         this.指定年级,
         this.指定班级
     });
     this.gridView1.GridControl = this.gridControl1;
     this.gridView1.Name        = "gridView1";
     this.gridView1.OptionsCustomization.AllowFilter = false;
     this.gridView1.OptionsView.ShowFilterPanel      = false;
     this.gridView1.OptionsView.ShowGroupPanel       = false;
     //
     // 费用名
     //
     this.费用名.AppearanceCell.Options.UseTextOptions   = true;
     this.费用名.AppearanceCell.TextOptions.HAlignment   = DevExpress.Utils.HorzAlignment.Center;
     this.费用名.AppearanceCell.TextOptions.VAlignment   = DevExpress.Utils.VertAlignment.Center;
     this.费用名.AppearanceHeader.Options.UseTextOptions = true;
     this.费用名.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.费用名.AppearanceHeader.TextOptions.VAlignment = DevExpress.Utils.VertAlignment.Center;
     this.费用名.Caption   = "费用名";
     this.费用名.FieldName = "费用名";
     this.费用名.Name      = "费用名";
     this.费用名.OptionsColumn.AllowMerge = DevExpress.Utils.DefaultBoolean.True;
     this.费用名.OptionsColumn.AllowSort  = DevExpress.Utils.DefaultBoolean.False;
     this.费用名.OptionsColumn.FixedWidth = true;
     this.费用名.Visible      = true;
     this.费用名.VisibleIndex = 0;
     this.费用名.Width        = 60;
     //
     // fullDays
     //
     this.fullDays.AppearanceCell.Options.UseTextOptions   = true;
     this.fullDays.AppearanceCell.TextOptions.HAlignment   = DevExpress.Utils.HorzAlignment.Center;
     this.fullDays.AppearanceCell.TextOptions.VAlignment   = DevExpress.Utils.VertAlignment.Center;
     this.fullDays.AppearanceHeader.Options.UseTextOptions = true;
     this.fullDays.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.fullDays.AppearanceHeader.TextOptions.VAlignment = DevExpress.Utils.VertAlignment.Center;
     this.fullDays.Caption   = "全勤天数";
     this.fullDays.FieldName = "fullDays";
     this.fullDays.Name      = "fullDays";
     this.fullDays.OptionsColumn.AllowMerge = DevExpress.Utils.DefaultBoolean.True;
     this.fullDays.OptionsColumn.AllowSort  = DevExpress.Utils.DefaultBoolean.False;
     this.fullDays.OptionsColumn.FixedWidth = true;
     this.fullDays.Visible      = true;
     this.fullDays.VisibleIndex = 1;
     this.fullDays.Width        = 60;
     //
     // fullDaysSpend
     //
     this.fullDaysSpend.AppearanceCell.Options.UseTextOptions   = true;
     this.fullDaysSpend.AppearanceCell.TextOptions.HAlignment   = DevExpress.Utils.HorzAlignment.Center;
     this.fullDaysSpend.AppearanceCell.TextOptions.VAlignment   = DevExpress.Utils.VertAlignment.Center;
     this.fullDaysSpend.AppearanceHeader.Options.UseTextOptions = true;
     this.fullDaysSpend.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.fullDaysSpend.AppearanceHeader.TextOptions.VAlignment = DevExpress.Utils.VertAlignment.Center;
     this.fullDaysSpend.Caption   = "全勤费用";
     this.fullDaysSpend.FieldName = "fullDaysSpend";
     this.fullDaysSpend.Name      = "fullDaysSpend";
     this.fullDaysSpend.OptionsColumn.AllowMerge = DevExpress.Utils.DefaultBoolean.True;
     this.fullDaysSpend.OptionsColumn.AllowSort  = DevExpress.Utils.DefaultBoolean.False;
     this.fullDaysSpend.OptionsColumn.FixedWidth = true;
     this.fullDaysSpend.Visible      = true;
     this.fullDaysSpend.VisibleIndex = 2;
     this.fullDaysSpend.Width        = 60;
     //
     // halfDaysSpend
     //
     this.halfDaysSpend.AppearanceCell.Options.UseTextOptions   = true;
     this.halfDaysSpend.AppearanceCell.TextOptions.HAlignment   = DevExpress.Utils.HorzAlignment.Center;
     this.halfDaysSpend.AppearanceCell.TextOptions.VAlignment   = DevExpress.Utils.VertAlignment.Center;
     this.halfDaysSpend.AppearanceHeader.Options.UseTextOptions = true;
     this.halfDaysSpend.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.halfDaysSpend.AppearanceHeader.TextOptions.VAlignment = DevExpress.Utils.VertAlignment.Center;
     this.halfDaysSpend.Caption   = "半勤费用";
     this.halfDaysSpend.FieldName = "halfDaysSpend";
     this.halfDaysSpend.Name      = "halfDaysSpend";
     this.halfDaysSpend.OptionsColumn.AllowMerge = DevExpress.Utils.DefaultBoolean.True;
     this.halfDaysSpend.OptionsColumn.AllowSort  = DevExpress.Utils.DefaultBoolean.False;
     this.halfDaysSpend.OptionsColumn.FixedWidth = true;
     this.halfDaysSpend.Visible      = true;
     this.halfDaysSpend.VisibleIndex = 3;
     this.halfDaysSpend.Width        = 60;
     //
     // perDaySpend
     //
     this.perDaySpend.AppearanceCell.Options.UseTextOptions   = true;
     this.perDaySpend.AppearanceCell.TextOptions.HAlignment   = DevExpress.Utils.HorzAlignment.Center;
     this.perDaySpend.AppearanceCell.TextOptions.VAlignment   = DevExpress.Utils.VertAlignment.Center;
     this.perDaySpend.AppearanceHeader.Options.UseTextOptions = true;
     this.perDaySpend.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.perDaySpend.AppearanceHeader.TextOptions.VAlignment = DevExpress.Utils.VertAlignment.Center;
     this.perDaySpend.Caption   = "出勤一次费用";
     this.perDaySpend.FieldName = "perDaySpend";
     this.perDaySpend.Name      = "perDaySpend";
     this.perDaySpend.OptionsColumn.AllowMerge = DevExpress.Utils.DefaultBoolean.True;
     this.perDaySpend.OptionsColumn.AllowSort  = DevExpress.Utils.DefaultBoolean.False;
     this.perDaySpend.OptionsColumn.FixedWidth = true;
     this.perDaySpend.Visible      = true;
     this.perDaySpend.VisibleIndex = 4;
     this.perDaySpend.Width        = 89;
     //
     // noSpendMonth
     //
     this.noSpendMonth.AppearanceCell.Options.UseTextOptions   = true;
     this.noSpendMonth.AppearanceCell.TextOptions.HAlignment   = DevExpress.Utils.HorzAlignment.Center;
     this.noSpendMonth.AppearanceCell.TextOptions.VAlignment   = DevExpress.Utils.VertAlignment.Center;
     this.noSpendMonth.AppearanceHeader.Options.UseTextOptions = true;
     this.noSpendMonth.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.noSpendMonth.AppearanceHeader.TextOptions.VAlignment = DevExpress.Utils.VertAlignment.Center;
     this.noSpendMonth.Caption   = "排除月";
     this.noSpendMonth.FieldName = "noSpendMonth";
     this.noSpendMonth.Name      = "noSpendMonth";
     this.noSpendMonth.OptionsColumn.AllowMerge = DevExpress.Utils.DefaultBoolean.True;
     this.noSpendMonth.OptionsColumn.AllowSort  = DevExpress.Utils.DefaultBoolean.False;
     this.noSpendMonth.OptionsColumn.FixedWidth = true;
     this.noSpendMonth.Visible      = true;
     this.noSpendMonth.VisibleIndex = 5;
     this.noSpendMonth.Width        = 47;
     //
     // halfSpendMonth
     //
     this.halfSpendMonth.AppearanceCell.Options.UseTextOptions   = true;
     this.halfSpendMonth.AppearanceCell.TextOptions.HAlignment   = DevExpress.Utils.HorzAlignment.Center;
     this.halfSpendMonth.AppearanceCell.TextOptions.VAlignment   = DevExpress.Utils.VertAlignment.Center;
     this.halfSpendMonth.AppearanceHeader.Options.UseTextOptions = true;
     this.halfSpendMonth.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.halfSpendMonth.AppearanceHeader.TextOptions.VAlignment = DevExpress.Utils.VertAlignment.Center;
     this.halfSpendMonth.Caption   = "半价月";
     this.halfSpendMonth.FieldName = "halfSpendMonth";
     this.halfSpendMonth.Name      = "halfSpendMonth";
     this.halfSpendMonth.OptionsColumn.AllowMerge = DevExpress.Utils.DefaultBoolean.True;
     this.halfSpendMonth.OptionsColumn.AllowSort  = DevExpress.Utils.DefaultBoolean.False;
     this.halfSpendMonth.OptionsColumn.FixedWidth = true;
     this.halfSpendMonth.Visible      = true;
     this.halfSpendMonth.VisibleIndex = 6;
     this.halfSpendMonth.Width        = 47;
     //
     // 指定年级
     //
     this.指定年级.Caption    = "指定年级";
     this.指定年级.ColumnEdit = this.repositoryItemComboBox1;
     this.指定年级.FieldName  = "指定年级";
     this.指定年级.Name       = "指定年级";
     this.指定年级.OptionsColumn.AllowMerge = DevExpress.Utils.DefaultBoolean.True;
     this.指定年级.OptionsColumn.AllowSort  = DevExpress.Utils.DefaultBoolean.False;
     this.指定年级.OptionsColumn.FixedWidth = true;
     this.指定年级.Visible      = true;
     this.指定年级.VisibleIndex = 7;
     //
     // repositoryItemComboBox1
     //
     this.repositoryItemComboBox1.AutoHeight = false;
     this.repositoryItemComboBox1.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
         new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)
     });
     this.repositoryItemComboBox1.Items.AddRange(new object[] {
         "不选择"
     });
     this.repositoryItemComboBox1.Name                  = "repositoryItemComboBox1";
     this.repositoryItemComboBox1.TextEditStyle         = DevExpress.XtraEditors.Controls.TextEditStyles.DisableTextEditor;
     this.repositoryItemComboBox1.SelectedIndexChanged += new System.EventHandler(this.repositoryItemComboBox1_SelectedIndexChanged);
     //
     // 指定班级
     //
     this.指定班级.Caption    = "指定班级";
     this.指定班级.ColumnEdit = this.repositoryItemComboBox2;
     this.指定班级.FieldName  = "指定班级";
     this.指定班级.Name       = "指定班级";
     this.指定班级.OptionsColumn.AllowMerge = DevExpress.Utils.DefaultBoolean.True;
     this.指定班级.OptionsColumn.AllowSort  = DevExpress.Utils.DefaultBoolean.False;
     this.指定班级.OptionsColumn.FixedWidth = true;
     this.指定班级.Visible      = true;
     this.指定班级.VisibleIndex = 8;
     //
     // repositoryItemComboBox2
     //
     this.repositoryItemComboBox2.AutoHeight = false;
     this.repositoryItemComboBox2.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
         new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)
     });
     this.repositoryItemComboBox2.Items.AddRange(new object[] {
         "不选择"
     });
     this.repositoryItemComboBox2.Name          = "repositoryItemComboBox2";
     this.repositoryItemComboBox2.TextEditStyle = DevExpress.XtraEditors.Controls.TextEditStyles.DisableTextEditor;
     //
     // toolTipController1
     //
     this.toolTipController1.GetActiveObjectInfo += new DevExpress.Utils.ToolTipControllerGetActiveObjectInfoEventHandler(this.toolTipController1_GetActiveObjectInfo);
     //
     // btnAdd
     //
     this.btnAdd.Location = new System.Drawing.Point(24, 80);
     this.btnAdd.Name     = "btnAdd";
     this.btnAdd.Size     = new System.Drawing.Size(64, 23);
     this.btnAdd.TabIndex = 51;
     this.btnAdd.Text     = "添加一行";
     this.btnAdd.Click   += new System.EventHandler(this.simpleButton1_Click);
     //
     // btnSave
     //
     this.btnSave.Location = new System.Drawing.Point(192, 80);
     this.btnSave.Name     = "btnSave";
     this.btnSave.TabIndex = 52;
     this.btnSave.Text     = "保存全部";
     this.btnSave.Click   += new System.EventHandler(this.btnSave_Click);
     //
     // btnDelete
     //
     this.btnDelete.Location = new System.Drawing.Point(104, 80);
     this.btnDelete.Name     = "btnDelete";
     this.btnDelete.TabIndex = 53;
     this.btnDelete.Text     = "删除行";
     this.btnDelete.Click   += new System.EventHandler(this.btnDelete_Click);
     //
     // Finan2Details
     //
     this.AutoScaleBaseSize = new System.Drawing.Size(6, 15);
     this.ClientSize        = new System.Drawing.Size(632, 461);
     this.Controls.Add(this.btnDelete);
     this.Controls.Add(this.btnSave);
     this.Controls.Add(this.btnAdd);
     this.Controls.Add(this.gridControl1);
     this.Controls.Add(this.txtTemplateName);
     this.Controls.Add(this.notePanel1);
     this.Controls.Add(this.notePanel_FinanQuery);
     this.Icon  = ((System.Drawing.Icon)(resources.GetObject("$this.Icon")));
     this.Name  = "Finan2Details";
     this.Text  = "收费细节";
     this.Load += new System.EventHandler(this.Finan2Details_Load);
     ((System.ComponentModel.ISupportInitialize)(this.txtTemplateName.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridControl1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridView1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemComboBox1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemComboBox2)).EndInit();
     this.ResumeLayout(false);
 }
Example #33
0
 /// <summary>
 /// Required method for Designer support - do not modify
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     this.components = new System.ComponentModel.Container();
     System.Resources.ResourceManager resources = new System.Resources.ResourceManager(typeof(frmPromotionItem));
     this.gridViewMd_ItemPromotion = new DevExpress.XtraGrid.Views.Grid.GridView();
     this.gridColumn3   = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn4   = new DevExpress.XtraGrid.Columns.GridColumn();
     this.lk_CategoryID = new DevExpress.XtraEditors.Repository.RepositoryItemImageComboBox();
     this.gridColumn1   = new DevExpress.XtraGrid.Columns.GridColumn();
     this.lk_GroupID    = new DevExpress.XtraEditors.Repository.RepositoryItemImageComboBox();
     this.gridColumn2   = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridControlMd_ItemPromotion = new DevExpress.XtraGrid.GridControl();
     this.lk_PromotionCode            = new DevExpress.XtraEditors.Repository.RepositoryItemLookUpEdit();
     this.lk_CategoryIDs     = new DevExpress.XtraEditors.Repository.RepositoryItemComboBox();
     this.lk_Code            = new DevExpress.XtraEditors.Repository.RepositoryItemLookUpEdit();
     this.grpMDClass         = new DevExpress.XtraEditors.GroupControl();
     this.grpMDItemPromotion = new DevExpress.XtraEditors.GroupControl();
     this.btn_Del            = new DevExpress.XtraEditors.SimpleButton();
     this.imageList1         = new System.Windows.Forms.ImageList(this.components);
     this.btn_Add            = new DevExpress.XtraEditors.SimpleButton();
     this.groupControl2      = new DevExpress.XtraEditors.GroupControl();
     this.btn_Search         = new DevExpress.XtraEditors.SimpleButton();
     this.txtSearch          = new DevExpress.XtraEditors.TextEdit();
     ((System.ComponentModel.ISupportInitialize)(this.gridViewMd_ItemPromotion)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.lk_CategoryID)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.lk_GroupID)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridControlMd_ItemPromotion)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.lk_PromotionCode)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.lk_CategoryIDs)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.lk_Code)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.grpMDClass)).BeginInit();
     this.grpMDClass.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.grpMDItemPromotion)).BeginInit();
     this.grpMDItemPromotion.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.groupControl2)).BeginInit();
     this.groupControl2.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.txtSearch.Properties)).BeginInit();
     this.SuspendLayout();
     //
     // gridViewMd_ItemPromotion
     //
     this.gridViewMd_ItemPromotion.Columns.AddRange(new DevExpress.XtraGrid.Columns.GridColumn[] {
         this.gridColumn3,
         this.gridColumn4,
         this.gridColumn1,
         this.gridColumn2
     });
     this.gridViewMd_ItemPromotion.GridControl = this.gridControlMd_ItemPromotion;
     this.gridViewMd_ItemPromotion.Name        = "gridViewMd_ItemPromotion";
     this.gridViewMd_ItemPromotion.OptionsBehavior.Editable = false;
     this.gridViewMd_ItemPromotion.OptionsCustomization.AllowColumnMoving = false;
     this.gridViewMd_ItemPromotion.OptionsCustomization.AllowFilter       = false;
     this.gridViewMd_ItemPromotion.OptionsCustomization.AllowSort         = false;
     this.gridViewMd_ItemPromotion.OptionsView.ShowGroupPanel             = false;
     this.gridViewMd_ItemPromotion.CellValueChanged += new DevExpress.XtraGrid.Views.Base.CellValueChangedEventHandler(this.gridViewMd_ItemPromotion_CellValueChanged);
     this.gridViewMd_ItemPromotion.DoubleClick      += new System.EventHandler(this.gridViewMd_ItemPromotion_DoubleClick);
     this.gridViewMd_ItemPromotion.LostFocus        += new System.EventHandler(this.gridViewMd_ItemPromotion_LostFocus);
     //
     // gridColumn3
     //
     this.gridColumn3.Caption      = "Promotion Code";
     this.gridColumn3.FieldName    = "strPromotionCode";
     this.gridColumn3.Name         = "gridColumn3";
     this.gridColumn3.Visible      = true;
     this.gridColumn3.VisibleIndex = 0;
     //
     // gridColumn4
     //
     this.gridColumn4.Caption      = "Category Type";
     this.gridColumn4.ColumnEdit   = this.lk_CategoryID;
     this.gridColumn4.FieldName    = "nCategoryTypeID";
     this.gridColumn4.Name         = "gridColumn4";
     this.gridColumn4.Visible      = true;
     this.gridColumn4.VisibleIndex = 1;
     //
     // lk_CategoryID
     //
     this.lk_CategoryID.AutoHeight = false;
     this.lk_CategoryID.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
         new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)
     });
     this.lk_CategoryID.Items.AddRange(new object[] {
         new DevExpress.XtraEditors.Controls.ImageComboBoxItem("Item or Product", 1, -1),
         new DevExpress.XtraEditors.Controls.ImageComboBoxItem("Package", 2, -1),
         new DevExpress.XtraEditors.Controls.ImageComboBoxItem("Package Group", 3, -1),
         new DevExpress.XtraEditors.Controls.ImageComboBoxItem("Credit Package", 4, -1)
     });
     this.lk_CategoryID.Name = "lk_CategoryID";
     //
     // gridColumn1
     //
     this.gridColumn1.Caption      = "Group";
     this.gridColumn1.ColumnEdit   = this.lk_GroupID;
     this.gridColumn1.FieldName    = "nGroupID";
     this.gridColumn1.Name         = "gridColumn1";
     this.gridColumn1.Visible      = true;
     this.gridColumn1.VisibleIndex = 2;
     //
     // lk_GroupID
     //
     this.lk_GroupID.AutoHeight = false;
     this.lk_GroupID.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
         new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)
     });
     this.lk_GroupID.Items.AddRange(new object[] {
         new DevExpress.XtraEditors.Controls.ImageComboBoxItem("Item", 0, -1),
         new DevExpress.XtraEditors.Controls.ImageComboBoxItem("Group", 1, -1)
     });
     this.lk_GroupID.Name = "lk_GroupID";
     //
     // gridColumn2
     //
     this.gridColumn2.Caption      = "Code";
     this.gridColumn2.FieldName    = "strCode";
     this.gridColumn2.Name         = "gridColumn2";
     this.gridColumn2.Visible      = true;
     this.gridColumn2.VisibleIndex = 3;
     //
     // gridControlMd_ItemPromotion
     //
     this.gridControlMd_ItemPromotion.Dock = System.Windows.Forms.DockStyle.Top;
     //
     // gridControlMd_ItemPromotion.EmbeddedNavigator
     //
     this.gridControlMd_ItemPromotion.EmbeddedNavigator.Name = "";
     this.gridControlMd_ItemPromotion.Location          = new System.Drawing.Point(0, 0);
     this.gridControlMd_ItemPromotion.LookAndFeel.Style = DevExpress.LookAndFeel.LookAndFeelStyle.Skin;
     this.gridControlMd_ItemPromotion.LookAndFeel.UseDefaultLookAndFeel = false;
     this.gridControlMd_ItemPromotion.MainView = this.gridViewMd_ItemPromotion;
     this.gridControlMd_ItemPromotion.Name     = "gridControlMd_ItemPromotion";
     this.gridControlMd_ItemPromotion.RepositoryItems.AddRange(new DevExpress.XtraEditors.Repository.RepositoryItem[] {
         this.lk_PromotionCode,
         this.lk_CategoryIDs,
         this.lk_CategoryID,
         this.lk_GroupID,
         this.lk_Code
     });
     this.gridControlMd_ItemPromotion.Size     = new System.Drawing.Size(976, 444);
     this.gridControlMd_ItemPromotion.TabIndex = 126;
     this.gridControlMd_ItemPromotion.ViewCollection.AddRange(new DevExpress.XtraGrid.Views.Base.BaseView[] {
         this.gridViewMd_ItemPromotion
     });
     //
     // lk_PromotionCode
     //
     this.lk_PromotionCode.AutoHeight = false;
     this.lk_PromotionCode.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
         new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)
     });
     this.lk_PromotionCode.Name = "lk_PromotionCode";
     //
     // lk_CategoryIDs
     //
     this.lk_CategoryIDs.AutoHeight = false;
     this.lk_CategoryIDs.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
         new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)
     });
     this.lk_CategoryIDs.Name = "lk_CategoryIDs";
     //
     // lk_Code
     //
     this.lk_Code.AutoHeight = false;
     this.lk_Code.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
         new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)
     });
     this.lk_Code.Name = "lk_Code";
     //
     // grpMDClass
     //
     this.grpMDClass.Appearance.BackColor            = System.Drawing.SystemColors.Control;
     this.grpMDClass.Appearance.Options.UseBackColor = true;
     this.grpMDClass.Controls.Add(this.grpMDItemPromotion);
     this.grpMDClass.ImeMode           = System.Windows.Forms.ImeMode.On;
     this.grpMDClass.Location          = new System.Drawing.Point(-5, -26);
     this.grpMDClass.LookAndFeel.Style = DevExpress.LookAndFeel.LookAndFeelStyle.Office2003;
     this.grpMDClass.LookAndFeel.UseDefaultLookAndFeel = false;
     this.grpMDClass.LookAndFeel.UseWindowsXPTheme     = false;
     this.grpMDClass.Name     = "grpMDClass";
     this.grpMDClass.Size     = new System.Drawing.Size(1021, 560);
     this.grpMDClass.TabIndex = 34;
     this.grpMDClass.Text     = "Class";
     //
     // grpMDItemPromotion
     //
     this.grpMDItemPromotion.Appearance.BackColor              = System.Drawing.SystemColors.Control;
     this.grpMDItemPromotion.Appearance.Options.UseBackColor   = true;
     this.grpMDItemPromotion.AppearanceCaption.Font            = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((System.Byte)(0)));
     this.grpMDItemPromotion.AppearanceCaption.Options.UseFont = true;
     this.grpMDItemPromotion.Controls.Add(this.btn_Del);
     this.grpMDItemPromotion.Controls.Add(this.btn_Add);
     this.grpMDItemPromotion.Controls.Add(this.groupControl2);
     this.grpMDItemPromotion.Controls.Add(this.btn_Search);
     this.grpMDItemPromotion.Controls.Add(this.txtSearch);
     this.grpMDItemPromotion.ImeMode           = System.Windows.Forms.ImeMode.On;
     this.grpMDItemPromotion.Location          = new System.Drawing.Point(8, 24);
     this.grpMDItemPromotion.LookAndFeel.Style = DevExpress.LookAndFeel.LookAndFeelStyle.Office2003;
     this.grpMDItemPromotion.LookAndFeel.UseDefaultLookAndFeel = false;
     this.grpMDItemPromotion.LookAndFeel.UseWindowsXPTheme     = false;
     this.grpMDItemPromotion.Name     = "grpMDItemPromotion";
     this.grpMDItemPromotion.Size     = new System.Drawing.Size(1000, 504);
     this.grpMDItemPromotion.TabIndex = 138;
     this.grpMDItemPromotion.Text     = "Item Promotion";
     //
     // btn_Del
     //
     this.btn_Del.Appearance.Font                   = new System.Drawing.Font("Tahoma", 14.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((System.Byte)(0)));
     this.btn_Del.Appearance.Options.UseFont        = true;
     this.btn_Del.Appearance.Options.UseTextOptions = true;
     this.btn_Del.Appearance.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.btn_Del.Appearance.TextOptions.VAlignment = DevExpress.Utils.VertAlignment.Top;
     this.btn_Del.Appearance.TextOptions.WordWrap   = DevExpress.Utils.WordWrap.Wrap;
     this.btn_Del.ImageIndex = 1;
     this.btn_Del.ImageList  = this.imageList1;
     this.btn_Del.Location   = new System.Drawing.Point(48, 24);
     this.btn_Del.Name       = "btn_Del";
     this.btn_Del.Size       = new System.Drawing.Size(38, 16);
     this.btn_Del.TabIndex   = 131;
     this.btn_Del.Click     += new System.EventHandler(this.btn_Del_Click);
     //
     // imageList1
     //
     this.imageList1.ColorDepth       = System.Windows.Forms.ColorDepth.Depth24Bit;
     this.imageList1.ImageSize        = new System.Drawing.Size(16, 16);
     this.imageList1.ImageStream      = ((System.Windows.Forms.ImageListStreamer)(resources.GetObject("imageList1.ImageStream")));
     this.imageList1.TransparentColor = System.Drawing.Color.Magenta;
     //
     // btn_Add
     //
     this.btn_Add.Appearance.Font                   = new System.Drawing.Font("Tahoma", 14.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((System.Byte)(0)));
     this.btn_Add.Appearance.Options.UseFont        = true;
     this.btn_Add.Appearance.Options.UseTextOptions = true;
     this.btn_Add.Appearance.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.btn_Add.Appearance.TextOptions.VAlignment = DevExpress.Utils.VertAlignment.Top;
     this.btn_Add.Appearance.TextOptions.WordWrap   = DevExpress.Utils.WordWrap.Wrap;
     this.btn_Add.ImageIndex = 0;
     this.btn_Add.ImageList  = this.imageList1;
     this.btn_Add.ImeMode    = System.Windows.Forms.ImeMode.On;
     this.btn_Add.Location   = new System.Drawing.Point(8, 24);
     this.btn_Add.Name       = "btn_Add";
     this.btn_Add.Size       = new System.Drawing.Size(38, 16);
     this.btn_Add.TabIndex   = 132;
     this.btn_Add.Click     += new System.EventHandler(this.btn_Add_Click);
     //
     // groupControl2
     //
     this.groupControl2.BorderStyle = DevExpress.XtraEditors.Controls.BorderStyles.NoBorder;
     this.groupControl2.Controls.Add(this.gridControlMd_ItemPromotion);
     this.groupControl2.Location          = new System.Drawing.Point(8, 48);
     this.groupControl2.LookAndFeel.Style = DevExpress.LookAndFeel.LookAndFeelStyle.Office2003;
     this.groupControl2.LookAndFeel.UseDefaultLookAndFeel = false;
     this.groupControl2.LookAndFeel.UseWindowsXPTheme     = false;
     this.groupControl2.Name     = "groupControl2";
     this.groupControl2.Size     = new System.Drawing.Size(976, 448);
     this.groupControl2.TabIndex = 128;
     this.groupControl2.Text     = "Promotion Item";
     //
     // btn_Search
     //
     this.btn_Search.Appearance.Font            = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold);
     this.btn_Search.Appearance.Options.UseFont = true;
     this.btn_Search.ButtonStyle = DevExpress.XtraEditors.Controls.BorderStyles.Simple;
     this.btn_Search.Location    = new System.Drawing.Point(912, 24);
     this.btn_Search.Name        = "btn_Search";
     this.btn_Search.Size        = new System.Drawing.Size(56, 20);
     this.btn_Search.TabIndex    = 137;
     this.btn_Search.Text        = "Search";
     this.btn_Search.Click      += new System.EventHandler(this.btn_Search_Click);
     //
     // txtSearch
     //
     this.txtSearch.EditValue = "";
     this.txtSearch.Location  = new System.Drawing.Point(720, 24);
     this.txtSearch.Name      = "txtSearch";
     //
     // txtSearch.Properties
     //
     this.txtSearch.Properties.Appearance.Font                   = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((System.Byte)(0)));
     this.txtSearch.Properties.Appearance.Options.UseFont        = true;
     this.txtSearch.Properties.LookAndFeel.Style                 = DevExpress.LookAndFeel.LookAndFeelStyle.Skin;
     this.txtSearch.Properties.LookAndFeel.UseDefaultLookAndFeel = false;
     this.txtSearch.Size     = new System.Drawing.Size(176, 20);
     this.txtSearch.TabIndex = 136;
     this.txtSearch.KeyDown += new System.Windows.Forms.KeyEventHandler(this.txtSearch_KeyDown);
     //
     // frmPromotionItem
     //
     this.AutoScaleBaseSize = new System.Drawing.Size(5, 14);
     this.ClientSize        = new System.Drawing.Size(1000, 509);
     this.Controls.Add(this.grpMDClass);
     this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.None;
     this.Name            = "frmPromotionItem";
     this.Text            = "Promotion Item";
     this.Load           += new System.EventHandler(this.frmPromotionItem_Load);
     ((System.ComponentModel.ISupportInitialize)(this.gridViewMd_ItemPromotion)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.lk_CategoryID)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.lk_GroupID)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridControlMd_ItemPromotion)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.lk_PromotionCode)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.lk_CategoryIDs)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.lk_Code)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.grpMDClass)).EndInit();
     this.grpMDClass.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.grpMDItemPromotion)).EndInit();
     this.grpMDItemPromotion.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.groupControl2)).EndInit();
     this.groupControl2.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.txtSearch.Properties)).EndInit();
     this.ResumeLayout(false);
 }
 /// <summary> 
 /// Required method for Designer support - do not modify 
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     this.components = new System.ComponentModel.Container();
     DevExpress.XtraGrid.GridLevelNode gridLevelNode1 = new DevExpress.XtraGrid.GridLevelNode();
     DevExpress.XtraGrid.StyleFormatCondition styleFormatCondition1 = new DevExpress.XtraGrid.StyleFormatCondition();
     System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(ucDanhSach));
     this.gbChild_List = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridView();
     this.gridBand4 = new DevExpress.XtraGrid.Views.BandedGrid.GridBand();
     this.colTen_Tai_San = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
     this.colLoai_Vang = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
     this.gridBand5 = new DevExpress.XtraGrid.Views.BandedGrid.GridBand();
     this.colTrong_Luong_Vang_18k = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
     this.rptMayTinh = new DevExpress.XtraEditors.Repository.RepositoryItemCalcEdit();
     this.colTrong_Luong_Vang_24k = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
     this.colTrong_Luong_Khac = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
     this.colTrong_Luong = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
     this.gridBand6 = new DevExpress.XtraGrid.Views.BandedGrid.GridBand();
     this.colChuan_Do = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
     this.colGia_Tri_Vat_Cam = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
     this.gcList = new DevExpress.XtraGrid.GridControl();
     this.cHUNGTUTheoNgayBindingSource = new System.Windows.Forms.BindingSource(this.components);
     this.dsCamDo = new Phan_Mem_Quan_Ly_Cam_Do.CamDo.DS.dsCamDo();
     this.gbList = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridView();
     this.gridBand1 = new DevExpress.XtraGrid.Views.BandedGrid.GridBand();
     this.colMa_Chung_Tu = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
     this.colSo = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
     this.colLien = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
     this.colNgay_Cam_Do = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
     this.colNgay_Ghi_So = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
     this.colTen_Khach_Hang = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
     this.colSo_CMND = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
     this.colSo_Tien = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
     this.colSo_Ngay_Le = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
     this.colSo_Thang_Cam = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
     this.colTong_Tien_Lai = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
     this.gridBand3 = new DevExpress.XtraGrid.Views.BandedGrid.GridBand();
     this.colChung_Tu_Goc = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
     this.colGhi_Chu = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
     this.colLai_Suat_Ngay = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
     this.rptMayTinhPhanTram = new DevExpress.XtraEditors.Repository.RepositoryItemCalcEdit();
     this.colLai_Suat_Thang = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
     this.colNgay_Cap_CMND = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
     this.colNoi_Cap = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
     this.colNgay_Sinh = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
     this.colDia_Chi = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
     this.colSo_Dien_Thoai = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
     this.colChu_Tiem = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
     this.colTu_Ngay = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
     this.colDen_Ngay = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
     this.colSo_Tien_Cam = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
     this.colSo_Ngay_Cam = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
     this.colDa_Lam_Lai_Giay = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
     this.colMat_Giay = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
     this.colSap_Xep = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
     this.colTinh_Trang = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
     this.bm = new DevExpress.XtraBars.BarManager(this.components);
     this.bar2 = new DevExpress.XtraBars.Bar();
     this.barButtonItem1 = new DevExpress.XtraBars.BarButtonItem();
     this.bbiInPhieu = new DevExpress.XtraBars.BarButtonItem();
     this.bbiSua = new DevExpress.XtraBars.BarButtonItem();
     this.bbiXoa = new DevExpress.XtraBars.BarButtonItem();
     this.bbiTheoDoi = new DevExpress.XtraBars.BarButtonItem();
     this.bbiXuatExcel = new DevExpress.XtraBars.BarButtonItem();
     this.bbiDong = new DevExpress.XtraBars.BarButtonItem();
     this.bar1 = new DevExpress.XtraBars.Bar();
     this.bbiChuocDo = new DevExpress.XtraBars.BarButtonItem();
     this.bbiTraTienLoi = new DevExpress.XtraBars.BarButtonItem();
     this.bbiKhachTraBotTien = new DevExpress.XtraBars.BarButtonItem();
     this.bbiKhachLayThemTien = new DevExpress.XtraBars.BarButtonItem();
     this.bbiLapGiayMoi = 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.img = new DevExpress.Utils.ImageCollection(this.components);
     this.bbiTuyChon = new DevExpress.XtraBars.BarEditItem();
     this.rpt_cbTuyChon = new DevExpress.XtraEditors.Repository.RepositoryItemComboBox();
     this.bbiTu = new DevExpress.XtraBars.BarEditItem();
     this.rtp_dtTu = new DevExpress.XtraEditors.Repository.RepositoryItemDateEdit();
     this.bbiDen = new DevExpress.XtraBars.BarEditItem();
     this.rpt_dtDen = new DevExpress.XtraEditors.Repository.RepositoryItemDateEdit();
     this.bbiTheoNgay = new DevExpress.XtraBars.BarEditItem();
     this.rpt_cbTheoNgay = new DevExpress.XtraEditors.Repository.RepositoryItemComboBox();
     this.layoutControl1 = new DevExpress.XtraLayout.LayoutControl();
     this.cbTatCa = new DevExpress.XtraEditors.CheckEdit();
     this.layoutControl2 = new DevExpress.XtraLayout.LayoutControl();
     this.layoutControlGroup2 = new DevExpress.XtraLayout.LayoutControlGroup();
     this.txtDen = new DevExpress.XtraEditors.DateEdit();
     this.txtTu = new DevExpress.XtraEditors.DateEdit();
     this.cbTuyChon = new DevExpress.XtraEditors.ComboBoxEdit();
     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.cHUNG_TU_Theo_NgayTableAdapter = new Phan_Mem_Quan_Ly_Cam_Do.CamDo.DS.dsCamDoTableAdapters.CHUNG_TU_Theo_NgayTableAdapter();
     this.cHUNGTUCHITIETTheoNgayBindingSource = new System.Windows.Forms.BindingSource(this.components);
     this.cHUNG_TU_CHI_TIET_Theo_NgayTableAdapter = new Phan_Mem_Quan_Ly_Cam_Do.CamDo.DS.dsCamDoTableAdapters.CHUNG_TU_CHI_TIET_Theo_NgayTableAdapter();
     ((System.ComponentModel.ISupportInitialize)(this.gbChild_List)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.rptMayTinh)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.gcList)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.cHUNGTUTheoNgayBindingSource)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.dsCamDo)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.gbList)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.rptMayTinhPhanTram)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.bm)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.img)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.rpt_cbTuyChon)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.rtp_dtTu)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.rtp_dtTu.CalendarTimeProperties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.rpt_dtDen)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.rpt_dtDen.CalendarTimeProperties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.rpt_cbTheoNgay)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControl1)).BeginInit();
     this.layoutControl1.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.cbTatCa.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControl2)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlGroup2)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtDen.Properties.CalendarTimeProperties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtDen.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtTu.Properties.CalendarTimeProperties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtTu.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.cbTuyChon.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlGroup1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem2)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem3)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem4)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem5)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem6)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.cHUNGTUCHITIETTheoNgayBindingSource)).BeginInit();
     this.SuspendLayout();
     //
     // gbChild_List
     //
     this.gbChild_List.Bands.AddRange(new DevExpress.XtraGrid.Views.BandedGrid.GridBand[] {
     this.gridBand4,
     this.gridBand5,
     this.gridBand6});
     this.gbChild_List.Columns.AddRange(new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn[] {
     this.colTen_Tai_San,
     this.colLoai_Vang,
     this.colTrong_Luong,
     this.colChuan_Do,
     this.colGia_Tri_Vat_Cam,
     this.colTrong_Luong_Vang_18k,
     this.colTrong_Luong_Vang_24k,
     this.colTrong_Luong_Khac});
     this.gbChild_List.GridControl = this.gcList;
     this.gbChild_List.IndicatorWidth = 40;
     this.gbChild_List.Name = "gbChild_List";
     this.gbChild_List.OptionsView.ColumnAutoWidth = false;
     this.gbChild_List.OptionsView.ShowFooter = true;
     this.gbChild_List.OptionsView.ShowGroupPanel = false;
     this.gbChild_List.ViewCaption = "Chi Tiết";
     this.gbChild_List.CustomDrawRowIndicator += new DevExpress.XtraGrid.Views.Grid.RowIndicatorCustomDrawEventHandler(this.gbChild_List_CustomDrawRowIndicator);
     //
     // gridBand4
     //
     this.gridBand4.Columns.Add(this.colTen_Tai_San);
     this.gridBand4.Columns.Add(this.colLoai_Vang);
     this.gridBand4.Name = "gridBand4";
     this.gridBand4.VisibleIndex = 0;
     this.gridBand4.Width = 150;
     //
     // colTen_Tai_San
     //
     this.colTen_Tai_San.AppearanceHeader.Options.UseTextOptions = true;
     this.colTen_Tai_San.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.colTen_Tai_San.Caption = "Tên Tài Sản";
     this.colTen_Tai_San.FieldName = "Ten_Tai_San";
     this.colTen_Tai_San.Name = "colTen_Tai_San";
     this.colTen_Tai_San.OptionsColumn.ReadOnly = true;
     this.colTen_Tai_San.OptionsFilter.AutoFilterCondition = DevExpress.XtraGrid.Columns.AutoFilterCondition.Contains;
     this.colTen_Tai_San.Visible = true;
     //
     // colLoai_Vang
     //
     this.colLoai_Vang.AppearanceHeader.Options.UseTextOptions = true;
     this.colLoai_Vang.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.colLoai_Vang.Caption = "Loại Vàng";
     this.colLoai_Vang.FieldName = "Loai_Vang";
     this.colLoai_Vang.Name = "colLoai_Vang";
     this.colLoai_Vang.OptionsColumn.ReadOnly = true;
     this.colLoai_Vang.OptionsFilter.AutoFilterCondition = DevExpress.XtraGrid.Columns.AutoFilterCondition.Contains;
     this.colLoai_Vang.Visible = true;
     //
     // gridBand5
     //
     this.gridBand5.AppearanceHeader.Options.UseTextOptions = true;
     this.gridBand5.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.gridBand5.Caption = "Trọng Lượng";
     this.gridBand5.Columns.Add(this.colTrong_Luong_Vang_18k);
     this.gridBand5.Columns.Add(this.colTrong_Luong_Vang_24k);
     this.gridBand5.Columns.Add(this.colTrong_Luong_Khac);
     this.gridBand5.Columns.Add(this.colTrong_Luong);
     this.gridBand5.Name = "gridBand5";
     this.gridBand5.VisibleIndex = 1;
     this.gridBand5.Width = 300;
     //
     // colTrong_Luong_Vang_18k
     //
     this.colTrong_Luong_Vang_18k.AppearanceHeader.Options.UseTextOptions = true;
     this.colTrong_Luong_Vang_18k.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.colTrong_Luong_Vang_18k.Caption = "18k";
     this.colTrong_Luong_Vang_18k.ColumnEdit = this.rptMayTinh;
     this.colTrong_Luong_Vang_18k.FieldName = "Trong_Luong_Vang_18k";
     this.colTrong_Luong_Vang_18k.Name = "colTrong_Luong_Vang_18k";
     this.colTrong_Luong_Vang_18k.OptionsColumn.ReadOnly = true;
     this.colTrong_Luong_Vang_18k.OptionsFilter.AutoFilterCondition = DevExpress.XtraGrid.Columns.AutoFilterCondition.Contains;
     this.colTrong_Luong_Vang_18k.Summary.AddRange(new DevExpress.XtraGrid.GridSummaryItem[] {
     new DevExpress.XtraGrid.GridColumnSummaryItem(DevExpress.Data.SummaryItemType.Sum, "Trong_Luong_Vang_18k", "{0:##,##0.###}")});
     this.colTrong_Luong_Vang_18k.Visible = true;
     //
     // 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";
     //
     // colTrong_Luong_Vang_24k
     //
     this.colTrong_Luong_Vang_24k.AppearanceHeader.Options.UseTextOptions = true;
     this.colTrong_Luong_Vang_24k.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.colTrong_Luong_Vang_24k.Caption = "24k";
     this.colTrong_Luong_Vang_24k.ColumnEdit = this.rptMayTinh;
     this.colTrong_Luong_Vang_24k.FieldName = "Trong_Luong_Vang_24k";
     this.colTrong_Luong_Vang_24k.Name = "colTrong_Luong_Vang_24k";
     this.colTrong_Luong_Vang_24k.OptionsColumn.ReadOnly = true;
     this.colTrong_Luong_Vang_24k.OptionsFilter.AutoFilterCondition = DevExpress.XtraGrid.Columns.AutoFilterCondition.Contains;
     this.colTrong_Luong_Vang_24k.Summary.AddRange(new DevExpress.XtraGrid.GridSummaryItem[] {
     new DevExpress.XtraGrid.GridColumnSummaryItem(DevExpress.Data.SummaryItemType.Sum, "Trong_Luong_Vang_24k", "{0:##,##0.###}")});
     this.colTrong_Luong_Vang_24k.Visible = true;
     //
     // colTrong_Luong_Khac
     //
     this.colTrong_Luong_Khac.AppearanceHeader.Options.UseTextOptions = true;
     this.colTrong_Luong_Khac.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.colTrong_Luong_Khac.Caption = "Khác";
     this.colTrong_Luong_Khac.ColumnEdit = this.rptMayTinh;
     this.colTrong_Luong_Khac.FieldName = "Trong_Luong_Khac";
     this.colTrong_Luong_Khac.Name = "colTrong_Luong_Khac";
     this.colTrong_Luong_Khac.OptionsColumn.ReadOnly = true;
     this.colTrong_Luong_Khac.OptionsFilter.AutoFilterCondition = DevExpress.XtraGrid.Columns.AutoFilterCondition.Contains;
     this.colTrong_Luong_Khac.Summary.AddRange(new DevExpress.XtraGrid.GridSummaryItem[] {
     new DevExpress.XtraGrid.GridColumnSummaryItem(DevExpress.Data.SummaryItemType.Sum, "Trong_Luong_Khac", "{0:##,##0.###}")});
     this.colTrong_Luong_Khac.Visible = true;
     //
     // colTrong_Luong
     //
     this.colTrong_Luong.AppearanceHeader.Options.UseTextOptions = true;
     this.colTrong_Luong.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.colTrong_Luong.Caption = "Trọng Lượng";
     this.colTrong_Luong.FieldName = "Trong_Luong";
     this.colTrong_Luong.Name = "colTrong_Luong";
     this.colTrong_Luong.OptionsColumn.ReadOnly = true;
     this.colTrong_Luong.OptionsFilter.AutoFilterCondition = DevExpress.XtraGrid.Columns.AutoFilterCondition.Contains;
     this.colTrong_Luong.Visible = true;
     //
     // gridBand6
     //
     this.gridBand6.Columns.Add(this.colChuan_Do);
     this.gridBand6.Columns.Add(this.colGia_Tri_Vat_Cam);
     this.gridBand6.Name = "gridBand6";
     this.gridBand6.VisibleIndex = 2;
     this.gridBand6.Width = 160;
     //
     // colChuan_Do
     //
     this.colChuan_Do.AppearanceHeader.Options.UseTextOptions = true;
     this.colChuan_Do.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.colChuan_Do.Caption = "Chuẩn Độ";
     this.colChuan_Do.FieldName = "Chuan_Do";
     this.colChuan_Do.Name = "colChuan_Do";
     this.colChuan_Do.OptionsColumn.ReadOnly = true;
     this.colChuan_Do.OptionsFilter.AutoFilterCondition = DevExpress.XtraGrid.Columns.AutoFilterCondition.Contains;
     this.colChuan_Do.Visible = true;
     //
     // colGia_Tri_Vat_Cam
     //
     this.colGia_Tri_Vat_Cam.AppearanceHeader.Options.UseTextOptions = true;
     this.colGia_Tri_Vat_Cam.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.colGia_Tri_Vat_Cam.Caption = "Giá Trị Vật Cầm";
     this.colGia_Tri_Vat_Cam.ColumnEdit = this.rptMayTinh;
     this.colGia_Tri_Vat_Cam.FieldName = "Gia_Tri_Vat_Cam";
     this.colGia_Tri_Vat_Cam.Name = "colGia_Tri_Vat_Cam";
     this.colGia_Tri_Vat_Cam.OptionsColumn.ReadOnly = true;
     this.colGia_Tri_Vat_Cam.OptionsFilter.AutoFilterCondition = DevExpress.XtraGrid.Columns.AutoFilterCondition.Contains;
     this.colGia_Tri_Vat_Cam.Visible = true;
     this.colGia_Tri_Vat_Cam.Width = 85;
     //
     // gcList
     //
     this.gcList.Cursor = System.Windows.Forms.Cursors.Default;
     this.gcList.DataSource = this.cHUNGTUTheoNgayBindingSource;
     gridLevelNode1.LevelTemplate = this.gbChild_List;
     gridLevelNode1.RelationName = "CHUNG_TU_Theo_Ngay_CHUNG_TU_CHI_TIET_Theo_Ngay";
     this.gcList.LevelTree.Nodes.AddRange(new DevExpress.XtraGrid.GridLevelNode[] {
     gridLevelNode1});
     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.rptMayTinhPhanTram});
     this.gcList.Size = new System.Drawing.Size(1280, 530);
     this.gcList.TabIndex = 4;
     this.gcList.ViewCollection.AddRange(new DevExpress.XtraGrid.Views.Base.BaseView[] {
     this.gbList,
     this.gbChild_List});
     //
     // cHUNGTUTheoNgayBindingSource
     //
     this.cHUNGTUTheoNgayBindingSource.DataMember = "CHUNG_TU_Theo_Ngay";
     this.cHUNGTUTheoNgayBindingSource.DataSource = this.dsCamDo;
     //
     // dsCamDo
     //
     this.dsCamDo.DataSetName = "dsCamDo";
     this.dsCamDo.EnforceConstraints = false;
     this.dsCamDo.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.Bands.AddRange(new DevExpress.XtraGrid.Views.BandedGrid.GridBand[] {
     this.gridBand1,
     this.gridBand3});
     this.gbList.Columns.AddRange(new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn[] {
     this.colMa_Chung_Tu,
     this.colSo,
     this.colTen_Khach_Hang,
     this.colSo_CMND,
     this.colNgay_Cap_CMND,
     this.colNoi_Cap,
     this.colDia_Chi,
     this.colSo_Dien_Thoai,
     this.colChu_Tiem,
     this.colSo_Tien_Cam,
     this.colTu_Ngay,
     this.colDen_Ngay,
     this.colSap_Xep,
     this.colNgay_Cam_Do,
     this.colNgay_Ghi_So,
     this.colSo_Ngay_Cam,
     this.colSo_Thang_Cam,
     this.colSo_Ngay_Le,
     this.colSo_Tien,
     this.colLai_Suat_Ngay,
     this.colLai_Suat_Thang,
     this.colTong_Tien_Lai,
     this.colMat_Giay,
     this.colGhi_Chu,
     this.colTinh_Trang,
     this.colChung_Tu_Goc,
     this.colDa_Lam_Lai_Giay,
     this.colLien,
     this.colNgay_Sinh});
     this.gbList.CustomizationFormBounds = new System.Drawing.Rectangle(574, 294, 216, 199);
     styleFormatCondition1.Appearance.ForeColor = System.Drawing.Color.Red;
     styleFormatCondition1.Appearance.Options.UseForeColor = true;
     styleFormatCondition1.ApplyToRow = true;
     styleFormatCondition1.Condition = DevExpress.XtraGrid.FormatConditionEnum.Expression;
     styleFormatCondition1.Expression = "Iif([Tinh_Trang] == \'R\',True  ,False )";
     this.gbList.FormatConditions.AddRange(new DevExpress.XtraGrid.StyleFormatCondition[] {
     styleFormatCondition1});
     this.gbList.GridControl = this.gcList;
     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, "Thanh_Tien", null, " - Thành Tiền - {0:##,##0,###}")});
     this.gbList.IndicatorWidth = 40;
     this.gbList.Name = "gbList";
     this.gbList.OptionsBehavior.AutoExpandAllGroups = true;
     this.gbList.OptionsSelection.MultiSelect = true;
     this.gbList.OptionsView.ColumnAutoWidth = false;
     this.gbList.OptionsView.ShowAutoFilterRow = true;
     this.gbList.OptionsView.ShowBands = false;
     this.gbList.OptionsView.ShowFooter = true;
     this.gbList.SortInfo.AddRange(new DevExpress.XtraGrid.Columns.GridColumnSortInfo[] {
     new DevExpress.XtraGrid.Columns.GridColumnSortInfo(this.colNgay_Ghi_So, DevExpress.Data.ColumnSortOrder.Descending)});
     this.gbList.CustomDrawRowIndicator += new DevExpress.XtraGrid.Views.Grid.RowIndicatorCustomDrawEventHandler(this.gbList_CustomDrawRowIndicator);
     this.gbList.MasterRowExpanded += new DevExpress.XtraGrid.Views.Grid.CustomMasterRowEventHandler(this.gbList_MasterRowExpanded);
     //
     // gridBand1
     //
     this.gridBand1.Columns.Add(this.colMa_Chung_Tu);
     this.gridBand1.Columns.Add(this.colSo);
     this.gridBand1.Columns.Add(this.colLien);
     this.gridBand1.Columns.Add(this.colNgay_Cam_Do);
     this.gridBand1.Columns.Add(this.colNgay_Ghi_So);
     this.gridBand1.Columns.Add(this.colTen_Khach_Hang);
     this.gridBand1.Columns.Add(this.colSo_CMND);
     this.gridBand1.Columns.Add(this.colSo_Tien);
     this.gridBand1.Columns.Add(this.colSo_Ngay_Le);
     this.gridBand1.Columns.Add(this.colSo_Thang_Cam);
     this.gridBand1.Columns.Add(this.colTong_Tien_Lai);
     this.gridBand1.MinWidth = 20;
     this.gridBand1.Name = "gridBand1";
     this.gridBand1.VisibleIndex = 0;
     this.gridBand1.Width = 970;
     //
     // colMa_Chung_Tu
     //
     this.colMa_Chung_Tu.AppearanceHeader.Options.UseTextOptions = true;
     this.colMa_Chung_Tu.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.colMa_Chung_Tu.Caption = "Mã Chứng Từ";
     this.colMa_Chung_Tu.FieldName = "Ma_Chung_Tu";
     this.colMa_Chung_Tu.Name = "colMa_Chung_Tu";
     this.colMa_Chung_Tu.OptionsColumn.ReadOnly = true;
     this.colMa_Chung_Tu.OptionsFilter.AutoFilterCondition = DevExpress.XtraGrid.Columns.AutoFilterCondition.Contains;
     this.colMa_Chung_Tu.Visible = true;
     this.colMa_Chung_Tu.Width = 105;
     //
     // colSo
     //
     this.colSo.AppearanceHeader.Options.UseTextOptions = true;
     this.colSo.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.colSo.Caption = "Số";
     this.colSo.FieldName = "So";
     this.colSo.Name = "colSo";
     this.colSo.OptionsColumn.ReadOnly = true;
     this.colSo.OptionsFilter.AutoFilterCondition = DevExpress.XtraGrid.Columns.AutoFilterCondition.Contains;
     this.colSo.Visible = true;
     //
     // colLien
     //
     this.colLien.AppearanceHeader.Options.UseTextOptions = true;
     this.colLien.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.colLien.Caption = "Liên";
     this.colLien.FieldName = "Lien";
     this.colLien.Name = "colLien";
     this.colLien.OptionsColumn.ReadOnly = true;
     this.colLien.OptionsFilter.AutoFilterCondition = DevExpress.XtraGrid.Columns.AutoFilterCondition.Contains;
     this.colLien.Visible = true;
     //
     // colNgay_Cam_Do
     //
     this.colNgay_Cam_Do.AppearanceHeader.Options.UseTextOptions = true;
     this.colNgay_Cam_Do.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.colNgay_Cam_Do.Caption = "Ngày Cầm Đồ";
     this.colNgay_Cam_Do.DisplayFormat.FormatString = "dd/MM/yyyy";
     this.colNgay_Cam_Do.DisplayFormat.FormatType = DevExpress.Utils.FormatType.Custom;
     this.colNgay_Cam_Do.FieldName = "Ngay_Cam_Do";
     this.colNgay_Cam_Do.Name = "colNgay_Cam_Do";
     this.colNgay_Cam_Do.OptionsColumn.ReadOnly = true;
     this.colNgay_Cam_Do.OptionsFilter.AutoFilterCondition = DevExpress.XtraGrid.Columns.AutoFilterCondition.Contains;
     this.colNgay_Cam_Do.Visible = true;
     this.colNgay_Cam_Do.Width = 88;
     //
     // colNgay_Ghi_So
     //
     this.colNgay_Ghi_So.AppearanceHeader.Options.UseTextOptions = true;
     this.colNgay_Ghi_So.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.colNgay_Ghi_So.Caption = "Ngày Ghi Sổ";
     this.colNgay_Ghi_So.DisplayFormat.FormatString = "dd/MM/yyyy";
     this.colNgay_Ghi_So.DisplayFormat.FormatType = DevExpress.Utils.FormatType.Custom;
     this.colNgay_Ghi_So.FieldName = "Ngay_Ghi_So";
     this.colNgay_Ghi_So.Name = "colNgay_Ghi_So";
     this.colNgay_Ghi_So.OptionsColumn.ReadOnly = true;
     this.colNgay_Ghi_So.OptionsFilter.AutoFilterCondition = DevExpress.XtraGrid.Columns.AutoFilterCondition.Contains;
     this.colNgay_Ghi_So.Visible = true;
     this.colNgay_Ghi_So.Width = 93;
     //
     // colTen_Khach_Hang
     //
     this.colTen_Khach_Hang.AppearanceHeader.Options.UseTextOptions = true;
     this.colTen_Khach_Hang.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.colTen_Khach_Hang.Caption = "Tên Khách Hàng";
     this.colTen_Khach_Hang.FieldName = "Ten_Khach_Hang";
     this.colTen_Khach_Hang.Name = "colTen_Khach_Hang";
     this.colTen_Khach_Hang.OptionsColumn.ReadOnly = true;
     this.colTen_Khach_Hang.OptionsFilter.AutoFilterCondition = DevExpress.XtraGrid.Columns.AutoFilterCondition.Contains;
     this.colTen_Khach_Hang.Visible = true;
     this.colTen_Khach_Hang.Width = 124;
     //
     // colSo_CMND
     //
     this.colSo_CMND.AppearanceHeader.Options.UseTextOptions = true;
     this.colSo_CMND.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.colSo_CMND.Caption = "Số CMND";
     this.colSo_CMND.FieldName = "So_CMND";
     this.colSo_CMND.Name = "colSo_CMND";
     this.colSo_CMND.OptionsColumn.ReadOnly = true;
     this.colSo_CMND.OptionsFilter.AutoFilterCondition = DevExpress.XtraGrid.Columns.AutoFilterCondition.Contains;
     this.colSo_CMND.Visible = true;
     //
     // colSo_Tien
     //
     this.colSo_Tien.AppearanceHeader.Options.UseTextOptions = true;
     this.colSo_Tien.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.colSo_Tien.Caption = "Số Tiền";
     this.colSo_Tien.ColumnEdit = this.rptMayTinh;
     this.colSo_Tien.FieldName = "So_Tien";
     this.colSo_Tien.Name = "colSo_Tien";
     this.colSo_Tien.OptionsColumn.ReadOnly = true;
     this.colSo_Tien.OptionsFilter.AutoFilterCondition = DevExpress.XtraGrid.Columns.AutoFilterCondition.Contains;
     this.colSo_Tien.Summary.AddRange(new DevExpress.XtraGrid.GridSummaryItem[] {
     new DevExpress.XtraGrid.GridColumnSummaryItem(DevExpress.Data.SummaryItemType.Sum, "So_Tien", "{0:##,##0.###}")});
     this.colSo_Tien.Visible = true;
     //
     // colSo_Ngay_Le
     //
     this.colSo_Ngay_Le.AppearanceHeader.Options.UseTextOptions = true;
     this.colSo_Ngay_Le.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.colSo_Ngay_Le.Caption = "Số Ngày Lẻ";
     this.colSo_Ngay_Le.ColumnEdit = this.rptMayTinh;
     this.colSo_Ngay_Le.FieldName = "So_Ngay_Le";
     this.colSo_Ngay_Le.Name = "colSo_Ngay_Le";
     this.colSo_Ngay_Le.OptionsColumn.ReadOnly = true;
     this.colSo_Ngay_Le.OptionsFilter.AutoFilterCondition = DevExpress.XtraGrid.Columns.AutoFilterCondition.Contains;
     this.colSo_Ngay_Le.Visible = true;
     //
     // colSo_Thang_Cam
     //
     this.colSo_Thang_Cam.AppearanceHeader.Options.UseTextOptions = true;
     this.colSo_Thang_Cam.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.colSo_Thang_Cam.Caption = "Số Tháng Cầm";
     this.colSo_Thang_Cam.ColumnEdit = this.rptMayTinh;
     this.colSo_Thang_Cam.FieldName = "So_Thang_Cam";
     this.colSo_Thang_Cam.Name = "colSo_Thang_Cam";
     this.colSo_Thang_Cam.OptionsColumn.ReadOnly = true;
     this.colSo_Thang_Cam.OptionsFilter.AutoFilterCondition = DevExpress.XtraGrid.Columns.AutoFilterCondition.Contains;
     this.colSo_Thang_Cam.Visible = true;
     this.colSo_Thang_Cam.Width = 91;
     //
     // colTong_Tien_Lai
     //
     this.colTong_Tien_Lai.AppearanceHeader.Options.UseTextOptions = true;
     this.colTong_Tien_Lai.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.colTong_Tien_Lai.Caption = "Tổng Tiền Lãi";
     this.colTong_Tien_Lai.ColumnEdit = this.rptMayTinh;
     this.colTong_Tien_Lai.FieldName = "Tong_Tien_Lai";
     this.colTong_Tien_Lai.Name = "colTong_Tien_Lai";
     this.colTong_Tien_Lai.OptionsColumn.ReadOnly = true;
     this.colTong_Tien_Lai.OptionsFilter.AutoFilterCondition = DevExpress.XtraGrid.Columns.AutoFilterCondition.Contains;
     this.colTong_Tien_Lai.Summary.AddRange(new DevExpress.XtraGrid.GridSummaryItem[] {
     new DevExpress.XtraGrid.GridColumnSummaryItem(DevExpress.Data.SummaryItemType.Sum, "Tong_Tien_Lai", "{0:##,##0.###}")});
     this.colTong_Tien_Lai.Visible = true;
     this.colTong_Tien_Lai.Width = 94;
     //
     // gridBand3
     //
     this.gridBand3.Columns.Add(this.colChung_Tu_Goc);
     this.gridBand3.Columns.Add(this.colGhi_Chu);
     this.gridBand3.Columns.Add(this.colLai_Suat_Ngay);
     this.gridBand3.Columns.Add(this.colLai_Suat_Thang);
     this.gridBand3.Columns.Add(this.colNgay_Cap_CMND);
     this.gridBand3.Columns.Add(this.colNoi_Cap);
     this.gridBand3.Columns.Add(this.colNgay_Sinh);
     this.gridBand3.Columns.Add(this.colDia_Chi);
     this.gridBand3.Columns.Add(this.colSo_Dien_Thoai);
     this.gridBand3.Columns.Add(this.colChu_Tiem);
     this.gridBand3.Columns.Add(this.colTu_Ngay);
     this.gridBand3.Columns.Add(this.colDen_Ngay);
     this.gridBand3.Columns.Add(this.colSo_Tien_Cam);
     this.gridBand3.Columns.Add(this.colSo_Ngay_Cam);
     this.gridBand3.Columns.Add(this.colDa_Lam_Lai_Giay);
     this.gridBand3.Columns.Add(this.colMat_Giay);
     this.gridBand3.Columns.Add(this.colSap_Xep);
     this.gridBand3.Columns.Add(this.colTinh_Trang);
     this.gridBand3.MinWidth = 20;
     this.gridBand3.Name = "gridBand3";
     this.gridBand3.VisibleIndex = 1;
     this.gridBand3.Width = 1541;
     //
     // colChung_Tu_Goc
     //
     this.colChung_Tu_Goc.AppearanceHeader.Options.UseTextOptions = true;
     this.colChung_Tu_Goc.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.colChung_Tu_Goc.Caption = "Chứng Từ Gốc";
     this.colChung_Tu_Goc.FieldName = "Chung_Tu_Goc";
     this.colChung_Tu_Goc.Name = "colChung_Tu_Goc";
     this.colChung_Tu_Goc.OptionsColumn.ReadOnly = true;
     this.colChung_Tu_Goc.OptionsFilter.AutoFilterCondition = DevExpress.XtraGrid.Columns.AutoFilterCondition.Contains;
     this.colChung_Tu_Goc.Visible = true;
     this.colChung_Tu_Goc.Width = 91;
     //
     // colGhi_Chu
     //
     this.colGhi_Chu.AppearanceHeader.Options.UseTextOptions = true;
     this.colGhi_Chu.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     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.Width = 173;
     //
     // colLai_Suat_Ngay
     //
     this.colLai_Suat_Ngay.AppearanceHeader.Options.UseTextOptions = true;
     this.colLai_Suat_Ngay.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.colLai_Suat_Ngay.Caption = "Lãi Suất Ngày";
     this.colLai_Suat_Ngay.ColumnEdit = this.rptMayTinhPhanTram;
     this.colLai_Suat_Ngay.FieldName = "Lai_Suat_Ngay";
     this.colLai_Suat_Ngay.Name = "colLai_Suat_Ngay";
     this.colLai_Suat_Ngay.OptionsColumn.ReadOnly = true;
     this.colLai_Suat_Ngay.OptionsFilter.AutoFilterCondition = DevExpress.XtraGrid.Columns.AutoFilterCondition.Contains;
     this.colLai_Suat_Ngay.Visible = true;
     this.colLai_Suat_Ngay.Width = 88;
     //
     // rptMayTinhPhanTram
     //
     this.rptMayTinhPhanTram.AutoHeight = false;
     this.rptMayTinhPhanTram.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.rptMayTinhPhanTram.DisplayFormat.FormatString = "{0:##,##0.###} %";
     this.rptMayTinhPhanTram.DisplayFormat.FormatType = DevExpress.Utils.FormatType.Custom;
     this.rptMayTinhPhanTram.EditFormat.FormatString = "{0:##,##0.###} %";
     this.rptMayTinhPhanTram.EditFormat.FormatType = DevExpress.Utils.FormatType.Custom;
     this.rptMayTinhPhanTram.Name = "rptMayTinhPhanTram";
     //
     // colLai_Suat_Thang
     //
     this.colLai_Suat_Thang.AppearanceHeader.Options.UseTextOptions = true;
     this.colLai_Suat_Thang.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.colLai_Suat_Thang.Caption = "Lãi Suất Tháng";
     this.colLai_Suat_Thang.ColumnEdit = this.rptMayTinhPhanTram;
     this.colLai_Suat_Thang.FieldName = "Lai_Suat_Thang";
     this.colLai_Suat_Thang.Name = "colLai_Suat_Thang";
     this.colLai_Suat_Thang.OptionsColumn.ReadOnly = true;
     this.colLai_Suat_Thang.OptionsFilter.AutoFilterCondition = DevExpress.XtraGrid.Columns.AutoFilterCondition.Contains;
     this.colLai_Suat_Thang.Visible = true;
     this.colLai_Suat_Thang.Width = 93;
     //
     // colNgay_Cap_CMND
     //
     this.colNgay_Cap_CMND.AppearanceHeader.Options.UseTextOptions = true;
     this.colNgay_Cap_CMND.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.colNgay_Cap_CMND.Caption = "Ngày Cấp";
     this.colNgay_Cap_CMND.FieldName = "Ngay_Cap_CMND";
     this.colNgay_Cap_CMND.Name = "colNgay_Cap_CMND";
     this.colNgay_Cap_CMND.OptionsColumn.ReadOnly = true;
     this.colNgay_Cap_CMND.OptionsFilter.AutoFilterCondition = DevExpress.XtraGrid.Columns.AutoFilterCondition.Contains;
     this.colNgay_Cap_CMND.Visible = true;
     //
     // colNoi_Cap
     //
     this.colNoi_Cap.AppearanceHeader.Options.UseTextOptions = true;
     this.colNoi_Cap.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.colNoi_Cap.Caption = "Nơi Cấp";
     this.colNoi_Cap.FieldName = "Noi_Cap";
     this.colNoi_Cap.Name = "colNoi_Cap";
     this.colNoi_Cap.OptionsColumn.ReadOnly = true;
     this.colNoi_Cap.OptionsFilter.AutoFilterCondition = DevExpress.XtraGrid.Columns.AutoFilterCondition.Contains;
     this.colNoi_Cap.Visible = true;
     //
     // colNgay_Sinh
     //
     this.colNgay_Sinh.AppearanceHeader.Options.UseTextOptions = true;
     this.colNgay_Sinh.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.colNgay_Sinh.Caption = "Ngày Sinh";
     this.colNgay_Sinh.FieldName = "Ngay_Sinh";
     this.colNgay_Sinh.Name = "colNgay_Sinh";
     this.colNgay_Sinh.OptionsColumn.ReadOnly = true;
     this.colNgay_Sinh.OptionsFilter.AutoFilterCondition = DevExpress.XtraGrid.Columns.AutoFilterCondition.Contains;
     this.colNgay_Sinh.Visible = true;
     //
     // colDia_Chi
     //
     this.colDia_Chi.AppearanceHeader.Options.UseTextOptions = true;
     this.colDia_Chi.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     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;
     //
     // colSo_Dien_Thoai
     //
     this.colSo_Dien_Thoai.AppearanceHeader.Options.UseTextOptions = true;
     this.colSo_Dien_Thoai.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.colSo_Dien_Thoai.Caption = "Số Điện Thoại";
     this.colSo_Dien_Thoai.FieldName = "So_Dien_Thoai";
     this.colSo_Dien_Thoai.Name = "colSo_Dien_Thoai";
     this.colSo_Dien_Thoai.OptionsColumn.ReadOnly = true;
     this.colSo_Dien_Thoai.OptionsFilter.AutoFilterCondition = DevExpress.XtraGrid.Columns.AutoFilterCondition.Contains;
     this.colSo_Dien_Thoai.Visible = true;
     this.colSo_Dien_Thoai.Width = 112;
     //
     // colChu_Tiem
     //
     this.colChu_Tiem.AppearanceHeader.Options.UseTextOptions = true;
     this.colChu_Tiem.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.colChu_Tiem.Caption = "Chủ Tiệm";
     this.colChu_Tiem.FieldName = "Chu_Tiem";
     this.colChu_Tiem.Name = "colChu_Tiem";
     this.colChu_Tiem.OptionsColumn.ReadOnly = true;
     this.colChu_Tiem.OptionsFilter.AutoFilterCondition = DevExpress.XtraGrid.Columns.AutoFilterCondition.Contains;
     this.colChu_Tiem.Visible = true;
     //
     // colTu_Ngay
     //
     this.colTu_Ngay.AppearanceHeader.Options.UseTextOptions = true;
     this.colTu_Ngay.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.colTu_Ngay.Caption = "Từ Ngày";
     this.colTu_Ngay.FieldName = "Tu_Ngay";
     this.colTu_Ngay.Name = "colTu_Ngay";
     this.colTu_Ngay.OptionsColumn.ReadOnly = true;
     this.colTu_Ngay.OptionsFilter.AutoFilterCondition = DevExpress.XtraGrid.Columns.AutoFilterCondition.Contains;
     this.colTu_Ngay.Visible = true;
     //
     // colDen_Ngay
     //
     this.colDen_Ngay.AppearanceHeader.Options.UseTextOptions = true;
     this.colDen_Ngay.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.colDen_Ngay.Caption = "Đến Ngày";
     this.colDen_Ngay.FieldName = "Den_Ngay";
     this.colDen_Ngay.Name = "colDen_Ngay";
     this.colDen_Ngay.OptionsColumn.ReadOnly = true;
     this.colDen_Ngay.OptionsFilter.AutoFilterCondition = DevExpress.XtraGrid.Columns.AutoFilterCondition.Contains;
     this.colDen_Ngay.Visible = true;
     //
     // colSo_Tien_Cam
     //
     this.colSo_Tien_Cam.AppearanceHeader.Options.UseTextOptions = true;
     this.colSo_Tien_Cam.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.colSo_Tien_Cam.Caption = "Số Tiền Cầm";
     this.colSo_Tien_Cam.ColumnEdit = this.rptMayTinh;
     this.colSo_Tien_Cam.FieldName = "So_Tien_Cam";
     this.colSo_Tien_Cam.Name = "colSo_Tien_Cam";
     this.colSo_Tien_Cam.OptionsColumn.ReadOnly = true;
     this.colSo_Tien_Cam.OptionsFilter.AutoFilterCondition = DevExpress.XtraGrid.Columns.AutoFilterCondition.Contains;
     this.colSo_Tien_Cam.Summary.AddRange(new DevExpress.XtraGrid.GridSummaryItem[] {
     new DevExpress.XtraGrid.GridColumnSummaryItem(DevExpress.Data.SummaryItemType.Sum, "So_Tien_Cam", "{0:##,##0.###}")});
     this.colSo_Tien_Cam.Visible = true;
     this.colSo_Tien_Cam.Width = 125;
     //
     // colSo_Ngay_Cam
     //
     this.colSo_Ngay_Cam.AppearanceHeader.Options.UseTextOptions = true;
     this.colSo_Ngay_Cam.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.colSo_Ngay_Cam.Caption = "Số Ngày Cầm";
     this.colSo_Ngay_Cam.ColumnEdit = this.rptMayTinh;
     this.colSo_Ngay_Cam.FieldName = "So_Ngay_Cam";
     this.colSo_Ngay_Cam.Name = "colSo_Ngay_Cam";
     this.colSo_Ngay_Cam.OptionsColumn.ReadOnly = true;
     this.colSo_Ngay_Cam.OptionsFilter.AutoFilterCondition = DevExpress.XtraGrid.Columns.AutoFilterCondition.Contains;
     this.colSo_Ngay_Cam.Visible = true;
     this.colSo_Ngay_Cam.Width = 86;
     //
     // colDa_Lam_Lai_Giay
     //
     this.colDa_Lam_Lai_Giay.AppearanceHeader.Options.UseTextOptions = true;
     this.colDa_Lam_Lai_Giay.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.colDa_Lam_Lai_Giay.Caption = "Đã Làm Lại Giấy";
     this.colDa_Lam_Lai_Giay.FieldName = "Da_Lam_Lai_Giay";
     this.colDa_Lam_Lai_Giay.Name = "colDa_Lam_Lai_Giay";
     this.colDa_Lam_Lai_Giay.OptionsColumn.ReadOnly = true;
     this.colDa_Lam_Lai_Giay.OptionsFilter.AutoFilterCondition = DevExpress.XtraGrid.Columns.AutoFilterCondition.Contains;
     this.colDa_Lam_Lai_Giay.Visible = true;
     this.colDa_Lam_Lai_Giay.Width = 98;
     //
     // colMat_Giay
     //
     this.colMat_Giay.AppearanceHeader.Options.UseTextOptions = true;
     this.colMat_Giay.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.colMat_Giay.Caption = "Mất Giấy";
     this.colMat_Giay.FieldName = "Mat_Giay";
     this.colMat_Giay.Name = "colMat_Giay";
     this.colMat_Giay.OptionsColumn.ReadOnly = true;
     this.colMat_Giay.OptionsFilter.AutoFilterCondition = DevExpress.XtraGrid.Columns.AutoFilterCondition.Contains;
     this.colMat_Giay.Visible = true;
     //
     // colSap_Xep
     //
     this.colSap_Xep.AppearanceHeader.Options.UseTextOptions = true;
     this.colSap_Xep.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.colSap_Xep.Caption = "Sắp Xếp";
     this.colSap_Xep.FieldName = "Sap_Xep";
     this.colSap_Xep.Name = "colSap_Xep";
     this.colSap_Xep.OptionsColumn.ReadOnly = true;
     this.colSap_Xep.OptionsFilter.AutoFilterCondition = DevExpress.XtraGrid.Columns.AutoFilterCondition.Contains;
     this.colSap_Xep.Visible = true;
     //
     // colTinh_Trang
     //
     this.colTinh_Trang.AppearanceHeader.Options.UseTextOptions = true;
     this.colTinh_Trang.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.colTinh_Trang.FieldName = "Tinh_Trang";
     this.colTinh_Trang.Name = "colTinh_Trang";
     this.colTinh_Trang.OptionsColumn.ReadOnly = true;
     this.colTinh_Trang.OptionsFilter.AutoFilterCondition = DevExpress.XtraGrid.Columns.AutoFilterCondition.Contains;
     //
     // bm
     //
     this.bm.Bars.AddRange(new DevExpress.XtraBars.Bar[] {
     this.bar2,
     this.bar1});
     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.bbiSua,
     this.bbiXoa,
     this.bbiDong,
     this.barButtonItem1,
     this.bbiChuocDo,
     this.bbiTraTienLoi,
     this.bbiKhachTraBotTien,
     this.bbiKhachLayThemTien,
     this.bbiTheoDoi,
     this.bbiXuatExcel,
     this.bbiInPhieu,
     this.bbiLapGiayMoi,
     this.bbiTuyChon,
     this.bbiTu,
     this.bbiDen,
     this.bbiTheoNgay});
     this.bm.LargeImages = this.img;
     this.bm.MainMenu = this.bar2;
     this.bm.MaxItemId = 19;
     this.bm.RepositoryItems.AddRange(new DevExpress.XtraEditors.Repository.RepositoryItem[] {
     this.rpt_cbTuyChon,
     this.rtp_dtTu,
     this.rpt_dtDen,
     this.rpt_cbTheoNgay});
     //
     // bar2
     //
     this.bar2.BarName = "Main menu";
     this.bar2.DockCol = 0;
     this.bar2.DockRow = 1;
     this.bar2.DockStyle = DevExpress.XtraBars.BarDockStyle.Top;
     this.bar2.LinksPersistInfo.AddRange(new DevExpress.XtraBars.LinkPersistInfo[] {
     new DevExpress.XtraBars.LinkPersistInfo(this.barButtonItem1),
     new DevExpress.XtraBars.LinkPersistInfo(this.bbiInPhieu),
     new DevExpress.XtraBars.LinkPersistInfo(this.bbiSua),
     new DevExpress.XtraBars.LinkPersistInfo(this.bbiXoa),
     new DevExpress.XtraBars.LinkPersistInfo(this.bbiTheoDoi),
     new DevExpress.XtraBars.LinkPersistInfo(this.bbiXuatExcel),
     new DevExpress.XtraBars.LinkPersistInfo(this.bbiDong)});
     this.bar2.OptionsBar.MultiLine = true;
     this.bar2.OptionsBar.UseWholeRow = true;
     this.bar2.Text = "Main menu";
     //
     // barButtonItem1
     //
     this.barButtonItem1.Caption = "Xem";
     this.barButtonItem1.Id = 5;
     this.barButtonItem1.ImageIndex = 35;
     this.barButtonItem1.Name = "barButtonItem1";
     this.barButtonItem1.PaintStyle = DevExpress.XtraBars.BarItemPaintStyle.CaptionGlyph;
     this.barButtonItem1.ItemClick += new DevExpress.XtraBars.ItemClickEventHandler(this.bbiXem_ItemClick);
     //
     // bbiInPhieu
     //
     this.bbiInPhieu.Caption = "In Phiếu";
     this.bbiInPhieu.Id = 13;
     this.bbiInPhieu.ImageIndex = 46;
     this.bbiInPhieu.Name = "bbiInPhieu";
     this.bbiInPhieu.PaintStyle = DevExpress.XtraBars.BarItemPaintStyle.CaptionGlyph;
     this.bbiInPhieu.ItemClick += new DevExpress.XtraBars.ItemClickEventHandler(this.bbiInPhieu_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.ItemClick += new DevExpress.XtraBars.ItemClickEventHandler(this.bbiSua_ItemClick);
     //
     // 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.ItemClick += new DevExpress.XtraBars.ItemClickEventHandler(this.bbiXoa_ItemClick);
     //
     // bbiTheoDoi
     //
     this.bbiTheoDoi.Caption = "Theo Dõi";
     this.bbiTheoDoi.Id = 11;
     this.bbiTheoDoi.ImageIndex = 44;
     this.bbiTheoDoi.Name = "bbiTheoDoi";
     this.bbiTheoDoi.PaintStyle = DevExpress.XtraBars.BarItemPaintStyle.CaptionGlyph;
     this.bbiTheoDoi.ItemClick += new DevExpress.XtraBars.ItemClickEventHandler(this.bbiTheoDoi_ItemClick);
     //
     // bbiXuatExcel
     //
     this.bbiXuatExcel.Caption = "Xuất Excel";
     this.bbiXuatExcel.Id = 12;
     this.bbiXuatExcel.ImageIndex = 54;
     this.bbiXuatExcel.Name = "bbiXuatExcel";
     this.bbiXuatExcel.PaintStyle = DevExpress.XtraBars.BarItemPaintStyle.CaptionGlyph;
     this.bbiXuatExcel.ItemClick += new DevExpress.XtraBars.ItemClickEventHandler(this.bbiXuatExcel_ItemClick);
     //
     // bbiDong
     //
     this.bbiDong.Caption = "Đóng";
     this.bbiDong.Id = 3;
     this.bbiDong.ImageIndex = 10;
     this.bbiDong.Name = "bbiDong";
     this.bbiDong.PaintStyle = DevExpress.XtraBars.BarItemPaintStyle.CaptionGlyph;
     this.bbiDong.ItemClick += new DevExpress.XtraBars.ItemClickEventHandler(this.bbiDong_ItemClick);
     //
     // bar1
     //
     this.bar1.BarName = "Custom 2";
     this.bar1.DockCol = 0;
     this.bar1.DockRow = 0;
     this.bar1.DockStyle = DevExpress.XtraBars.BarDockStyle.Top;
     this.bar1.LinksPersistInfo.AddRange(new DevExpress.XtraBars.LinkPersistInfo[] {
     new DevExpress.XtraBars.LinkPersistInfo(this.bbiChuocDo),
     new DevExpress.XtraBars.LinkPersistInfo(this.bbiTraTienLoi),
     new DevExpress.XtraBars.LinkPersistInfo(this.bbiKhachTraBotTien),
     new DevExpress.XtraBars.LinkPersistInfo(this.bbiKhachLayThemTien),
     new DevExpress.XtraBars.LinkPersistInfo(this.bbiLapGiayMoi)});
     this.bar1.OptionsBar.UseWholeRow = true;
     this.bar1.Text = "Custom 2";
     //
     // bbiChuocDo
     //
     this.bbiChuocDo.Caption = "Chuộc Đồ";
     this.bbiChuocDo.Id = 7;
     this.bbiChuocDo.ImageIndex = 15;
     this.bbiChuocDo.Name = "bbiChuocDo";
     this.bbiChuocDo.PaintStyle = DevExpress.XtraBars.BarItemPaintStyle.CaptionGlyph;
     this.bbiChuocDo.ItemClick += new DevExpress.XtraBars.ItemClickEventHandler(this.bbiChuocDo_ItemClick);
     //
     // bbiTraTienLoi
     //
     this.bbiTraTienLoi.Caption = "Trả Tiền Lời";
     this.bbiTraTienLoi.Id = 8;
     this.bbiTraTienLoi.ImageIndex = 7;
     this.bbiTraTienLoi.Name = "bbiTraTienLoi";
     this.bbiTraTienLoi.PaintStyle = DevExpress.XtraBars.BarItemPaintStyle.CaptionGlyph;
     this.bbiTraTienLoi.ItemClick += new DevExpress.XtraBars.ItemClickEventHandler(this.bbiTraTienLoi_ItemClick);
     //
     // bbiKhachTraBotTien
     //
     this.bbiKhachTraBotTien.Caption = "Khách Trả Bớt Tiền";
     this.bbiKhachTraBotTien.Id = 9;
     this.bbiKhachTraBotTien.ImageIndex = 18;
     this.bbiKhachTraBotTien.Name = "bbiKhachTraBotTien";
     this.bbiKhachTraBotTien.PaintStyle = DevExpress.XtraBars.BarItemPaintStyle.CaptionGlyph;
     this.bbiKhachTraBotTien.ItemClick += new DevExpress.XtraBars.ItemClickEventHandler(this.bbiKhachTraBotTien_ItemClick);
     //
     // bbiKhachLayThemTien
     //
     this.bbiKhachLayThemTien.Caption = "Khách Lấy Thêm Tiền";
     this.bbiKhachLayThemTien.Id = 10;
     this.bbiKhachLayThemTien.ImageIndex = 49;
     this.bbiKhachLayThemTien.Name = "bbiKhachLayThemTien";
     this.bbiKhachLayThemTien.PaintStyle = DevExpress.XtraBars.BarItemPaintStyle.CaptionGlyph;
     this.bbiKhachLayThemTien.ItemClick += new DevExpress.XtraBars.ItemClickEventHandler(this.bbiKhachLayThemTien_ItemClick);
     //
     // bbiLapGiayMoi
     //
     this.bbiLapGiayMoi.Caption = "Lập Giấy Mới";
     this.bbiLapGiayMoi.Id = 14;
     this.bbiLapGiayMoi.ImageIndex = 34;
     this.bbiLapGiayMoi.Name = "bbiLapGiayMoi";
     this.bbiLapGiayMoi.PaintStyle = DevExpress.XtraBars.BarItemPaintStyle.CaptionGlyph;
     this.bbiLapGiayMoi.ItemClick += new DevExpress.XtraBars.ItemClickEventHandler(this.bbiLapGiayMoi_ItemClick);
     //
     // barDockControlTop
     //
     this.barDockControlTop.CausesValidation = false;
     this.barDockControlTop.Dock = System.Windows.Forms.DockStyle.Top;
     this.barDockControlTop.Location = new System.Drawing.Point(0, 0);
     this.barDockControlTop.Size = new System.Drawing.Size(1284, 55);
     //
     // barDockControlBottom
     //
     this.barDockControlBottom.CausesValidation = false;
     this.barDockControlBottom.Dock = System.Windows.Forms.DockStyle.Bottom;
     this.barDockControlBottom.Location = new System.Drawing.Point(0, 636);
     this.barDockControlBottom.Size = new System.Drawing.Size(1284, 0);
     //
     // barDockControlLeft
     //
     this.barDockControlLeft.CausesValidation = false;
     this.barDockControlLeft.Dock = System.Windows.Forms.DockStyle.Left;
     this.barDockControlLeft.Location = new System.Drawing.Point(0, 55);
     this.barDockControlLeft.Size = new System.Drawing.Size(0, 581);
     //
     // barDockControlRight
     //
     this.barDockControlRight.CausesValidation = false;
     this.barDockControlRight.Dock = System.Windows.Forms.DockStyle.Right;
     this.barDockControlRight.Location = new System.Drawing.Point(1284, 55);
     this.barDockControlRight.Size = new System.Drawing.Size(0, 581);
     //
     // 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, "Excel-icon.png");
     //
     // bbiTuyChon
     //
     this.bbiTuyChon.Caption = "Tùy chọn";
     this.bbiTuyChon.Edit = this.rpt_cbTuyChon;
     this.bbiTuyChon.EditValue = "";
     this.bbiTuyChon.Id = 15;
     this.bbiTuyChon.Name = "bbiTuyChon";
     this.bbiTuyChon.Width = 111;
     //
     // rpt_cbTuyChon
     //
     this.rpt_cbTuyChon.AutoHeight = false;
     this.rpt_cbTuyChon.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.rpt_cbTuyChon.Items.AddRange(new object[] {
     "Tùy chọn",
     "Tất cả",
     "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.rpt_cbTuyChon.Name = "rpt_cbTuyChon";
     //
     // bbiTu
     //
     this.bbiTu.Caption = "Từ";
     this.bbiTu.Edit = this.rtp_dtTu;
     this.bbiTu.EditValue = new System.DateTime(2015, 2, 27, 21, 3, 23, 134);
     this.bbiTu.Id = 16;
     this.bbiTu.Name = "bbiTu";
     this.bbiTu.Width = 91;
     //
     // rtp_dtTu
     //
     this.rtp_dtTu.AutoHeight = false;
     this.rtp_dtTu.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.rtp_dtTu.CalendarTimeProperties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.rtp_dtTu.Name = "rtp_dtTu";
     //
     // bbiDen
     //
     this.bbiDen.Caption = "Đến";
     this.bbiDen.Edit = this.rpt_dtDen;
     this.bbiDen.EditValue = new System.DateTime(2015, 2, 27, 21, 3, 14, 608);
     this.bbiDen.Id = 17;
     this.bbiDen.Name = "bbiDen";
     this.bbiDen.Width = 98;
     //
     // rpt_dtDen
     //
     this.rpt_dtDen.AutoHeight = false;
     this.rpt_dtDen.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.rpt_dtDen.CalendarTimeProperties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.rpt_dtDen.Name = "rpt_dtDen";
     //
     // bbiTheoNgay
     //
     this.bbiTheoNgay.Caption = "Theo Ngày";
     this.bbiTheoNgay.Edit = this.rpt_cbTheoNgay;
     this.bbiTheoNgay.EditValue = "";
     this.bbiTheoNgay.Id = 18;
     this.bbiTheoNgay.Name = "bbiTheoNgay";
     this.bbiTheoNgay.Width = 89;
     //
     // rpt_cbTheoNgay
     //
     this.rpt_cbTheoNgay.AutoHeight = false;
     this.rpt_cbTheoNgay.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.rpt_cbTheoNgay.Items.AddRange(new object[] {
     "Ngày ghi sổ",
     "Ngày cầm đồ"});
     this.rpt_cbTheoNgay.Name = "rpt_cbTheoNgay";
     this.rpt_cbTheoNgay.TextEditStyle = DevExpress.XtraEditors.Controls.TextEditStyles.DisableTextEditor;
     //
     // layoutControl1
     //
     this.layoutControl1.Controls.Add(this.cbTatCa);
     this.layoutControl1.Controls.Add(this.layoutControl2);
     this.layoutControl1.Controls.Add(this.txtDen);
     this.layoutControl1.Controls.Add(this.txtTu);
     this.layoutControl1.Controls.Add(this.cbTuyChon);
     this.layoutControl1.Controls.Add(this.gcList);
     this.layoutControl1.Dock = System.Windows.Forms.DockStyle.Fill;
     this.layoutControl1.Location = new System.Drawing.Point(0, 55);
     this.layoutControl1.Name = "layoutControl1";
     this.layoutControl1.Root = this.layoutControlGroup1;
     this.layoutControl1.Size = new System.Drawing.Size(1284, 581);
     this.layoutControl1.TabIndex = 5;
     this.layoutControl1.Text = "layoutControl1";
     //
     // cbTatCa
     //
     this.cbTatCa.Location = new System.Drawing.Point(2, 560);
     this.cbTatCa.MenuManager = this.bm;
     this.cbTatCa.Name = "cbTatCa";
     this.cbTatCa.Properties.Caption = "Xem tất cả các phiếu đã chuộc";
     this.cbTatCa.Size = new System.Drawing.Size(1280, 19);
     this.cbTatCa.StyleController = this.layoutControl1;
     this.cbTatCa.TabIndex = 9;
     this.cbTatCa.CheckedChanged += new System.EventHandler(this.cbTatCa_CheckedChanged);
     //
     // layoutControl2
     //
     this.layoutControl2.Location = new System.Drawing.Point(542, 2);
     this.layoutControl2.Name = "layoutControl2";
     this.layoutControl2.Root = this.layoutControlGroup2;
     this.layoutControl2.Size = new System.Drawing.Size(740, 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(740, 20);
     this.layoutControlGroup2.Text = "layoutControlGroup2";
     this.layoutControlGroup2.TextVisible = false;
     //
     // txtDen
     //
     this.txtDen.EditValue = null;
     this.txtDen.Location = new System.Drawing.Point(397, 2);
     this.txtDen.MenuManager = this.bm;
     this.txtDen.Name = "txtDen";
     this.txtDen.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.txtDen.Properties.CalendarTimeProperties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton()});
     this.txtDen.Properties.DisplayFormat.FormatString = "{0:dd/MM/yyyy}";
     this.txtDen.Properties.DisplayFormat.FormatType = DevExpress.Utils.FormatType.Custom;
     this.txtDen.Properties.EditFormat.FormatString = "{0:dd/MM/yyyy}";
     this.txtDen.Properties.EditFormat.FormatType = DevExpress.Utils.FormatType.Custom;
     this.txtDen.Size = new System.Drawing.Size(141, 20);
     this.txtDen.StyleController = this.layoutControl1;
     this.txtDen.TabIndex = 7;
     //
     // txtTu
     //
     this.txtTu.EditValue = null;
     this.txtTu.Location = new System.Drawing.Point(217, 2);
     this.txtTu.MenuManager = this.bm;
     this.txtTu.Name = "txtTu";
     this.txtTu.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.txtTu.Properties.CalendarTimeProperties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton()});
     this.txtTu.Properties.DisplayFormat.FormatString = "{0:dd/MM/yyyy}";
     this.txtTu.Properties.DisplayFormat.FormatType = DevExpress.Utils.FormatType.Custom;
     this.txtTu.Properties.EditFormat.FormatString = "{0:dd/MM/yyyy}";
     this.txtTu.Properties.EditFormat.FormatType = DevExpress.Utils.FormatType.Custom;
     this.txtTu.Size = new System.Drawing.Size(141, 20);
     this.txtTu.StyleController = this.layoutControl1;
     this.txtTu.TabIndex = 6;
     //
     // cbTuyChon
     //
     this.cbTuyChon.EditValue = "Tùy chọn";
     this.cbTuyChon.Location = new System.Drawing.Point(57, 2);
     this.cbTuyChon.MenuManager = this.bm;
     this.cbTuyChon.Name = "cbTuyChon";
     this.cbTuyChon.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.cbTuyChon.Properties.Items.AddRange(new object[] {
     "Tùy chọn",
     "Tất cả",
     "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.cbTuyChon.Size = new System.Drawing.Size(121, 20);
     this.cbTuyChon.StyleController = this.layoutControl1;
     this.cbTuyChon.TabIndex = 5;
     this.cbTuyChon.SelectedIndexChanged += new System.EventHandler(this.cbTuyChon_SelectedIndexChanged);
     //
     // layoutControlGroup1
     //
     this.layoutControlGroup1.CustomizationFormText = "layoutControlGroup1";
     this.layoutControlGroup1.EnableIndentsWithoutBorders = DevExpress.Utils.DefaultBoolean.True;
     this.layoutControlGroup1.GroupBordersVisible = false;
     this.layoutControlGroup1.Items.AddRange(new DevExpress.XtraLayout.BaseLayoutItem[] {
     this.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(1284, 581);
     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(1284, 534);
     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.cbTuyChon;
     this.layoutControlItem2.CustomizationFormText = "Tùy Chọn";
     this.layoutControlItem2.Location = new System.Drawing.Point(0, 0);
     this.layoutControlItem2.MaxSize = new System.Drawing.Size(180, 24);
     this.layoutControlItem2.MinSize = new System.Drawing.Size(150, 24);
     this.layoutControlItem2.Name = "layoutControlItem2";
     this.layoutControlItem2.Size = new System.Drawing.Size(180, 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.txtTu;
     this.layoutControlItem3.CustomizationFormText = "Từ";
     this.layoutControlItem3.Location = new System.Drawing.Point(180, 0);
     this.layoutControlItem3.MaxSize = new System.Drawing.Size(180, 24);
     this.layoutControlItem3.MinSize = new System.Drawing.Size(150, 24);
     this.layoutControlItem3.Name = "layoutControlItem3";
     this.layoutControlItem3.Size = new System.Drawing.Size(180, 24);
     this.layoutControlItem3.SizeConstraintsType = DevExpress.XtraLayout.SizeConstraintsType.Custom;
     this.layoutControlItem3.Text = "Từ";
     this.layoutControlItem3.TextAlignMode = DevExpress.XtraLayout.TextAlignModeItem.CustomSize;
     this.layoutControlItem3.TextSize = new System.Drawing.Size(30, 13);
     this.layoutControlItem3.TextToControlDistance = 5;
     //
     // layoutControlItem4
     //
     this.layoutControlItem4.Control = this.txtDen;
     this.layoutControlItem4.CustomizationFormText = "Đến";
     this.layoutControlItem4.Location = new System.Drawing.Point(360, 0);
     this.layoutControlItem4.MaxSize = new System.Drawing.Size(180, 24);
     this.layoutControlItem4.MinSize = new System.Drawing.Size(150, 24);
     this.layoutControlItem4.Name = "layoutControlItem4";
     this.layoutControlItem4.Size = new System.Drawing.Size(180, 24);
     this.layoutControlItem4.SizeConstraintsType = DevExpress.XtraLayout.SizeConstraintsType.Custom;
     this.layoutControlItem4.Text = "Đến";
     this.layoutControlItem4.TextAlignMode = DevExpress.XtraLayout.TextAlignModeItem.CustomSize;
     this.layoutControlItem4.TextSize = new System.Drawing.Size(30, 13);
     this.layoutControlItem4.TextToControlDistance = 5;
     //
     // layoutControlItem5
     //
     this.layoutControlItem5.Control = this.layoutControl2;
     this.layoutControlItem5.CustomizationFormText = "layoutControlItem5";
     this.layoutControlItem5.Location = new System.Drawing.Point(540, 0);
     this.layoutControlItem5.Name = "layoutControlItem5";
     this.layoutControlItem5.Size = new System.Drawing.Size(744, 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.cbTatCa;
     this.layoutControlItem6.CustomizationFormText = "layoutControlItem6";
     this.layoutControlItem6.Location = new System.Drawing.Point(0, 558);
     this.layoutControlItem6.Name = "layoutControlItem6";
     this.layoutControlItem6.Size = new System.Drawing.Size(1284, 23);
     this.layoutControlItem6.Text = "layoutControlItem6";
     this.layoutControlItem6.TextSize = new System.Drawing.Size(0, 0);
     this.layoutControlItem6.TextToControlDistance = 0;
     this.layoutControlItem6.TextVisible = false;
     //
     // cHUNG_TU_Theo_NgayTableAdapter
     //
     this.cHUNG_TU_Theo_NgayTableAdapter.ClearBeforeFill = true;
     //
     // cHUNGTUCHITIETTheoNgayBindingSource
     //
     this.cHUNGTUCHITIETTheoNgayBindingSource.DataMember = "CHUNG_TU_CHI_TIET_Theo_Ngay";
     this.cHUNGTUCHITIETTheoNgayBindingSource.DataSource = this.dsCamDo;
     //
     // cHUNG_TU_CHI_TIET_Theo_NgayTableAdapter
     //
     this.cHUNG_TU_CHI_TIET_Theo_NgayTableAdapter.ClearBeforeFill = true;
     //
     // ucDanhSach
     //
     this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
     this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
     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 = "ucDanhSach";
     this.Size = new System.Drawing.Size(1284, 636);
     ((System.ComponentModel.ISupportInitialize)(this.gbChild_List)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.rptMayTinh)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.gcList)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.cHUNGTUTheoNgayBindingSource)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.dsCamDo)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.gbList)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.rptMayTinhPhanTram)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.bm)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.img)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.rpt_cbTuyChon)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.rtp_dtTu.CalendarTimeProperties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.rtp_dtTu)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.rpt_dtDen.CalendarTimeProperties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.rpt_dtDen)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.rpt_cbTheoNgay)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControl1)).EndInit();
     this.layoutControl1.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.cbTatCa.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControl2)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlGroup2)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtDen.Properties.CalendarTimeProperties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtDen.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtTu.Properties.CalendarTimeProperties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtTu.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.cbTuyChon.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlGroup1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem2)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem3)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem4)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem5)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem6)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.cHUNGTUCHITIETTheoNgayBindingSource)).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(MainFrm));
     this.barManagerMain = new DevExpress.XtraBars.BarManager(this.components);
     this.barUp = new DevExpress.XtraBars.Bar();
     this.barSubItemFile = new DevExpress.XtraBars.BarSubItem();
     this.mbConnection = new DevExpress.XtraBars.BarButtonItem();
     this.mbExit = new DevExpress.XtraBars.BarButtonItem();
     this.barSubItemView = new DevExpress.XtraBars.BarSubItem();
     this.mbCode = new DevExpress.XtraBars.BarButtonItem();
     this.mbData = new DevExpress.XtraBars.BarButtonItem();
     this.mbQuery = new DevExpress.XtraBars.BarButtonItem();
     this.mbReport = new DevExpress.XtraBars.BarButtonItem();
     this.mbPriv = new DevExpress.XtraBars.BarButtonItem();
     this.mbResult = new DevExpress.XtraBars.BarButtonItem();
     this.mbSkins = new DevExpress.XtraBars.BarButtonItem();
     this.barSubItemWindows = new DevExpress.XtraBars.BarSubItem();
     this.mbcascade = new DevExpress.XtraBars.BarButtonItem();
     this.mbtileVertical = new DevExpress.XtraBars.BarButtonItem();
     this.mbtileHorizontal = new DevExpress.XtraBars.BarButtonItem();
     this.mbcloseAll = new DevExpress.XtraBars.BarButtonItem();
     this.barSubItemHelp = new DevExpress.XtraBars.BarSubItem();
     this.mbIndex = new DevExpress.XtraBars.BarButtonItem();
     this.mbAboutUs = new DevExpress.XtraBars.BarButtonItem();
     this.barEditItemasase_code = new DevExpress.XtraBars.BarEditItem();
     this.repositoryItemLookUpEditasase_code = new DevExpress.XtraEditors.Repository.RepositoryItemLookUpEdit();
     this.barDown = new DevExpress.XtraBars.Bar();
     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.dockManagerMain = new DevExpress.XtraBars.Docking.DockManager(this.components);
     this.panelContainer3 = new DevExpress.XtraBars.Docking.DockPanel();
     this.DPSkins = new DevExpress.XtraBars.Docking.DockPanel();
     this.controlContainer6 = new DevExpress.XtraBars.Docking.ControlContainer();
     this.galleryControlSkins = new DevExpress.XtraBars.Ribbon.GalleryControl();
     this.galleryControlClient1 = new DevExpress.XtraBars.Ribbon.GalleryControlClient();
     this.DPResult = new DevExpress.XtraBars.Docking.DockPanel();
     this.controlContainer5 = new DevExpress.XtraBars.Docking.ControlContainer();
     this.Logging = new System.Windows.Forms.RichTextBox();
     this.panelContainer1 = new DevExpress.XtraBars.Docking.DockPanel();
     this.DPCode = new DevExpress.XtraBars.Docking.DockPanel();
     this.dockPanel1_Container = new DevExpress.XtraBars.Docking.ControlContainer();
     this.navBarControlCode = new DevExpress.XtraNavBar.NavBarControl();
     this.navBarGroup1 = new DevExpress.XtraNavBar.NavBarGroup();
     this.navBarItemEmpCD_AsaseEmp = new DevExpress.XtraNavBar.NavBarItem();
     this.navBarItemEmpCD_EmpState = new DevExpress.XtraNavBar.NavBarItem();
     this.navBarItemEmpCD_JobDescription = new DevExpress.XtraNavBar.NavBarItem();
     this.navBarItemEmpCD_EmpJob = new DevExpress.XtraNavBar.NavBarItem();
     this.navBarItemEmpCD_Department = new DevExpress.XtraNavBar.NavBarItem();
     this.navBarItemEmpCD_Subject = new DevExpress.XtraNavBar.NavBarItem();
     this.navBarItemEmpCD_QualifiedPlace = new DevExpress.XtraNavBar.NavBarItem();
     this.navBarItemEmpCDQualification = new DevExpress.XtraNavBar.NavBarItem();
     this.navBarItemEmpCD_Specialization = new DevExpress.XtraNavBar.NavBarItem();
     this.navBarItemEmpCD_MaritalStatus = new DevExpress.XtraNavBar.NavBarItem();
     this.navBarItemEmpCD_Courses = new DevExpress.XtraNavBar.NavBarItem();
     this.navBarItemEmpCDPlaceTraining = new DevExpress.XtraNavBar.NavBarItem();
     this.navBarItemEmpCD_AgazaType = new DevExpress.XtraNavBar.NavBarItem();
     this.navBarItemEmpCDTakdeer = new DevExpress.XtraNavBar.NavBarItem();
     this.navBarItemEmpCD_EznType = new DevExpress.XtraNavBar.NavBarItem();
     this.navBarItemEmpCD_GzaaType = new DevExpress.XtraNavBar.NavBarItem();
     this.navBarItemEmpCD_GehaGazaa = new DevExpress.XtraNavBar.NavBarItem();
     this.navBarItemEmpCD_EmpTIME = new DevExpress.XtraNavBar.NavBarItem();
     this.imageCollection32 = new DevExpress.Utils.ImageCollection(this.components);
     this.DPData = new DevExpress.XtraBars.Docking.DockPanel();
     this.controlContainer1 = new DevExpress.XtraBars.Docking.ControlContainer();
     this.navBarControlData = new DevExpress.XtraNavBar.NavBarControl();
     this.navBarGroup2 = new DevExpress.XtraNavBar.NavBarGroup();
     this.navBarItemEmpTBL_Emp = new DevExpress.XtraNavBar.NavBarItem();
     this.navBarItemEmpEmp_Moaahel = new DevExpress.XtraNavBar.NavBarItem();
     this.navBarItemEmpEMP_agazat = new DevExpress.XtraNavBar.NavBarItem();
     this.navBarItemEmpEMP_Later = new DevExpress.XtraNavBar.NavBarItem();
     this.navBarItemEmpEMP_ezn = new DevExpress.XtraNavBar.NavBarItem();
     this.navBarItemEmpEMP_gzaat = new DevExpress.XtraNavBar.NavBarItem();
     this.navBarItemEmpEMP_training = new DevExpress.XtraNavBar.NavBarItem();
     this.navBarItemEmpEMP_TAMEEN = new DevExpress.XtraNavBar.NavBarItem();
     this.navBarItemEmpEMP_report = new DevExpress.XtraNavBar.NavBarItem();
     this.DPPriv = new DevExpress.XtraBars.Docking.DockPanel();
     this.controlContainer4 = new DevExpress.XtraBars.Docking.ControlContainer();
     this.navBarControlPriv = new DevExpress.XtraNavBar.NavBarControl();
     this.navBarGroup3 = new DevExpress.XtraNavBar.NavBarGroup();
     this.navBarItemEmpRoles = new DevExpress.XtraNavBar.NavBarItem();
     this.navBarItemEmpRoleDetial = new DevExpress.XtraNavBar.NavBarItem();
     this.navBarItemEmpUsers = new DevExpress.XtraNavBar.NavBarItem();
     this.navBarItemEmpUserRoles = new DevExpress.XtraNavBar.NavBarItem();
     this.navBarItemEmpAppOptions = new DevExpress.XtraNavBar.NavBarItem();
     this.panelContainer2 = new DevExpress.XtraBars.Docking.DockPanel();
     this.DPReport = new DevExpress.XtraBars.Docking.DockPanel();
     this.controlContainer3 = new DevExpress.XtraBars.Docking.ControlContainer();
     this.navBarControlReport = new DevExpress.XtraNavBar.NavBarControl();
     this.navBarGroup4 = new DevExpress.XtraNavBar.NavBarGroup();
     this.navBarItemEmpXRepEmpAddress = new DevExpress.XtraNavBar.NavBarItem();
     this.navBarItemEmpXRepEmpagazat = new DevExpress.XtraNavBar.NavBarItem();
     this.navBarItemEmpXRepEmpAll = new DevExpress.XtraNavBar.NavBarItem();
     this.navBarGroup7 = new DevExpress.XtraNavBar.NavBarGroup();
     this.navBarGroup8 = new DevExpress.XtraNavBar.NavBarGroup();
     this.navBarGroup9 = new DevExpress.XtraNavBar.NavBarGroup();
     this.navBarItemEmpDeployRpt = new DevExpress.XtraNavBar.NavBarItem();
     this.DPQuery = new DevExpress.XtraBars.Docking.DockPanel();
     this.controlContainer2 = new DevExpress.XtraBars.Docking.ControlContainer();
     this.navBarControlQry = new DevExpress.XtraNavBar.NavBarControl();
     this.navBarGroup5 = new DevExpress.XtraNavBar.NavBarGroup();
     this.barEditItem1 = new DevExpress.XtraBars.BarEditItem();
     this.repositoryItemComboBoxSkins = new DevExpress.XtraEditors.Repository.RepositoryItemComboBox();
     this.navBarItemEmpXRepEmpDetail = new DevExpress.XtraNavBar.NavBarItem();
     ((System.ComponentModel.ISupportInitialize)(this.barManagerMain)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemLookUpEditasase_code)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.dockManagerMain)).BeginInit();
     this.panelContainer3.SuspendLayout();
     this.DPSkins.SuspendLayout();
     this.controlContainer6.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.galleryControlSkins)).BeginInit();
     this.galleryControlSkins.SuspendLayout();
     this.DPResult.SuspendLayout();
     this.controlContainer5.SuspendLayout();
     this.panelContainer1.SuspendLayout();
     this.DPCode.SuspendLayout();
     this.dockPanel1_Container.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.navBarControlCode)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.imageCollection32)).BeginInit();
     this.DPData.SuspendLayout();
     this.controlContainer1.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.navBarControlData)).BeginInit();
     this.DPPriv.SuspendLayout();
     this.controlContainer4.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.navBarControlPriv)).BeginInit();
     this.panelContainer2.SuspendLayout();
     this.DPReport.SuspendLayout();
     this.controlContainer3.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.navBarControlReport)).BeginInit();
     this.DPQuery.SuspendLayout();
     this.controlContainer2.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.navBarControlQry)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemComboBoxSkins)).BeginInit();
     this.SuspendLayout();
     //
     // barManagerMain
     //
     this.barManagerMain.Bars.AddRange(new DevExpress.XtraBars.Bar[] {
     this.barUp,
     this.barDown});
     this.barManagerMain.DockControls.Add(this.barDockControlTop);
     this.barManagerMain.DockControls.Add(this.barDockControlBottom);
     this.barManagerMain.DockControls.Add(this.barDockControlLeft);
     this.barManagerMain.DockControls.Add(this.barDockControlRight);
     this.barManagerMain.DockManager = this.dockManagerMain;
     this.barManagerMain.Form = this;
     this.barManagerMain.Items.AddRange(new DevExpress.XtraBars.BarItem[] {
     this.barSubItemFile,
     this.barSubItemView,
     this.barSubItemHelp,
     this.mbConnection,
     this.mbExit,
     this.mbCode,
     this.mbData,
     this.mbQuery,
     this.mbReport,
     this.mbPriv,
     this.mbAboutUs,
     this.mbIndex,
     this.barEditItem1,
     this.barEditItemasase_code,
     this.mbResult,
     this.mbSkins,
     this.barSubItemWindows,
     this.mbcascade,
     this.mbtileVertical,
     this.mbtileHorizontal,
     this.mbcloseAll});
     this.barManagerMain.MainMenu = this.barUp;
     this.barManagerMain.MaxItemId = 28;
     this.barManagerMain.RepositoryItems.AddRange(new DevExpress.XtraEditors.Repository.RepositoryItem[] {
     this.repositoryItemComboBoxSkins,
     this.repositoryItemLookUpEditasase_code});
     this.barManagerMain.StatusBar = this.barDown;
     this.barManagerMain.TransparentEditors = true;
     //
     // barUp
     //
     this.barUp.BarName = "Main menu";
     this.barUp.DockCol = 0;
     this.barUp.DockRow = 0;
     this.barUp.DockStyle = DevExpress.XtraBars.BarDockStyle.Top;
     this.barUp.LinksPersistInfo.AddRange(new DevExpress.XtraBars.LinkPersistInfo[] {
     new DevExpress.XtraBars.LinkPersistInfo(this.barSubItemFile),
     new DevExpress.XtraBars.LinkPersistInfo(this.barSubItemView),
     new DevExpress.XtraBars.LinkPersistInfo(this.barSubItemWindows),
     new DevExpress.XtraBars.LinkPersistInfo(this.barSubItemHelp),
     new DevExpress.XtraBars.LinkPersistInfo(this.barEditItemasase_code)});
     this.barUp.OptionsBar.MultiLine = true;
     this.barUp.OptionsBar.UseWholeRow = true;
     this.barUp.Text = "Main menu";
     //
     // barSubItemFile
     //
     this.barSubItemFile.Caption = "ملف";
     this.barSubItemFile.Glyph = ((System.Drawing.Image)(resources.GetObject("barSubItemFile.Glyph")));
     this.barSubItemFile.Id = 0;
     this.barSubItemFile.LinksPersistInfo.AddRange(new DevExpress.XtraBars.LinkPersistInfo[] {
     new DevExpress.XtraBars.LinkPersistInfo(DevExpress.XtraBars.BarLinkUserDefines.PaintStyle, this.mbConnection, DevExpress.XtraBars.BarItemPaintStyle.Standard),
     new DevExpress.XtraBars.LinkPersistInfo(this.mbExit)});
     this.barSubItemFile.Name = "barSubItemFile";
     this.barSubItemFile.PaintStyle = DevExpress.XtraBars.BarItemPaintStyle.CaptionGlyph;
     //
     // mbConnection
     //
     this.mbConnection.Caption = "الغاء الاتصال";
     this.mbConnection.Glyph = ((System.Drawing.Image)(resources.GetObject("mbConnection.Glyph")));
     this.mbConnection.Id = 3;
     this.mbConnection.Name = "mbConnection";
     this.mbConnection.ItemClick += new DevExpress.XtraBars.ItemClickEventHandler(this.mbConnection_ItemClick);
     //
     // mbExit
     //
     this.mbExit.Caption = "خروج";
     this.mbExit.Glyph = global::Employee.Properties.Resources.Exit;
     this.mbExit.Id = 4;
     this.mbExit.Name = "mbExit";
     this.mbExit.ItemClick += new DevExpress.XtraBars.ItemClickEventHandler(this.mbExit_ItemClick);
     //
     // barSubItemView
     //
     this.barSubItemView.Caption = "عرض";
     this.barSubItemView.Glyph = ((System.Drawing.Image)(resources.GetObject("barSubItemView.Glyph")));
     this.barSubItemView.Id = 1;
     this.barSubItemView.LinksPersistInfo.AddRange(new DevExpress.XtraBars.LinkPersistInfo[] {
     new DevExpress.XtraBars.LinkPersistInfo(this.mbCode),
     new DevExpress.XtraBars.LinkPersistInfo(this.mbData),
     new DevExpress.XtraBars.LinkPersistInfo(this.mbQuery),
     new DevExpress.XtraBars.LinkPersistInfo(this.mbReport),
     new DevExpress.XtraBars.LinkPersistInfo(this.mbPriv),
     new DevExpress.XtraBars.LinkPersistInfo(this.mbResult),
     new DevExpress.XtraBars.LinkPersistInfo(this.mbSkins)});
     this.barSubItemView.Name = "barSubItemView";
     this.barSubItemView.PaintStyle = DevExpress.XtraBars.BarItemPaintStyle.CaptionGlyph;
     //
     // mbCode
     //
     this.mbCode.Caption = "اكواد";
     this.mbCode.Glyph = ((System.Drawing.Image)(resources.GetObject("mbCode.Glyph")));
     this.mbCode.Id = 5;
     this.mbCode.Name = "mbCode";
     this.mbCode.ItemClick += new DevExpress.XtraBars.ItemClickEventHandler(this.mbCode_ItemClick);
     //
     // mbData
     //
     this.mbData.Caption = "ادخال بيانات";
     this.mbData.Glyph = ((System.Drawing.Image)(resources.GetObject("mbData.Glyph")));
     this.mbData.Id = 6;
     this.mbData.Name = "mbData";
     this.mbData.ItemClick += new DevExpress.XtraBars.ItemClickEventHandler(this.mbData_ItemClick);
     //
     // mbQuery
     //
     this.mbQuery.Caption = "استعلامات";
     this.mbQuery.Glyph = ((System.Drawing.Image)(resources.GetObject("mbQuery.Glyph")));
     this.mbQuery.Id = 7;
     this.mbQuery.Name = "mbQuery";
     this.mbQuery.ItemClick += new DevExpress.XtraBars.ItemClickEventHandler(this.mbQuery_ItemClick);
     //
     // mbReport
     //
     this.mbReport.Caption = "تقارير";
     this.mbReport.Glyph = global::Employee.Properties.Resources.Print;
     this.mbReport.Id = 8;
     this.mbReport.Name = "mbReport";
     this.mbReport.ItemClick += new DevExpress.XtraBars.ItemClickEventHandler(this.mbReport_ItemClick);
     //
     // mbPriv
     //
     this.mbPriv.Caption = "صلاحيات";
     this.mbPriv.Glyph = ((System.Drawing.Image)(resources.GetObject("mbPriv.Glyph")));
     this.mbPriv.Id = 9;
     this.mbPriv.Name = "mbPriv";
     this.mbPriv.ItemClick += new DevExpress.XtraBars.ItemClickEventHandler(this.mbPriv_ItemClick);
     //
     // mbResult
     //
     this.mbResult.Caption = "نتائج العمليات";
     this.mbResult.Glyph = global::Employee.Properties.Resources.info16;
     this.mbResult.Id = 20;
     this.mbResult.Name = "mbResult";
     this.mbResult.ItemClick += new DevExpress.XtraBars.ItemClickEventHandler(this.mbResult_ItemClick);
     //
     // mbSkins
     //
     this.mbSkins.Caption = "الاشكال";
     this.mbSkins.Glyph = global::Employee.Properties.Resources.Skins;
     this.mbSkins.Id = 21;
     this.mbSkins.Name = "mbSkins";
     this.mbSkins.ItemClick += new DevExpress.XtraBars.ItemClickEventHandler(this.mbSkins_ItemClick);
     //
     // barSubItemWindows
     //
     this.barSubItemWindows.Caption = "النوافذ";
     this.barSubItemWindows.Glyph = ((System.Drawing.Image)(resources.GetObject("barSubItemWindows.Glyph")));
     this.barSubItemWindows.Id = 22;
     this.barSubItemWindows.LinksPersistInfo.AddRange(new DevExpress.XtraBars.LinkPersistInfo[] {
     new DevExpress.XtraBars.LinkPersistInfo(this.mbcascade),
     new DevExpress.XtraBars.LinkPersistInfo(this.mbtileVertical),
     new DevExpress.XtraBars.LinkPersistInfo(this.mbtileHorizontal),
     new DevExpress.XtraBars.LinkPersistInfo(this.mbcloseAll)});
     this.barSubItemWindows.Name = "barSubItemWindows";
     this.barSubItemWindows.PaintStyle = DevExpress.XtraBars.BarItemPaintStyle.CaptionGlyph;
     //
     // mbcascade
     //
     this.mbcascade.Caption = "ترتيب النوافذ";
     this.mbcascade.Glyph = ((System.Drawing.Image)(resources.GetObject("mbcascade.Glyph")));
     this.mbcascade.Id = 23;
     this.mbcascade.Name = "mbcascade";
     this.mbcascade.ItemClick += new DevExpress.XtraBars.ItemClickEventHandler(this.mbcascade_ItemClick);
     //
     // mbtileVertical
     //
     this.mbtileVertical.Caption = "العناوين رأسي";
     this.mbtileVertical.Glyph = ((System.Drawing.Image)(resources.GetObject("mbtileVertical.Glyph")));
     this.mbtileVertical.Id = 24;
     this.mbtileVertical.Name = "mbtileVertical";
     this.mbtileVertical.ItemClick += new DevExpress.XtraBars.ItemClickEventHandler(this.mbtileVertical_ItemClick);
     //
     // mbtileHorizontal
     //
     this.mbtileHorizontal.Caption = "العناوين افقي";
     this.mbtileHorizontal.Glyph = ((System.Drawing.Image)(resources.GetObject("mbtileHorizontal.Glyph")));
     this.mbtileHorizontal.Id = 25;
     this.mbtileHorizontal.Name = "mbtileHorizontal";
     this.mbtileHorizontal.ItemClick += new DevExpress.XtraBars.ItemClickEventHandler(this.mbtileHorizontal_ItemClick);
     //
     // mbcloseAll
     //
     this.mbcloseAll.Caption = "اغلاق الكل";
     this.mbcloseAll.Glyph = ((System.Drawing.Image)(resources.GetObject("mbcloseAll.Glyph")));
     this.mbcloseAll.Id = 26;
     this.mbcloseAll.Name = "mbcloseAll";
     this.mbcloseAll.ItemClick += new DevExpress.XtraBars.ItemClickEventHandler(this.mbcloseAll_ItemClick);
     //
     // barSubItemHelp
     //
     this.barSubItemHelp.Caption = "مساعده";
     this.barSubItemHelp.Glyph = ((System.Drawing.Image)(resources.GetObject("barSubItemHelp.Glyph")));
     this.barSubItemHelp.Id = 2;
     this.barSubItemHelp.LinksPersistInfo.AddRange(new DevExpress.XtraBars.LinkPersistInfo[] {
     new DevExpress.XtraBars.LinkPersistInfo(this.mbIndex),
     new DevExpress.XtraBars.LinkPersistInfo(this.mbAboutUs)});
     this.barSubItemHelp.Name = "barSubItemHelp";
     this.barSubItemHelp.PaintStyle = DevExpress.XtraBars.BarItemPaintStyle.CaptionGlyph;
     //
     // mbIndex
     //
     this.mbIndex.Caption = "كتاب المساعده";
     this.mbIndex.Glyph = global::Employee.Properties.Resources.Index;
     this.mbIndex.Id = 11;
     this.mbIndex.Name = "mbIndex";
     //
     // mbAboutUs
     //
     this.mbAboutUs.Caption = "عن البرنامج";
     this.mbAboutUs.Glyph = global::Employee.Properties.Resources.About;
     this.mbAboutUs.Id = 10;
     this.mbAboutUs.Name = "mbAboutUs";
     this.mbAboutUs.ItemClick += new DevExpress.XtraBars.ItemClickEventHandler(this.mbAboutUs_ItemClick);
     //
     // barEditItemasase_code
     //
     this.barEditItemasase_code.Caption = "العام الدراسي";
     this.barEditItemasase_code.Edit = this.repositoryItemLookUpEditasase_code;
     this.barEditItemasase_code.Id = 18;
     this.barEditItemasase_code.ItemShortcut = new DevExpress.XtraBars.BarShortcut((System.Windows.Forms.Keys.Control | System.Windows.Forms.Keys.F12));
     this.barEditItemasase_code.Name = "barEditItemasase_code";
     this.barEditItemasase_code.PaintStyle = DevExpress.XtraBars.BarItemPaintStyle.CaptionInMenu;
     this.barEditItemasase_code.Width = 150;
     //
     // repositoryItemLookUpEditasase_code
     //
     this.repositoryItemLookUpEditasase_code.Appearance.Options.UseTextOptions = true;
     this.repositoryItemLookUpEditasase_code.Appearance.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.repositoryItemLookUpEditasase_code.AutoHeight = false;
     this.repositoryItemLookUpEditasase_code.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo),
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.OK)});
     this.repositoryItemLookUpEditasase_code.Columns.AddRange(new DevExpress.XtraEditors.Controls.LookUpColumnInfo[] {
     new DevExpress.XtraEditors.Controls.LookUpColumnInfo("asase_year", "العام الدراسي", 50, DevExpress.Utils.FormatType.None, "", true, DevExpress.Utils.HorzAlignment.Center),
     new DevExpress.XtraEditors.Controls.LookUpColumnInfo("SCHOOL", "اسم المدرسه", 50, DevExpress.Utils.FormatType.None, "", true, DevExpress.Utils.HorzAlignment.Center)});
     this.repositoryItemLookUpEditasase_code.DisplayMember = "asase_year";
     this.repositoryItemLookUpEditasase_code.DropDownRows = 10;
     this.repositoryItemLookUpEditasase_code.Name = "repositoryItemLookUpEditasase_code";
     this.repositoryItemLookUpEditasase_code.NullText = "اختار عام دراسي";
     this.repositoryItemLookUpEditasase_code.NullValuePrompt = "اختار عام دراسي";
     this.repositoryItemLookUpEditasase_code.TextEditStyle = DevExpress.XtraEditors.Controls.TextEditStyles.Standard;
     this.repositoryItemLookUpEditasase_code.UseParentBackground = true;
     this.repositoryItemLookUpEditasase_code.ValueMember = "asase_code";
     this.repositoryItemLookUpEditasase_code.ButtonClick += new DevExpress.XtraEditors.Controls.ButtonPressedEventHandler(this.repositoryItemLookUpEditasase_code_ButtonClick);
     //
     // barDown
     //
     this.barDown.BarName = "Status bar";
     this.barDown.CanDockStyle = DevExpress.XtraBars.BarCanDockStyle.Bottom;
     this.barDown.DockCol = 0;
     this.barDown.DockRow = 0;
     this.barDown.DockStyle = DevExpress.XtraBars.BarDockStyle.Bottom;
     this.barDown.OptionsBar.AllowQuickCustomization = false;
     this.barDown.OptionsBar.DrawDragBorder = false;
     this.barDown.OptionsBar.MultiLine = true;
     this.barDown.OptionsBar.UseWholeRow = true;
     this.barDown.Text = "Status bar";
     //
     // 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(984, 24);
     //
     // barDockControlBottom
     //
     this.barDockControlBottom.CausesValidation = false;
     this.barDockControlBottom.Dock = System.Windows.Forms.DockStyle.Bottom;
     this.barDockControlBottom.Location = new System.Drawing.Point(0, 639);
     this.barDockControlBottom.Size = new System.Drawing.Size(984, 23);
     //
     // 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, 615);
     //
     // barDockControlRight
     //
     this.barDockControlRight.CausesValidation = false;
     this.barDockControlRight.Dock = System.Windows.Forms.DockStyle.Right;
     this.barDockControlRight.Location = new System.Drawing.Point(984, 24);
     this.barDockControlRight.Size = new System.Drawing.Size(0, 615);
     //
     // dockManagerMain
     //
     this.dockManagerMain.DockingOptions.ShowCaptionImage = true;
     this.dockManagerMain.DockMode = DevExpress.XtraBars.Docking.Helpers.DockMode.Standard;
     this.dockManagerMain.Form = this;
     this.dockManagerMain.MenuManager = this.barManagerMain;
     this.dockManagerMain.RootPanels.AddRange(new DevExpress.XtraBars.Docking.DockPanel[] {
     this.panelContainer3,
     this.panelContainer1,
     this.panelContainer2});
     this.dockManagerMain.TopZIndexControls.AddRange(new string[] {
     "DevExpress.XtraBars.BarDockControl",
     "DevExpress.XtraBars.StandaloneBarDockControl",
     "System.Windows.Forms.StatusBar",
     "DevExpress.XtraBars.Ribbon.RibbonStatusBar",
     "DevExpress.XtraBars.Ribbon.RibbonControl"});
     //
     // panelContainer3
     //
     this.panelContainer3.ActiveChild = this.DPSkins;
     this.panelContainer3.Appearance.Options.UseTextOptions = true;
     this.panelContainer3.Appearance.TextOptions.WordWrap = DevExpress.Utils.WordWrap.NoWrap;
     this.panelContainer3.Controls.Add(this.DPSkins);
     this.panelContainer3.Controls.Add(this.DPResult);
     this.panelContainer3.Dock = DevExpress.XtraBars.Docking.DockingStyle.Bottom;
     this.panelContainer3.FloatVertical = true;
     this.panelContainer3.ID = new System.Guid("32f22386-9be7-4e30-adad-02dbf53b351f");
     this.panelContainer3.Location = new System.Drawing.Point(0, 529);
     this.panelContainer3.Name = "panelContainer3";
     this.panelContainer3.OriginalSize = new System.Drawing.Size(198, 110);
     this.panelContainer3.Size = new System.Drawing.Size(984, 110);
     this.panelContainer3.Tabbed = true;
     this.panelContainer3.TabsScroll = true;
     this.panelContainer3.Text = "panelContainer3";
     //
     // DPSkins
     //
     this.DPSkins.Controls.Add(this.controlContainer6);
     this.DPSkins.Dock = DevExpress.XtraBars.Docking.DockingStyle.Fill;
     this.DPSkins.FloatVertical = true;
     this.DPSkins.ID = new System.Guid("5d027091-716e-4480-919f-6381f5702c5a");
     this.DPSkins.Location = new System.Drawing.Point(4, 23);
     this.DPSkins.Name = "DPSkins";
     this.DPSkins.OriginalSize = new System.Drawing.Size(200, 200);
     this.DPSkins.Size = new System.Drawing.Size(976, 56);
     this.DPSkins.TabsScroll = true;
     this.DPSkins.Text = "الاشكال";
     //
     // controlContainer6
     //
     this.controlContainer6.Controls.Add(this.galleryControlSkins);
     this.controlContainer6.Location = new System.Drawing.Point(0, 0);
     this.controlContainer6.Name = "controlContainer6";
     this.controlContainer6.Size = new System.Drawing.Size(976, 56);
     this.controlContainer6.TabIndex = 0;
     //
     // galleryControlSkins
     //
     this.galleryControlSkins.Controls.Add(this.galleryControlClient1);
     this.galleryControlSkins.DesignGalleryGroupIndex = 0;
     this.galleryControlSkins.DesignGalleryItemIndex = 0;
     this.galleryControlSkins.Dock = System.Windows.Forms.DockStyle.Fill;
     this.galleryControlSkins.Location = new System.Drawing.Point(0, 0);
     this.galleryControlSkins.Name = "galleryControlSkins";
     this.galleryControlSkins.Size = new System.Drawing.Size(976, 56);
     this.galleryControlSkins.TabIndex = 0;
     this.galleryControlSkins.Text = "الاشكال";
     //
     // galleryControlClient1
     //
     this.galleryControlClient1.GalleryControl = this.galleryControlSkins;
     this.galleryControlClient1.Location = new System.Drawing.Point(2, 2);
     this.galleryControlClient1.Size = new System.Drawing.Size(955, 52);
     //
     // DPResult
     //
     this.DPResult.Controls.Add(this.controlContainer5);
     this.DPResult.Dock = DevExpress.XtraBars.Docking.DockingStyle.Fill;
     this.DPResult.FloatVertical = true;
     this.DPResult.ID = new System.Guid("abdfe4d0-1d6a-4f6b-abc2-985fb9d484f3");
     this.DPResult.Location = new System.Drawing.Point(4, 23);
     this.DPResult.Name = "DPResult";
     this.DPResult.OriginalSize = new System.Drawing.Size(200, 200);
     this.DPResult.Size = new System.Drawing.Size(976, 56);
     this.DPResult.Text = "نتائج العمليات";
     //
     // controlContainer5
     //
     this.controlContainer5.Controls.Add(this.Logging);
     this.controlContainer5.Location = new System.Drawing.Point(0, 0);
     this.controlContainer5.Name = "controlContainer5";
     this.controlContainer5.Size = new System.Drawing.Size(976, 56);
     this.controlContainer5.TabIndex = 0;
     //
     // Logging
     //
     this.Logging.Dock = System.Windows.Forms.DockStyle.Fill;
     this.Logging.Location = new System.Drawing.Point(0, 0);
     this.Logging.Name = "Logging";
     this.Logging.ReadOnly = true;
     this.Logging.RightToLeft = System.Windows.Forms.RightToLeft.Yes;
     this.Logging.Size = new System.Drawing.Size(976, 56);
     this.Logging.TabIndex = 0;
     this.Logging.Text = "";
     this.Logging.MouseDoubleClick += new System.Windows.Forms.MouseEventHandler(this.Logging_MouseDoubleClick);
     //
     // panelContainer1
     //
     this.panelContainer1.ActiveChild = this.DPCode;
     this.panelContainer1.Appearance.Options.UseTextOptions = true;
     this.panelContainer1.Appearance.TextOptions.WordWrap = DevExpress.Utils.WordWrap.NoWrap;
     this.panelContainer1.Controls.Add(this.DPCode);
     this.panelContainer1.Controls.Add(this.DPData);
     this.panelContainer1.Controls.Add(this.DPPriv);
     this.panelContainer1.Dock = DevExpress.XtraBars.Docking.DockingStyle.Left;
     this.panelContainer1.FloatVertical = true;
     this.panelContainer1.ID = new System.Guid("f4ff1062-9a77-404f-9187-cec889fb9ba4");
     this.panelContainer1.Location = new System.Drawing.Point(0, 24);
     this.panelContainer1.Name = "panelContainer1";
     this.panelContainer1.OriginalSize = new System.Drawing.Size(200, 200);
     this.panelContainer1.Size = new System.Drawing.Size(200, 505);
     this.panelContainer1.Tabbed = true;
     this.panelContainer1.TabsScroll = true;
     this.panelContainer1.Text = "panelContainer1";
     //
     // DPCode
     //
     this.DPCode.Controls.Add(this.dockPanel1_Container);
     this.DPCode.Dock = DevExpress.XtraBars.Docking.DockingStyle.Fill;
     this.DPCode.ID = new System.Guid("1cfd6550-8070-4cff-ad59-cba8d2680fa9");
     this.DPCode.Location = new System.Drawing.Point(4, 23);
     this.DPCode.Name = "DPCode";
     this.DPCode.OriginalSize = new System.Drawing.Size(192, 453);
     this.DPCode.Size = new System.Drawing.Size(192, 451);
     this.DPCode.TabsScroll = true;
     this.DPCode.TabText = "الاكواد";
     this.DPCode.Text = "الاكواد";
     //
     // dockPanel1_Container
     //
     this.dockPanel1_Container.Controls.Add(this.navBarControlCode);
     this.dockPanel1_Container.Location = new System.Drawing.Point(0, 0);
     this.dockPanel1_Container.Name = "dockPanel1_Container";
     this.dockPanel1_Container.Size = new System.Drawing.Size(192, 451);
     this.dockPanel1_Container.TabIndex = 0;
     //
     // navBarControlCode
     //
     this.navBarControlCode.ActiveGroup = this.navBarGroup1;
     this.navBarControlCode.Dock = System.Windows.Forms.DockStyle.Fill;
     this.navBarControlCode.ExplorerBarShowGroupButtons = false;
     this.navBarControlCode.Groups.AddRange(new DevExpress.XtraNavBar.NavBarGroup[] {
     this.navBarGroup1});
     this.navBarControlCode.Items.AddRange(new DevExpress.XtraNavBar.NavBarItem[] {
     this.navBarItemEmpCD_AsaseEmp,
     this.navBarItemEmpCD_EmpState,
     this.navBarItemEmpCD_JobDescription,
     this.navBarItemEmpCD_EmpJob,
     this.navBarItemEmpCD_Department,
     this.navBarItemEmpCD_Subject,
     this.navBarItemEmpCDQualification,
     this.navBarItemEmpCD_QualifiedPlace,
     this.navBarItemEmpCD_Specialization,
     this.navBarItemEmpCD_MaritalStatus,
     this.navBarItemEmpCD_Courses,
     this.navBarItemEmpCDPlaceTraining,
     this.navBarItemEmpCD_AgazaType,
     this.navBarItemEmpCDTakdeer,
     this.navBarItemEmpCD_EznType,
     this.navBarItemEmpCD_GzaaType,
     this.navBarItemEmpCD_GehaGazaa,
     this.navBarItemEmpCD_EmpTIME});
     this.navBarControlCode.LargeImages = this.imageCollection32;
     this.navBarControlCode.Location = new System.Drawing.Point(0, 0);
     this.navBarControlCode.Name = "navBarControlCode";
     this.navBarControlCode.OptionsNavPane.ExpandedWidth = 192;
     this.navBarControlCode.Size = new System.Drawing.Size(192, 451);
     this.navBarControlCode.SmallImages = this.imageCollection32;
     this.navBarControlCode.StoreDefaultPaintStyleName = true;
     this.navBarControlCode.TabIndex = 8;
     //
     // navBarGroup1
     //
     this.navBarGroup1.Caption = "";
     this.navBarGroup1.Expanded = true;
     this.navBarGroup1.ItemLinks.AddRange(new DevExpress.XtraNavBar.NavBarItemLink[] {
     new DevExpress.XtraNavBar.NavBarItemLink(this.navBarItemEmpCD_AsaseEmp),
     new DevExpress.XtraNavBar.NavBarItemLink(this.navBarItemEmpCD_EmpState),
     new DevExpress.XtraNavBar.NavBarItemLink(this.navBarItemEmpCD_JobDescription),
     new DevExpress.XtraNavBar.NavBarItemLink(this.navBarItemEmpCD_EmpJob),
     new DevExpress.XtraNavBar.NavBarItemLink(this.navBarItemEmpCD_Department),
     new DevExpress.XtraNavBar.NavBarItemLink(this.navBarItemEmpCD_Subject),
     new DevExpress.XtraNavBar.NavBarItemLink(this.navBarItemEmpCD_QualifiedPlace),
     new DevExpress.XtraNavBar.NavBarItemLink(this.navBarItemEmpCDQualification),
     new DevExpress.XtraNavBar.NavBarItemLink(this.navBarItemEmpCD_Specialization),
     new DevExpress.XtraNavBar.NavBarItemLink(this.navBarItemEmpCD_MaritalStatus),
     new DevExpress.XtraNavBar.NavBarItemLink(this.navBarItemEmpCD_Courses),
     new DevExpress.XtraNavBar.NavBarItemLink(this.navBarItemEmpCDPlaceTraining),
     new DevExpress.XtraNavBar.NavBarItemLink(this.navBarItemEmpCD_AgazaType),
     new DevExpress.XtraNavBar.NavBarItemLink(this.navBarItemEmpCDTakdeer),
     new DevExpress.XtraNavBar.NavBarItemLink(this.navBarItemEmpCD_EznType),
     new DevExpress.XtraNavBar.NavBarItemLink(this.navBarItemEmpCD_GzaaType),
     new DevExpress.XtraNavBar.NavBarItemLink(this.navBarItemEmpCD_GehaGazaa),
     new DevExpress.XtraNavBar.NavBarItemLink(this.navBarItemEmpCD_EmpTIME)});
     this.navBarGroup1.LargeImage = ((System.Drawing.Image)(resources.GetObject("navBarGroup1.LargeImage")));
     this.navBarGroup1.Name = "navBarGroup1";
     this.navBarGroup1.NavigationPaneVisible = false;
     this.navBarGroup1.SmallImage = ((System.Drawing.Image)(resources.GetObject("navBarGroup1.SmallImage")));
     //
     // navBarItemEmpCD_AsaseEmp
     //
     this.navBarItemEmpCD_AsaseEmp.Caption = "تحديد العام الدراسي";
     this.navBarItemEmpCD_AsaseEmp.LargeImageIndex = 7;
     this.navBarItemEmpCD_AsaseEmp.Name = "navBarItemEmpCD_AsaseEmp";
     this.navBarItemEmpCD_AsaseEmp.SmallImageIndex = 7;
     this.navBarItemEmpCD_AsaseEmp.LinkClicked += new DevExpress.XtraNavBar.NavBarLinkEventHandler(this.navBarItemCD_AsaseEmp_LinkClicked);
     //
     // navBarItemEmpCD_EmpState
     //
     this.navBarItemEmpCD_EmpState.Caption = "الحاله الوظيفيه";
     this.navBarItemEmpCD_EmpState.LargeImageIndex = 8;
     this.navBarItemEmpCD_EmpState.Name = "navBarItemEmpCD_EmpState";
     this.navBarItemEmpCD_EmpState.SmallImageIndex = 8;
     this.navBarItemEmpCD_EmpState.LinkClicked += new DevExpress.XtraNavBar.NavBarLinkEventHandler(this.navBarItemCD_EmpState_LinkClicked);
     //
     // navBarItemEmpCD_JobDescription
     //
     this.navBarItemEmpCD_JobDescription.Caption = "الوصف الوظيفي";
     this.navBarItemEmpCD_JobDescription.LargeImageIndex = 9;
     this.navBarItemEmpCD_JobDescription.Name = "navBarItemEmpCD_JobDescription";
     this.navBarItemEmpCD_JobDescription.SmallImageIndex = 9;
     this.navBarItemEmpCD_JobDescription.LinkClicked += new DevExpress.XtraNavBar.NavBarLinkEventHandler(this.navBarItemCD_JobDescription_LinkClicked);
     //
     // navBarItemEmpCD_EmpJob
     //
     this.navBarItemEmpCD_EmpJob.Caption = "وظائف العاملين";
     this.navBarItemEmpCD_EmpJob.LargeImageIndex = 10;
     this.navBarItemEmpCD_EmpJob.Name = "navBarItemEmpCD_EmpJob";
     this.navBarItemEmpCD_EmpJob.SmallImageIndex = 10;
     this.navBarItemEmpCD_EmpJob.LinkClicked += new DevExpress.XtraNavBar.NavBarLinkEventHandler(this.navBarItemCD_EmpJob_LinkClicked);
     //
     // navBarItemEmpCD_Department
     //
     this.navBarItemEmpCD_Department.Caption = "الاقسام";
     this.navBarItemEmpCD_Department.LargeImageIndex = 11;
     this.navBarItemEmpCD_Department.Name = "navBarItemEmpCD_Department";
     this.navBarItemEmpCD_Department.SmallImageIndex = 11;
     this.navBarItemEmpCD_Department.LinkClicked += new DevExpress.XtraNavBar.NavBarLinkEventHandler(this.navBarItemCD_Department_LinkClicked);
     //
     // navBarItemEmpCD_Subject
     //
     this.navBarItemEmpCD_Subject.Caption = "المواد";
     this.navBarItemEmpCD_Subject.LargeImageIndex = 12;
     this.navBarItemEmpCD_Subject.Name = "navBarItemEmpCD_Subject";
     this.navBarItemEmpCD_Subject.SmallImageIndex = 12;
     this.navBarItemEmpCD_Subject.LinkClicked += new DevExpress.XtraNavBar.NavBarLinkEventHandler(this.navBarItemCD_Subject_LinkClicked);
     //
     // navBarItemEmpCD_QualifiedPlace
     //
     this.navBarItemEmpCD_QualifiedPlace.Caption = "جهة المؤهل";
     this.navBarItemEmpCD_QualifiedPlace.LargeImageIndex = 13;
     this.navBarItemEmpCD_QualifiedPlace.Name = "navBarItemEmpCD_QualifiedPlace";
     this.navBarItemEmpCD_QualifiedPlace.SmallImageIndex = 13;
     this.navBarItemEmpCD_QualifiedPlace.LinkClicked += new DevExpress.XtraNavBar.NavBarLinkEventHandler(this.navBarItemCD_QualifiedPlace_LinkClicked);
     //
     // navBarItemEmpCDQualification
     //
     this.navBarItemEmpCDQualification.Caption = "المؤهلات";
     this.navBarItemEmpCDQualification.LargeImageIndex = 14;
     this.navBarItemEmpCDQualification.Name = "navBarItemEmpCDQualification";
     this.navBarItemEmpCDQualification.SmallImageIndex = 14;
     this.navBarItemEmpCDQualification.LinkClicked += new DevExpress.XtraNavBar.NavBarLinkEventHandler(this.navBarItemCDQualification_LinkClicked);
     //
     // navBarItemEmpCD_Specialization
     //
     this.navBarItemEmpCD_Specialization.Caption = "تخصص المؤهل";
     this.navBarItemEmpCD_Specialization.LargeImageIndex = 15;
     this.navBarItemEmpCD_Specialization.Name = "navBarItemEmpCD_Specialization";
     this.navBarItemEmpCD_Specialization.SmallImageIndex = 15;
     this.navBarItemEmpCD_Specialization.LinkClicked += new DevExpress.XtraNavBar.NavBarLinkEventHandler(this.navBarItemCD_Specialization_LinkClicked);
     //
     // navBarItemEmpCD_MaritalStatus
     //
     this.navBarItemEmpCD_MaritalStatus.Caption = "الحالة الاجتماعية";
     this.navBarItemEmpCD_MaritalStatus.LargeImageIndex = 16;
     this.navBarItemEmpCD_MaritalStatus.Name = "navBarItemEmpCD_MaritalStatus";
     this.navBarItemEmpCD_MaritalStatus.SmallImageIndex = 16;
     this.navBarItemEmpCD_MaritalStatus.LinkClicked += new DevExpress.XtraNavBar.NavBarLinkEventHandler(this.navBarItemCD_MaritalStatus_LinkClicked);
     //
     // navBarItemEmpCD_Courses
     //
     this.navBarItemEmpCD_Courses.Caption = "الدورات التدريبية";
     this.navBarItemEmpCD_Courses.LargeImageIndex = 17;
     this.navBarItemEmpCD_Courses.Name = "navBarItemEmpCD_Courses";
     this.navBarItemEmpCD_Courses.SmallImageIndex = 17;
     this.navBarItemEmpCD_Courses.LinkClicked += new DevExpress.XtraNavBar.NavBarLinkEventHandler(this.navBarItemCD_Courses_LinkClicked);
     //
     // navBarItemEmpCDPlaceTraining
     //
     this.navBarItemEmpCDPlaceTraining.Caption = "جهات التدريب";
     this.navBarItemEmpCDPlaceTraining.LargeImageIndex = 18;
     this.navBarItemEmpCDPlaceTraining.Name = "navBarItemEmpCDPlaceTraining";
     this.navBarItemEmpCDPlaceTraining.SmallImageIndex = 18;
     this.navBarItemEmpCDPlaceTraining.LinkClicked += new DevExpress.XtraNavBar.NavBarLinkEventHandler(this.navBarItemCDPlaceTraining_LinkClicked);
     //
     // navBarItemEmpCD_AgazaType
     //
     this.navBarItemEmpCD_AgazaType.Caption = "انواع الغياب";
     this.navBarItemEmpCD_AgazaType.LargeImageIndex = 19;
     this.navBarItemEmpCD_AgazaType.Name = "navBarItemEmpCD_AgazaType";
     this.navBarItemEmpCD_AgazaType.SmallImageIndex = 19;
     this.navBarItemEmpCD_AgazaType.LinkClicked += new DevExpress.XtraNavBar.NavBarLinkEventHandler(this.navBarItemCD_AgazaType_LinkClicked);
     //
     // navBarItemEmpCDTakdeer
     //
     this.navBarItemEmpCDTakdeer.Caption = "اكواد التقديرات";
     this.navBarItemEmpCDTakdeer.LargeImageIndex = 21;
     this.navBarItemEmpCDTakdeer.Name = "navBarItemEmpCDTakdeer";
     this.navBarItemEmpCDTakdeer.SmallImageIndex = 21;
     this.navBarItemEmpCDTakdeer.LinkClicked += new DevExpress.XtraNavBar.NavBarLinkEventHandler(this.navBarItemCDTakdeer_LinkClicked);
     //
     // navBarItemEmpCD_EznType
     //
     this.navBarItemEmpCD_EznType.Caption = "انواع الاذن";
     this.navBarItemEmpCD_EznType.LargeImageIndex = 22;
     this.navBarItemEmpCD_EznType.Name = "navBarItemEmpCD_EznType";
     this.navBarItemEmpCD_EznType.SmallImageIndex = 22;
     this.navBarItemEmpCD_EznType.LinkClicked += new DevExpress.XtraNavBar.NavBarLinkEventHandler(this.navBarItemCD_EznType_LinkClicked);
     //
     // navBarItemEmpCD_GzaaType
     //
     this.navBarItemEmpCD_GzaaType.Caption = "انواع الجزاءات";
     this.navBarItemEmpCD_GzaaType.LargeImageIndex = 23;
     this.navBarItemEmpCD_GzaaType.Name = "navBarItemEmpCD_GzaaType";
     this.navBarItemEmpCD_GzaaType.SmallImageIndex = 23;
     this.navBarItemEmpCD_GzaaType.LinkClicked += new DevExpress.XtraNavBar.NavBarLinkEventHandler(this.navBarItemCD_GzaaType_LinkClicked);
     //
     // navBarItemEmpCD_GehaGazaa
     //
     this.navBarItemEmpCD_GehaGazaa.Caption = "جهة الجزاء";
     this.navBarItemEmpCD_GehaGazaa.LargeImageIndex = 24;
     this.navBarItemEmpCD_GehaGazaa.Name = "navBarItemEmpCD_GehaGazaa";
     this.navBarItemEmpCD_GehaGazaa.SmallImageIndex = 24;
     this.navBarItemEmpCD_GehaGazaa.LinkClicked += new DevExpress.XtraNavBar.NavBarLinkEventHandler(this.navBarItemCD_GehaGazaa_LinkClicked);
     //
     // navBarItemEmpCD_EmpTIME
     //
     this.navBarItemEmpCD_EmpTIME.Caption = "اوقات العاملين";
     this.navBarItemEmpCD_EmpTIME.LargeImageIndex = 33;
     this.navBarItemEmpCD_EmpTIME.Name = "navBarItemEmpCD_EmpTIME";
     this.navBarItemEmpCD_EmpTIME.SmallImageIndex = 33;
     this.navBarItemEmpCD_EmpTIME.LinkClicked += new DevExpress.XtraNavBar.NavBarLinkEventHandler(this.navBarItemCD_EmpTIME_LinkClicked);
     //
     // imageCollection32
     //
     this.imageCollection32.ImageSize = new System.Drawing.Size(32, 32);
     this.imageCollection32.ImageStream = ((DevExpress.Utils.ImageCollectionStreamer)(resources.GetObject("imageCollection32.ImageStream")));
     this.imageCollection32.Images.SetKeyName(0, "Roles.png");
     this.imageCollection32.Images.SetKeyName(1, "Users.png");
     this.imageCollection32.Images.SetKeyName(2, "UserRoles.png");
     this.imageCollection32.Images.SetKeyName(3, "RoleDetial.png");
     this.imageCollection32.Images.SetKeyName(4, "Reports.png");
     this.imageCollection32.Images.SetKeyName(5, "DeployRpt.png");
     this.imageCollection32.Images.SetKeyName(6, "AppOptions.png");
     this.imageCollection32.Images.SetKeyName(7, "CD_AsaseEmp.png");
     this.imageCollection32.Images.SetKeyName(8, "CD_EmpState.png");
     this.imageCollection32.Images.SetKeyName(9, "CD_JobDescription.png");
     this.imageCollection32.Images.SetKeyName(10, "CD_EmpJob.png");
     this.imageCollection32.Images.SetKeyName(11, "CD_Department.png");
     this.imageCollection32.Images.SetKeyName(12, "CD_Subject.png");
     this.imageCollection32.Images.SetKeyName(13, "CD_QualifiedPlace.png");
     this.imageCollection32.Images.SetKeyName(14, "CDQualification.png");
     this.imageCollection32.Images.SetKeyName(15, "CD_Specialization.png");
     this.imageCollection32.Images.SetKeyName(16, "CD_MaritalStatus.png");
     this.imageCollection32.Images.SetKeyName(17, "CD_Courses.png");
     this.imageCollection32.Images.SetKeyName(18, "CDPlaceTraining.png");
     this.imageCollection32.Images.SetKeyName(19, "CD_AgazaType.png");
     this.imageCollection32.Images.SetKeyName(20, "TBL_Emp.png");
     this.imageCollection32.Images.SetKeyName(21, "CDTakdeer.png");
     this.imageCollection32.Images.SetKeyName(22, "CD_EznType.png");
     this.imageCollection32.Images.SetKeyName(23, "CD_GzaaType.png");
     this.imageCollection32.Images.SetKeyName(24, "CD_GehaGazaa.png");
     this.imageCollection32.Images.SetKeyName(25, "Emp_Moaahel.png");
     this.imageCollection32.Images.SetKeyName(26, "EMP_agazat.png");
     this.imageCollection32.Images.SetKeyName(27, "EMP_Later.png");
     this.imageCollection32.Images.SetKeyName(28, "EMP_ezn.png");
     this.imageCollection32.Images.SetKeyName(29, "EMP_gzaat.png");
     this.imageCollection32.Images.SetKeyName(30, "EMP_training.png");
     this.imageCollection32.Images.SetKeyName(31, "EMP_TAMEEN.png");
     this.imageCollection32.Images.SetKeyName(32, "EMP_report.png");
     this.imageCollection32.Images.SetKeyName(33, "CD_EmpTIME.png");
     //
     // DPData
     //
     this.DPData.Controls.Add(this.controlContainer1);
     this.DPData.Dock = DevExpress.XtraBars.Docking.DockingStyle.Fill;
     this.DPData.ID = new System.Guid("5a92e67b-e3d2-4e9c-a354-47ff59337c78");
     this.DPData.Location = new System.Drawing.Point(4, 23);
     this.DPData.Name = "DPData";
     this.DPData.OriginalSize = new System.Drawing.Size(192, 453);
     this.DPData.Size = new System.Drawing.Size(192, 451);
     this.DPData.TabStop = false;
     this.DPData.TabText = "ادخال البيانات";
     this.DPData.Text = "ادخال البيانات";
     //
     // controlContainer1
     //
     this.controlContainer1.Controls.Add(this.navBarControlData);
     this.controlContainer1.Location = new System.Drawing.Point(0, 0);
     this.controlContainer1.Name = "controlContainer1";
     this.controlContainer1.Size = new System.Drawing.Size(192, 451);
     this.controlContainer1.TabIndex = 0;
     //
     // navBarControlData
     //
     this.navBarControlData.ActiveGroup = this.navBarGroup2;
     this.navBarControlData.Dock = System.Windows.Forms.DockStyle.Fill;
     this.navBarControlData.ExplorerBarShowGroupButtons = false;
     this.navBarControlData.Groups.AddRange(new DevExpress.XtraNavBar.NavBarGroup[] {
     this.navBarGroup2});
     this.navBarControlData.Items.AddRange(new DevExpress.XtraNavBar.NavBarItem[] {
     this.navBarItemEmpTBL_Emp,
     this.navBarItemEmpEmp_Moaahel,
     this.navBarItemEmpEMP_agazat,
     this.navBarItemEmpEMP_Later,
     this.navBarItemEmpEMP_ezn,
     this.navBarItemEmpEMP_gzaat,
     this.navBarItemEmpEMP_training,
     this.navBarItemEmpEMP_TAMEEN,
     this.navBarItemEmpEMP_report});
     this.navBarControlData.LargeImages = this.imageCollection32;
     this.navBarControlData.Location = new System.Drawing.Point(0, 0);
     this.navBarControlData.Name = "navBarControlData";
     this.navBarControlData.OptionsNavPane.ExpandedWidth = 192;
     this.navBarControlData.Size = new System.Drawing.Size(192, 451);
     this.navBarControlData.SmallImages = this.imageCollection32;
     this.navBarControlData.StoreDefaultPaintStyleName = true;
     this.navBarControlData.TabIndex = 9;
     this.navBarControlData.Text = "navBarControl1";
     //
     // navBarGroup2
     //
     this.navBarGroup2.Caption = "";
     this.navBarGroup2.Expanded = true;
     this.navBarGroup2.ItemLinks.AddRange(new DevExpress.XtraNavBar.NavBarItemLink[] {
     new DevExpress.XtraNavBar.NavBarItemLink(this.navBarItemEmpTBL_Emp),
     new DevExpress.XtraNavBar.NavBarItemLink(this.navBarItemEmpEmp_Moaahel),
     new DevExpress.XtraNavBar.NavBarItemLink(this.navBarItemEmpEMP_agazat),
     new DevExpress.XtraNavBar.NavBarItemLink(this.navBarItemEmpEMP_Later),
     new DevExpress.XtraNavBar.NavBarItemLink(this.navBarItemEmpEMP_ezn),
     new DevExpress.XtraNavBar.NavBarItemLink(this.navBarItemEmpEMP_gzaat),
     new DevExpress.XtraNavBar.NavBarItemLink(this.navBarItemEmpEMP_training),
     new DevExpress.XtraNavBar.NavBarItemLink(this.navBarItemEmpEMP_TAMEEN),
     new DevExpress.XtraNavBar.NavBarItemLink(this.navBarItemEmpEMP_report)});
     this.navBarGroup2.LargeImage = ((System.Drawing.Image)(resources.GetObject("navBarGroup2.LargeImage")));
     this.navBarGroup2.Name = "navBarGroup2";
     this.navBarGroup2.NavigationPaneVisible = false;
     this.navBarGroup2.SmallImage = ((System.Drawing.Image)(resources.GetObject("navBarGroup2.SmallImage")));
     //
     // navBarItemEmpTBL_Emp
     //
     this.navBarItemEmpTBL_Emp.Caption = "بيانات العاملين";
     this.navBarItemEmpTBL_Emp.LargeImageIndex = 20;
     this.navBarItemEmpTBL_Emp.Name = "navBarItemEmpTBL_Emp";
     this.navBarItemEmpTBL_Emp.SmallImageIndex = 20;
     this.navBarItemEmpTBL_Emp.LinkClicked += new DevExpress.XtraNavBar.NavBarLinkEventHandler(this.navBarItemTBL_Emp_LinkClicked);
     //
     // navBarItemEmpEmp_Moaahel
     //
     this.navBarItemEmpEmp_Moaahel.Caption = "مؤهلات اثناء الخدمة";
     this.navBarItemEmpEmp_Moaahel.LargeImageIndex = 25;
     this.navBarItemEmpEmp_Moaahel.Name = "navBarItemEmpEmp_Moaahel";
     this.navBarItemEmpEmp_Moaahel.SmallImageIndex = 25;
     this.navBarItemEmpEmp_Moaahel.LinkClicked += new DevExpress.XtraNavBar.NavBarLinkEventHandler(this.navBarItemEmp_Moaahel_LinkClicked);
     //
     // navBarItemEmpEMP_agazat
     //
     this.navBarItemEmpEMP_agazat.Caption = "الغياب والاجازات";
     this.navBarItemEmpEMP_agazat.LargeImageIndex = 26;
     this.navBarItemEmpEMP_agazat.Name = "navBarItemEmpEMP_agazat";
     this.navBarItemEmpEMP_agazat.SmallImageIndex = 26;
     this.navBarItemEmpEMP_agazat.LinkClicked += new DevExpress.XtraNavBar.NavBarLinkEventHandler(this.navBarItemEMP_agazat_LinkClicked);
     //
     // navBarItemEmpEMP_Later
     //
     this.navBarItemEmpEMP_Later.Caption = "التأخير";
     this.navBarItemEmpEMP_Later.LargeImageIndex = 27;
     this.navBarItemEmpEMP_Later.Name = "navBarItemEmpEMP_Later";
     this.navBarItemEmpEMP_Later.SmallImageIndex = 27;
     this.navBarItemEmpEMP_Later.LinkClicked += new DevExpress.XtraNavBar.NavBarLinkEventHandler(this.navBarItemEMP_Later_LinkClicked);
     //
     // navBarItemEmpEMP_ezn
     //
     this.navBarItemEmpEMP_ezn.Caption = "اذونات الموظفين";
     this.navBarItemEmpEMP_ezn.LargeImageIndex = 28;
     this.navBarItemEmpEMP_ezn.Name = "navBarItemEmpEMP_ezn";
     this.navBarItemEmpEMP_ezn.SmallImageIndex = 28;
     this.navBarItemEmpEMP_ezn.LinkClicked += new DevExpress.XtraNavBar.NavBarLinkEventHandler(this.navBarItemEMP_ezn_LinkClicked);
     //
     // navBarItemEmpEMP_gzaat
     //
     this.navBarItemEmpEMP_gzaat.Caption = "الجزاءات";
     this.navBarItemEmpEMP_gzaat.LargeImageIndex = 29;
     this.navBarItemEmpEMP_gzaat.Name = "navBarItemEmpEMP_gzaat";
     this.navBarItemEmpEMP_gzaat.SmallImageIndex = 29;
     this.navBarItemEmpEMP_gzaat.LinkClicked += new DevExpress.XtraNavBar.NavBarLinkEventHandler(this.navBarItemEMP_gzaat_LinkClicked);
     //
     // navBarItemEmpEMP_training
     //
     this.navBarItemEmpEMP_training.Caption = "البرامج التدريبية";
     this.navBarItemEmpEMP_training.LargeImageIndex = 30;
     this.navBarItemEmpEMP_training.Name = "navBarItemEmpEMP_training";
     this.navBarItemEmpEMP_training.SmallImageIndex = 30;
     this.navBarItemEmpEMP_training.LinkClicked += new DevExpress.XtraNavBar.NavBarLinkEventHandler(this.navBarItemEMP_training_LinkClicked);
     //
     // navBarItemEmpEMP_TAMEEN
     //
     this.navBarItemEmpEMP_TAMEEN.Caption = "التأمين الصحي";
     this.navBarItemEmpEMP_TAMEEN.LargeImageIndex = 31;
     this.navBarItemEmpEMP_TAMEEN.Name = "navBarItemEmpEMP_TAMEEN";
     this.navBarItemEmpEMP_TAMEEN.SmallImageIndex = 31;
     this.navBarItemEmpEMP_TAMEEN.LinkClicked += new DevExpress.XtraNavBar.NavBarLinkEventHandler(this.navBarItemEMP_TAMEEN_LinkClicked);
     //
     // navBarItemEmpEMP_report
     //
     this.navBarItemEmpEMP_report.Caption = "التقارير السنوية";
     this.navBarItemEmpEMP_report.LargeImageIndex = 32;
     this.navBarItemEmpEMP_report.Name = "navBarItemEmpEMP_report";
     this.navBarItemEmpEMP_report.SmallImageIndex = 32;
     this.navBarItemEmpEMP_report.LinkClicked += new DevExpress.XtraNavBar.NavBarLinkEventHandler(this.navBarItemEMP_report_LinkClicked);
     //
     // DPPriv
     //
     this.DPPriv.Controls.Add(this.controlContainer4);
     this.DPPriv.Dock = DevExpress.XtraBars.Docking.DockingStyle.Fill;
     this.DPPriv.ID = new System.Guid("bb5d67bf-41ea-4082-a2e5-532afce242b2");
     this.DPPriv.Location = new System.Drawing.Point(4, 23);
     this.DPPriv.Name = "DPPriv";
     this.DPPriv.OriginalSize = new System.Drawing.Size(192, 453);
     this.DPPriv.Size = new System.Drawing.Size(192, 451);
     this.DPPriv.TabsScroll = true;
     this.DPPriv.TabText = "الصلاحيات";
     this.DPPriv.Text = "الصلاحيات";
     //
     // controlContainer4
     //
     this.controlContainer4.Controls.Add(this.navBarControlPriv);
     this.controlContainer4.Location = new System.Drawing.Point(0, 0);
     this.controlContainer4.Name = "controlContainer4";
     this.controlContainer4.Size = new System.Drawing.Size(192, 451);
     this.controlContainer4.TabIndex = 0;
     //
     // navBarControlPriv
     //
     this.navBarControlPriv.ActiveGroup = this.navBarGroup3;
     this.navBarControlPriv.Dock = System.Windows.Forms.DockStyle.Fill;
     this.navBarControlPriv.ExplorerBarShowGroupButtons = false;
     this.navBarControlPriv.Groups.AddRange(new DevExpress.XtraNavBar.NavBarGroup[] {
     this.navBarGroup3});
     this.navBarControlPriv.Items.AddRange(new DevExpress.XtraNavBar.NavBarItem[] {
     this.navBarItemEmpRoles,
     this.navBarItemEmpUsers,
     this.navBarItemEmpUserRoles,
     this.navBarItemEmpRoleDetial,
     this.navBarItemEmpAppOptions});
     this.navBarControlPriv.LargeImages = this.imageCollection32;
     this.navBarControlPriv.Location = new System.Drawing.Point(0, 0);
     this.navBarControlPriv.Name = "navBarControlPriv";
     this.navBarControlPriv.OptionsNavPane.ExpandedWidth = 192;
     this.navBarControlPriv.Size = new System.Drawing.Size(192, 451);
     this.navBarControlPriv.SmallImages = this.imageCollection32;
     this.navBarControlPriv.StoreDefaultPaintStyleName = true;
     this.navBarControlPriv.TabIndex = 9;
     this.navBarControlPriv.Text = "navBarControl1";
     //
     // navBarGroup3
     //
     this.navBarGroup3.Caption = "";
     this.navBarGroup3.Expanded = true;
     this.navBarGroup3.ItemLinks.AddRange(new DevExpress.XtraNavBar.NavBarItemLink[] {
     new DevExpress.XtraNavBar.NavBarItemLink(this.navBarItemEmpRoles),
     new DevExpress.XtraNavBar.NavBarItemLink(this.navBarItemEmpRoleDetial),
     new DevExpress.XtraNavBar.NavBarItemLink(this.navBarItemEmpUsers),
     new DevExpress.XtraNavBar.NavBarItemLink(this.navBarItemEmpUserRoles),
     new DevExpress.XtraNavBar.NavBarItemLink(this.navBarItemEmpAppOptions)});
     this.navBarGroup3.LargeImage = ((System.Drawing.Image)(resources.GetObject("navBarGroup3.LargeImage")));
     this.navBarGroup3.Name = "navBarGroup3";
     this.navBarGroup3.NavigationPaneVisible = false;
     this.navBarGroup3.SmallImage = ((System.Drawing.Image)(resources.GetObject("navBarGroup3.SmallImage")));
     //
     // navBarItemEmpRoles
     //
     this.navBarItemEmpRoles.Caption = "الصلاحيات";
     this.navBarItemEmpRoles.LargeImageIndex = 0;
     this.navBarItemEmpRoles.Name = "navBarItemEmpRoles";
     this.navBarItemEmpRoles.SmallImageIndex = 0;
     this.navBarItemEmpRoles.LinkClicked += new DevExpress.XtraNavBar.NavBarLinkEventHandler(this.navBarItemEditorRoleFrm_LinkClicked);
     //
     // navBarItemEmpRoleDetial
     //
     this.navBarItemEmpRoleDetial.Caption = "تفاصيل الصلاحيات";
     this.navBarItemEmpRoleDetial.LargeImageIndex = 3;
     this.navBarItemEmpRoleDetial.Name = "navBarItemEmpRoleDetial";
     this.navBarItemEmpRoleDetial.SmallImageIndex = 3;
     this.navBarItemEmpRoleDetial.LinkClicked += new DevExpress.XtraNavBar.NavBarLinkEventHandler(this.navBarItemRoleDetial_LinkClicked);
     //
     // navBarItemEmpUsers
     //
     this.navBarItemEmpUsers.Caption = "المستخدمين";
     this.navBarItemEmpUsers.LargeImageIndex = 1;
     this.navBarItemEmpUsers.Name = "navBarItemEmpUsers";
     this.navBarItemEmpUsers.SmallImageIndex = 1;
     this.navBarItemEmpUsers.LinkClicked += new DevExpress.XtraNavBar.NavBarLinkEventHandler(this.navBarItemUsers_LinkClicked);
     //
     // navBarItemEmpUserRoles
     //
     this.navBarItemEmpUserRoles.Caption = "صلاحيات المستخدمين";
     this.navBarItemEmpUserRoles.LargeImageIndex = 2;
     this.navBarItemEmpUserRoles.Name = "navBarItemEmpUserRoles";
     this.navBarItemEmpUserRoles.SmallImageIndex = 2;
     this.navBarItemEmpUserRoles.LinkClicked += new DevExpress.XtraNavBar.NavBarLinkEventHandler(this.navBarItemUserRoles_LinkClicked);
     //
     // navBarItemEmpAppOptions
     //
     this.navBarItemEmpAppOptions.Caption = "خيارات البرنامج";
     this.navBarItemEmpAppOptions.LargeImageIndex = 6;
     this.navBarItemEmpAppOptions.Name = "navBarItemEmpAppOptions";
     this.navBarItemEmpAppOptions.SmallImageIndex = 6;
     this.navBarItemEmpAppOptions.LinkClicked += new DevExpress.XtraNavBar.NavBarLinkEventHandler(this.navBarItemAppOptions_LinkClicked);
     //
     // panelContainer2
     //
     this.panelContainer2.ActiveChild = this.DPReport;
     this.panelContainer2.Appearance.Options.UseTextOptions = true;
     this.panelContainer2.Appearance.TextOptions.WordWrap = DevExpress.Utils.WordWrap.NoWrap;
     this.panelContainer2.Controls.Add(this.DPQuery);
     this.panelContainer2.Controls.Add(this.DPReport);
     this.panelContainer2.Dock = DevExpress.XtraBars.Docking.DockingStyle.Right;
     this.panelContainer2.FloatVertical = true;
     this.panelContainer2.ID = new System.Guid("80c30b21-965f-4a80-99d9-68f5819e7c1a");
     this.panelContainer2.Location = new System.Drawing.Point(784, 24);
     this.panelContainer2.Name = "panelContainer2";
     this.panelContainer2.OriginalSize = new System.Drawing.Size(200, 200);
     this.panelContainer2.Size = new System.Drawing.Size(200, 505);
     this.panelContainer2.Tabbed = true;
     this.panelContainer2.TabsScroll = true;
     this.panelContainer2.Text = "panelContainer2";
     //
     // DPReport
     //
     this.DPReport.Controls.Add(this.controlContainer3);
     this.DPReport.Dock = DevExpress.XtraBars.Docking.DockingStyle.Fill;
     this.DPReport.ID = new System.Guid("f2617492-8043-4778-ba8c-8e62a8a6d465");
     this.DPReport.Location = new System.Drawing.Point(4, 23);
     this.DPReport.Name = "DPReport";
     this.DPReport.OriginalSize = new System.Drawing.Size(192, 453);
     this.DPReport.Size = new System.Drawing.Size(192, 451);
     this.DPReport.TabsScroll = true;
     this.DPReport.TabText = "تقارير";
     this.DPReport.Text = "تقارير";
     //
     // controlContainer3
     //
     this.controlContainer3.Controls.Add(this.navBarControlReport);
     this.controlContainer3.Location = new System.Drawing.Point(0, 0);
     this.controlContainer3.Name = "controlContainer3";
     this.controlContainer3.Size = new System.Drawing.Size(192, 451);
     this.controlContainer3.TabIndex = 0;
     //
     // navBarControlReport
     //
     this.navBarControlReport.ActiveGroup = this.navBarGroup4;
     this.navBarControlReport.Dock = System.Windows.Forms.DockStyle.Fill;
     this.navBarControlReport.Groups.AddRange(new DevExpress.XtraNavBar.NavBarGroup[] {
     this.navBarGroup4,
     this.navBarGroup7,
     this.navBarGroup8,
     this.navBarGroup9});
     this.navBarControlReport.Items.AddRange(new DevExpress.XtraNavBar.NavBarItem[] {
     this.navBarItemEmpDeployRpt,
     this.navBarItemEmpXRepEmpAddress,
     this.navBarItemEmpXRepEmpagazat,
     this.navBarItemEmpXRepEmpAll,
     this.navBarItemEmpXRepEmpDetail});
     this.navBarControlReport.LargeImages = this.imageCollection32;
     this.navBarControlReport.Location = new System.Drawing.Point(0, 0);
     this.navBarControlReport.Name = "navBarControlReport";
     this.navBarControlReport.OptionsNavPane.ExpandedWidth = 192;
     this.navBarControlReport.Size = new System.Drawing.Size(192, 451);
     this.navBarControlReport.SmallImages = this.imageCollection32;
     this.navBarControlReport.TabIndex = 9;
     this.navBarControlReport.Text = "navBarControl1";
     this.navBarControlReport.View = new DevExpress.XtraNavBar.ViewInfo.StandardSkinExplorerBarViewInfoRegistrator("DevExpress Style");
     //
     // navBarGroup4
     //
     this.navBarGroup4.Caption = "تقارير 1";
     this.navBarGroup4.Expanded = true;
     this.navBarGroup4.ItemLinks.AddRange(new DevExpress.XtraNavBar.NavBarItemLink[] {
     new DevExpress.XtraNavBar.NavBarItemLink(this.navBarItemEmpXRepEmpAddress),
     new DevExpress.XtraNavBar.NavBarItemLink(this.navBarItemEmpXRepEmpagazat),
     new DevExpress.XtraNavBar.NavBarItemLink(this.navBarItemEmpXRepEmpAll),
     new DevExpress.XtraNavBar.NavBarItemLink(this.navBarItemEmpXRepEmpDetail)});
     this.navBarGroup4.LargeImage = global::Employee.Properties.Resources.Print;
     this.navBarGroup4.Name = "navBarGroup4";
     this.navBarGroup4.NavigationPaneVisible = false;
     this.navBarGroup4.SmallImage = global::Employee.Properties.Resources.Print;
     //
     // navBarItemEmpXRepEmpAddress
     //
     this.navBarItemEmpXRepEmpAddress.Caption = "سجل العناوين";
     this.navBarItemEmpXRepEmpAddress.LargeImageIndex = 4;
     this.navBarItemEmpXRepEmpAddress.Name = "navBarItemEmpXRepEmpAddress";
     this.navBarItemEmpXRepEmpAddress.SmallImageIndex = 4;
     this.navBarItemEmpXRepEmpAddress.LinkClicked += new DevExpress.XtraNavBar.NavBarLinkEventHandler(this.navBarItemEmpXRepEmpAddress_LinkClicked);
     //
     // navBarItemEmpXRepEmpagazat
     //
     this.navBarItemEmpXRepEmpagazat.Caption = "غياب العاملين";
     this.navBarItemEmpXRepEmpagazat.LargeImageIndex = 4;
     this.navBarItemEmpXRepEmpagazat.Name = "navBarItemEmpXRepEmpagazat";
     this.navBarItemEmpXRepEmpagazat.SmallImageIndex = 4;
     this.navBarItemEmpXRepEmpagazat.LinkClicked += new DevExpress.XtraNavBar.NavBarLinkEventHandler(this.navBarItemEmpXRepEmpagazat_LinkClicked);
     //
     // navBarItemEmpXRepEmpAll
     //
     this.navBarItemEmpXRepEmpAll.Caption = "سجل شئون العاملين";
     this.navBarItemEmpXRepEmpAll.LargeImageIndex = 4;
     this.navBarItemEmpXRepEmpAll.Name = "navBarItemEmpXRepEmpAll";
     this.navBarItemEmpXRepEmpAll.SmallImageIndex = 4;
     this.navBarItemEmpXRepEmpAll.LinkClicked += new DevExpress.XtraNavBar.NavBarLinkEventHandler(this.navBarItemEmpXRepEmpAll_LinkClicked);
     //
     // navBarGroup7
     //
     this.navBarGroup7.Caption = "تقارير 2";
     this.navBarGroup7.LargeImage = global::Employee.Properties.Resources.Print;
     this.navBarGroup7.Name = "navBarGroup7";
     this.navBarGroup7.SmallImage = global::Employee.Properties.Resources.Print;
     //
     // navBarGroup8
     //
     this.navBarGroup8.Caption = "تقارير 3";
     this.navBarGroup8.LargeImage = global::Employee.Properties.Resources.Print;
     this.navBarGroup8.Name = "navBarGroup8";
     this.navBarGroup8.SmallImage = global::Employee.Properties.Resources.Print;
     //
     // navBarGroup9
     //
     this.navBarGroup9.Caption = "تقارير 4";
     this.navBarGroup9.LargeImage = global::Employee.Properties.Resources.Print;
     this.navBarGroup9.Name = "navBarGroup9";
     this.navBarGroup9.SmallImage = global::Employee.Properties.Resources.Print;
     //
     // navBarItemEmpDeployRpt
     //
     this.navBarItemEmpDeployRpt.Caption = "تنصيب التقارير";
     this.navBarItemEmpDeployRpt.LargeImageIndex = 5;
     this.navBarItemEmpDeployRpt.Name = "navBarItemEmpDeployRpt";
     this.navBarItemEmpDeployRpt.SmallImageIndex = 5;
     this.navBarItemEmpDeployRpt.LinkClicked += new DevExpress.XtraNavBar.NavBarLinkEventHandler(this.navBarItemDeployRpt_LinkClicked);
     //
     // DPQuery
     //
     this.DPQuery.Controls.Add(this.controlContainer2);
     this.DPQuery.Dock = DevExpress.XtraBars.Docking.DockingStyle.Fill;
     this.DPQuery.ID = new System.Guid("d8711011-1b74-442f-bb9b-8102c8bf9f50");
     this.DPQuery.Location = new System.Drawing.Point(4, 23);
     this.DPQuery.Name = "DPQuery";
     this.DPQuery.OriginalSize = new System.Drawing.Size(192, 453);
     this.DPQuery.Size = new System.Drawing.Size(192, 451);
     this.DPQuery.TabsScroll = true;
     this.DPQuery.Text = "استعلامات";
     //
     // controlContainer2
     //
     this.controlContainer2.Controls.Add(this.navBarControlQry);
     this.controlContainer2.Location = new System.Drawing.Point(0, 0);
     this.controlContainer2.Name = "controlContainer2";
     this.controlContainer2.Size = new System.Drawing.Size(192, 451);
     this.controlContainer2.TabIndex = 0;
     //
     // navBarControlQry
     //
     this.navBarControlQry.ActiveGroup = this.navBarGroup5;
     this.navBarControlQry.Dock = System.Windows.Forms.DockStyle.Fill;
     this.navBarControlQry.ExplorerBarShowGroupButtons = false;
     this.navBarControlQry.Groups.AddRange(new DevExpress.XtraNavBar.NavBarGroup[] {
     this.navBarGroup5});
     this.navBarControlQry.LargeImages = this.imageCollection32;
     this.navBarControlQry.Location = new System.Drawing.Point(0, 0);
     this.navBarControlQry.Name = "navBarControlQry";
     this.navBarControlQry.OptionsNavPane.ExpandedWidth = 192;
     this.navBarControlQry.Size = new System.Drawing.Size(192, 451);
     this.navBarControlQry.SmallImages = this.imageCollection32;
     this.navBarControlQry.StoreDefaultPaintStyleName = true;
     this.navBarControlQry.TabIndex = 9;
     this.navBarControlQry.Text = "navBarControl1";
     //
     // navBarGroup5
     //
     this.navBarGroup5.Caption = "";
     this.navBarGroup5.Expanded = true;
     this.navBarGroup5.LargeImage = ((System.Drawing.Image)(resources.GetObject("navBarGroup5.LargeImage")));
     this.navBarGroup5.Name = "navBarGroup5";
     this.navBarGroup5.NavigationPaneVisible = false;
     this.navBarGroup5.SmallImage = ((System.Drawing.Image)(resources.GetObject("navBarGroup5.SmallImage")));
     //
     // barEditItem1
     //
     this.barEditItem1.Edit = null;
     this.barEditItem1.Id = 17;
     this.barEditItem1.Name = "barEditItem1";
     //
     // repositoryItemComboBoxSkins
     //
     this.repositoryItemComboBoxSkins.AutoHeight = false;
     this.repositoryItemComboBoxSkins.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.repositoryItemComboBoxSkins.Name = "repositoryItemComboBoxSkins";
     //
     // navBarItemEmpXRepEmpDetail
     //
     this.navBarItemEmpXRepEmpDetail.Caption = "بيان حاله";
     this.navBarItemEmpXRepEmpDetail.LargeImageIndex = 4;
     this.navBarItemEmpXRepEmpDetail.Name = "navBarItemEmpXRepEmpDetail";
     this.navBarItemEmpXRepEmpDetail.SmallImageIndex = 4;
     this.navBarItemEmpXRepEmpDetail.LinkClicked += new DevExpress.XtraNavBar.NavBarLinkEventHandler(this.navBarItemEmpXRepEmpDetail_LinkClicked);
     //
     // MainFrm
     //
     this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
     this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
     this.ClientSize = new System.Drawing.Size(984, 662);
     this.Controls.Add(this.panelContainer2);
     this.Controls.Add(this.panelContainer1);
     this.Controls.Add(this.panelContainer3);
     this.Controls.Add(this.barDockControlLeft);
     this.Controls.Add(this.barDockControlRight);
     this.Controls.Add(this.barDockControlBottom);
     this.Controls.Add(this.barDockControlTop);
     this.Icon = ((System.Drawing.Icon)(resources.GetObject("$this.Icon")));
     this.IsMdiContainer = true;
     this.Name = "MainFrm";
     this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen;
     this.Text = "Employee";
     this.FormClosing += new System.Windows.Forms.FormClosingEventHandler(this.MainFrm_FormClosing);
     this.Load += new System.EventHandler(this.MainFrm_Load);
     ((System.ComponentModel.ISupportInitialize)(this.barManagerMain)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemLookUpEditasase_code)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.dockManagerMain)).EndInit();
     this.panelContainer3.ResumeLayout(false);
     this.DPSkins.ResumeLayout(false);
     this.controlContainer6.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.galleryControlSkins)).EndInit();
     this.galleryControlSkins.ResumeLayout(false);
     this.DPResult.ResumeLayout(false);
     this.controlContainer5.ResumeLayout(false);
     this.panelContainer1.ResumeLayout(false);
     this.DPCode.ResumeLayout(false);
     this.dockPanel1_Container.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.navBarControlCode)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.imageCollection32)).EndInit();
     this.DPData.ResumeLayout(false);
     this.controlContainer1.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.navBarControlData)).EndInit();
     this.DPPriv.ResumeLayout(false);
     this.controlContainer4.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.navBarControlPriv)).EndInit();
     this.panelContainer2.ResumeLayout(false);
     this.DPReport.ResumeLayout(false);
     this.controlContainer3.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.navBarControlReport)).EndInit();
     this.DPQuery.ResumeLayout(false);
     this.controlContainer2.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.navBarControlQry)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemComboBoxSkins)).EndInit();
     this.ResumeLayout(false);
 }
Example #36
0
 /// <summary>
 /// Required method for Designer support - do not modify
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     this.components = new System.ComponentModel.Container();
     System.Resources.ResourceManager resources = new System.Resources.ResourceManager(typeof(frmReward));
     this.grpMDLeaveTop = new DevExpress.XtraEditors.GroupControl();
     this.groupControl2 = new DevExpress.XtraEditors.GroupControl();
     this.TabRewards = new DevExpress.XtraTab.XtraTabControl();
     this.tabReward_Issue = new DevExpress.XtraTab.XtraTabPage();
     this.groupControl3 = new DevExpress.XtraEditors.GroupControl();
     this.gridControl1 = new DevExpress.XtraGrid.GridControl();
     this.gridView1 = new DevExpress.XtraGrid.Views.Grid.GridView();
     this.strRewardsCode = new DevExpress.XtraGrid.Columns.GridColumn();
     this.strDescription = new DevExpress.XtraGrid.Columns.GridColumn();
     this.dRewardsPercent = new DevExpress.XtraGrid.Columns.GridColumn();
     this.dRewardsValue = new DevExpress.XtraGrid.Columns.GridColumn();
     this.dtValidStart = new DevExpress.XtraGrid.Columns.GridColumn();
     this.dtValidEnd = new DevExpress.XtraGrid.Columns.GridColumn();
     this.nSalesCategoryID = new DevExpress.XtraGrid.Columns.GridColumn();
     this.lk_LookupSalesCategory = new DevExpress.XtraEditors.Repository.RepositoryItemLookUpEdit();
     this.nTypeID = new DevExpress.XtraGrid.Columns.GridColumn();
     this.Type_ComboBox = new DevExpress.XtraEditors.Repository.RepositoryItemComboBox();
     this.label4 = new System.Windows.Forms.Label();
     this.grpMDRewardBelow = new DevExpress.XtraEditors.GroupControl();
     this.grpMDPromotionBelow2 = new DevExpress.XtraEditors.GroupControl();
     this.gridBranch2 = new DevExpress.XtraGrid.GridControl();
     this.gvBranch2 = new DevExpress.XtraGrid.Views.Grid.GridView();
     this.gridColumn33 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn34 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridBranch = new DevExpress.XtraGrid.GridControl();
     this.gvBranch = new DevExpress.XtraGrid.Views.Grid.GridView();
     this.gridColumn35 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn36 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.btnBranch_Add = new DevExpress.XtraEditors.SimpleButton();
     this.btnBranch_Del = new DevExpress.XtraEditors.SimpleButton();
     this.btnBranch_DelAll = new DevExpress.XtraEditors.SimpleButton();
     this.btnBranch_AddAll = new DevExpress.XtraEditors.SimpleButton();
     this.tabReward_Catalogue = new DevExpress.XtraTab.XtraTabPage();
     this.groupControl4 = new DevExpress.XtraEditors.GroupControl();
     this.gridControl2 = new DevExpress.XtraGrid.GridControl();
     this.gridView2 = 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.lk_LookupRewardItem = new DevExpress.XtraEditors.Repository.RepositoryItemLookUpEdit();
     this.label1 = new System.Windows.Forms.Label();
     this.panelReward = new System.Windows.Forms.Panel();
     this.txtSearch = new DevExpress.XtraEditors.TextEdit();
     this.btn_Search = new DevExpress.XtraEditors.SimpleButton();
     this.btn_Del = new DevExpress.XtraEditors.SimpleButton();
     this.imageList1 = new System.Windows.Forms.ImageList(this.components);
     this.Btn_Add = new DevExpress.XtraEditors.SimpleButton();
     ((System.ComponentModel.ISupportInitialize)(this.grpMDLeaveTop)).BeginInit();
     this.grpMDLeaveTop.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.groupControl2)).BeginInit();
     this.groupControl2.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.TabRewards)).BeginInit();
     this.TabRewards.SuspendLayout();
     this.tabReward_Issue.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.groupControl3)).BeginInit();
     this.groupControl3.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.gridControl1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridView1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.lk_LookupSalesCategory)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.Type_ComboBox)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.grpMDRewardBelow)).BeginInit();
     this.grpMDRewardBelow.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.grpMDPromotionBelow2)).BeginInit();
     this.grpMDPromotionBelow2.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.gridBranch2)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.gvBranch2)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridBranch)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.gvBranch)).BeginInit();
     this.tabReward_Catalogue.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.groupControl4)).BeginInit();
     this.groupControl4.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.gridControl2)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridView2)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.lk_LookupRewardItem)).BeginInit();
     this.panelReward.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.txtSearch.Properties)).BeginInit();
     this.SuspendLayout();
     //
     // grpMDLeaveTop
     //
     this.grpMDLeaveTop.Appearance.BackColor = System.Drawing.Color.White;
     this.grpMDLeaveTop.Appearance.Options.UseBackColor = true;
     this.grpMDLeaveTop.AppearanceCaption.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((System.Byte)(0)));
     this.grpMDLeaveTop.AppearanceCaption.Options.UseFont = true;
     this.grpMDLeaveTop.Controls.Add(this.groupControl2);
     this.grpMDLeaveTop.ImeMode = System.Windows.Forms.ImeMode.On;
     this.grpMDLeaveTop.Location = new System.Drawing.Point(-4, -17);
     this.grpMDLeaveTop.LookAndFeel.Style = DevExpress.LookAndFeel.LookAndFeelStyle.Office2003;
     this.grpMDLeaveTop.LookAndFeel.UseDefaultLookAndFeel = false;
     this.grpMDLeaveTop.LookAndFeel.UseWindowsXPTheme = false;
     this.grpMDLeaveTop.Name = "grpMDLeaveTop";
     this.grpMDLeaveTop.Size = new System.Drawing.Size(804, 505);
     this.grpMDLeaveTop.TabIndex = 90;
     this.grpMDLeaveTop.Text = "MASTER FILE";
     //
     // groupControl2
     //
     this.groupControl2.Appearance.BackColor = System.Drawing.Color.LightGray;
     this.groupControl2.Appearance.Options.UseBackColor = true;
     this.groupControl2.AppearanceCaption.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((System.Byte)(0)));
     this.groupControl2.AppearanceCaption.Options.UseFont = true;
     this.groupControl2.Controls.Add(this.TabRewards);
     this.groupControl2.Controls.Add(this.panelReward);
     this.groupControl2.Controls.Add(this.btn_Del);
     this.groupControl2.Controls.Add(this.Btn_Add);
     this.groupControl2.ImeMode = System.Windows.Forms.ImeMode.On;
     this.groupControl2.Location = new System.Drawing.Point(8, 16);
     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(784, 488);
     this.groupControl2.TabIndex = 139;
     this.groupControl2.Text = "Reward";
     //
     // TabRewards
     //
     this.TabRewards.AppearancePage.Header.Font = new System.Drawing.Font("Tahoma", 9F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((System.Byte)(0)));
     this.TabRewards.AppearancePage.Header.Options.UseFont = true;
     this.TabRewards.Location = new System.Drawing.Point(8, 48);
     this.TabRewards.LookAndFeel.Style = DevExpress.LookAndFeel.LookAndFeelStyle.Skin;
     this.TabRewards.LookAndFeel.UseDefaultLookAndFeel = false;
     this.TabRewards.Name = "TabRewards";
     this.TabRewards.SelectedTabPage = this.tabReward_Issue;
     this.TabRewards.Size = new System.Drawing.Size(800, 440);
     this.TabRewards.TabIndex = 132;
     this.TabRewards.TabPages.AddRange(new DevExpress.XtraTab.XtraTabPage[] {
                                                                                this.tabReward_Issue,
                                                                                this.tabReward_Catalogue});
     this.TabRewards.Text = "xtraTabControl1";
     this.TabRewards.Click += new System.EventHandler(this.grpMDRewardBelow_control);
     //
     // tabReward_Issue
     //
     this.tabReward_Issue.Controls.Add(this.groupControl3);
     this.tabReward_Issue.Controls.Add(this.grpMDRewardBelow);
     this.tabReward_Issue.Name = "tabReward_Issue";
     this.tabReward_Issue.Size = new System.Drawing.Size(791, 409);
     this.tabReward_Issue.Text = "Points Issue";
     //
     // groupControl3
     //
     this.groupControl3.BorderStyle = DevExpress.XtraEditors.Controls.BorderStyles.NoBorder;
     this.groupControl3.Controls.Add(this.gridControl1);
     this.groupControl3.Controls.Add(this.label4);
     this.groupControl3.Location = new System.Drawing.Point(0, 0);
     this.groupControl3.Name = "groupControl3";
     this.groupControl3.Size = new System.Drawing.Size(760, 200);
     this.groupControl3.TabIndex = 88;
     this.groupControl3.Text = "groupControl1";
     //
     // gridControl1
     //
     this.gridControl1.Dock = System.Windows.Forms.DockStyle.Top;
     //
     // gridControl1.EmbeddedNavigator
     //
     this.gridControl1.EmbeddedNavigator.Name = "";
     this.gridControl1.Location = new System.Drawing.Point(0, 0);
     this.gridControl1.LookAndFeel.Style = DevExpress.LookAndFeel.LookAndFeelStyle.Skin;
     this.gridControl1.LookAndFeel.UseDefaultLookAndFeel = false;
     this.gridControl1.MainView = this.gridView1;
     this.gridControl1.Name = "gridControl1";
     this.gridControl1.RepositoryItems.AddRange(new DevExpress.XtraEditors.Repository.RepositoryItem[] {
                                                                                                           this.Type_ComboBox,
                                                                                                           this.lk_LookupSalesCategory});
     this.gridControl1.Size = new System.Drawing.Size(760, 188);
     this.gridControl1.TabIndex = 31;
     this.gridControl1.ViewCollection.AddRange(new DevExpress.XtraGrid.Views.Base.BaseView[] {
                                                                                                 this.gridView1});
     //
     // gridView1
     //
     this.gridView1.Columns.AddRange(new DevExpress.XtraGrid.Columns.GridColumn[] {
                                                                                      this.strRewardsCode,
                                                                                      this.strDescription,
                                                                                      this.dRewardsPercent,
                                                                                      this.dRewardsValue,
                                                                                      this.dtValidStart,
                                                                                      this.dtValidEnd,
                                                                                      this.nSalesCategoryID,
                                                                                      this.nTypeID});
     this.gridView1.GridControl = this.gridControl1;
     this.gridView1.Name = "gridView1";
     this.gridView1.OptionsCustomization.AllowFilter = false;
     this.gridView1.OptionsCustomization.AllowSort = false;
     this.gridView1.OptionsView.ShowGroupPanel = false;
     this.gridView1.FocusedRowChanged += new DevExpress.XtraGrid.Views.Base.FocusedRowChangedEventHandler(this.gridView1_FocusedRowChanged);
     this.gridView1.LostFocus += new System.EventHandler(this.gridView1_LostFocus);
     //
     // strRewardsCode
     //
     this.strRewardsCode.Caption = "Reward";
     this.strRewardsCode.FieldName = "strRewardsCode";
     this.strRewardsCode.Name = "strRewardsCode";
     this.strRewardsCode.Visible = true;
     this.strRewardsCode.VisibleIndex = 0;
     this.strRewardsCode.Width = 87;
     //
     // strDescription
     //
     this.strDescription.Caption = "Description";
     this.strDescription.FieldName = "strDescription";
     this.strDescription.Name = "strDescription";
     this.strDescription.Visible = true;
     this.strDescription.VisibleIndex = 1;
     this.strDescription.Width = 247;
     //
     // dRewardsPercent
     //
     this.dRewardsPercent.Caption = "Percent";
     this.dRewardsPercent.FieldName = "dRewardsPercent";
     this.dRewardsPercent.GroupFormat.FormatType = DevExpress.Utils.FormatType.Numeric;
     this.dRewardsPercent.Name = "dRewardsPercent";
     this.dRewardsPercent.Visible = true;
     this.dRewardsPercent.VisibleIndex = 2;
     this.dRewardsPercent.Width = 72;
     //
     // dRewardsValue
     //
     this.dRewardsValue.Caption = "Value";
     this.dRewardsValue.FieldName = "dRewardsValue";
     this.dRewardsValue.GroupFormat.FormatType = DevExpress.Utils.FormatType.Numeric;
     this.dRewardsValue.Name = "dRewardsValue";
     this.dRewardsValue.Visible = true;
     this.dRewardsValue.VisibleIndex = 3;
     this.dRewardsValue.Width = 60;
     //
     // dtValidStart
     //
     this.dtValidStart.Caption = "Start Date";
     this.dtValidStart.DisplayFormat.FormatString = "dd/MM/yyyy";
     this.dtValidStart.DisplayFormat.FormatType = DevExpress.Utils.FormatType.DateTime;
     this.dtValidStart.FieldName = "dtValidStart";
     this.dtValidStart.Name = "dtValidStart";
     this.dtValidStart.Visible = true;
     this.dtValidStart.VisibleIndex = 4;
     this.dtValidStart.Width = 87;
     //
     // dtValidEnd
     //
     this.dtValidEnd.Caption = "End Date";
     this.dtValidEnd.DisplayFormat.FormatString = "dd/MM/yyyy";
     this.dtValidEnd.DisplayFormat.FormatType = DevExpress.Utils.FormatType.DateTime;
     this.dtValidEnd.FieldName = "dtValidEnd";
     this.dtValidEnd.Name = "dtValidEnd";
     this.dtValidEnd.Visible = true;
     this.dtValidEnd.VisibleIndex = 5;
     this.dtValidEnd.Width = 64;
     //
     // nSalesCategoryID
     //
     this.nSalesCategoryID.Caption = "Sales Category";
     this.nSalesCategoryID.ColumnEdit = this.lk_LookupSalesCategory;
     this.nSalesCategoryID.DisplayFormat.FormatType = DevExpress.Utils.FormatType.Numeric;
     this.nSalesCategoryID.FieldName = "nSalesCategoryID";
     this.nSalesCategoryID.Name = "nSalesCategoryID";
     this.nSalesCategoryID.Visible = true;
     this.nSalesCategoryID.VisibleIndex = 6;
     this.nSalesCategoryID.Width = 78;
     //
     // lk_LookupSalesCategory
     //
     this.lk_LookupSalesCategory.AutoHeight = false;
     this.lk_LookupSalesCategory.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
                                                                                                         new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.lk_LookupSalesCategory.Name = "lk_LookupSalesCategory";
     //
     // nTypeID
     //
     this.nTypeID.Caption = "Type";
     this.nTypeID.ColumnEdit = this.Type_ComboBox;
     this.nTypeID.FieldName = "nTypeID";
     this.nTypeID.Name = "nTypeID";
     this.nTypeID.Visible = true;
     this.nTypeID.VisibleIndex = 7;
     this.nTypeID.Width = 51;
     //
     // Type_ComboBox
     //
     this.Type_ComboBox.AutoHeight = false;
     this.Type_ComboBox.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
                                                                                                new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.Type_ComboBox.Items.AddRange(new object[] {
                                                        "0 ",
                                                        "1"});
     this.Type_ComboBox.Name = "Type_ComboBox";
     //
     // label4
     //
     this.label4.Location = new System.Drawing.Point(-116, -24);
     this.label4.Name = "label4";
     this.label4.Size = new System.Drawing.Size(86, 34);
     this.label4.TabIndex = 30;
     this.label4.Text = "Package Branch";
     //
     // grpMDRewardBelow
     //
     this.grpMDRewardBelow.Controls.Add(this.grpMDPromotionBelow2);
     this.grpMDRewardBelow.Location = new System.Drawing.Point(0, 200);
     this.grpMDRewardBelow.LookAndFeel.Style = DevExpress.LookAndFeel.LookAndFeelStyle.Office2003;
     this.grpMDRewardBelow.LookAndFeel.UseDefaultLookAndFeel = false;
     this.grpMDRewardBelow.LookAndFeel.UseWindowsXPTheme = false;
     this.grpMDRewardBelow.Name = "grpMDRewardBelow";
     this.grpMDRewardBelow.Size = new System.Drawing.Size(784, 208);
     this.grpMDRewardBelow.TabIndex = 144;
     this.grpMDRewardBelow.Text = "Branch Reward";
     //
     // grpMDPromotionBelow2
     //
     this.grpMDPromotionBelow2.BorderStyle = DevExpress.XtraEditors.Controls.BorderStyles.Simple;
     this.grpMDPromotionBelow2.Controls.Add(this.gridBranch2);
     this.grpMDPromotionBelow2.Controls.Add(this.gridBranch);
     this.grpMDPromotionBelow2.Controls.Add(this.btnBranch_Add);
     this.grpMDPromotionBelow2.Controls.Add(this.btnBranch_Del);
     this.grpMDPromotionBelow2.Controls.Add(this.btnBranch_DelAll);
     this.grpMDPromotionBelow2.Controls.Add(this.btnBranch_AddAll);
     this.grpMDPromotionBelow2.Location = new System.Drawing.Point(8, 24);
     this.grpMDPromotionBelow2.LookAndFeel.Style = DevExpress.LookAndFeel.LookAndFeelStyle.Skin;
     this.grpMDPromotionBelow2.LookAndFeel.UseDefaultLookAndFeel = false;
     this.grpMDPromotionBelow2.Name = "grpMDPromotionBelow2";
     this.grpMDPromotionBelow2.ShowCaption = false;
     this.grpMDPromotionBelow2.Size = new System.Drawing.Size(896, 224);
     this.grpMDPromotionBelow2.TabIndex = 6;
     this.grpMDPromotionBelow2.Text = "groupControl1";
     //
     // gridBranch2
     //
     //
     // gridBranch2.EmbeddedNavigator
     //
     this.gridBranch2.EmbeddedNavigator.Name = "";
     this.gridBranch2.Location = new System.Drawing.Point(416, 8);
     this.gridBranch2.MainView = this.gvBranch2;
     this.gridBranch2.Name = "gridBranch2";
     this.gridBranch2.Size = new System.Drawing.Size(336, 176);
     this.gridBranch2.TabIndex = 29;
     this.gridBranch2.ViewCollection.AddRange(new DevExpress.XtraGrid.Views.Base.BaseView[] {
                                                                                                this.gvBranch2});
     //
     // gvBranch2
     //
     this.gvBranch2.Columns.AddRange(new DevExpress.XtraGrid.Columns.GridColumn[] {
                                                                                      this.gridColumn33,
                                                                                      this.gridColumn34});
     this.gvBranch2.GridControl = this.gridBranch2;
     this.gvBranch2.Name = "gvBranch2";
     this.gvBranch2.OptionsBehavior.AllowIncrementalSearch = true;
     this.gvBranch2.OptionsBehavior.Editable = false;
     this.gvBranch2.OptionsCustomization.AllowFilter = false;
     this.gvBranch2.OptionsSelection.MultiSelect = true;
     this.gvBranch2.OptionsView.ShowGroupPanel = false;
     this.gvBranch2.SortInfo.AddRange(new DevExpress.XtraGrid.Columns.GridColumnSortInfo[] {
                                                                                               new DevExpress.XtraGrid.Columns.GridColumnSortInfo(this.gridColumn33, DevExpress.Data.ColumnSortOrder.Ascending)});
     //
     // gridColumn33
     //
     this.gridColumn33.Caption = "Branch";
     this.gridColumn33.FieldName = "strBranchCode";
     this.gridColumn33.Name = "gridColumn33";
     this.gridColumn33.Visible = true;
     this.gridColumn33.VisibleIndex = 0;
     this.gridColumn33.Width = 107;
     //
     // gridColumn34
     //
     this.gridColumn34.Caption = "Branch Name";
     this.gridColumn34.FieldName = "strBranchName";
     this.gridColumn34.Name = "gridColumn34";
     this.gridColumn34.Visible = true;
     this.gridColumn34.VisibleIndex = 1;
     this.gridColumn34.Width = 231;
     //
     // gridBranch
     //
     //
     // gridBranch.EmbeddedNavigator
     //
     this.gridBranch.EmbeddedNavigator.Name = "";
     this.gridBranch.Location = new System.Drawing.Point(8, 8);
     this.gridBranch.MainView = this.gvBranch;
     this.gridBranch.Name = "gridBranch";
     this.gridBranch.Size = new System.Drawing.Size(360, 176);
     this.gridBranch.TabIndex = 24;
     this.gridBranch.ViewCollection.AddRange(new DevExpress.XtraGrid.Views.Base.BaseView[] {
                                                                                               this.gvBranch});
     //
     // gvBranch
     //
     this.gvBranch.Columns.AddRange(new DevExpress.XtraGrid.Columns.GridColumn[] {
                                                                                     this.gridColumn35,
                                                                                     this.gridColumn36});
     this.gvBranch.GridControl = this.gridBranch;
     this.gvBranch.Name = "gvBranch";
     this.gvBranch.OptionsBehavior.AllowIncrementalSearch = true;
     this.gvBranch.OptionsBehavior.Editable = false;
     this.gvBranch.OptionsCustomization.AllowFilter = false;
     this.gvBranch.OptionsSelection.MultiSelect = true;
     this.gvBranch.OptionsView.ShowGroupPanel = false;
     this.gvBranch.SortInfo.AddRange(new DevExpress.XtraGrid.Columns.GridColumnSortInfo[] {
                                                                                              new DevExpress.XtraGrid.Columns.GridColumnSortInfo(this.gridColumn35, DevExpress.Data.ColumnSortOrder.Ascending)});
     //
     // gridColumn35
     //
     this.gridColumn35.Caption = "Branch";
     this.gridColumn35.FieldName = "strBranchCode";
     this.gridColumn35.Name = "gridColumn35";
     this.gridColumn35.Visible = true;
     this.gridColumn35.VisibleIndex = 0;
     this.gridColumn35.Width = 105;
     //
     // gridColumn36
     //
     this.gridColumn36.Caption = "Branch Name";
     this.gridColumn36.FieldName = "strBranchName";
     this.gridColumn36.Name = "gridColumn36";
     this.gridColumn36.Visible = true;
     this.gridColumn36.VisibleIndex = 1;
     this.gridColumn36.Width = 241;
     //
     // btnBranch_Add
     //
     this.btnBranch_Add.ButtonStyle = DevExpress.XtraEditors.Controls.BorderStyles.Simple;
     this.btnBranch_Add.Location = new System.Drawing.Point(376, 32);
     this.btnBranch_Add.Name = "btnBranch_Add";
     this.btnBranch_Add.Size = new System.Drawing.Size(32, 24);
     this.btnBranch_Add.TabIndex = 25;
     this.btnBranch_Add.Text = ">";
     this.btnBranch_Add.Click += new System.EventHandler(this.btnBranch_Add_Click);
     //
     // btnBranch_Del
     //
     this.btnBranch_Del.ButtonStyle = DevExpress.XtraEditors.Controls.BorderStyles.Simple;
     this.btnBranch_Del.Location = new System.Drawing.Point(376, 128);
     this.btnBranch_Del.Name = "btnBranch_Del";
     this.btnBranch_Del.Size = new System.Drawing.Size(32, 24);
     this.btnBranch_Del.TabIndex = 28;
     this.btnBranch_Del.Text = "<";
     this.btnBranch_Del.Click += new System.EventHandler(this.btnBranch_Del_Click);
     //
     // btnBranch_DelAll
     //
     this.btnBranch_DelAll.ButtonStyle = DevExpress.XtraEditors.Controls.BorderStyles.Simple;
     this.btnBranch_DelAll.Location = new System.Drawing.Point(376, 64);
     this.btnBranch_DelAll.Name = "btnBranch_DelAll";
     this.btnBranch_DelAll.Size = new System.Drawing.Size(32, 24);
     this.btnBranch_DelAll.TabIndex = 27;
     this.btnBranch_DelAll.Text = "<<";
     this.btnBranch_DelAll.Click += new System.EventHandler(this.btnBranch_DelAll_Click);
     //
     // btnBranch_AddAll
     //
     this.btnBranch_AddAll.ButtonStyle = DevExpress.XtraEditors.Controls.BorderStyles.Simple;
     this.btnBranch_AddAll.Location = new System.Drawing.Point(376, 96);
     this.btnBranch_AddAll.Name = "btnBranch_AddAll";
     this.btnBranch_AddAll.Size = new System.Drawing.Size(32, 24);
     this.btnBranch_AddAll.TabIndex = 26;
     this.btnBranch_AddAll.Text = ">>";
     this.btnBranch_AddAll.Click += new System.EventHandler(this.btnBranch_AddAll_Click);
     //
     // tabReward_Catalogue
     //
     this.tabReward_Catalogue.Controls.Add(this.groupControl4);
     this.tabReward_Catalogue.Name = "tabReward_Catalogue";
     this.tabReward_Catalogue.Size = new System.Drawing.Size(791, 409);
     this.tabReward_Catalogue.Text = "Catalogue";
     //
     // groupControl4
     //
     this.groupControl4.BorderStyle = DevExpress.XtraEditors.Controls.BorderStyles.NoBorder;
     this.groupControl4.Controls.Add(this.gridControl2);
     this.groupControl4.Controls.Add(this.label1);
     this.groupControl4.Location = new System.Drawing.Point(0, 0);
     this.groupControl4.Name = "groupControl4";
     this.groupControl4.Size = new System.Drawing.Size(768, 408);
     this.groupControl4.TabIndex = 89;
     this.groupControl4.Text = "groupControl1";
     //
     // gridControl2
     //
     this.gridControl2.Dock = System.Windows.Forms.DockStyle.Top;
     //
     // gridControl2.EmbeddedNavigator
     //
     this.gridControl2.EmbeddedNavigator.Name = "";
     this.gridControl2.Location = new System.Drawing.Point(0, 0);
     this.gridControl2.LookAndFeel.Style = DevExpress.LookAndFeel.LookAndFeelStyle.Skin;
     this.gridControl2.LookAndFeel.UseDefaultLookAndFeel = false;
     this.gridControl2.MainView = this.gridView2;
     this.gridControl2.Name = "gridControl2";
     this.gridControl2.RepositoryItems.AddRange(new DevExpress.XtraEditors.Repository.RepositoryItem[] {
                                                                                                           this.lk_LookupRewardItem});
     this.gridControl2.Size = new System.Drawing.Size(768, 408);
     this.gridControl2.TabIndex = 31;
     this.gridControl2.ViewCollection.AddRange(new DevExpress.XtraGrid.Views.Base.BaseView[] {
                                                                                                 this.gridView2});
     this.gridControl2.DoubleClick += new System.EventHandler(this.gridView2_DoubleClick);
     //
     // gridView2
     //
     this.gridView2.Columns.AddRange(new DevExpress.XtraGrid.Columns.GridColumn[] {
                                                                                      this.gridColumn1,
                                                                                      this.gridColumn2,
                                                                                      this.gridColumn3,
                                                                                      this.gridColumn5,
                                                                                      this.gridColumn6});
     this.gridView2.GridControl = this.gridControl2;
     this.gridView2.Name = "gridView2";
     this.gridView2.OptionsBehavior.Editable = false;
     this.gridView2.OptionsCustomization.AllowFilter = false;
     this.gridView2.OptionsCustomization.AllowSort = false;
     this.gridView2.OptionsView.ShowGroupPanel = false;
     //
     // gridColumn1
     //
     this.gridColumn1.Caption = "Item";
     this.gridColumn1.FieldName = "strItemCode";
     this.gridColumn1.Name = "gridColumn1";
     this.gridColumn1.Visible = true;
     this.gridColumn1.VisibleIndex = 0;
     this.gridColumn1.Width = 70;
     //
     // gridColumn2
     //
     this.gridColumn2.Caption = "Description";
     this.gridColumn2.FieldName = "strDescription";
     this.gridColumn2.Name = "gridColumn2";
     this.gridColumn2.Visible = true;
     this.gridColumn2.VisibleIndex = 1;
     this.gridColumn2.Width = 361;
     //
     // gridColumn3
     //
     this.gridColumn3.Caption = "Points";
     this.gridColumn3.FieldName = "dRewardsPoints";
     this.gridColumn3.GroupFormat.FormatType = DevExpress.Utils.FormatType.Numeric;
     this.gridColumn3.Name = "gridColumn3";
     this.gridColumn3.Visible = true;
     this.gridColumn3.VisibleIndex = 2;
     this.gridColumn3.Width = 89;
     //
     // gridColumn5
     //
     this.gridColumn5.Caption = "Start Date";
     this.gridColumn5.DisplayFormat.FormatString = "dd/MM/yyyy";
     this.gridColumn5.DisplayFormat.FormatType = DevExpress.Utils.FormatType.DateTime;
     this.gridColumn5.FieldName = "dtValidStart";
     this.gridColumn5.Name = "gridColumn5";
     this.gridColumn5.Visible = true;
     this.gridColumn5.VisibleIndex = 3;
     this.gridColumn5.Width = 114;
     //
     // gridColumn6
     //
     this.gridColumn6.Caption = "End Date";
     this.gridColumn6.DisplayFormat.FormatString = "dd/MM/yyyy";
     this.gridColumn6.DisplayFormat.FormatType = DevExpress.Utils.FormatType.DateTime;
     this.gridColumn6.FieldName = "dtValidEnd";
     this.gridColumn6.Name = "gridColumn6";
     this.gridColumn6.Visible = true;
     this.gridColumn6.VisibleIndex = 4;
     this.gridColumn6.Width = 104;
     //
     // lk_LookupRewardItem
     //
     this.lk_LookupRewardItem.AutoHeight = false;
     this.lk_LookupRewardItem.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
                                                                                                      new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.lk_LookupRewardItem.Name = "lk_LookupRewardItem";
     //
     // label1
     //
     this.label1.Location = new System.Drawing.Point(-116, -24);
     this.label1.Name = "label1";
     this.label1.Size = new System.Drawing.Size(86, 34);
     this.label1.TabIndex = 30;
     this.label1.Text = "Package Branch";
     //
     // panelReward
     //
     this.panelReward.Controls.Add(this.txtSearch);
     this.panelReward.Controls.Add(this.btn_Search);
     this.panelReward.Location = new System.Drawing.Point(376, 16);
     this.panelReward.Name = "panelReward";
     this.panelReward.Size = new System.Drawing.Size(408, 32);
     this.panelReward.TabIndex = 146;
     //
     // txtSearch
     //
     this.txtSearch.EditValue = "";
     this.txtSearch.Location = new System.Drawing.Point(104, 8);
     this.txtSearch.Name = "txtSearch";
     //
     // txtSearch.Properties
     //
     this.txtSearch.Properties.Appearance.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((System.Byte)(0)));
     this.txtSearch.Properties.Appearance.Options.UseFont = true;
     this.txtSearch.Properties.LookAndFeel.Style = DevExpress.LookAndFeel.LookAndFeelStyle.Skin;
     this.txtSearch.Properties.LookAndFeel.UseDefaultLookAndFeel = false;
     this.txtSearch.Size = new System.Drawing.Size(176, 20);
     this.txtSearch.TabIndex = 144;
     this.txtSearch.KeyDown += new System.Windows.Forms.KeyEventHandler(this.txtSearch_KeyDown);
     //
     // btn_Search
     //
     this.btn_Search.Appearance.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold);
     this.btn_Search.Appearance.Options.UseFont = true;
     this.btn_Search.ButtonStyle = DevExpress.XtraEditors.Controls.BorderStyles.Simple;
     this.btn_Search.Location = new System.Drawing.Point(304, 8);
     this.btn_Search.Name = "btn_Search";
     this.btn_Search.Size = new System.Drawing.Size(56, 20);
     this.btn_Search.TabIndex = 145;
     this.btn_Search.Text = "Search";
     this.btn_Search.Click += new System.EventHandler(this.btn_Search_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 = 142;
     this.btn_Del.Click += new System.EventHandler(this.btn_Del_Click);
     //
     // imageList1
     //
     this.imageList1.ColorDepth = System.Windows.Forms.ColorDepth.Depth24Bit;
     this.imageList1.ImageSize = new System.Drawing.Size(16, 16);
     this.imageList1.ImageStream = ((System.Windows.Forms.ImageListStreamer)(resources.GetObject("imageList1.ImageStream")));
     this.imageList1.TransparentColor = System.Drawing.Color.Magenta;
     //
     // Btn_Add
     //
     this.Btn_Add.Appearance.Font = new System.Drawing.Font("Tahoma", 14.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((System.Byte)(0)));
     this.Btn_Add.Appearance.Options.UseFont = true;
     this.Btn_Add.Appearance.Options.UseTextOptions = true;
     this.Btn_Add.Appearance.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.Btn_Add.Appearance.TextOptions.VAlignment = DevExpress.Utils.VertAlignment.Top;
     this.Btn_Add.Appearance.TextOptions.WordWrap = DevExpress.Utils.WordWrap.Wrap;
     this.Btn_Add.ImageIndex = 0;
     this.Btn_Add.ImageList = this.imageList1;
     this.Btn_Add.ImeMode = System.Windows.Forms.ImeMode.On;
     this.Btn_Add.Location = new System.Drawing.Point(8, 24);
     this.Btn_Add.Name = "Btn_Add";
     this.Btn_Add.Size = new System.Drawing.Size(38, 16);
     this.Btn_Add.TabIndex = 143;
     this.Btn_Add.Click += new System.EventHandler(this.btn_Add_Click);
     //
     // frmReward
     //
     this.AutoScaleBaseSize = new System.Drawing.Size(5, 13);
     this.ClientSize = new System.Drawing.Size(808, 496);
     this.Controls.Add(this.grpMDLeaveTop);
     this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.None;
     this.Name = "frmReward";
     this.Text = "Reward";
     this.Load += new System.EventHandler(this.frmReward_Load);
     ((System.ComponentModel.ISupportInitialize)(this.grpMDLeaveTop)).EndInit();
     this.grpMDLeaveTop.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.groupControl2)).EndInit();
     this.groupControl2.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.TabRewards)).EndInit();
     this.TabRewards.ResumeLayout(false);
     this.tabReward_Issue.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.groupControl3)).EndInit();
     this.groupControl3.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.gridControl1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridView1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.lk_LookupSalesCategory)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.Type_ComboBox)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.grpMDRewardBelow)).EndInit();
     this.grpMDRewardBelow.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.grpMDPromotionBelow2)).EndInit();
     this.grpMDPromotionBelow2.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.gridBranch2)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.gvBranch2)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridBranch)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.gvBranch)).EndInit();
     this.tabReward_Catalogue.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.groupControl4)).EndInit();
     this.groupControl4.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.gridControl2)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridView2)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.lk_LookupRewardItem)).EndInit();
     this.panelReward.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.txtSearch.Properties)).EndInit();
     this.ResumeLayout(false);
 }
Example #37
0
        /// <summary>
        /// 初始化列,
        /// </summary>
        public void InitColumns() {
            //foreach (GridColumn c in gridView1.Columns)
            //{
            //    c.Visible = false;
            //}
            gridView1.Columns["c2"].Visible = false;
            gridView1.Columns["sxcol"].OptionsColumn.AllowEdit = false;
            int m = 1;
            //sxcol(属性列)、sxname(属性名)、isuse(是否显示)、isdel(是否可删除)、isedit(是否可修改)
            DevExpress.XtraEditors.Repository.RepositoryItemComboBox cbox = new DevExpress.XtraEditors.Repository.RepositoryItemComboBox();
            cbox.Items.Add("是");
            cbox.Items.Add("否");
            gridView1.Columns["isuse"].ColumnEdit = cbox;
            gridView1.Columns["isdel"].ColumnEdit = cbox;
            gridView1.Columns["isedit"].ColumnEdit = cbox;

            cbox = new DevExpress.XtraEditors.Repository.RepositoryItemComboBox();
            cbox.Items.Add("文本");
            cbox.Items.Add("下拉列表");
            cbox.Items.Add("日期");
            cbox.Items.Add("整数");
            cbox.Items.Add("小数");
            gridView1.Columns["ctype"].ColumnEdit = cbox;
            cbox = new DevExpress.XtraEditors.Repository.RepositoryItemComboBox();
            cbox.Items.Add("查询");
            cbox.Items.Add("数组(分隔符'|')");
            gridView1.Columns["inittype"].ColumnEdit = cbox;
        }
 /// <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(MainFrm));
     this.barManagerMain = new DevExpress.XtraBars.BarManager(this.components);
     this.barUp = new DevExpress.XtraBars.Bar();
     this.barSubItemFile = new DevExpress.XtraBars.BarSubItem();
     this.mbConnection = new DevExpress.XtraBars.BarButtonItem();
     this.mbExit = new DevExpress.XtraBars.BarButtonItem();
     this.barSubItemView = new DevExpress.XtraBars.BarSubItem();
     this.mbCode = new DevExpress.XtraBars.BarButtonItem();
     this.mbData = new DevExpress.XtraBars.BarButtonItem();
     this.mbQuery = new DevExpress.XtraBars.BarButtonItem();
     this.mbReport = new DevExpress.XtraBars.BarButtonItem();
     this.mbPriv = new DevExpress.XtraBars.BarButtonItem();
     this.mbResult = new DevExpress.XtraBars.BarButtonItem();
     this.mbSkins = new DevExpress.XtraBars.BarButtonItem();
     this.barSubItemWindows = new DevExpress.XtraBars.BarSubItem();
     this.mbcascade = new DevExpress.XtraBars.BarButtonItem();
     this.mbtileVertical = new DevExpress.XtraBars.BarButtonItem();
     this.mbtileHorizontal = new DevExpress.XtraBars.BarButtonItem();
     this.mbcloseAll = new DevExpress.XtraBars.BarButtonItem();
     this.barSubItemHelp = new DevExpress.XtraBars.BarSubItem();
     this.mbIndex = new DevExpress.XtraBars.BarButtonItem();
     this.mbAboutUs = new DevExpress.XtraBars.BarButtonItem();
     this.barDown = new DevExpress.XtraBars.Bar();
     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.dockManagerMain = new DevExpress.XtraBars.Docking.DockManager(this.components);
     this.DPSkins = new DevExpress.XtraBars.Docking.DockPanel();
     this.controlContainer6 = new DevExpress.XtraBars.Docking.ControlContainer();
     this.galleryControlSkins = new DevExpress.XtraBars.Ribbon.GalleryControl();
     this.galleryControlClient1 = new DevExpress.XtraBars.Ribbon.GalleryControlClient();
     this.DPResult = new DevExpress.XtraBars.Docking.DockPanel();
     this.controlContainer5 = new DevExpress.XtraBars.Docking.ControlContainer();
     this.Logging = new System.Windows.Forms.RichTextBox();
     this.DPPriv = new DevExpress.XtraBars.Docking.DockPanel();
     this.controlContainer4 = new DevExpress.XtraBars.Docking.ControlContainer();
     this.navBarControlPriv = new DevExpress.XtraNavBar.NavBarControl();
     this.navBarGroup3 = new DevExpress.XtraNavBar.NavBarGroup();
     this.navBarItemTimeRoles = new DevExpress.XtraNavBar.NavBarItem();
     this.navBarItemTimeRoleDetial = new DevExpress.XtraNavBar.NavBarItem();
     this.navBarItemTimeUsers = new DevExpress.XtraNavBar.NavBarItem();
     this.navBarItemTimeUserRoles = new DevExpress.XtraNavBar.NavBarItem();
     this.navBarItemTimeAppOptions = new DevExpress.XtraNavBar.NavBarItem();
     this.imageCollection32 = new DevExpress.Utils.ImageCollection(this.components);
     this.panelContainer1 = new DevExpress.XtraBars.Docking.DockPanel();
     this.DPData = new DevExpress.XtraBars.Docking.DockPanel();
     this.controlContainer1 = new DevExpress.XtraBars.Docking.ControlContainer();
     this.navBarControlData = new DevExpress.XtraNavBar.NavBarControl();
     this.navBarGroup2 = new DevExpress.XtraNavBar.NavBarGroup();
     this.navBarItemServiceQueryTBLWared = new DevExpress.XtraNavBar.NavBarItem();
     this.DPCode = new DevExpress.XtraBars.Docking.DockPanel();
     this.dockPanel1_Container = new DevExpress.XtraBars.Docking.ControlContainer();
     this.navBarControlCode = new DevExpress.XtraNavBar.NavBarControl();
     this.navBarGroup1 = new DevExpress.XtraNavBar.NavBarGroup();
     this.navBarItemServiceQueryCDEdara = new DevExpress.XtraNavBar.NavBarItem();
     this.navBarItemServiceQueryCDserviceType = new DevExpress.XtraNavBar.NavBarItem();
     this.navBarItemServiceQueryCDReply = new DevExpress.XtraNavBar.NavBarItem();
     this.navBarItemServiceQueryCDSyndicate = new DevExpress.XtraNavBar.NavBarItem();
     this.navBarItemServiceQueryCDSubCommitte = new DevExpress.XtraNavBar.NavBarItem();
     this.navBarItemServiceQueryCDAttatech = new DevExpress.XtraNavBar.NavBarItem();
     this.DPQuery = new DevExpress.XtraBars.Docking.DockPanel();
     this.controlContainer2 = new DevExpress.XtraBars.Docking.ControlContainer();
     this.navBarControlQry = new DevExpress.XtraNavBar.NavBarControl();
     this.navBarGroup5 = new DevExpress.XtraNavBar.NavBarGroup();
     this.DPReport = new DevExpress.XtraBars.Docking.DockPanel();
     this.controlContainer3 = new DevExpress.XtraBars.Docking.ControlContainer();
     this.navBarControlReport = new DevExpress.XtraNavBar.NavBarControl();
     this.navBarGroup6 = new DevExpress.XtraNavBar.NavBarGroup();
     this.navBarItemTimeDeployRpt = new DevExpress.XtraNavBar.NavBarItem();
     this.navBarGroup4 = new DevExpress.XtraNavBar.NavBarGroup();
     this.navBarGroup7 = new DevExpress.XtraNavBar.NavBarGroup();
     this.navBarGroup8 = new DevExpress.XtraNavBar.NavBarGroup();
     this.navBarGroup9 = new DevExpress.XtraNavBar.NavBarGroup();
     this.barEditItem1 = new DevExpress.XtraBars.BarEditItem();
     this.repositoryItemComboBoxSkins = new DevExpress.XtraEditors.Repository.RepositoryItemComboBox();
     this.repositoryItemLookUpEditasase_code = new DevExpress.XtraEditors.Repository.RepositoryItemLookUpEdit();
     ((System.ComponentModel.ISupportInitialize)(this.barManagerMain)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.dockManagerMain)).BeginInit();
     this.DPSkins.SuspendLayout();
     this.controlContainer6.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.galleryControlSkins)).BeginInit();
     this.galleryControlSkins.SuspendLayout();
     this.DPResult.SuspendLayout();
     this.controlContainer5.SuspendLayout();
     this.DPPriv.SuspendLayout();
     this.controlContainer4.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.navBarControlPriv)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.imageCollection32)).BeginInit();
     this.panelContainer1.SuspendLayout();
     this.DPData.SuspendLayout();
     this.controlContainer1.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.navBarControlData)).BeginInit();
     this.DPCode.SuspendLayout();
     this.dockPanel1_Container.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.navBarControlCode)).BeginInit();
     this.DPQuery.SuspendLayout();
     this.controlContainer2.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.navBarControlQry)).BeginInit();
     this.DPReport.SuspendLayout();
     this.controlContainer3.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.navBarControlReport)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemComboBoxSkins)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemLookUpEditasase_code)).BeginInit();
     this.SuspendLayout();
     //
     // barManagerMain
     //
     this.barManagerMain.Bars.AddRange(new DevExpress.XtraBars.Bar[] {
     this.barUp,
     this.barDown});
     this.barManagerMain.DockControls.Add(this.barDockControlTop);
     this.barManagerMain.DockControls.Add(this.barDockControlBottom);
     this.barManagerMain.DockControls.Add(this.barDockControlLeft);
     this.barManagerMain.DockControls.Add(this.barDockControlRight);
     this.barManagerMain.DockManager = this.dockManagerMain;
     this.barManagerMain.Form = this;
     this.barManagerMain.Items.AddRange(new DevExpress.XtraBars.BarItem[] {
     this.barSubItemFile,
     this.barSubItemView,
     this.barSubItemHelp,
     this.mbConnection,
     this.mbExit,
     this.mbCode,
     this.mbData,
     this.mbQuery,
     this.mbReport,
     this.mbPriv,
     this.mbAboutUs,
     this.mbIndex,
     this.barEditItem1,
     this.mbResult,
     this.mbSkins,
     this.barSubItemWindows,
     this.mbcascade,
     this.mbtileVertical,
     this.mbtileHorizontal,
     this.mbcloseAll});
     this.barManagerMain.MainMenu = this.barUp;
     this.barManagerMain.MaxItemId = 28;
     this.barManagerMain.RepositoryItems.AddRange(new DevExpress.XtraEditors.Repository.RepositoryItem[] {
     this.repositoryItemComboBoxSkins,
     this.repositoryItemLookUpEditasase_code});
     this.barManagerMain.StatusBar = this.barDown;
     this.barManagerMain.TransparentEditors = true;
     //
     // barUp
     //
     this.barUp.BarName = "Main menu";
     this.barUp.DockCol = 0;
     this.barUp.DockRow = 0;
     this.barUp.DockStyle = DevExpress.XtraBars.BarDockStyle.Top;
     this.barUp.LinksPersistInfo.AddRange(new DevExpress.XtraBars.LinkPersistInfo[] {
     new DevExpress.XtraBars.LinkPersistInfo(this.barSubItemFile),
     new DevExpress.XtraBars.LinkPersistInfo(this.barSubItemView),
     new DevExpress.XtraBars.LinkPersistInfo(this.barSubItemWindows),
     new DevExpress.XtraBars.LinkPersistInfo(this.barSubItemHelp)});
     this.barUp.OptionsBar.MultiLine = true;
     this.barUp.OptionsBar.UseWholeRow = true;
     this.barUp.Text = "Main menu";
     //
     // barSubItemFile
     //
     this.barSubItemFile.Caption = "ملف";
     this.barSubItemFile.Glyph = ((System.Drawing.Image)(resources.GetObject("barSubItemFile.Glyph")));
     this.barSubItemFile.Id = 0;
     this.barSubItemFile.LinksPersistInfo.AddRange(new DevExpress.XtraBars.LinkPersistInfo[] {
     new DevExpress.XtraBars.LinkPersistInfo(DevExpress.XtraBars.BarLinkUserDefines.PaintStyle, this.mbConnection, DevExpress.XtraBars.BarItemPaintStyle.Standard),
     new DevExpress.XtraBars.LinkPersistInfo(this.mbExit)});
     this.barSubItemFile.Name = "barSubItemFile";
     this.barSubItemFile.PaintStyle = DevExpress.XtraBars.BarItemPaintStyle.CaptionGlyph;
     //
     // mbConnection
     //
     this.mbConnection.Caption = "الغاء الاتصال";
     this.mbConnection.Glyph = ((System.Drawing.Image)(resources.GetObject("mbConnection.Glyph")));
     this.mbConnection.Id = 3;
     this.mbConnection.Name = "mbConnection";
     this.mbConnection.ItemClick += new DevExpress.XtraBars.ItemClickEventHandler(this.mbConnection_ItemClick);
     //
     // mbExit
     //
     this.mbExit.Caption = "خروج";
     this.mbExit.Glyph = global::ServiceQuery.Properties.Resources.Exit;
     this.mbExit.Id = 4;
     this.mbExit.Name = "mbExit";
     this.mbExit.ItemClick += new DevExpress.XtraBars.ItemClickEventHandler(this.mbExit_ItemClick);
     //
     // barSubItemView
     //
     this.barSubItemView.Caption = "عرض";
     this.barSubItemView.Glyph = ((System.Drawing.Image)(resources.GetObject("barSubItemView.Glyph")));
     this.barSubItemView.Id = 1;
     this.barSubItemView.LinksPersistInfo.AddRange(new DevExpress.XtraBars.LinkPersistInfo[] {
     new DevExpress.XtraBars.LinkPersistInfo(this.mbCode),
     new DevExpress.XtraBars.LinkPersistInfo(this.mbData),
     new DevExpress.XtraBars.LinkPersistInfo(this.mbQuery),
     new DevExpress.XtraBars.LinkPersistInfo(this.mbReport),
     new DevExpress.XtraBars.LinkPersistInfo(this.mbPriv),
     new DevExpress.XtraBars.LinkPersistInfo(this.mbResult),
     new DevExpress.XtraBars.LinkPersistInfo(this.mbSkins)});
     this.barSubItemView.Name = "barSubItemView";
     this.barSubItemView.PaintStyle = DevExpress.XtraBars.BarItemPaintStyle.CaptionGlyph;
     this.barSubItemView.Visibility = DevExpress.XtraBars.BarItemVisibility.Never;
     //
     // mbCode
     //
     this.mbCode.Caption = "اكواد";
     this.mbCode.Glyph = ((System.Drawing.Image)(resources.GetObject("mbCode.Glyph")));
     this.mbCode.Id = 5;
     this.mbCode.Name = "mbCode";
     this.mbCode.ItemClick += new DevExpress.XtraBars.ItemClickEventHandler(this.mbCode_ItemClick);
     //
     // mbData
     //
     this.mbData.Caption = "ادخال بيانات";
     this.mbData.Glyph = ((System.Drawing.Image)(resources.GetObject("mbData.Glyph")));
     this.mbData.Id = 6;
     this.mbData.Name = "mbData";
     this.mbData.ItemClick += new DevExpress.XtraBars.ItemClickEventHandler(this.mbData_ItemClick);
     //
     // mbQuery
     //
     this.mbQuery.Caption = "استعلامات";
     this.mbQuery.Glyph = ((System.Drawing.Image)(resources.GetObject("mbQuery.Glyph")));
     this.mbQuery.Id = 7;
     this.mbQuery.Name = "mbQuery";
     this.mbQuery.ItemClick += new DevExpress.XtraBars.ItemClickEventHandler(this.mbQuery_ItemClick);
     //
     // mbReport
     //
     this.mbReport.Caption = "تقارير";
     this.mbReport.Glyph = global::ServiceQuery.Properties.Resources.Print;
     this.mbReport.Id = 8;
     this.mbReport.Name = "mbReport";
     this.mbReport.ItemClick += new DevExpress.XtraBars.ItemClickEventHandler(this.mbReport_ItemClick);
     //
     // mbPriv
     //
     this.mbPriv.Caption = "صلاحيات";
     this.mbPriv.Glyph = ((System.Drawing.Image)(resources.GetObject("mbPriv.Glyph")));
     this.mbPriv.Id = 9;
     this.mbPriv.Name = "mbPriv";
     this.mbPriv.ItemClick += new DevExpress.XtraBars.ItemClickEventHandler(this.mbPriv_ItemClick);
     //
     // mbResult
     //
     this.mbResult.Caption = "نتائج العمليات";
     this.mbResult.Glyph = global::ServiceQuery.Properties.Resources.info16;
     this.mbResult.Id = 20;
     this.mbResult.Name = "mbResult";
     this.mbResult.ItemClick += new DevExpress.XtraBars.ItemClickEventHandler(this.mbResult_ItemClick);
     //
     // mbSkins
     //
     this.mbSkins.Caption = "الاشكال";
     this.mbSkins.Glyph = global::ServiceQuery.Properties.Resources.Skins;
     this.mbSkins.Id = 21;
     this.mbSkins.Name = "mbSkins";
     this.mbSkins.ItemClick += new DevExpress.XtraBars.ItemClickEventHandler(this.mbSkins_ItemClick);
     //
     // barSubItemWindows
     //
     this.barSubItemWindows.Caption = "النوافذ";
     this.barSubItemWindows.Glyph = ((System.Drawing.Image)(resources.GetObject("barSubItemWindows.Glyph")));
     this.barSubItemWindows.Id = 22;
     this.barSubItemWindows.LinksPersistInfo.AddRange(new DevExpress.XtraBars.LinkPersistInfo[] {
     new DevExpress.XtraBars.LinkPersistInfo(this.mbcascade),
     new DevExpress.XtraBars.LinkPersistInfo(this.mbtileVertical),
     new DevExpress.XtraBars.LinkPersistInfo(this.mbtileHorizontal),
     new DevExpress.XtraBars.LinkPersistInfo(this.mbcloseAll)});
     this.barSubItemWindows.Name = "barSubItemWindows";
     this.barSubItemWindows.PaintStyle = DevExpress.XtraBars.BarItemPaintStyle.CaptionGlyph;
     this.barSubItemWindows.Visibility = DevExpress.XtraBars.BarItemVisibility.Never;
     //
     // mbcascade
     //
     this.mbcascade.Caption = "ترتيب النوافذ";
     this.mbcascade.Glyph = ((System.Drawing.Image)(resources.GetObject("mbcascade.Glyph")));
     this.mbcascade.Id = 23;
     this.mbcascade.Name = "mbcascade";
     this.mbcascade.ItemClick += new DevExpress.XtraBars.ItemClickEventHandler(this.mbcascade_ItemClick);
     //
     // mbtileVertical
     //
     this.mbtileVertical.Caption = "العناوين رأسي";
     this.mbtileVertical.Glyph = ((System.Drawing.Image)(resources.GetObject("mbtileVertical.Glyph")));
     this.mbtileVertical.Id = 24;
     this.mbtileVertical.Name = "mbtileVertical";
     this.mbtileVertical.ItemClick += new DevExpress.XtraBars.ItemClickEventHandler(this.mbtileVertical_ItemClick);
     //
     // mbtileHorizontal
     //
     this.mbtileHorizontal.Caption = "العناوين افقي";
     this.mbtileHorizontal.Glyph = ((System.Drawing.Image)(resources.GetObject("mbtileHorizontal.Glyph")));
     this.mbtileHorizontal.Id = 25;
     this.mbtileHorizontal.Name = "mbtileHorizontal";
     this.mbtileHorizontal.ItemClick += new DevExpress.XtraBars.ItemClickEventHandler(this.mbtileHorizontal_ItemClick);
     //
     // mbcloseAll
     //
     this.mbcloseAll.Caption = "اغلاق الكل";
     this.mbcloseAll.Glyph = ((System.Drawing.Image)(resources.GetObject("mbcloseAll.Glyph")));
     this.mbcloseAll.Id = 26;
     this.mbcloseAll.Name = "mbcloseAll";
     this.mbcloseAll.ItemClick += new DevExpress.XtraBars.ItemClickEventHandler(this.mbcloseAll_ItemClick);
     //
     // barSubItemHelp
     //
     this.barSubItemHelp.Caption = "مساعده";
     this.barSubItemHelp.Glyph = ((System.Drawing.Image)(resources.GetObject("barSubItemHelp.Glyph")));
     this.barSubItemHelp.Id = 2;
     this.barSubItemHelp.LinksPersistInfo.AddRange(new DevExpress.XtraBars.LinkPersistInfo[] {
     new DevExpress.XtraBars.LinkPersistInfo(this.mbIndex),
     new DevExpress.XtraBars.LinkPersistInfo(this.mbAboutUs)});
     this.barSubItemHelp.Name = "barSubItemHelp";
     this.barSubItemHelp.PaintStyle = DevExpress.XtraBars.BarItemPaintStyle.CaptionGlyph;
     this.barSubItemHelp.Visibility = DevExpress.XtraBars.BarItemVisibility.Never;
     //
     // mbIndex
     //
     this.mbIndex.Caption = "كتاب المساعده";
     this.mbIndex.Glyph = global::ServiceQuery.Properties.Resources.Index;
     this.mbIndex.Id = 11;
     this.mbIndex.Name = "mbIndex";
     //
     // mbAboutUs
     //
     this.mbAboutUs.Caption = "عن البرنامج";
     this.mbAboutUs.Glyph = global::ServiceQuery.Properties.Resources.About;
     this.mbAboutUs.Id = 10;
     this.mbAboutUs.Name = "mbAboutUs";
     this.mbAboutUs.ItemClick += new DevExpress.XtraBars.ItemClickEventHandler(this.mbAboutUs_ItemClick);
     //
     // barDown
     //
     this.barDown.BarName = "Status bar";
     this.barDown.CanDockStyle = DevExpress.XtraBars.BarCanDockStyle.Bottom;
     this.barDown.DockCol = 0;
     this.barDown.DockRow = 0;
     this.barDown.DockStyle = DevExpress.XtraBars.BarDockStyle.Bottom;
     this.barDown.OptionsBar.AllowQuickCustomization = false;
     this.barDown.OptionsBar.DrawDragBorder = false;
     this.barDown.OptionsBar.MultiLine = true;
     this.barDown.OptionsBar.UseWholeRow = true;
     this.barDown.Text = "Status bar";
     //
     // 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(984, 24);
     //
     // barDockControlBottom
     //
     this.barDockControlBottom.CausesValidation = false;
     this.barDockControlBottom.Dock = System.Windows.Forms.DockStyle.Bottom;
     this.barDockControlBottom.Location = new System.Drawing.Point(0, 639);
     this.barDockControlBottom.Size = new System.Drawing.Size(984, 23);
     //
     // 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, 615);
     //
     // barDockControlRight
     //
     this.barDockControlRight.CausesValidation = false;
     this.barDockControlRight.Dock = System.Windows.Forms.DockStyle.Right;
     this.barDockControlRight.Location = new System.Drawing.Point(984, 24);
     this.barDockControlRight.Size = new System.Drawing.Size(0, 615);
     //
     // dockManagerMain
     //
     this.dockManagerMain.DockingOptions.ShowCaptionImage = true;
     this.dockManagerMain.DockMode = DevExpress.XtraBars.Docking.Helpers.DockMode.Standard;
     this.dockManagerMain.Form = this;
     this.dockManagerMain.HiddenPanels.AddRange(new DevExpress.XtraBars.Docking.DockPanel[] {
     this.DPSkins,
     this.DPPriv,
     this.DPQuery,
     this.DPReport});
     this.dockManagerMain.MenuManager = this.barManagerMain;
     this.dockManagerMain.RootPanels.AddRange(new DevExpress.XtraBars.Docking.DockPanel[] {
     this.DPResult,
     this.panelContainer1});
     this.dockManagerMain.TopZIndexControls.AddRange(new string[] {
     "DevExpress.XtraBars.BarDockControl",
     "DevExpress.XtraBars.StandaloneBarDockControl",
     "System.Windows.Forms.StatusBar",
     "DevExpress.XtraBars.Ribbon.RibbonStatusBar",
     "DevExpress.XtraBars.Ribbon.RibbonControl"});
     //
     // DPSkins
     //
     this.DPSkins.Controls.Add(this.controlContainer6);
     this.DPSkins.Dock = DevExpress.XtraBars.Docking.DockingStyle.Bottom;
     this.DPSkins.FloatVertical = true;
     this.DPSkins.ID = new System.Guid("5d027091-716e-4480-919f-6381f5702c5a");
     this.DPSkins.Location = new System.Drawing.Point(0, 529);
     this.DPSkins.Name = "DPSkins";
     this.DPSkins.OriginalSize = new System.Drawing.Size(198, 110);
     this.DPSkins.SavedDock = DevExpress.XtraBars.Docking.DockingStyle.Fill;
     this.DPSkins.SavedIndex = 0;
     this.DPSkins.SavedParent = this.DPResult;
     this.DPSkins.SavedTabbed = true;
     this.DPSkins.Size = new System.Drawing.Size(984, 110);
     this.DPSkins.TabsScroll = true;
     this.DPSkins.Text = "الاشكال";
     this.DPSkins.Visibility = DevExpress.XtraBars.Docking.DockVisibility.Hidden;
     //
     // controlContainer6
     //
     this.controlContainer6.Controls.Add(this.galleryControlSkins);
     this.controlContainer6.Location = new System.Drawing.Point(4, 23);
     this.controlContainer6.Name = "controlContainer6";
     this.controlContainer6.Size = new System.Drawing.Size(976, 83);
     this.controlContainer6.TabIndex = 0;
     //
     // galleryControlSkins
     //
     this.galleryControlSkins.Controls.Add(this.galleryControlClient1);
     this.galleryControlSkins.DesignGalleryGroupIndex = 0;
     this.galleryControlSkins.DesignGalleryItemIndex = 0;
     this.galleryControlSkins.Dock = System.Windows.Forms.DockStyle.Fill;
     this.galleryControlSkins.Location = new System.Drawing.Point(0, 0);
     this.galleryControlSkins.Name = "galleryControlSkins";
     this.galleryControlSkins.Size = new System.Drawing.Size(976, 83);
     this.galleryControlSkins.TabIndex = 0;
     this.galleryControlSkins.Text = "الاشكال";
     //
     // galleryControlClient1
     //
     this.galleryControlClient1.GalleryControl = this.galleryControlSkins;
     this.galleryControlClient1.Location = new System.Drawing.Point(2, 2);
     this.galleryControlClient1.Size = new System.Drawing.Size(955, 79);
     //
     // DPResult
     //
     this.DPResult.Controls.Add(this.controlContainer5);
     this.DPResult.Dock = DevExpress.XtraBars.Docking.DockingStyle.Bottom;
     this.DPResult.FloatVertical = true;
     this.DPResult.ID = new System.Guid("abdfe4d0-1d6a-4f6b-abc2-985fb9d484f3");
     this.DPResult.Location = new System.Drawing.Point(0, 503);
     this.DPResult.Name = "DPResult";
     this.DPResult.OriginalSize = new System.Drawing.Size(200, 136);
     this.DPResult.Size = new System.Drawing.Size(984, 136);
     this.DPResult.Text = "نتائج العمليات";
     //
     // controlContainer5
     //
     this.controlContainer5.Controls.Add(this.Logging);
     this.controlContainer5.Location = new System.Drawing.Point(4, 23);
     this.controlContainer5.Name = "controlContainer5";
     this.controlContainer5.Size = new System.Drawing.Size(976, 109);
     this.controlContainer5.TabIndex = 0;
     //
     // Logging
     //
     this.Logging.Dock = System.Windows.Forms.DockStyle.Fill;
     this.Logging.Location = new System.Drawing.Point(0, 0);
     this.Logging.Name = "Logging";
     this.Logging.ReadOnly = true;
     this.Logging.RightToLeft = System.Windows.Forms.RightToLeft.Yes;
     this.Logging.Size = new System.Drawing.Size(976, 109);
     this.Logging.TabIndex = 0;
     this.Logging.Text = "";
     this.Logging.MouseDoubleClick += new System.Windows.Forms.MouseEventHandler(this.Logging_MouseDoubleClick);
     //
     // DPPriv
     //
     this.DPPriv.Controls.Add(this.controlContainer4);
     this.DPPriv.Dock = DevExpress.XtraBars.Docking.DockingStyle.Fill;
     this.DPPriv.ID = new System.Guid("bb5d67bf-41ea-4082-a2e5-532afce242b2");
     this.DPPriv.Location = new System.Drawing.Point(4, 23);
     this.DPPriv.Name = "DPPriv";
     this.DPPriv.OriginalSize = new System.Drawing.Size(192, 451);
     this.DPPriv.SavedDock = DevExpress.XtraBars.Docking.DockingStyle.Fill;
     this.DPPriv.SavedIndex = 2;
     this.DPPriv.SavedParent = this.panelContainer1;
     this.DPPriv.SavedTabbed = true;
     this.DPPriv.Size = new System.Drawing.Size(192, 561);
     this.DPPriv.TabsScroll = true;
     this.DPPriv.TabText = "الصلاحيات";
     this.DPPriv.Text = "الصلاحيات";
     this.DPPriv.Visibility = DevExpress.XtraBars.Docking.DockVisibility.Hidden;
     //
     // controlContainer4
     //
     this.controlContainer4.Controls.Add(this.navBarControlPriv);
     this.controlContainer4.Location = new System.Drawing.Point(0, 0);
     this.controlContainer4.Name = "controlContainer4";
     this.controlContainer4.Size = new System.Drawing.Size(192, 561);
     this.controlContainer4.TabIndex = 0;
     //
     // navBarControlPriv
     //
     this.navBarControlPriv.ActiveGroup = this.navBarGroup3;
     this.navBarControlPriv.Dock = System.Windows.Forms.DockStyle.Fill;
     this.navBarControlPriv.ExplorerBarShowGroupButtons = false;
     this.navBarControlPriv.Groups.AddRange(new DevExpress.XtraNavBar.NavBarGroup[] {
     this.navBarGroup3});
     this.navBarControlPriv.Items.AddRange(new DevExpress.XtraNavBar.NavBarItem[] {
     this.navBarItemTimeRoles,
     this.navBarItemTimeUsers,
     this.navBarItemTimeUserRoles,
     this.navBarItemTimeRoleDetial,
     this.navBarItemTimeAppOptions});
     this.navBarControlPriv.LargeImages = this.imageCollection32;
     this.navBarControlPriv.Location = new System.Drawing.Point(0, 0);
     this.navBarControlPriv.Name = "navBarControlPriv";
     this.navBarControlPriv.OptionsNavPane.ExpandedWidth = 192;
     this.navBarControlPriv.Size = new System.Drawing.Size(192, 561);
     this.navBarControlPriv.SmallImages = this.imageCollection32;
     this.navBarControlPriv.StoreDefaultPaintStyleName = true;
     this.navBarControlPriv.TabIndex = 9;
     this.navBarControlPriv.Text = "navBarControl1";
     this.navBarControlPriv.Visible = false;
     //
     // navBarGroup3
     //
     this.navBarGroup3.Caption = "";
     this.navBarGroup3.Expanded = true;
     this.navBarGroup3.ItemLinks.AddRange(new DevExpress.XtraNavBar.NavBarItemLink[] {
     new DevExpress.XtraNavBar.NavBarItemLink(this.navBarItemTimeRoles),
     new DevExpress.XtraNavBar.NavBarItemLink(this.navBarItemTimeRoleDetial),
     new DevExpress.XtraNavBar.NavBarItemLink(this.navBarItemTimeUsers),
     new DevExpress.XtraNavBar.NavBarItemLink(this.navBarItemTimeUserRoles),
     new DevExpress.XtraNavBar.NavBarItemLink(this.navBarItemTimeAppOptions)});
     this.navBarGroup3.LargeImage = ((System.Drawing.Image)(resources.GetObject("navBarGroup3.LargeImage")));
     this.navBarGroup3.Name = "navBarGroup3";
     this.navBarGroup3.NavigationPaneVisible = false;
     this.navBarGroup3.SmallImage = ((System.Drawing.Image)(resources.GetObject("navBarGroup3.SmallImage")));
     //
     // navBarItemTimeRoles
     //
     this.navBarItemTimeRoles.Caption = "الصلاحيات";
     this.navBarItemTimeRoles.LargeImageIndex = 0;
     this.navBarItemTimeRoles.Name = "navBarItemTimeRoles";
     this.navBarItemTimeRoles.SmallImageIndex = 0;
     this.navBarItemTimeRoles.LinkClicked += new DevExpress.XtraNavBar.NavBarLinkEventHandler(this.navBarItemEditorRoleFrm_LinkClicked);
     //
     // navBarItemTimeRoleDetial
     //
     this.navBarItemTimeRoleDetial.Caption = "تفاصيل الصلاحيات";
     this.navBarItemTimeRoleDetial.LargeImageIndex = 3;
     this.navBarItemTimeRoleDetial.Name = "navBarItemTimeRoleDetial";
     this.navBarItemTimeRoleDetial.SmallImageIndex = 3;
     this.navBarItemTimeRoleDetial.LinkClicked += new DevExpress.XtraNavBar.NavBarLinkEventHandler(this.navBarItemRoleDetial_LinkClicked);
     //
     // navBarItemTimeUsers
     //
     this.navBarItemTimeUsers.Caption = "المستخدمين";
     this.navBarItemTimeUsers.LargeImageIndex = 1;
     this.navBarItemTimeUsers.Name = "navBarItemTimeUsers";
     this.navBarItemTimeUsers.SmallImageIndex = 1;
     this.navBarItemTimeUsers.LinkClicked += new DevExpress.XtraNavBar.NavBarLinkEventHandler(this.navBarItemUsers_LinkClicked);
     //
     // navBarItemTimeUserRoles
     //
     this.navBarItemTimeUserRoles.Caption = "صلاحيات المستخدمين";
     this.navBarItemTimeUserRoles.LargeImageIndex = 2;
     this.navBarItemTimeUserRoles.Name = "navBarItemTimeUserRoles";
     this.navBarItemTimeUserRoles.SmallImageIndex = 2;
     this.navBarItemTimeUserRoles.LinkClicked += new DevExpress.XtraNavBar.NavBarLinkEventHandler(this.navBarItemUserRoles_LinkClicked);
     //
     // navBarItemTimeAppOptions
     //
     this.navBarItemTimeAppOptions.Caption = "خيارات البرنامج";
     this.navBarItemTimeAppOptions.LargeImageIndex = 6;
     this.navBarItemTimeAppOptions.Name = "navBarItemTimeAppOptions";
     this.navBarItemTimeAppOptions.SmallImageIndex = 6;
     this.navBarItemTimeAppOptions.LinkClicked += new DevExpress.XtraNavBar.NavBarLinkEventHandler(this.navBarItemAppOptions_LinkClicked);
     //
     // imageCollection32
     //
     this.imageCollection32.ImageSize = new System.Drawing.Size(32, 32);
     this.imageCollection32.ImageStream = ((DevExpress.Utils.ImageCollectionStreamer)(resources.GetObject("imageCollection32.ImageStream")));
     this.imageCollection32.Images.SetKeyName(0, "Roles.png");
     this.imageCollection32.Images.SetKeyName(1, "Users.png");
     this.imageCollection32.Images.SetKeyName(2, "UserRoles.png");
     this.imageCollection32.Images.SetKeyName(3, "RoleDetial.png");
     this.imageCollection32.Images.SetKeyName(4, "Reports.png");
     this.imageCollection32.Images.SetKeyName(5, "DeployRpt.png");
     this.imageCollection32.Images.SetKeyName(6, "AppOptions.png");
     //
     // panelContainer1
     //
     this.panelContainer1.ActiveChild = this.DPCode;
     this.panelContainer1.Appearance.Options.UseTextOptions = true;
     this.panelContainer1.Appearance.TextOptions.WordWrap = DevExpress.Utils.WordWrap.NoWrap;
     this.panelContainer1.Controls.Add(this.DPCode);
     this.panelContainer1.Controls.Add(this.DPData);
     this.panelContainer1.Dock = DevExpress.XtraBars.Docking.DockingStyle.Left;
     this.panelContainer1.FloatVertical = true;
     this.panelContainer1.ID = new System.Guid("f4ff1062-9a77-404f-9187-cec889fb9ba4");
     this.panelContainer1.Location = new System.Drawing.Point(0, 24);
     this.panelContainer1.Name = "panelContainer1";
     this.panelContainer1.OriginalSize = new System.Drawing.Size(200, 200);
     this.panelContainer1.Size = new System.Drawing.Size(200, 479);
     this.panelContainer1.Tabbed = true;
     this.panelContainer1.TabsScroll = true;
     this.panelContainer1.Text = "panelContainer1";
     //
     // DPData
     //
     this.DPData.Controls.Add(this.controlContainer1);
     this.DPData.Dock = DevExpress.XtraBars.Docking.DockingStyle.Fill;
     this.DPData.ID = new System.Guid("5a92e67b-e3d2-4e9c-a354-47ff59337c78");
     this.DPData.Location = new System.Drawing.Point(4, 23);
     this.DPData.Name = "DPData";
     this.DPData.OriginalSize = new System.Drawing.Size(192, 561);
     this.DPData.Size = new System.Drawing.Size(192, 425);
     this.DPData.TabStop = false;
     this.DPData.TabText = "ادخال البيانات";
     this.DPData.Text = "ادخال البيانات";
     //
     // controlContainer1
     //
     this.controlContainer1.Controls.Add(this.navBarControlData);
     this.controlContainer1.Location = new System.Drawing.Point(0, 0);
     this.controlContainer1.Name = "controlContainer1";
     this.controlContainer1.Size = new System.Drawing.Size(192, 425);
     this.controlContainer1.TabIndex = 0;
     //
     // navBarControlData
     //
     this.navBarControlData.ActiveGroup = this.navBarGroup2;
     this.navBarControlData.Dock = System.Windows.Forms.DockStyle.Fill;
     this.navBarControlData.ExplorerBarShowGroupButtons = false;
     this.navBarControlData.Groups.AddRange(new DevExpress.XtraNavBar.NavBarGroup[] {
     this.navBarGroup2});
     this.navBarControlData.Items.AddRange(new DevExpress.XtraNavBar.NavBarItem[] {
     this.navBarItemServiceQueryTBLWared});
     this.navBarControlData.LargeImages = this.imageCollection32;
     this.navBarControlData.Location = new System.Drawing.Point(0, 0);
     this.navBarControlData.Name = "navBarControlData";
     this.navBarControlData.OptionsNavPane.ExpandedWidth = 192;
     this.navBarControlData.Size = new System.Drawing.Size(192, 425);
     this.navBarControlData.SmallImages = this.imageCollection32;
     this.navBarControlData.StoreDefaultPaintStyleName = true;
     this.navBarControlData.TabIndex = 9;
     this.navBarControlData.Text = "navBarControl1";
     //
     // navBarGroup2
     //
     this.navBarGroup2.Caption = "";
     this.navBarGroup2.Expanded = true;
     this.navBarGroup2.ItemLinks.AddRange(new DevExpress.XtraNavBar.NavBarItemLink[] {
     new DevExpress.XtraNavBar.NavBarItemLink(this.navBarItemServiceQueryTBLWared)});
     this.navBarGroup2.LargeImage = ((System.Drawing.Image)(resources.GetObject("navBarGroup2.LargeImage")));
     this.navBarGroup2.Name = "navBarGroup2";
     this.navBarGroup2.NavigationPaneVisible = false;
     this.navBarGroup2.SmallImage = ((System.Drawing.Image)(resources.GetObject("navBarGroup2.SmallImage")));
     //
     // navBarItemServiceQueryTBLWared
     //
     this.navBarItemServiceQueryTBLWared.Caption = "الوارد";
     this.navBarItemServiceQueryTBLWared.LargeImageIndex = 23;
     this.navBarItemServiceQueryTBLWared.Name = "navBarItemServiceQueryTBLWared";
     this.navBarItemServiceQueryTBLWared.SmallImageIndex = 23;
     this.navBarItemServiceQueryTBLWared.LinkClicked += new DevExpress.XtraNavBar.NavBarLinkEventHandler(this.navBarItemServiceQueryTBLWared_LinkClicked);
     //
     // DPCode
     //
     this.DPCode.Controls.Add(this.dockPanel1_Container);
     this.DPCode.Dock = DevExpress.XtraBars.Docking.DockingStyle.Fill;
     this.DPCode.ID = new System.Guid("1cfd6550-8070-4cff-ad59-cba8d2680fa9");
     this.DPCode.Location = new System.Drawing.Point(4, 23);
     this.DPCode.Name = "DPCode";
     this.DPCode.OriginalSize = new System.Drawing.Size(192, 561);
     this.DPCode.Size = new System.Drawing.Size(192, 425);
     this.DPCode.TabsScroll = true;
     this.DPCode.TabText = "الاكواد";
     this.DPCode.Text = "الاكواد";
     //
     // dockPanel1_Container
     //
     this.dockPanel1_Container.Controls.Add(this.navBarControlCode);
     this.dockPanel1_Container.Location = new System.Drawing.Point(0, 0);
     this.dockPanel1_Container.Name = "dockPanel1_Container";
     this.dockPanel1_Container.Size = new System.Drawing.Size(192, 425);
     this.dockPanel1_Container.TabIndex = 0;
     //
     // navBarControlCode
     //
     this.navBarControlCode.ActiveGroup = this.navBarGroup1;
     this.navBarControlCode.Dock = System.Windows.Forms.DockStyle.Fill;
     this.navBarControlCode.ExplorerBarShowGroupButtons = false;
     this.navBarControlCode.Groups.AddRange(new DevExpress.XtraNavBar.NavBarGroup[] {
     this.navBarGroup1});
     this.navBarControlCode.Items.AddRange(new DevExpress.XtraNavBar.NavBarItem[] {
     this.navBarItemServiceQueryCDEdara,
     this.navBarItemServiceQueryCDserviceType,
     this.navBarItemServiceQueryCDReply,
     this.navBarItemServiceQueryCDSyndicate,
     this.navBarItemServiceQueryCDSubCommitte,
     this.navBarItemServiceQueryCDAttatech});
     this.navBarControlCode.LargeImages = this.imageCollection32;
     this.navBarControlCode.Location = new System.Drawing.Point(0, 0);
     this.navBarControlCode.Name = "navBarControlCode";
     this.navBarControlCode.OptionsNavPane.ExpandedWidth = 192;
     this.navBarControlCode.Size = new System.Drawing.Size(192, 425);
     this.navBarControlCode.SmallImages = this.imageCollection32;
     this.navBarControlCode.StoreDefaultPaintStyleName = true;
     this.navBarControlCode.TabIndex = 8;
     //
     // navBarGroup1
     //
     this.navBarGroup1.Caption = "";
     this.navBarGroup1.Expanded = true;
     this.navBarGroup1.ItemLinks.AddRange(new DevExpress.XtraNavBar.NavBarItemLink[] {
     new DevExpress.XtraNavBar.NavBarItemLink(this.navBarItemServiceQueryCDEdara),
     new DevExpress.XtraNavBar.NavBarItemLink(this.navBarItemServiceQueryCDserviceType),
     new DevExpress.XtraNavBar.NavBarItemLink(this.navBarItemServiceQueryCDReply),
     new DevExpress.XtraNavBar.NavBarItemLink(this.navBarItemServiceQueryCDSyndicate),
     new DevExpress.XtraNavBar.NavBarItemLink(this.navBarItemServiceQueryCDSubCommitte),
     new DevExpress.XtraNavBar.NavBarItemLink(this.navBarItemServiceQueryCDAttatech)});
     this.navBarGroup1.LargeImage = ((System.Drawing.Image)(resources.GetObject("navBarGroup1.LargeImage")));
     this.navBarGroup1.Name = "navBarGroup1";
     this.navBarGroup1.NavigationPaneVisible = false;
     this.navBarGroup1.SmallImage = ((System.Drawing.Image)(resources.GetObject("navBarGroup1.SmallImage")));
     //
     // navBarItemServiceQueryCDEdara
     //
     this.navBarItemServiceQueryCDEdara.Caption = "الادارات";
     this.navBarItemServiceQueryCDEdara.LargeImageIndex = 7;
     this.navBarItemServiceQueryCDEdara.Name = "navBarItemServiceQueryCDEdara";
     this.navBarItemServiceQueryCDEdara.SmallImageIndex = 7;
     this.navBarItemServiceQueryCDEdara.LinkClicked += new DevExpress.XtraNavBar.NavBarLinkEventHandler(this.navBarItemServiceQueryCDEdara_LinkClicked);
     //
     // navBarItemServiceQueryCDserviceType
     //
     this.navBarItemServiceQueryCDserviceType.Caption = "انواع الخدمات";
     this.navBarItemServiceQueryCDserviceType.LargeImageIndex = 8;
     this.navBarItemServiceQueryCDserviceType.Name = "navBarItemServiceQueryCDserviceType";
     this.navBarItemServiceQueryCDserviceType.SmallImageIndex = 8;
     this.navBarItemServiceQueryCDserviceType.LinkClicked += new DevExpress.XtraNavBar.NavBarLinkEventHandler(this.navBarItemServiceQueryCDserviceType_LinkClicked);
     //
     // navBarItemServiceQueryCDReply
     //
     this.navBarItemServiceQueryCDReply.Caption = "الرد";
     this.navBarItemServiceQueryCDReply.LargeImageIndex = 9;
     this.navBarItemServiceQueryCDReply.Name = "navBarItemServiceQueryCDReply";
     this.navBarItemServiceQueryCDReply.SmallImageIndex = 9;
     this.navBarItemServiceQueryCDReply.LinkClicked += new DevExpress.XtraNavBar.NavBarLinkEventHandler(this.navBarItemServiceQueryCDReply_LinkClicked);
     //
     // navBarItemServiceQueryCDSyndicate
     //
     this.navBarItemServiceQueryCDSyndicate.Caption = "النقابات الفرعية";
     this.navBarItemServiceQueryCDSyndicate.LargeImageIndex = 10;
     this.navBarItemServiceQueryCDSyndicate.Name = "navBarItemServiceQueryCDSyndicate";
     this.navBarItemServiceQueryCDSyndicate.SmallImageIndex = 10;
     this.navBarItemServiceQueryCDSyndicate.LinkClicked += new DevExpress.XtraNavBar.NavBarLinkEventHandler(this.navBarItemServiceQueryCDSyndicate_LinkClicked);
     //
     // navBarItemServiceQueryCDSubCommitte
     //
     this.navBarItemServiceQueryCDSubCommitte.Caption = "اللجان النقابية";
     this.navBarItemServiceQueryCDSubCommitte.Name = "navBarItemServiceQueryCDSubCommitte";
     this.navBarItemServiceQueryCDSubCommitte.LinkClicked += new DevExpress.XtraNavBar.NavBarLinkEventHandler(this.navBarItemServiceQueryCDSubCommitte_LinkClicked);
     //
     // navBarItemServiceQueryCDAttatech
     //
     this.navBarItemServiceQueryCDAttatech.Caption = "المرفقات";
     this.navBarItemServiceQueryCDAttatech.Name = "navBarItemServiceQueryCDAttatech";
     this.navBarItemServiceQueryCDAttatech.LinkClicked += new DevExpress.XtraNavBar.NavBarLinkEventHandler(this.navBarItemServiceQueryCDAttatech_LinkClicked);
     //
     // DPQuery
     //
     this.DPQuery.Controls.Add(this.controlContainer2);
     this.DPQuery.Dock = DevExpress.XtraBars.Docking.DockingStyle.Fill;
     this.DPQuery.ID = new System.Guid("d8711011-1b74-442f-bb9b-8102c8bf9f50");
     this.DPQuery.Location = new System.Drawing.Point(4, 23);
     this.DPQuery.Name = "DPQuery";
     this.DPQuery.OriginalSize = new System.Drawing.Size(192, 451);
     this.DPQuery.SavedDock = DevExpress.XtraBars.Docking.DockingStyle.Fill;
     this.DPQuery.SavedIndex = 0;
     this.DPQuery.SavedParent = this.DPReport;
     this.DPQuery.SavedTabbed = true;
     this.DPQuery.Size = new System.Drawing.Size(192, 561);
     this.DPQuery.TabsScroll = true;
     this.DPQuery.Text = "استعلامات";
     this.DPQuery.Visibility = DevExpress.XtraBars.Docking.DockVisibility.Hidden;
     //
     // controlContainer2
     //
     this.controlContainer2.Controls.Add(this.navBarControlQry);
     this.controlContainer2.Location = new System.Drawing.Point(0, 0);
     this.controlContainer2.Name = "controlContainer2";
     this.controlContainer2.Size = new System.Drawing.Size(192, 561);
     this.controlContainer2.TabIndex = 0;
     //
     // navBarControlQry
     //
     this.navBarControlQry.ActiveGroup = this.navBarGroup5;
     this.navBarControlQry.Dock = System.Windows.Forms.DockStyle.Fill;
     this.navBarControlQry.ExplorerBarShowGroupButtons = false;
     this.navBarControlQry.Groups.AddRange(new DevExpress.XtraNavBar.NavBarGroup[] {
     this.navBarGroup5});
     this.navBarControlQry.LargeImages = this.imageCollection32;
     this.navBarControlQry.Location = new System.Drawing.Point(0, 0);
     this.navBarControlQry.Name = "navBarControlQry";
     this.navBarControlQry.OptionsNavPane.ExpandedWidth = 192;
     this.navBarControlQry.Size = new System.Drawing.Size(192, 561);
     this.navBarControlQry.SmallImages = this.imageCollection32;
     this.navBarControlQry.StoreDefaultPaintStyleName = true;
     this.navBarControlQry.TabIndex = 9;
     this.navBarControlQry.Text = "navBarControl1";
     this.navBarControlQry.Visible = false;
     //
     // navBarGroup5
     //
     this.navBarGroup5.Caption = "";
     this.navBarGroup5.Expanded = true;
     this.navBarGroup5.LargeImage = ((System.Drawing.Image)(resources.GetObject("navBarGroup5.LargeImage")));
     this.navBarGroup5.Name = "navBarGroup5";
     this.navBarGroup5.NavigationPaneVisible = false;
     this.navBarGroup5.SmallImage = ((System.Drawing.Image)(resources.GetObject("navBarGroup5.SmallImage")));
     //
     // DPReport
     //
     this.DPReport.Controls.Add(this.controlContainer3);
     this.DPReport.Dock = DevExpress.XtraBars.Docking.DockingStyle.Right;
     this.DPReport.ID = new System.Guid("f2617492-8043-4778-ba8c-8e62a8a6d465");
     this.DPReport.Location = new System.Drawing.Point(784, 24);
     this.DPReport.Name = "DPReport";
     this.DPReport.OriginalSize = new System.Drawing.Size(200, 200);
     this.DPReport.SavedDock = DevExpress.XtraBars.Docking.DockingStyle.Right;
     this.DPReport.SavedIndex = 1;
     this.DPReport.Size = new System.Drawing.Size(200, 615);
     this.DPReport.TabsScroll = true;
     this.DPReport.TabText = "تقارير";
     this.DPReport.Text = "تقارير";
     this.DPReport.Visibility = DevExpress.XtraBars.Docking.DockVisibility.Hidden;
     //
     // controlContainer3
     //
     this.controlContainer3.Controls.Add(this.navBarControlReport);
     this.controlContainer3.Location = new System.Drawing.Point(4, 23);
     this.controlContainer3.Name = "controlContainer3";
     this.controlContainer3.Size = new System.Drawing.Size(192, 588);
     this.controlContainer3.TabIndex = 0;
     //
     // navBarControlReport
     //
     this.navBarControlReport.ActiveGroup = this.navBarGroup6;
     this.navBarControlReport.Dock = System.Windows.Forms.DockStyle.Fill;
     this.navBarControlReport.Groups.AddRange(new DevExpress.XtraNavBar.NavBarGroup[] {
     this.navBarGroup6,
     this.navBarGroup4,
     this.navBarGroup7,
     this.navBarGroup8,
     this.navBarGroup9});
     this.navBarControlReport.Items.AddRange(new DevExpress.XtraNavBar.NavBarItem[] {
     this.navBarItemTimeDeployRpt});
     this.navBarControlReport.LargeImages = this.imageCollection32;
     this.navBarControlReport.Location = new System.Drawing.Point(0, 0);
     this.navBarControlReport.Name = "navBarControlReport";
     this.navBarControlReport.OptionsNavPane.ExpandedWidth = 192;
     this.navBarControlReport.Size = new System.Drawing.Size(192, 588);
     this.navBarControlReport.SmallImages = this.imageCollection32;
     this.navBarControlReport.TabIndex = 9;
     this.navBarControlReport.Text = "navBarControl1";
     this.navBarControlReport.View = new DevExpress.XtraNavBar.ViewInfo.StandardSkinExplorerBarViewInfoRegistrator("DevExpress Style");
     this.navBarControlReport.Visible = false;
     //
     // navBarGroup6
     //
     this.navBarGroup6.Caption = "تنصيب التقارير";
     this.navBarGroup6.Expanded = true;
     this.navBarGroup6.ItemLinks.AddRange(new DevExpress.XtraNavBar.NavBarItemLink[] {
     new DevExpress.XtraNavBar.NavBarItemLink(this.navBarItemTimeDeployRpt)});
     this.navBarGroup6.Name = "navBarGroup6";
     //
     // navBarItemTimeDeployRpt
     //
     this.navBarItemTimeDeployRpt.Caption = "تنصيب التقارير";
     this.navBarItemTimeDeployRpt.LargeImageIndex = 5;
     this.navBarItemTimeDeployRpt.Name = "navBarItemTimeDeployRpt";
     this.navBarItemTimeDeployRpt.SmallImageIndex = 5;
     this.navBarItemTimeDeployRpt.LinkClicked += new DevExpress.XtraNavBar.NavBarLinkEventHandler(this.navBarItemDeployRpt_LinkClicked);
     //
     // navBarGroup4
     //
     this.navBarGroup4.Caption = "تقارير 1";
     this.navBarGroup4.LargeImage = global::ServiceQuery.Properties.Resources.Print;
     this.navBarGroup4.Name = "navBarGroup4";
     this.navBarGroup4.NavigationPaneVisible = false;
     this.navBarGroup4.SmallImage = global::ServiceQuery.Properties.Resources.Print;
     //
     // navBarGroup7
     //
     this.navBarGroup7.Caption = "تقارير 2";
     this.navBarGroup7.LargeImage = global::ServiceQuery.Properties.Resources.Print;
     this.navBarGroup7.Name = "navBarGroup7";
     this.navBarGroup7.SmallImage = global::ServiceQuery.Properties.Resources.Print;
     //
     // navBarGroup8
     //
     this.navBarGroup8.Caption = "تقارير 3";
     this.navBarGroup8.LargeImage = global::ServiceQuery.Properties.Resources.Print;
     this.navBarGroup8.Name = "navBarGroup8";
     this.navBarGroup8.SmallImage = global::ServiceQuery.Properties.Resources.Print;
     //
     // navBarGroup9
     //
     this.navBarGroup9.Caption = "تقارير 4";
     this.navBarGroup9.LargeImage = global::ServiceQuery.Properties.Resources.Print;
     this.navBarGroup9.Name = "navBarGroup9";
     this.navBarGroup9.SmallImage = global::ServiceQuery.Properties.Resources.Print;
     //
     // barEditItem1
     //
     this.barEditItem1.Edit = null;
     this.barEditItem1.Id = 17;
     this.barEditItem1.Name = "barEditItem1";
     //
     // repositoryItemComboBoxSkins
     //
     this.repositoryItemComboBoxSkins.AutoHeight = false;
     this.repositoryItemComboBoxSkins.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.repositoryItemComboBoxSkins.Name = "repositoryItemComboBoxSkins";
     //
     // repositoryItemLookUpEditasase_code
     //
     this.repositoryItemLookUpEditasase_code.Appearance.Options.UseTextOptions = true;
     this.repositoryItemLookUpEditasase_code.Appearance.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.repositoryItemLookUpEditasase_code.AutoHeight = false;
     this.repositoryItemLookUpEditasase_code.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo),
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.OK)});
     this.repositoryItemLookUpEditasase_code.Columns.AddRange(new DevExpress.XtraEditors.Controls.LookUpColumnInfo[] {
     new DevExpress.XtraEditors.Controls.LookUpColumnInfo("asase_year", "العام الدراسي", 50, DevExpress.Utils.FormatType.None, "", true, DevExpress.Utils.HorzAlignment.Center),
     new DevExpress.XtraEditors.Controls.LookUpColumnInfo("SCHOOL", "اسم المدرسه", 50, DevExpress.Utils.FormatType.None, "", true, DevExpress.Utils.HorzAlignment.Center)});
     this.repositoryItemLookUpEditasase_code.DisplayMember = "asase_year";
     this.repositoryItemLookUpEditasase_code.DropDownRows = 10;
     this.repositoryItemLookUpEditasase_code.Name = "repositoryItemLookUpEditasase_code";
     this.repositoryItemLookUpEditasase_code.NullText = "اختار عام دراسي";
     this.repositoryItemLookUpEditasase_code.NullValuePrompt = "اختار عام دراسي";
     this.repositoryItemLookUpEditasase_code.TextEditStyle = DevExpress.XtraEditors.Controls.TextEditStyles.Standard;
     this.repositoryItemLookUpEditasase_code.UseParentBackground = true;
     this.repositoryItemLookUpEditasase_code.ValueMember = "asase_code";
     //
     // MainFrm
     //
     this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
     this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
     this.ClientSize = new System.Drawing.Size(984, 662);
     this.Controls.Add(this.panelContainer1);
     this.Controls.Add(this.DPResult);
     this.Controls.Add(this.barDockControlLeft);
     this.Controls.Add(this.barDockControlRight);
     this.Controls.Add(this.barDockControlBottom);
     this.Controls.Add(this.barDockControlTop);
     this.IsMdiContainer = true;
     this.Name = "MainFrm";
     this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen;
     this.Text = "Service Query";
     this.FormClosing += new System.Windows.Forms.FormClosingEventHandler(this.MainFrm_FormClosing);
     this.Load += new System.EventHandler(this.MainFrm_Load);
     ((System.ComponentModel.ISupportInitialize)(this.barManagerMain)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.dockManagerMain)).EndInit();
     this.DPSkins.ResumeLayout(false);
     this.controlContainer6.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.galleryControlSkins)).EndInit();
     this.galleryControlSkins.ResumeLayout(false);
     this.DPResult.ResumeLayout(false);
     this.controlContainer5.ResumeLayout(false);
     this.DPPriv.ResumeLayout(false);
     this.controlContainer4.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.navBarControlPriv)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.imageCollection32)).EndInit();
     this.panelContainer1.ResumeLayout(false);
     this.DPData.ResumeLayout(false);
     this.controlContainer1.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.navBarControlData)).EndInit();
     this.DPCode.ResumeLayout(false);
     this.dockPanel1_Container.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.navBarControlCode)).EndInit();
     this.DPQuery.ResumeLayout(false);
     this.controlContainer2.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.navBarControlQry)).EndInit();
     this.DPReport.ResumeLayout(false);
     this.controlContainer3.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.navBarControlReport)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemComboBoxSkins)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemLookUpEditasase_code)).EndInit();
     this.ResumeLayout(false);
 }
 /// <summary>
 /// �����֧������ķ��� - ��Ҫ
 /// ʹ�ô���༭���޸Ĵ˷��������ݡ�
 /// </summary>
 private void InitializeComponent()
 {
     this.panelControl = new DevExpress.XtraEditors.PanelControl();
     this.xtraTabControl1 = new DevExpress.XtraTab.XtraTabControl();
     this.tabPage = new DevExpress.XtraTab.XtraTabPage();
     this.vGridControl = new DevExpress.XtraVerticalGrid.VGridControl();
     this.ItemTextEditUID = new DevExpress.XtraEditors.Repository.RepositoryItemTextEdit();
     this.ItemTextEditSName = new DevExpress.XtraEditors.Repository.RepositoryItemTextEdit();
     this.ItemTextEditSType = new DevExpress.XtraEditors.Repository.RepositoryItemTextEdit();
     this.ItemTextEditDQ = new DevExpress.XtraEditors.Repository.RepositoryItemTextEdit();
     this.ItemTextEditcol1 = new DevExpress.XtraEditors.Repository.RepositoryItemTextEdit();
     this.repositoryItemComboBox1 = new DevExpress.XtraEditors.Repository.RepositoryItemComboBox();
     this.repositoryItemComboBox2 = new DevExpress.XtraEditors.Repository.RepositoryItemComboBox();
     this.rowUID = new DevExpress.XtraVerticalGrid.Rows.EditorRow();
     this.rowSName = new DevExpress.XtraVerticalGrid.Rows.EditorRow();
     this.rowSType = new DevExpress.XtraVerticalGrid.Rows.EditorRow();
     this.rowDQ = new DevExpress.XtraVerticalGrid.Rows.EditorRow();
     this.rowcol1 = new DevExpress.XtraVerticalGrid.Rows.EditorRow();
     this.btnOK = new DevExpress.XtraEditors.SimpleButton();
     this.btnCancel = new DevExpress.XtraEditors.SimpleButton();
     this.repositoryItemComboBox3 = new DevExpress.XtraEditors.Repository.RepositoryItemComboBox();
     ((System.ComponentModel.ISupportInitialize)(this.panelControl)).BeginInit();
     this.panelControl.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.xtraTabControl1)).BeginInit();
     this.xtraTabControl1.SuspendLayout();
     this.tabPage.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.vGridControl)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.ItemTextEditUID)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.ItemTextEditSName)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.ItemTextEditSType)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.ItemTextEditDQ)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.ItemTextEditcol1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemComboBox1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemComboBox2)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemComboBox3)).BeginInit();
     this.SuspendLayout();
     //
     // panelControl
     //
     this.panelControl.Controls.Add(this.xtraTabControl1);
     this.panelControl.Location = new System.Drawing.Point(0, 0);
     this.panelControl.Name = "panelControl";
     this.panelControl.Size = new System.Drawing.Size(395, 175);
     this.panelControl.TabIndex = 0;
     this.panelControl.Text = "panelControl1";
     //
     // xtraTabControl1
     //
     this.xtraTabControl1.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
                 | System.Windows.Forms.AnchorStyles.Left)
                 | System.Windows.Forms.AnchorStyles.Right)));
     this.xtraTabControl1.Location = new System.Drawing.Point(7, 7);
     this.xtraTabControl1.Name = "xtraTabControl1";
     this.xtraTabControl1.SelectedTabPage = this.tabPage;
     this.xtraTabControl1.Size = new System.Drawing.Size(382, 161);
     this.xtraTabControl1.TabIndex = 1;
     this.xtraTabControl1.TabPages.AddRange(new DevExpress.XtraTab.XtraTabPage[] {
     this.tabPage});
     this.xtraTabControl1.Text = "xtraTabControl1";
     //
     // tabPage
     //
     this.tabPage.Controls.Add(this.vGridControl);
     this.tabPage.Name = "tabPage";
     this.tabPage.Size = new System.Drawing.Size(378, 145);
     //
     // vGridControl
     //
     this.vGridControl.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.vGridControl.Location = new System.Drawing.Point(3, 3);
     this.vGridControl.Name = "vGridControl";
     this.vGridControl.RecordWidth = 234;
     this.vGridControl.RepositoryItems.AddRange(new DevExpress.XtraEditors.Repository.RepositoryItem[] {
     this.ItemTextEditUID,
     this.ItemTextEditSName,
     this.ItemTextEditSType,
     this.ItemTextEditDQ,
     this.ItemTextEditcol1,
     this.repositoryItemComboBox1,
     this.repositoryItemComboBox2,
     this.repositoryItemComboBox3});
     this.vGridControl.RowHeaderWidth = 129;
     this.vGridControl.Rows.AddRange(new DevExpress.XtraVerticalGrid.Rows.BaseRow[] {
     this.rowUID,
     this.rowSName,
     this.rowSType,
     this.rowDQ,
     this.rowcol1});
     this.vGridControl.Size = new System.Drawing.Size(369, 138);
     this.vGridControl.TabIndex = 0;
     //
     // ItemTextEditUID
     //
     this.ItemTextEditUID.AutoHeight = false;
     this.ItemTextEditUID.MaxLength = 50;
     this.ItemTextEditUID.Name = "ItemTextEditUID";
     //
     // ItemTextEditSName
     //
     this.ItemTextEditSName.AutoHeight = false;
     this.ItemTextEditSName.MaxLength = 500;
     this.ItemTextEditSName.Name = "ItemTextEditSName";
     //
     // ItemTextEditSType
     //
     this.ItemTextEditSType.AutoHeight = false;
     this.ItemTextEditSType.MaxLength = 50;
     this.ItemTextEditSType.Name = "ItemTextEditSType";
     //
     // ItemTextEditDQ
     //
     this.ItemTextEditDQ.AutoHeight = false;
     this.ItemTextEditDQ.MaxLength = 50;
     this.ItemTextEditDQ.Name = "ItemTextEditDQ";
     //
     // ItemTextEditcol1
     //
     this.ItemTextEditcol1.AutoHeight = false;
     this.ItemTextEditcol1.MaxLength = 50;
     this.ItemTextEditcol1.Name = "ItemTextEditcol1";
     //
     // repositoryItemComboBox1
     //
     this.repositoryItemComboBox1.AutoHeight = false;
     this.repositoryItemComboBox1.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.repositoryItemComboBox1.Items.AddRange(new object[] {
     "��Ͻ������",
     "�ؼ�ֱ��ֱ��",
     "�ؼ��ع�",
     "�ؼ��ι�",
     "�ؼ�����"});
     this.repositoryItemComboBox1.Name = "repositoryItemComboBox1";
     //
     // repositoryItemComboBox2
     //
     this.repositoryItemComboBox2.AutoHeight = false;
     this.repositoryItemComboBox2.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.repositoryItemComboBox2.Name = "repositoryItemComboBox2";
     //
     // rowUID
     //
     this.rowUID.Height = 25;
     this.rowUID.Name = "rowUID";
     this.rowUID.Properties.FieldName = "UID";
     this.rowUID.Properties.ImageIndex = 25;
     this.rowUID.Properties.RowEdit = this.ItemTextEditUID;
     this.rowUID.Visible = false;
     //
     // rowSName
     //
     this.rowSName.Height = 25;
     this.rowSName.Name = "rowSName";
     this.rowSName.Properties.Caption = "����";
     this.rowSName.Properties.FieldName = "SName";
     this.rowSName.Properties.ImageIndex = 25;
     this.rowSName.Properties.RowEdit = this.ItemTextEditSName;
     //
     // rowSType
     //
     this.rowSType.Height = 25;
     this.rowSType.Name = "rowSType";
     this.rowSType.Properties.Caption = "����";
     this.rowSType.Properties.FieldName = "SType";
     this.rowSType.Properties.ImageIndex = 25;
     this.rowSType.Properties.RowEdit = this.repositoryItemComboBox1;
     //
     // rowDQ
     //
     this.rowDQ.Height = 25;
     this.rowDQ.Name = "rowDQ";
     this.rowDQ.Properties.Caption = "����";
     this.rowDQ.Properties.FieldName = "DQ";
     this.rowDQ.Properties.ImageIndex = 25;
     this.rowDQ.Properties.RowEdit = this.repositoryItemComboBox2;
     //
     // rowcol1
     //
     this.rowcol1.Height = 25;
     this.rowcol1.Name = "rowcol1";
     this.rowcol1.Properties.Caption = "Ͷ�����";
     this.rowcol1.Properties.FieldName = "col1";
     this.rowcol1.Properties.ImageIndex = 25;
     this.rowcol1.Properties.RowEdit = this.repositoryItemComboBox3;
     //
     // btnOK
     //
     this.btnOK.Location = new System.Drawing.Point(203, 181);
     this.btnOK.Name = "btnOK";
     this.btnOK.Size = new System.Drawing.Size(75, 23);
     this.btnOK.TabIndex = 0;
     this.btnOK.Text = "ȷ��";
     this.btnOK.Click += new System.EventHandler(this.btnOK_Click);
     //
     // btnCancel
     //
     this.btnCancel.DialogResult = System.Windows.Forms.DialogResult.Cancel;
     this.btnCancel.Location = new System.Drawing.Point(307, 181);
     this.btnCancel.Name = "btnCancel";
     this.btnCancel.Size = new System.Drawing.Size(75, 23);
     this.btnCancel.TabIndex = 0;
     this.btnCancel.Text = "ȡ��";
     //
     // repositoryItemComboBox3
     //
     this.repositoryItemComboBox3.AutoHeight = false;
     this.repositoryItemComboBox3.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.repositoryItemComboBox3.Name = "repositoryItemComboBox3";
     //
     // FrmPs_Table_EnterpriseDialog
     //
     this.AcceptButton = this.btnOK;
     this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 12F);
     this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
     this.CancelButton = this.btnCancel;
     this.ClientSize = new System.Drawing.Size(395, 206);
     this.Controls.Add(this.panelControl);
     this.Controls.Add(this.btnOK);
     this.Controls.Add(this.btnCancel);
     this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedDialog;
     this.MaximizeBox = false;
     this.MinimizeBox = false;
     this.Name = "FrmPs_Table_EnterpriseDialog";
     this.ShowInTaskbar = false;
     this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen;
     this.Text = "��ҵ��ϸ";
     this.Load += new System.EventHandler(this.FrmPs_Table_EnterpriseDialog_Load);
     ((System.ComponentModel.ISupportInitialize)(this.panelControl)).EndInit();
     this.panelControl.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.xtraTabControl1)).EndInit();
     this.xtraTabControl1.ResumeLayout(false);
     this.tabPage.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.vGridControl)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.ItemTextEditUID)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.ItemTextEditSName)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.ItemTextEditSType)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.ItemTextEditDQ)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.ItemTextEditcol1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemComboBox1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemComboBox2)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemComboBox3)).EndInit();
     this.ResumeLayout(false);
 }
Example #40
0
 /// <summary>
 /// Required method for Designer support - do not modify
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     this.gridControl1               = new DevExpress.XtraGrid.GridControl();
     this.gridView1                  = new DevExpress.XtraGrid.Views.Grid.GridView();
     this.columnID                   = new DevExpress.XtraGrid.Columns.GridColumn();
     this.columnName                 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.columnColor                = new DevExpress.XtraGrid.Columns.GridColumn();
     this.repositoryItemComboBox1    = new DevExpress.XtraEditors.Repository.RepositoryItemComboBox();
     this.columnImage                = new DevExpress.XtraGrid.Columns.GridColumn();
     this.repositoryItemPictureEdit1 = new DevExpress.XtraEditors.Repository.RepositoryItemPictureEdit();
     this.label1 = new System.Windows.Forms.Label();
     ((System.ComponentModel.ISupportInitialize)(this.gridControl1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridView1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemComboBox1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemPictureEdit1)).BeginInit();
     this.SuspendLayout();
     //
     // gridControl1
     //
     this.gridControl1.Dock = System.Windows.Forms.DockStyle.Fill;
     this.gridControl1.EmbeddedNavigator.Name = "";
     this.gridControl1.Location             = new System.Drawing.Point(0, 23);
     this.gridControl1.LookAndFeel.SkinName = "The Asphalt World";
     this.gridControl1.LookAndFeel.UseDefaultLookAndFeel = false;
     this.gridControl1.MainView = this.gridView1;
     this.gridControl1.Name     = "gridControl1";
     this.gridControl1.RepositoryItems.AddRange(new DevExpress.XtraEditors.Repository.RepositoryItem[] {
         this.repositoryItemPictureEdit1,
         this.repositoryItemComboBox1
     });
     this.gridControl1.Size     = new System.Drawing.Size(527, 286);
     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.columnID,
         this.columnName,
         this.columnColor,
         this.columnImage
     });
     this.gridView1.GridControl = this.gridControl1;
     this.gridView1.Name        = "gridView1";
     this.gridView1.OptionsView.ShowGroupPanel = false;
     this.gridView1.RowHeight = 33;
     this.gridView1.CustomUnboundColumnData += new DevExpress.XtraGrid.Views.Base.CustomColumnDataEventHandler(this.gridView1_CustomUnboundColumnData);
     //
     // columnID
     //
     this.columnID.Caption   = "ID";
     this.columnID.FieldName = "ID";
     this.columnID.Name      = "columnID";
     this.columnID.OptionsColumn.ReadOnly = true;
     this.columnID.Visible      = true;
     this.columnID.VisibleIndex = 0;
     this.columnID.Width        = 81;
     //
     // columnName
     //
     this.columnName.Caption      = "Name";
     this.columnName.FieldName    = "Name";
     this.columnName.Name         = "columnName";
     this.columnName.Visible      = true;
     this.columnName.VisibleIndex = 1;
     this.columnName.Width        = 132;
     //
     // columnColor
     //
     this.columnColor.Caption      = "Color";
     this.columnColor.ColumnEdit   = this.repositoryItemComboBox1;
     this.columnColor.FieldName    = "Color";
     this.columnColor.Name         = "columnColor";
     this.columnColor.Visible      = true;
     this.columnColor.VisibleIndex = 2;
     this.columnColor.Width        = 152;
     //
     // repositoryItemComboBox1
     //
     this.repositoryItemComboBox1.AutoHeight = false;
     this.repositoryItemComboBox1.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
         new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)
     });
     this.repositoryItemComboBox1.Items.AddRange(new object[] {
         "Black",
         "Blue",
         "Green",
         "Magenta",
         "Orange",
         "Pink",
         "Red",
         "White",
         "Yellow"
     });
     this.repositoryItemComboBox1.Name = "repositoryItemComboBox1";
     //
     // columnImage
     //
     this.columnImage.Caption    = "Image (unbound)";
     this.columnImage.ColumnEdit = this.repositoryItemPictureEdit1;
     this.columnImage.FieldName  = "Image";
     this.columnImage.Name       = "columnImage";
     this.columnImage.OptionsColumn.AllowEdit = false;
     this.columnImage.UnboundType             = DevExpress.Data.UnboundColumnType.Object;
     this.columnImage.Visible      = true;
     this.columnImage.VisibleIndex = 3;
     this.columnImage.Width        = 118;
     //
     // repositoryItemPictureEdit1
     //
     this.repositoryItemPictureEdit1.Name = "repositoryItemPictureEdit1";
     //
     // label1
     //
     this.label1.Dock     = System.Windows.Forms.DockStyle.Top;
     this.label1.Font     = new System.Drawing.Font("Microsoft Sans Serif", 9F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(204)));
     this.label1.Location = new System.Drawing.Point(0, 0);
     this.label1.Name     = "label1";
     this.label1.Size     = new System.Drawing.Size(527, 23);
     this.label1.TabIndex = 1;
     this.label1.Text     = "What\'s your favorite color?";
     //
     // Form1
     //
     this.AutoScaleBaseSize = new System.Drawing.Size(5, 13);
     this.ClientSize        = new System.Drawing.Size(527, 309);
     this.Controls.Add(this.gridControl1);
     this.Controls.Add(this.label1);
     this.Name = "Form1";
     this.Text = "Form1";
     ((System.ComponentModel.ISupportInitialize)(this.gridControl1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridView1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemComboBox1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemPictureEdit1)).EndInit();
     this.ResumeLayout(false);
 }
Example #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.components = new System.ComponentModel.Container();
     System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(frmPackage));
     DevExpress.XtraGrid.GridLevelNode gridLevelNode1 = new DevExpress.XtraGrid.GridLevelNode();
     DevExpress.XtraGrid.GridLevelNode gridLevelNode2 = new DevExpress.XtraGrid.GridLevelNode();
     this.grpMDPackageTop = new DevExpress.XtraEditors.GroupControl();
     this.label31 = new System.Windows.Forms.Label();
     this.ddlPackageCategory = new DevExpress.XtraEditors.ImageComboBoxEdit();
     this.Searchpanel = new System.Windows.Forms.Panel();
     this.btn_Search = new DevExpress.XtraEditors.SimpleButton();
     this.txtSearch = new DevExpress.XtraEditors.TextEdit();
     this.grpPackage = new DevExpress.XtraEditors.GroupControl();
     this.btn_PackageAdd = new DevExpress.XtraEditors.SimpleButton();
     this.imageList1 = new System.Windows.Forms.ImageList(this.components);
     this.btn_PackageDel = new DevExpress.XtraEditors.SimpleButton();
     this.groupControl1 = new DevExpress.XtraEditors.GroupControl();
     this.gridControlMd_Package = new DevExpress.XtraGrid.GridControl();
     this.gridViewMd_Package = new DevExpress.XtraGrid.Views.Grid.GridView();
     this.gridColumnPKG1 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumnPKG2 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumnPKG3 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gcPkgPriceWGST = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumnPKG4 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumnPKG5 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn30 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.chk_DurationUnit = new DevExpress.XtraEditors.Repository.RepositoryItemComboBox();
     this.gcFreePkg = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumnPKG6 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumnPKG7 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.StartDate = new DevExpress.XtraEditors.Repository.RepositoryItemDateEdit();
     this.gridColumnPKG8 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.EndDate = new DevExpress.XtraEditors.Repository.RepositoryItemDateEdit();
     this.gridColumnPKG9 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn1 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn2 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.chk_Peak = new DevExpress.XtraEditors.Repository.RepositoryItemCheckEdit();
     this.gridColumn3 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.chk_StudentPackage = new DevExpress.XtraEditors.Repository.RepositoryItemCheckEdit();
     this.gridColumn4 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.lk_Category = new DevExpress.XtraEditors.Repository.RepositoryItemLookUpEdit();
     this.gridColumn5 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn6 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn7 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.chk_GIRO = new DevExpress.XtraEditors.Repository.RepositoryItemCheckEdit();
     this.gridColumn8 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn28 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.chk_Sell = new DevExpress.XtraEditors.Repository.RepositoryItemCheckEdit();
     this.gridColumn31 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.chk_Peak_1 = new DevExpress.XtraEditors.Repository.RepositoryItemComboBox();
     this.chk_StuPackage = new DevExpress.XtraEditors.Repository.RepositoryItemComboBox();
     this.repositoryItemCheckEdit1 = new DevExpress.XtraEditors.Repository.RepositoryItemCheckEdit();
     this.chk_RestUpgrade = new DevExpress.XtraEditors.Repository.RepositoryItemCheckEdit();
     this.grpPackageGroup = new DevExpress.XtraEditors.GroupControl();
     this.btnPacGroup_Add = new DevExpress.XtraEditors.SimpleButton();
     this.btnPacGroup_Del = new DevExpress.XtraEditors.SimpleButton();
     this.groupControl4 = new DevExpress.XtraEditors.GroupControl();
     this.gridControlMd_PackageGroup = new DevExpress.XtraGrid.GridControl();
     this.gridViewMd_PackageGroup = new DevExpress.XtraGrid.Views.Grid.GridView();
     this.gridColumnPG1 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumnPG2 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumnPG3 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gcPkgComboPriceWGST = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumnPG4 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.lk_pkGroupCatID = new DevExpress.XtraEditors.Repository.RepositoryItemLookUpEdit();
     this.gridColumnPG5 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumnPG6 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.grpCreditPackage = new DevExpress.XtraEditors.GroupControl();
     this.btnCreditPackage_Add = new DevExpress.XtraEditors.SimpleButton();
     this.btnCreditPackage_Del = new DevExpress.XtraEditors.SimpleButton();
     this.groupControl5 = new DevExpress.XtraEditors.GroupControl();
     this.gridControlMd_CreditPackage = new DevExpress.XtraGrid.GridControl();
     this.gridViewMd_CreditPackage = new DevExpress.XtraGrid.Views.Grid.GridView();
     this.gridColumnCP1 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumnCP2 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn24 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumnCP3 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gcPriceWGST = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumnCP4 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.EffCCStartDate = new DevExpress.XtraEditors.Repository.RepositoryItemDateEdit();
     this.gridColumnCP5 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.EffCCEndDate = new DevExpress.XtraEditors.Repository.RepositoryItemDateEdit();
     this.gridColumnCP6 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.lk_CreditCategoryID = new DevExpress.XtraEditors.Repository.RepositoryItemLookUpEdit();
     this.gridColumn29 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumnCP7 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumnCP8 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gcFreeCredit = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumnCP9 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.grpPackageClass = new DevExpress.XtraEditors.GroupControl();
     this.btn_PGC_Del = new DevExpress.XtraEditors.SimpleButton();
     this.btn_PGCAll_Del = new DevExpress.XtraEditors.SimpleButton();
     this.btn_PGCAll_Add = new DevExpress.XtraEditors.SimpleButton();
     this.btn_PGC_Add = new DevExpress.XtraEditors.SimpleButton();
     this.gridPackageClass2 = new DevExpress.XtraGrid.GridControl();
     this.gvPackageClass2 = new DevExpress.XtraGrid.Views.Grid.GridView();
     this.gridColumn13 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn14 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn21 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.label2 = new System.Windows.Forms.Label();
     this.gridPackageClass = new DevExpress.XtraGrid.GridControl();
     this.gvPackageClass = new DevExpress.XtraGrid.Views.Grid.GridView();
     this.gridColumn15 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn16 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.btn_PGB_Del = new DevExpress.XtraEditors.SimpleButton();
     this.btn_PGBAll_Del = new DevExpress.XtraEditors.SimpleButton();
     this.btn_PGBAll_Add = new DevExpress.XtraEditors.SimpleButton();
     this.btn_PGB_Add = new DevExpress.XtraEditors.SimpleButton();
     this.btn_PGUB_Del = new DevExpress.XtraEditors.SimpleButton();
     this.btn_PGUBAll_Del = new DevExpress.XtraEditors.SimpleButton();
     this.btn_PGUBAll_Add = new DevExpress.XtraEditors.SimpleButton();
     this.btn_PGUB_Add = new DevExpress.XtraEditors.SimpleButton();
     this.gridPcGroupBranch2 = new DevExpress.XtraGrid.GridControl();
     this.gvPcGroupBranch2 = new DevExpress.XtraGrid.Views.Grid.GridView();
     this.gridPcGroupUseBranch2 = new DevExpress.XtraGrid.GridControl();
     this.gvPcGroupUseBranch2 = new DevExpress.XtraGrid.Views.Grid.GridView();
     this.gridColumn17 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn18 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn22 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn50 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn51 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn52 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn53 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn54 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.label4 = new System.Windows.Forms.Label();
     this.label5 = new System.Windows.Forms.Label();
     this.gridPcGroupBranch = new DevExpress.XtraGrid.GridControl();
     this.gvPcGroupBranch = new DevExpress.XtraGrid.Views.Grid.GridView();
     this.gridPcGroupUseBranch = new DevExpress.XtraGrid.GridControl();
     this.gvPcGroupUseBranch = new DevExpress.XtraGrid.Views.Grid.GridView();
     this.gridColumn19 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn20 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.label119 = new System.Windows.Forms.Label();
     this.label120 = new System.Windows.Forms.Label();
     this.grpPackageService = new DevExpress.XtraEditors.GroupControl();
     this.btn_PSAll_Del = new DevExpress.XtraEditors.SimpleButton();
     this.btn_PS_Del = new DevExpress.XtraEditors.SimpleButton();
     this.btn_PSAdd_Add = new DevExpress.XtraEditors.SimpleButton();
     this.btn_PS_Add = new DevExpress.XtraEditors.SimpleButton();
     this.gridPackageService2 = new DevExpress.XtraGrid.GridControl();
     this.gvPackageService2 = new DevExpress.XtraGrid.Views.Grid.GridView();
     this.gridColumn9 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn10 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn23 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.label1 = new System.Windows.Forms.Label();
     this.gridPackageService = new DevExpress.XtraGrid.GridControl();
     this.gvPackageService = new DevExpress.XtraGrid.Views.Grid.GridView();
     this.gridColumn11 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn12 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.btn_PB_Del = new DevExpress.XtraEditors.SimpleButton();
     this.btn_PBAll_Del = new DevExpress.XtraEditors.SimpleButton();
     this.btn_PBAll_Add = new DevExpress.XtraEditors.SimpleButton();
     this.btn_PB_Add = new DevExpress.XtraEditors.SimpleButton();
     this.btn_PUB_Del = new DevExpress.XtraEditors.SimpleButton();
     this.btn_PUBAll_Del = new DevExpress.XtraEditors.SimpleButton();
     this.btn_PUBAll_Add = new DevExpress.XtraEditors.SimpleButton();
     this.btn_PUB_Add = new DevExpress.XtraEditors.SimpleButton();
     this.gridPackageBranch2 = new DevExpress.XtraGrid.GridControl();
     this.gridPackageUseBranch2 = new DevExpress.XtraGrid.GridControl();
     this.gvPSBranch2 = new DevExpress.XtraGrid.Views.Grid.GridView();
     this.gvPSUseBranch2 = new DevExpress.XtraGrid.Views.Grid.GridView();
     this.colBranchCode2 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.colBranchName2 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.colUseBranchCode2 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.colUseBranchName2 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.label3 = new System.Windows.Forms.Label();
     this.label7 = new System.Windows.Forms.Label();
     this.gridPackageBranch = new DevExpress.XtraGrid.GridControl();
     this.gridPackageUseBranch = new DevExpress.XtraGrid.GridControl();
     this.gvPSBranch = new DevExpress.XtraGrid.Views.Grid.GridView();
     this.gvPSUseBranch = new DevExpress.XtraGrid.Views.Grid.GridView();
     this.colBranchCode = new DevExpress.XtraGrid.Columns.GridColumn();
     this.colBranchName = new DevExpress.XtraGrid.Columns.GridColumn();
     this.colUseBranchCode = new DevExpress.XtraGrid.Columns.GridColumn();
     this.colUseBranchName = new DevExpress.XtraGrid.Columns.GridColumn();
     this.PackageGroup = new DevExpress.XtraEditors.GroupControl();
     this.btn_PacGroup_Add = new DevExpress.XtraEditors.SimpleButton();
     this.btn_PacGroup_Del = new DevExpress.XtraEditors.SimpleButton();
     this.groupControl2 = new DevExpress.XtraEditors.GroupControl();
     this.gridControlMd_GroupEntries = new DevExpress.XtraGrid.GridControl();
     this.gridViewMd_GroupEntries = new DevExpress.XtraGrid.Views.Grid.GridView();
     this.gridColumn44 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn45 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.lk_GrpPackageCode = new DevExpress.XtraEditors.Repository.RepositoryItemLookUpEdit();
     this.gridColumn46 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.splitter2 = new System.Windows.Forms.Splitter();
     this.GroupCreditPackage = new DevExpress.XtraEditors.GroupControl();
     this.btn_CreGroup_Add = new DevExpress.XtraEditors.SimpleButton();
     this.btn_CreGroup_Del = new DevExpress.XtraEditors.SimpleButton();
     this.groupControl3 = new DevExpress.XtraEditors.GroupControl();
     this.GridCreditRestric = new DevExpress.XtraGrid.GridControl();
     this.gridViewmd_CreditRestric = new DevExpress.XtraGrid.Views.Grid.GridView();
     this.gridColumn25 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn26 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.lk_PackageCode = new DevExpress.XtraEditors.Repository.RepositoryItemLookUpEdit();
     this.gridColumn27 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.chk_AllowDiscount = new DevExpress.XtraEditors.Repository.RepositoryItemCheckEdit();
     this.grpBranch = new DevExpress.XtraEditors.GroupControl();
     this.btnPacBranch_Del = new DevExpress.XtraEditors.SimpleButton();
     this.btnPacBranch_DelAll = new DevExpress.XtraEditors.SimpleButton();
     this.btnPacBranch_AddAll = new DevExpress.XtraEditors.SimpleButton();
     this.btnPacBranch_Add = new DevExpress.XtraEditors.SimpleButton();
     this.gridPacBranch2 = new DevExpress.XtraGrid.GridControl();
     this.gvPacBranch2 = new DevExpress.XtraGrid.Views.Grid.GridView();
     this.gridColumn33 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn34 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.label6 = new System.Windows.Forms.Label();
     this.gridPacBranch = new DevExpress.XtraGrid.GridControl();
     this.gvPacBranch = new DevExpress.XtraGrid.Views.Grid.GridView();
     this.gridColumn35 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn36 = new DevExpress.XtraGrid.Columns.GridColumn();
     ((System.ComponentModel.ISupportInitialize)(this.grpMDPackageTop)).BeginInit();
     this.grpMDPackageTop.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.ddlPackageCategory.Properties)).BeginInit();
     this.Searchpanel.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.txtSearch.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.grpPackage)).BeginInit();
     this.grpPackage.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.groupControl1)).BeginInit();
     this.groupControl1.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.gridControlMd_Package)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridViewMd_Package)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.chk_DurationUnit)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.StartDate)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.StartDate.VistaTimeProperties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.EndDate)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.EndDate.VistaTimeProperties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.chk_Peak)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.chk_StudentPackage)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.lk_Category)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.chk_GIRO)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.chk_Sell)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.chk_Peak_1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.chk_StuPackage)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemCheckEdit1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.chk_RestUpgrade)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.grpPackageGroup)).BeginInit();
     this.grpPackageGroup.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.groupControl4)).BeginInit();
     this.groupControl4.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.gridControlMd_PackageGroup)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridViewMd_PackageGroup)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.lk_pkGroupCatID)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.grpCreditPackage)).BeginInit();
     this.grpCreditPackage.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.groupControl5)).BeginInit();
     this.groupControl5.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.gridControlMd_CreditPackage)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridViewMd_CreditPackage)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.EffCCStartDate)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.EffCCStartDate.VistaTimeProperties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.EffCCEndDate)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.EffCCEndDate.VistaTimeProperties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.lk_CreditCategoryID)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.grpPackageClass)).BeginInit();
     this.grpPackageClass.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.gridPackageClass2)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.gvPackageClass2)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridPackageClass)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.gvPackageClass)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridPcGroupBranch2)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.gvPcGroupBranch2)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridPcGroupBranch)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.gvPcGroupBranch)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridPcGroupUseBranch2)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.gvPcGroupUseBranch2)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridPcGroupUseBranch)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.gvPcGroupUseBranch)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.grpPackageService)).BeginInit();
     this.grpPackageService.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.gridPackageService2)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.gvPackageService2)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridPackageService)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.gvPackageService)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridPackageBranch2)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridPackageUseBranch2)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.gvPSBranch2)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.gvPSUseBranch2)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridPackageBranch)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridPackageUseBranch)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.gvPSBranch)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.gvPSUseBranch)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.PackageGroup)).BeginInit();
     this.PackageGroup.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.groupControl2)).BeginInit();
     this.groupControl2.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.gridControlMd_GroupEntries)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridViewMd_GroupEntries)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.lk_GrpPackageCode)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.GroupCreditPackage)).BeginInit();
     this.GroupCreditPackage.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.groupControl3)).BeginInit();
     this.groupControl3.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.GridCreditRestric)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridViewmd_CreditRestric)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.lk_PackageCode)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.chk_AllowDiscount)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.grpBranch)).BeginInit();
     this.grpBranch.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.gridPacBranch2)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.gvPacBranch2)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridPacBranch)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.gvPacBranch)).BeginInit();
     this.SuspendLayout();
     //
     // grpMDPackageTop
     //
     this.grpMDPackageTop.Appearance.BackColor = System.Drawing.SystemColors.Control;
     this.grpMDPackageTop.Appearance.Options.UseBackColor = true;
     this.grpMDPackageTop.AppearanceCaption.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.grpMDPackageTop.AppearanceCaption.Options.UseFont = true;
     this.grpMDPackageTop.Controls.Add(this.label31);
     this.grpMDPackageTop.Controls.Add(this.ddlPackageCategory);
     this.grpMDPackageTop.Controls.Add(this.Searchpanel);
     this.grpMDPackageTop.Controls.Add(this.grpPackage);
     this.grpMDPackageTop.Controls.Add(this.grpPackageGroup);
     this.grpMDPackageTop.Controls.Add(this.grpCreditPackage);
     this.grpMDPackageTop.ImeMode = System.Windows.Forms.ImeMode.On;
     this.grpMDPackageTop.Location = new System.Drawing.Point(8, 2);
     this.grpMDPackageTop.LookAndFeel.Style = DevExpress.LookAndFeel.LookAndFeelStyle.Office2003;
     this.grpMDPackageTop.LookAndFeel.UseDefaultLookAndFeel = false;
     this.grpMDPackageTop.Name = "grpMDPackageTop";
     this.grpMDPackageTop.Size = new System.Drawing.Size(968, 280);
     this.grpMDPackageTop.TabIndex = 93;
     this.grpMDPackageTop.Text = "MASTER FILE";
     //
     // label31
     //
     this.label31.BackColor = System.Drawing.Color.Transparent;
     this.label31.Font = new System.Drawing.Font("Tahoma", 9.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label31.Location = new System.Drawing.Point(8, 24);
     this.label31.Name = "label31";
     this.label31.Size = new System.Drawing.Size(136, 16);
     this.label31.TabIndex = 116;
     this.label31.Text = "Package Category";
     this.label31.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
     //
     // ddlPackageCategory
     //
     this.ddlPackageCategory.EditValue = "mdPKG_cbNCategoryID";
     this.ddlPackageCategory.Location = new System.Drawing.Point(144, 24);
     this.ddlPackageCategory.Name = "ddlPackageCategory";
     this.ddlPackageCategory.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.ddlPackageCategory.Properties.LookAndFeel.UseDefaultLookAndFeel = false;
     this.ddlPackageCategory.Size = new System.Drawing.Size(176, 20);
     this.ddlPackageCategory.TabIndex = 19;
     this.ddlPackageCategory.SelectedIndexChanged += new System.EventHandler(this.ddlPackageCategory_SelectedIndexChanged);
     //
     // Searchpanel
     //
     this.Searchpanel.Controls.Add(this.btn_Search);
     this.Searchpanel.Controls.Add(this.txtSearch);
     this.Searchpanel.Location = new System.Drawing.Point(488, 24);
     this.Searchpanel.Name = "Searchpanel";
     this.Searchpanel.Size = new System.Drawing.Size(464, 24);
     this.Searchpanel.TabIndex = 151;
     //
     // btn_Search
     //
     this.btn_Search.Appearance.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold);
     this.btn_Search.Appearance.Options.UseFont = true;
     this.btn_Search.ButtonStyle = DevExpress.XtraEditors.Controls.BorderStyles.Simple;
     this.btn_Search.Location = new System.Drawing.Point(392, 0);
     this.btn_Search.Name = "btn_Search";
     this.btn_Search.Size = new System.Drawing.Size(56, 20);
     this.btn_Search.TabIndex = 137;
     this.btn_Search.Text = "Search";
     this.btn_Search.Click += new System.EventHandler(this.btn_Search_Click);
     //
     // txtSearch
     //
     this.txtSearch.EditValue = "";
     this.txtSearch.ImeMode = System.Windows.Forms.ImeMode.On;
     this.txtSearch.Location = new System.Drawing.Point(232, 0);
     this.txtSearch.Name = "txtSearch";
     this.txtSearch.Properties.Appearance.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.txtSearch.Properties.Appearance.Options.UseFont = true;
     this.txtSearch.Properties.LookAndFeel.UseDefaultLookAndFeel = false;
     this.txtSearch.Size = new System.Drawing.Size(152, 20);
     this.txtSearch.TabIndex = 136;
     this.txtSearch.KeyDown += new System.Windows.Forms.KeyEventHandler(this.txtSearch_KeyDown);
     //
     // grpPackage
     //
     this.grpPackage.Controls.Add(this.btn_PackageAdd);
     this.grpPackage.Controls.Add(this.btn_PackageDel);
     this.grpPackage.Controls.Add(this.groupControl1);
     this.grpPackage.Location = new System.Drawing.Point(0, 48);
     this.grpPackage.LookAndFeel.Style = DevExpress.LookAndFeel.LookAndFeelStyle.Office2003;
     this.grpPackage.LookAndFeel.UseDefaultLookAndFeel = false;
     this.grpPackage.Name = "grpPackage";
     this.grpPackage.Size = new System.Drawing.Size(960, 232);
     this.grpPackage.TabIndex = 118;
     this.grpPackage.Text = "Package";
     //
     // btn_PackageAdd
     //
     this.btn_PackageAdd.Appearance.Font = new System.Drawing.Font("Tahoma", 14.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.btn_PackageAdd.Appearance.Options.UseFont = true;
     this.btn_PackageAdd.Appearance.Options.UseTextOptions = true;
     this.btn_PackageAdd.Appearance.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.btn_PackageAdd.Appearance.TextOptions.VAlignment = DevExpress.Utils.VertAlignment.Top;
     this.btn_PackageAdd.Appearance.TextOptions.WordWrap = DevExpress.Utils.WordWrap.Wrap;
     this.btn_PackageAdd.ImageIndex = 0;
     this.btn_PackageAdd.ImageList = this.imageList1;
     this.btn_PackageAdd.ImeMode = System.Windows.Forms.ImeMode.On;
     this.btn_PackageAdd.Location = new System.Drawing.Point(8, 24);
     this.btn_PackageAdd.Name = "btn_PackageAdd";
     this.btn_PackageAdd.Size = new System.Drawing.Size(38, 16);
     this.btn_PackageAdd.TabIndex = 132;
     this.btn_PackageAdd.Click += new System.EventHandler(this.btn_PackageAdd_Click);
     //
     // imageList1
     //
     this.imageList1.ImageStream = ((System.Windows.Forms.ImageListStreamer)(resources.GetObject("imageList1.ImageStream")));
     this.imageList1.TransparentColor = System.Drawing.Color.Magenta;
     this.imageList1.Images.SetKeyName(0, "");
     this.imageList1.Images.SetKeyName(1, "");
     this.imageList1.Images.SetKeyName(2, "");
     this.imageList1.Images.SetKeyName(3, "");
     this.imageList1.Images.SetKeyName(4, "");
     this.imageList1.Images.SetKeyName(5, "");
     this.imageList1.Images.SetKeyName(6, "");
     //
     // btn_PackageDel
     //
     this.btn_PackageDel.Appearance.Font = new System.Drawing.Font("Tahoma", 14.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.btn_PackageDel.Appearance.Options.UseFont = true;
     this.btn_PackageDel.Appearance.Options.UseTextOptions = true;
     this.btn_PackageDel.Appearance.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.btn_PackageDel.Appearance.TextOptions.VAlignment = DevExpress.Utils.VertAlignment.Top;
     this.btn_PackageDel.Appearance.TextOptions.WordWrap = DevExpress.Utils.WordWrap.Wrap;
     this.btn_PackageDel.ImageIndex = 1;
     this.btn_PackageDel.ImageList = this.imageList1;
     this.btn_PackageDel.Location = new System.Drawing.Point(48, 24);
     this.btn_PackageDel.Name = "btn_PackageDel";
     this.btn_PackageDel.Size = new System.Drawing.Size(38, 16);
     this.btn_PackageDel.TabIndex = 131;
     this.btn_PackageDel.Click += new System.EventHandler(this.btn_PackageDel_Click);
     //
     // groupControl1
     //
     this.groupControl1.BorderStyle = DevExpress.XtraEditors.Controls.BorderStyles.NoBorder;
     this.groupControl1.Controls.Add(this.gridControlMd_Package);
     this.groupControl1.Location = new System.Drawing.Point(0, 40);
     this.groupControl1.Name = "groupControl1";
     this.groupControl1.Size = new System.Drawing.Size(952, 192);
     this.groupControl1.TabIndex = 121;
     //
     // gridControlMd_Package
     //
     this.gridControlMd_Package.Dock = System.Windows.Forms.DockStyle.Fill;
     gridLevelNode1.RelationName = "Level1";
     this.gridControlMd_Package.LevelTree.Nodes.AddRange(new DevExpress.XtraGrid.GridLevelNode[] {
     gridLevelNode1});
     this.gridControlMd_Package.Location = new System.Drawing.Point(0, 0);
     this.gridControlMd_Package.LookAndFeel.UseDefaultLookAndFeel = false;
     this.gridControlMd_Package.MainView = this.gridViewMd_Package;
     this.gridControlMd_Package.Name = "gridControlMd_Package";
     this.gridControlMd_Package.RepositoryItems.AddRange(new DevExpress.XtraEditors.Repository.RepositoryItem[] {
     this.chk_Peak_1,
     this.chk_StuPackage,
     this.lk_Category,
     this.chk_GIRO,
     this.repositoryItemCheckEdit1,
     this.chk_Peak,
     this.chk_StudentPackage,
     this.chk_RestUpgrade,
     this.StartDate,
     this.EndDate,
     this.chk_Sell,
     this.chk_DurationUnit});
     this.gridControlMd_Package.Size = new System.Drawing.Size(952, 192);
     this.gridControlMd_Package.TabIndex = 2;
     this.gridControlMd_Package.ViewCollection.AddRange(new DevExpress.XtraGrid.Views.Base.BaseView[] {
     this.gridViewMd_Package});
     //
     // gridViewMd_Package
     //
     this.gridViewMd_Package.Columns.AddRange(new DevExpress.XtraGrid.Columns.GridColumn[] {
     this.gridColumnPKG1,
     this.gridColumnPKG2,
     this.gridColumnPKG3,
     this.gcPkgPriceWGST,
     this.gridColumnPKG4,
     this.gridColumnPKG5,
     this.gridColumn30,
     this.gcFreePkg,
     this.gridColumnPKG6,
     this.gridColumnPKG7,
     this.gridColumnPKG8,
     this.gridColumnPKG9,
     this.gridColumn1,
     this.gridColumn2,
     this.gridColumn3,
     this.gridColumn4,
     this.gridColumn5,
     this.gridColumn6,
     this.gridColumn7,
     this.gridColumn8,
     this.gridColumn28,
     this.gridColumn31});
     this.gridViewMd_Package.GridControl = this.gridControlMd_Package;
     this.gridViewMd_Package.Name = "gridViewMd_Package";
     this.gridViewMd_Package.OptionsCustomization.AllowFilter = false;
     this.gridViewMd_Package.OptionsCustomization.AllowSort = false;
     this.gridViewMd_Package.OptionsView.ColumnAutoWidth = false;
     this.gridViewMd_Package.OptionsView.ShowGroupPanel = false;
     this.gridViewMd_Package.FocusedRowChanged += new DevExpress.XtraGrid.Views.Base.FocusedRowChangedEventHandler(this.gridViewMd_Package_FocusedRowChanged);
     this.gridViewMd_Package.LostFocus += new System.EventHandler(this.gridViewMd_Package_LostFocus);
     //
     // gridColumnPKG1
     //
     this.gridColumnPKG1.Caption = "Package Code";
     this.gridColumnPKG1.FieldName = "strPackageCode";
     this.gridColumnPKG1.Name = "gridColumnPKG1";
     this.gridColumnPKG1.Visible = true;
     this.gridColumnPKG1.VisibleIndex = 0;
     this.gridColumnPKG1.Width = 84;
     //
     // gridColumnPKG2
     //
     this.gridColumnPKG2.Caption = "Description";
     this.gridColumnPKG2.FieldName = "strDescription";
     this.gridColumnPKG2.Name = "gridColumnPKG2";
     this.gridColumnPKG2.Visible = true;
     this.gridColumnPKG2.VisibleIndex = 1;
     this.gridColumnPKG2.Width = 147;
     //
     // gridColumnPKG3
     //
     this.gridColumnPKG3.Caption = "Price";
     this.gridColumnPKG3.DisplayFormat.FormatString = "d2";
     this.gridColumnPKG3.DisplayFormat.FormatType = DevExpress.Utils.FormatType.Numeric;
     this.gridColumnPKG3.FieldName = "mListPrice";
     this.gridColumnPKG3.Name = "gridColumnPKG3";
     this.gridColumnPKG3.Visible = true;
     this.gridColumnPKG3.VisibleIndex = 3;
     this.gridColumnPKG3.Width = 61;
     //
     // gcPkgPriceWGST
     //
     this.gcPkgPriceWGST.Caption = "Price w GST";
     this.gcPkgPriceWGST.DisplayFormat.FormatString = "d2";
     this.gcPkgPriceWGST.DisplayFormat.FormatType = DevExpress.Utils.FormatType.Numeric;
     this.gcPkgPriceWGST.FieldName = "mListPriceWGST";
     this.gcPkgPriceWGST.Name = "gcPkgPriceWGST";
     this.gcPkgPriceWGST.Visible = true;
     this.gcPkgPriceWGST.VisibleIndex = 4;
     this.gcPkgPriceWGST.Width = 61;
     //
     // gridColumnPKG4
     //
     this.gridColumnPKG4.Caption = "Max Session";
     this.gridColumnPKG4.DisplayFormat.FormatType = DevExpress.Utils.FormatType.Numeric;
     this.gridColumnPKG4.FieldName = "nMaxSession";
     this.gridColumnPKG4.Name = "gridColumnPKG4";
     this.gridColumnPKG4.Visible = true;
     this.gridColumnPKG4.VisibleIndex = 5;
     this.gridColumnPKG4.Width = 71;
     //
     // gridColumnPKG5
     //
     this.gridColumnPKG5.Caption = "Duration";
     this.gridColumnPKG5.FieldName = "nPackageDuration";
     this.gridColumnPKG5.Name = "gridColumnPKG5";
     this.gridColumnPKG5.Visible = true;
     this.gridColumnPKG5.VisibleIndex = 6;
     this.gridColumnPKG5.Width = 53;
     //
     // gridColumn30
     //
     this.gridColumn30.Caption = "Duration Unit";
     this.gridColumn30.ColumnEdit = this.chk_DurationUnit;
     this.gridColumn30.FieldName = "strDurationUnit";
     this.gridColumn30.Name = "gridColumn30";
     this.gridColumn30.Visible = true;
     this.gridColumn30.VisibleIndex = 7;
     //
     // chk_DurationUnit
     //
     this.chk_DurationUnit.AutoHeight = false;
     this.chk_DurationUnit.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.chk_DurationUnit.Items.AddRange(new object[] {
     "MONTH",
     "WEEK",
     "DAY"});
     this.chk_DurationUnit.Name = "chk_DurationUnit";
     //
     // gcFreePkg
     //
     this.gcFreePkg.Caption = "Free Package";
     this.gcFreePkg.FieldName = "strFreePkgCode";
     this.gcFreePkg.Name = "gcFreePkg";
     this.gcFreePkg.Visible = true;
     this.gcFreePkg.VisibleIndex = 8;
     //
     // gridColumnPKG6
     //
     this.gridColumnPKG6.Caption = "Price per session ";
     this.gridColumnPKG6.DisplayFormat.FormatString = "d2";
     this.gridColumnPKG6.DisplayFormat.FormatType = DevExpress.Utils.FormatType.Numeric;
     this.gridColumnPKG6.FieldName = "mBaseUnitPrice";
     this.gridColumnPKG6.Name = "gridColumnPKG6";
     this.gridColumnPKG6.Visible = true;
     this.gridColumnPKG6.VisibleIndex = 9;
     this.gridColumnPKG6.Width = 95;
     //
     // gridColumnPKG7
     //
     this.gridColumnPKG7.Caption = "Eff. Start Date";
     this.gridColumnPKG7.ColumnEdit = this.StartDate;
     this.gridColumnPKG7.FieldName = "dtValidStart";
     this.gridColumnPKG7.Name = "gridColumnPKG7";
     this.gridColumnPKG7.Visible = true;
     this.gridColumnPKG7.VisibleIndex = 10;
     this.gridColumnPKG7.Width = 89;
     //
     // StartDate
     //
     this.StartDate.AutoHeight = false;
     this.StartDate.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.StartDate.Name = "StartDate";
     this.StartDate.VistaTimeProperties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton()});
     //
     // gridColumnPKG8
     //
     this.gridColumnPKG8.Caption = "Eff. End Date";
     this.gridColumnPKG8.ColumnEdit = this.EndDate;
     this.gridColumnPKG8.FieldName = "dtValidEnd";
     this.gridColumnPKG8.Name = "gridColumnPKG8";
     this.gridColumnPKG8.Visible = true;
     this.gridColumnPKG8.VisibleIndex = 11;
     //
     // EndDate
     //
     this.EndDate.AutoHeight = false;
     this.EndDate.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.EndDate.Name = "EndDate";
     this.EndDate.VistaTimeProperties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton()});
     //
     // gridColumnPKG9
     //
     this.gridColumnPKG9.Caption = "Status";
     this.gridColumnPKG9.FieldName = "nStatus";
     this.gridColumnPKG9.Name = "gridColumnPKG9";
     this.gridColumnPKG9.Visible = true;
     this.gridColumnPKG9.VisibleIndex = 20;
     //
     // gridColumn1
     //
     this.gridColumn1.Caption = "Receipt Desc";
     this.gridColumn1.FieldName = "strReceiptDesc";
     this.gridColumn1.Name = "gridColumn1";
     this.gridColumn1.Visible = true;
     this.gridColumn1.VisibleIndex = 2;
     this.gridColumn1.Width = 119;
     //
     // gridColumn2
     //
     this.gridColumn2.Caption = "Peak";
     this.gridColumn2.ColumnEdit = this.chk_Peak;
     this.gridColumn2.FieldName = "fPeak";
     this.gridColumn2.Name = "gridColumn2";
     this.gridColumn2.Visible = true;
     this.gridColumn2.VisibleIndex = 12;
     this.gridColumn2.Width = 39;
     //
     // chk_Peak
     //
     this.chk_Peak.AutoHeight = false;
     this.chk_Peak.Name = "chk_Peak";
     //
     // gridColumn3
     //
     this.gridColumn3.Caption = "Student Package";
     this.gridColumn3.ColumnEdit = this.chk_StudentPackage;
     this.gridColumn3.FieldName = "fStudentPackage";
     this.gridColumn3.Name = "gridColumn3";
     this.gridColumn3.Visible = true;
     this.gridColumn3.VisibleIndex = 13;
     this.gridColumn3.Width = 97;
     //
     // chk_StudentPackage
     //
     this.chk_StudentPackage.AutoHeight = false;
     this.chk_StudentPackage.Name = "chk_StudentPackage";
     //
     // gridColumn4
     //
     this.gridColumn4.Caption = "Category";
     this.gridColumn4.ColumnEdit = this.lk_Category;
     this.gridColumn4.FieldName = "nCategoryID";
     this.gridColumn4.Name = "gridColumn4";
     this.gridColumn4.OptionsColumn.AllowEdit = false;
     this.gridColumn4.Visible = true;
     this.gridColumn4.VisibleIndex = 14;
     //
     // lk_Category
     //
     this.lk_Category.AutoHeight = false;
     this.lk_Category.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.lk_Category.Name = "lk_Category";
     //
     // gridColumn5
     //
     this.gridColumn5.Caption = "Valid Months";
     this.gridColumn5.DisplayFormat.FormatType = DevExpress.Utils.FormatType.Numeric;
     this.gridColumn5.FieldName = "nValidMonths";
     this.gridColumn5.Name = "gridColumn5";
     this.gridColumn5.Visible = true;
     this.gridColumn5.VisibleIndex = 15;
     //
     // gridColumn6
     //
     this.gridColumn6.Caption = "Warranty Months";
     this.gridColumn6.DisplayFormat.FormatType = DevExpress.Utils.FormatType.Numeric;
     this.gridColumn6.FieldName = "nWarrantyMonths";
     this.gridColumn6.Name = "gridColumn6";
     this.gridColumn6.Visible = true;
     this.gridColumn6.VisibleIndex = 16;
     this.gridColumn6.Width = 97;
     //
     // gridColumn7
     //
     this.gridColumn7.Caption = "GIRO";
     this.gridColumn7.ColumnEdit = this.chk_GIRO;
     this.gridColumn7.FieldName = "fGIRO";
     this.gridColumn7.Name = "gridColumn7";
     this.gridColumn7.Visible = true;
     this.gridColumn7.VisibleIndex = 17;
     this.gridColumn7.Width = 49;
     //
     // chk_GIRO
     //
     this.chk_GIRO.AutoHeight = false;
     this.chk_GIRO.Name = "chk_GIRO";
     //
     // gridColumn8
     //
     this.gridColumn8.Caption = "Upgrade Group";
     this.gridColumn8.DisplayFormat.FormatType = DevExpress.Utils.FormatType.Numeric;
     this.gridColumn8.FieldName = "fNoRestrictionUpgrade";
     this.gridColumn8.Name = "gridColumn8";
     this.gridColumn8.Visible = true;
     this.gridColumn8.VisibleIndex = 18;
     this.gridColumn8.Width = 108;
     //
     // gridColumn28
     //
     this.gridColumn28.Caption = "POS";
     this.gridColumn28.ColumnEdit = this.chk_Sell;
     this.gridColumn28.FieldName = "fSell";
     this.gridColumn28.Name = "gridColumn28";
     this.gridColumn28.Visible = true;
     this.gridColumn28.VisibleIndex = 19;
     //
     // chk_Sell
     //
     this.chk_Sell.AutoHeight = false;
     this.chk_Sell.Name = "chk_Sell";
     //
     // gridColumn31
     //
     this.gridColumn31.Caption = "Is Entries?";
     this.gridColumn31.FieldName = "fEntries";
     this.gridColumn31.Name = "gridColumn31";
     this.gridColumn31.Visible = true;
     this.gridColumn31.VisibleIndex = 21;
     //
     // chk_Peak_1
     //
     this.chk_Peak_1.AutoHeight = false;
     this.chk_Peak_1.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.chk_Peak_1.Name = "chk_Peak_1";
     //
     // chk_StuPackage
     //
     this.chk_StuPackage.AutoHeight = false;
     this.chk_StuPackage.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.chk_StuPackage.Name = "chk_StuPackage";
     //
     // repositoryItemCheckEdit1
     //
     this.repositoryItemCheckEdit1.AutoHeight = false;
     this.repositoryItemCheckEdit1.Name = "repositoryItemCheckEdit1";
     //
     // chk_RestUpgrade
     //
     this.chk_RestUpgrade.AutoHeight = false;
     this.chk_RestUpgrade.Name = "chk_RestUpgrade";
     //
     // grpPackageGroup
     //
     this.grpPackageGroup.Controls.Add(this.btnPacGroup_Add);
     this.grpPackageGroup.Controls.Add(this.btnPacGroup_Del);
     this.grpPackageGroup.Controls.Add(this.groupControl4);
     this.grpPackageGroup.Location = new System.Drawing.Point(0, 48);
     this.grpPackageGroup.LookAndFeel.Style = DevExpress.LookAndFeel.LookAndFeelStyle.Office2003;
     this.grpPackageGroup.LookAndFeel.UseDefaultLookAndFeel = false;
     this.grpPackageGroup.Name = "grpPackageGroup";
     this.grpPackageGroup.Size = new System.Drawing.Size(960, 232);
     this.grpPackageGroup.TabIndex = 119;
     this.grpPackageGroup.Text = "Package Group";
     //
     // btnPacGroup_Add
     //
     this.btnPacGroup_Add.Appearance.Font = new System.Drawing.Font("Tahoma", 14.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.btnPacGroup_Add.Appearance.Options.UseFont = true;
     this.btnPacGroup_Add.Appearance.Options.UseTextOptions = true;
     this.btnPacGroup_Add.Appearance.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.btnPacGroup_Add.Appearance.TextOptions.VAlignment = DevExpress.Utils.VertAlignment.Top;
     this.btnPacGroup_Add.Appearance.TextOptions.WordWrap = DevExpress.Utils.WordWrap.Wrap;
     this.btnPacGroup_Add.ImageIndex = 0;
     this.btnPacGroup_Add.ImageList = this.imageList1;
     this.btnPacGroup_Add.ImeMode = System.Windows.Forms.ImeMode.On;
     this.btnPacGroup_Add.Location = new System.Drawing.Point(8, 24);
     this.btnPacGroup_Add.Name = "btnPacGroup_Add";
     this.btnPacGroup_Add.Size = new System.Drawing.Size(38, 16);
     this.btnPacGroup_Add.TabIndex = 134;
     this.btnPacGroup_Add.Click += new System.EventHandler(this.btnPacGroup_Add_Click);
     //
     // btnPacGroup_Del
     //
     this.btnPacGroup_Del.Appearance.Font = new System.Drawing.Font("Tahoma", 14.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.btnPacGroup_Del.Appearance.Options.UseFont = true;
     this.btnPacGroup_Del.Appearance.Options.UseTextOptions = true;
     this.btnPacGroup_Del.Appearance.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.btnPacGroup_Del.Appearance.TextOptions.VAlignment = DevExpress.Utils.VertAlignment.Top;
     this.btnPacGroup_Del.Appearance.TextOptions.WordWrap = DevExpress.Utils.WordWrap.Wrap;
     this.btnPacGroup_Del.ImageIndex = 1;
     this.btnPacGroup_Del.ImageList = this.imageList1;
     this.btnPacGroup_Del.Location = new System.Drawing.Point(48, 24);
     this.btnPacGroup_Del.Name = "btnPacGroup_Del";
     this.btnPacGroup_Del.Size = new System.Drawing.Size(38, 16);
     this.btnPacGroup_Del.TabIndex = 133;
     this.btnPacGroup_Del.Click += new System.EventHandler(this.btnPacGroup_Del_Click);
     //
     // groupControl4
     //
     this.groupControl4.BorderStyle = DevExpress.XtraEditors.Controls.BorderStyles.NoBorder;
     this.groupControl4.Controls.Add(this.gridControlMd_PackageGroup);
     this.groupControl4.Location = new System.Drawing.Point(0, 40);
     this.groupControl4.Name = "groupControl4";
     this.groupControl4.Size = new System.Drawing.Size(944, 184);
     this.groupControl4.TabIndex = 2;
     //
     // gridControlMd_PackageGroup
     //
     this.gridControlMd_PackageGroup.Dock = System.Windows.Forms.DockStyle.Fill;
     this.gridControlMd_PackageGroup.Location = new System.Drawing.Point(0, 0);
     this.gridControlMd_PackageGroup.LookAndFeel.UseDefaultLookAndFeel = false;
     this.gridControlMd_PackageGroup.MainView = this.gridViewMd_PackageGroup;
     this.gridControlMd_PackageGroup.Name = "gridControlMd_PackageGroup";
     this.gridControlMd_PackageGroup.RepositoryItems.AddRange(new DevExpress.XtraEditors.Repository.RepositoryItem[] {
     this.lk_pkGroupCatID});
     this.gridControlMd_PackageGroup.Size = new System.Drawing.Size(944, 184);
     this.gridControlMd_PackageGroup.TabIndex = 2;
     this.gridControlMd_PackageGroup.ViewCollection.AddRange(new DevExpress.XtraGrid.Views.Base.BaseView[] {
     this.gridViewMd_PackageGroup});
     //
     // gridViewMd_PackageGroup
     //
     this.gridViewMd_PackageGroup.Columns.AddRange(new DevExpress.XtraGrid.Columns.GridColumn[] {
     this.gridColumnPG1,
     this.gridColumnPG2,
     this.gridColumnPG3,
     this.gcPkgComboPriceWGST,
     this.gridColumnPG4,
     this.gridColumnPG5,
     this.gridColumnPG6});
     this.gridViewMd_PackageGroup.GridControl = this.gridControlMd_PackageGroup;
     this.gridViewMd_PackageGroup.Name = "gridViewMd_PackageGroup";
     this.gridViewMd_PackageGroup.OptionsCustomization.AllowFilter = false;
     this.gridViewMd_PackageGroup.OptionsCustomization.AllowSort = false;
     this.gridViewMd_PackageGroup.OptionsView.ShowGroupPanel = false;
     this.gridViewMd_PackageGroup.FocusedRowChanged += new DevExpress.XtraGrid.Views.Base.FocusedRowChangedEventHandler(this.gridViewMd_PackageGroup_FocusedRowChanged);
     this.gridViewMd_PackageGroup.LostFocus += new System.EventHandler(this.gridViewMd_PackageGroup_LostFocus);
     //
     // gridColumnPG1
     //
     this.gridColumnPG1.Caption = "Package Group Code";
     this.gridColumnPG1.FieldName = "strPackageGroupCode";
     this.gridColumnPG1.Name = "gridColumnPG1";
     this.gridColumnPG1.Visible = true;
     this.gridColumnPG1.VisibleIndex = 0;
     //
     // gridColumnPG2
     //
     this.gridColumnPG2.Caption = "Description";
     this.gridColumnPG2.FieldName = "strDescription";
     this.gridColumnPG2.Name = "gridColumnPG2";
     this.gridColumnPG2.Visible = true;
     this.gridColumnPG2.VisibleIndex = 1;
     //
     // gridColumnPG3
     //
     this.gridColumnPG3.Caption = "Price";
     this.gridColumnPG3.DisplayFormat.FormatString = "d2";
     this.gridColumnPG3.DisplayFormat.FormatType = DevExpress.Utils.FormatType.Numeric;
     this.gridColumnPG3.FieldName = "mListPrice";
     this.gridColumnPG3.Name = "gridColumnPG3";
     this.gridColumnPG3.Visible = true;
     this.gridColumnPG3.VisibleIndex = 2;
     //
     // gcPkgComboPriceWGST
     //
     this.gcPkgComboPriceWGST.Caption = "Price w GST";
     this.gcPkgComboPriceWGST.DisplayFormat.FormatString = "d2";
     this.gcPkgComboPriceWGST.DisplayFormat.FormatType = DevExpress.Utils.FormatType.Numeric;
     this.gcPkgComboPriceWGST.FieldName = "mListPriceWGST";
     this.gcPkgComboPriceWGST.Name = "gcPkgComboPriceWGST";
     this.gcPkgComboPriceWGST.Visible = true;
     this.gcPkgComboPriceWGST.VisibleIndex = 3;
     //
     // gridColumnPG4
     //
     this.gridColumnPG4.Caption = "Package Category";
     this.gridColumnPG4.ColumnEdit = this.lk_pkGroupCatID;
     this.gridColumnPG4.FieldName = "nCategoryID";
     this.gridColumnPG4.Name = "gridColumnPG4";
     this.gridColumnPG4.Visible = true;
     this.gridColumnPG4.VisibleIndex = 4;
     //
     // lk_pkGroupCatID
     //
     this.lk_pkGroupCatID.AutoHeight = false;
     this.lk_pkGroupCatID.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.lk_pkGroupCatID.Name = "lk_pkGroupCatID";
     //
     // gridColumnPG5
     //
     this.gridColumnPG5.Caption = "Eff.Start Date";
     this.gridColumnPG5.FieldName = "dtValidStart";
     this.gridColumnPG5.Name = "gridColumnPG5";
     this.gridColumnPG5.Visible = true;
     this.gridColumnPG5.VisibleIndex = 5;
     //
     // gridColumnPG6
     //
     this.gridColumnPG6.Caption = "Eff.End Date";
     this.gridColumnPG6.FieldName = "dtValidEnd";
     this.gridColumnPG6.Name = "gridColumnPG6";
     this.gridColumnPG6.Visible = true;
     this.gridColumnPG6.VisibleIndex = 6;
     //
     // grpCreditPackage
     //
     this.grpCreditPackage.Controls.Add(this.btnCreditPackage_Add);
     this.grpCreditPackage.Controls.Add(this.btnCreditPackage_Del);
     this.grpCreditPackage.Controls.Add(this.groupControl5);
     this.grpCreditPackage.Location = new System.Drawing.Point(0, 48);
     this.grpCreditPackage.LookAndFeel.Style = DevExpress.LookAndFeel.LookAndFeelStyle.Office2003;
     this.grpCreditPackage.LookAndFeel.UseDefaultLookAndFeel = false;
     this.grpCreditPackage.Name = "grpCreditPackage";
     this.grpCreditPackage.Size = new System.Drawing.Size(960, 232);
     this.grpCreditPackage.TabIndex = 121;
     this.grpCreditPackage.Text = "Credit Package";
     //
     // btnCreditPackage_Add
     //
     this.btnCreditPackage_Add.Appearance.Font = new System.Drawing.Font("Tahoma", 14.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.btnCreditPackage_Add.Appearance.Options.UseFont = true;
     this.btnCreditPackage_Add.Appearance.Options.UseTextOptions = true;
     this.btnCreditPackage_Add.Appearance.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.btnCreditPackage_Add.Appearance.TextOptions.VAlignment = DevExpress.Utils.VertAlignment.Top;
     this.btnCreditPackage_Add.Appearance.TextOptions.WordWrap = DevExpress.Utils.WordWrap.Wrap;
     this.btnCreditPackage_Add.ImageIndex = 0;
     this.btnCreditPackage_Add.ImageList = this.imageList1;
     this.btnCreditPackage_Add.ImeMode = System.Windows.Forms.ImeMode.On;
     this.btnCreditPackage_Add.Location = new System.Drawing.Point(8, 24);
     this.btnCreditPackage_Add.Name = "btnCreditPackage_Add";
     this.btnCreditPackage_Add.Size = new System.Drawing.Size(38, 16);
     this.btnCreditPackage_Add.TabIndex = 136;
     this.btnCreditPackage_Add.Click += new System.EventHandler(this.btnCreditPackage_Add_Click);
     //
     // btnCreditPackage_Del
     //
     this.btnCreditPackage_Del.Appearance.Font = new System.Drawing.Font("Tahoma", 14.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.btnCreditPackage_Del.Appearance.Options.UseFont = true;
     this.btnCreditPackage_Del.Appearance.Options.UseTextOptions = true;
     this.btnCreditPackage_Del.Appearance.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.btnCreditPackage_Del.Appearance.TextOptions.VAlignment = DevExpress.Utils.VertAlignment.Top;
     this.btnCreditPackage_Del.Appearance.TextOptions.WordWrap = DevExpress.Utils.WordWrap.Wrap;
     this.btnCreditPackage_Del.ImageIndex = 1;
     this.btnCreditPackage_Del.ImageList = this.imageList1;
     this.btnCreditPackage_Del.Location = new System.Drawing.Point(48, 24);
     this.btnCreditPackage_Del.Name = "btnCreditPackage_Del";
     this.btnCreditPackage_Del.Size = new System.Drawing.Size(38, 16);
     this.btnCreditPackage_Del.TabIndex = 135;
     this.btnCreditPackage_Del.Click += new System.EventHandler(this.btnCreditPackage_Del_Click);
     //
     // groupControl5
     //
     this.groupControl5.BorderStyle = DevExpress.XtraEditors.Controls.BorderStyles.NoBorder;
     this.groupControl5.Controls.Add(this.gridControlMd_CreditPackage);
     this.groupControl5.Location = new System.Drawing.Point(0, 40);
     this.groupControl5.Name = "groupControl5";
     this.groupControl5.Size = new System.Drawing.Size(952, 192);
     this.groupControl5.TabIndex = 2;
     this.groupControl5.Text = "groupControl5";
     //
     // gridControlMd_CreditPackage
     //
     this.gridControlMd_CreditPackage.Dock = System.Windows.Forms.DockStyle.Fill;
     this.gridControlMd_CreditPackage.Location = new System.Drawing.Point(0, 0);
     this.gridControlMd_CreditPackage.LookAndFeel.UseDefaultLookAndFeel = false;
     this.gridControlMd_CreditPackage.MainView = this.gridViewMd_CreditPackage;
     this.gridControlMd_CreditPackage.Name = "gridControlMd_CreditPackage";
     this.gridControlMd_CreditPackage.RepositoryItems.AddRange(new DevExpress.XtraEditors.Repository.RepositoryItem[] {
     this.lk_CreditCategoryID,
     this.EffCCStartDate,
     this.EffCCEndDate});
     this.gridControlMd_CreditPackage.Size = new System.Drawing.Size(952, 192);
     this.gridControlMd_CreditPackage.TabIndex = 2;
     this.gridControlMd_CreditPackage.ViewCollection.AddRange(new DevExpress.XtraGrid.Views.Base.BaseView[] {
     this.gridViewMd_CreditPackage});
     //
     // gridViewMd_CreditPackage
     //
     this.gridViewMd_CreditPackage.Columns.AddRange(new DevExpress.XtraGrid.Columns.GridColumn[] {
     this.gridColumnCP1,
     this.gridColumnCP2,
     this.gridColumn24,
     this.gridColumnCP3,
     this.gcPriceWGST,
     this.gridColumnCP4,
     this.gridColumnCP5,
     this.gridColumnCP6,
     this.gridColumn29,
     this.gridColumnCP7,
     this.gridColumnCP8,
     this.gcFreeCredit,
     this.gridColumnCP9});
     this.gridViewMd_CreditPackage.GridControl = this.gridControlMd_CreditPackage;
     this.gridViewMd_CreditPackage.HorzScrollVisibility = DevExpress.XtraGrid.Views.Base.ScrollVisibility.Always;
     this.gridViewMd_CreditPackage.Name = "gridViewMd_CreditPackage";
     this.gridViewMd_CreditPackage.OptionsCustomization.AllowFilter = false;
     this.gridViewMd_CreditPackage.OptionsCustomization.AllowSort = false;
     this.gridViewMd_CreditPackage.OptionsView.ColumnAutoWidth = false;
     this.gridViewMd_CreditPackage.OptionsView.ShowGroupPanel = false;
     this.gridViewMd_CreditPackage.FocusedRowChanged += new DevExpress.XtraGrid.Views.Base.FocusedRowChangedEventHandler(this.gridViewMd_CreditPackage_FocusedRowChanged);
     this.gridViewMd_CreditPackage.LostFocus += new System.EventHandler(this.gridViewMd_CreditPackage_LostFocus);
     //
     // gridColumnCP1
     //
     this.gridColumnCP1.Caption = "Credit Package Code";
     this.gridColumnCP1.FieldName = "strCreditPackageCode";
     this.gridColumnCP1.Name = "gridColumnCP1";
     this.gridColumnCP1.Visible = true;
     this.gridColumnCP1.VisibleIndex = 0;
     this.gridColumnCP1.Width = 111;
     //
     // gridColumnCP2
     //
     this.gridColumnCP2.Caption = "Description";
     this.gridColumnCP2.FieldName = "strDescription";
     this.gridColumnCP2.Name = "gridColumnCP2";
     this.gridColumnCP2.Visible = true;
     this.gridColumnCP2.VisibleIndex = 1;
     this.gridColumnCP2.Width = 200;
     //
     // gridColumn24
     //
     this.gridColumn24.Caption = "Receipt Description";
     this.gridColumn24.FieldName = "strReceiptDesc";
     this.gridColumn24.Name = "gridColumn24";
     this.gridColumn24.Visible = true;
     this.gridColumn24.VisibleIndex = 10;
     this.gridColumn24.Width = 262;
     //
     // gridColumnCP3
     //
     this.gridColumnCP3.Caption = "Price";
     this.gridColumnCP3.DisplayFormat.FormatString = "d2";
     this.gridColumnCP3.DisplayFormat.FormatType = DevExpress.Utils.FormatType.Numeric;
     this.gridColumnCP3.FieldName = "mListPrice";
     this.gridColumnCP3.Name = "gridColumnCP3";
     this.gridColumnCP3.Visible = true;
     this.gridColumnCP3.VisibleIndex = 2;
     //
     // gcPriceWGST
     //
     this.gcPriceWGST.Caption = "Price w GST";
     this.gcPriceWGST.DisplayFormat.FormatString = "d2";
     this.gcPriceWGST.DisplayFormat.FormatType = DevExpress.Utils.FormatType.Numeric;
     this.gcPriceWGST.FieldName = "mListPriceWGST";
     this.gcPriceWGST.Name = "gcPriceWGST";
     this.gcPriceWGST.Visible = true;
     this.gcPriceWGST.VisibleIndex = 3;
     //
     // gridColumnCP4
     //
     this.gridColumnCP4.Caption = "Eff.Start Date";
     this.gridColumnCP4.ColumnEdit = this.EffCCStartDate;
     this.gridColumnCP4.FieldName = "dtValidStart";
     this.gridColumnCP4.Name = "gridColumnCP4";
     this.gridColumnCP4.Visible = true;
     this.gridColumnCP4.VisibleIndex = 4;
     this.gridColumnCP4.Width = 98;
     //
     // EffCCStartDate
     //
     this.EffCCStartDate.AutoHeight = false;
     this.EffCCStartDate.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.EffCCStartDate.Name = "EffCCStartDate";
     this.EffCCStartDate.VistaTimeProperties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton()});
     //
     // gridColumnCP5
     //
     this.gridColumnCP5.Caption = "Eff.End Date";
     this.gridColumnCP5.ColumnEdit = this.EffCCEndDate;
     this.gridColumnCP5.FieldName = "dtValidEnd";
     this.gridColumnCP5.Name = "gridColumnCP5";
     this.gridColumnCP5.Visible = true;
     this.gridColumnCP5.VisibleIndex = 5;
     this.gridColumnCP5.Width = 91;
     //
     // EffCCEndDate
     //
     this.EffCCEndDate.AutoHeight = false;
     this.EffCCEndDate.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.EffCCEndDate.Name = "EffCCEndDate";
     this.EffCCEndDate.VistaTimeProperties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton()});
     //
     // gridColumnCP6
     //
     this.gridColumnCP6.Caption = "Category";
     this.gridColumnCP6.ColumnEdit = this.lk_CreditCategoryID;
     this.gridColumnCP6.FieldName = "nCategoryID";
     this.gridColumnCP6.Name = "gridColumnCP6";
     this.gridColumnCP6.OptionsColumn.AllowEdit = false;
     this.gridColumnCP6.Visible = true;
     this.gridColumnCP6.VisibleIndex = 6;
     this.gridColumnCP6.Width = 97;
     //
     // lk_CreditCategoryID
     //
     this.lk_CreditCategoryID.AutoHeight = false;
     this.lk_CreditCategoryID.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.lk_CreditCategoryID.Name = "lk_CreditCategoryID";
     //
     // gridColumn29
     //
     this.gridColumn29.Caption = "Upgrade Group";
     this.gridColumn29.FieldName = "fNoRestrictionUpgrade";
     this.gridColumn29.Name = "gridColumn29";
     this.gridColumn29.Visible = true;
     this.gridColumn29.VisibleIndex = 8;
     this.gridColumn29.Width = 65;
     //
     // gridColumnCP7
     //
     this.gridColumnCP7.Caption = "Valid Months";
     this.gridColumnCP7.DisplayFormat.FormatType = DevExpress.Utils.FormatType.Numeric;
     this.gridColumnCP7.FieldName = "nValidMonths";
     this.gridColumnCP7.Name = "gridColumnCP7";
     this.gridColumnCP7.Visible = true;
     this.gridColumnCP7.VisibleIndex = 7;
     //
     // gridColumnCP8
     //
     this.gridColumnCP8.Caption = "Credit Amount";
     this.gridColumnCP8.DisplayFormat.FormatString = "d2";
     this.gridColumnCP8.DisplayFormat.FormatType = DevExpress.Utils.FormatType.Numeric;
     this.gridColumnCP8.FieldName = "mCreditAmount";
     this.gridColumnCP8.Name = "gridColumnCP8";
     this.gridColumnCP8.Visible = true;
     this.gridColumnCP8.VisibleIndex = 9;
     this.gridColumnCP8.Width = 80;
     //
     // gcFreeCredit
     //
     this.gcFreeCredit.Caption = "Free Credit";
     this.gcFreeCredit.DisplayFormat.FormatString = "d2";
     this.gcFreeCredit.DisplayFormat.FormatType = DevExpress.Utils.FormatType.Numeric;
     this.gcFreeCredit.FieldName = "mFreeCredit";
     this.gcFreeCredit.Name = "gcFreeCredit";
     this.gcFreeCredit.Visible = true;
     this.gcFreeCredit.VisibleIndex = 11;
     this.gcFreeCredit.Width = 80;
     //
     // gridColumnCP9
     //
     this.gridColumnCP9.Caption = "Credit discount";
     this.gridColumnCP9.DisplayFormat.FormatString = "d2";
     this.gridColumnCP9.DisplayFormat.FormatType = DevExpress.Utils.FormatType.Numeric;
     this.gridColumnCP9.FieldName = "dCreditDiscount";
     this.gridColumnCP9.Name = "gridColumnCP9";
     this.gridColumnCP9.Visible = true;
     this.gridColumnCP9.VisibleIndex = 12;
     this.gridColumnCP9.Width = 80;
     //
     // grpPackageClass
     //
     this.grpPackageClass.Controls.Add(this.btn_PGC_Del);
     this.grpPackageClass.Controls.Add(this.btn_PGCAll_Del);
     this.grpPackageClass.Controls.Add(this.btn_PGCAll_Add);
     this.grpPackageClass.Controls.Add(this.btn_PGC_Add);
     this.grpPackageClass.Controls.Add(this.gridPackageClass2);
     this.grpPackageClass.Controls.Add(this.label2);
     this.grpPackageClass.Controls.Add(this.gridPackageClass);
     this.grpPackageClass.Controls.Add(this.btn_PGB_Del);
     this.grpPackageClass.Controls.Add(this.btn_PGBAll_Del);
     this.grpPackageClass.Controls.Add(this.btn_PGBAll_Add);
     this.grpPackageClass.Controls.Add(this.btn_PGB_Add);
     this.grpPackageClass.Controls.Add(this.btn_PGUB_Del);
     this.grpPackageClass.Controls.Add(this.btn_PGUBAll_Del);
     this.grpPackageClass.Controls.Add(this.btn_PGUBAll_Add);
     this.grpPackageClass.Controls.Add(this.btn_PGUB_Add);
     this.grpPackageClass.Controls.Add(this.gridPcGroupBranch2);
     this.grpPackageClass.Controls.Add(this.gridPcGroupUseBranch2);
     this.grpPackageClass.Controls.Add(this.label4);
     this.grpPackageClass.Controls.Add(this.label5);
     this.grpPackageClass.Controls.Add(this.gridPcGroupBranch);
     this.grpPackageClass.Controls.Add(this.gridPcGroupUseBranch);
     this.grpPackageClass.Controls.Add(this.label119);
     this.grpPackageClass.Controls.Add(this.label120);
     this.grpPackageClass.Location = new System.Drawing.Point(8, 288);
     this.grpPackageClass.LookAndFeel.Style = DevExpress.LookAndFeel.LookAndFeelStyle.Office2003;
     this.grpPackageClass.LookAndFeel.UseDefaultLookAndFeel = false;
     this.grpPackageClass.Name = "grpPackageClass";
     this.grpPackageClass.Size = new System.Drawing.Size(968, 424);
     this.grpPackageClass.TabIndex = 94;
     this.grpPackageClass.Text = "EMPLOYEE PACKAGE SETUP .....";
     this.grpPackageClass.AlwaysScrollActiveControlIntoView = true;
     //
     // btn_PGC_Del
     //
     this.btn_PGC_Del.ButtonStyle = DevExpress.XtraEditors.Controls.BorderStyles.Simple;
     this.btn_PGC_Del.Location = new System.Drawing.Point(496, 232);
     this.btn_PGC_Del.Name = "btn_PGC_Del";
     this.btn_PGC_Del.Size = new System.Drawing.Size(30, 20);
     this.btn_PGC_Del.TabIndex = 151;
     this.btn_PGC_Del.Text = "<";
     this.btn_PGC_Del.Click += new System.EventHandler(this.btn_PGC_Del_Click);
     //
     // btn_PGCAll_Del
     //
     this.btn_PGCAll_Del.ButtonStyle = DevExpress.XtraEditors.Controls.BorderStyles.Simple;
     this.btn_PGCAll_Del.Location = new System.Drawing.Point(496, 208);
     this.btn_PGCAll_Del.Name = "btn_PGCAll_Del";
     this.btn_PGCAll_Del.Size = new System.Drawing.Size(30, 20);
     this.btn_PGCAll_Del.TabIndex = 150;
     this.btn_PGCAll_Del.Text = "<<";
     this.btn_PGCAll_Del.Click += new System.EventHandler(this.btn_PGCAll_Del_Click);
     //
     // btn_PGCAll_Add
     //
     this.btn_PGCAll_Add.ButtonStyle = DevExpress.XtraEditors.Controls.BorderStyles.Simple;
     this.btn_PGCAll_Add.Location = new System.Drawing.Point(496, 184);
     this.btn_PGCAll_Add.Name = "btn_PGCAll_Add";
     this.btn_PGCAll_Add.Size = new System.Drawing.Size(30, 20);
     this.btn_PGCAll_Add.TabIndex = 149;
     this.btn_PGCAll_Add.Text = ">>";
     this.btn_PGCAll_Add.Click += new System.EventHandler(this.btn_PGCAll_Add_Click);
     //
     // btn_PGC_Add
     //
     this.btn_PGC_Add.ButtonStyle = DevExpress.XtraEditors.Controls.BorderStyles.Simple;
     this.btn_PGC_Add.Location = new System.Drawing.Point(496, 160);
     this.btn_PGC_Add.Name = "btn_PGC_Add";
     this.btn_PGC_Add.Size = new System.Drawing.Size(30, 20);
     this.btn_PGC_Add.TabIndex = 148;
     this.btn_PGC_Add.Text = ">";
     this.btn_PGC_Add.Click += new System.EventHandler(this.btn_PGC_Add_Click);
     //
     // gridPackageClass2
     //
     this.gridPackageClass2.Location = new System.Drawing.Point(536, 160);
     this.gridPackageClass2.MainView = this.gvPackageClass2;
     this.gridPackageClass2.Name = "gridPackageClass2";
     this.gridPackageClass2.Size = new System.Drawing.Size(424, 128);
     this.gridPackageClass2.TabIndex = 152;
     this.gridPackageClass2.ViewCollection.AddRange(new DevExpress.XtraGrid.Views.Base.BaseView[] {
     this.gvPackageClass2});
     //
     // gvPackageClass2
     //
     this.gvPackageClass2.Columns.AddRange(new DevExpress.XtraGrid.Columns.GridColumn[] {
     this.gridColumn13,
     this.gridColumn14,
     this.gridColumn21});
     this.gvPackageClass2.GridControl = this.gridPackageClass2;
     this.gvPackageClass2.Name = "gvPackageClass2";
     this.gvPackageClass2.OptionsBehavior.AllowIncrementalSearch = true;
     this.gvPackageClass2.OptionsBehavior.Editable = false;
     this.gvPackageClass2.OptionsCustomization.AllowFilter = false;
     this.gvPackageClass2.OptionsSelection.MultiSelect = true;
     this.gvPackageClass2.OptionsView.ShowGroupPanel = false;
     this.gvPackageClass2.SortInfo.AddRange(new DevExpress.XtraGrid.Columns.GridColumnSortInfo[] {
     new DevExpress.XtraGrid.Columns.GridColumnSortInfo(this.gridColumn13, DevExpress.Data.ColumnSortOrder.Ascending)});
     //
     // gridColumn13
     //
     this.gridColumn13.Caption = "Class Code";
     this.gridColumn13.FieldName = "strClassCode";
     this.gridColumn13.Name = "gridColumn13";
     this.gridColumn13.Visible = true;
     this.gridColumn13.VisibleIndex = 0;
     this.gridColumn13.Width = 104;
     //
     // gridColumn14
     //
     this.gridColumn14.Caption = "Description";
     this.gridColumn14.FieldName = "strDescription";
     this.gridColumn14.Name = "gridColumn14";
     this.gridColumn14.Visible = true;
     this.gridColumn14.VisibleIndex = 1;
     this.gridColumn14.Width = 282;
     //
     // gridColumn21
     //
     this.gridColumn21.FieldName = "strPackageCode";
     this.gridColumn21.Name = "gridColumn21";
     //
     // label2
     //
     this.label2.Location = new System.Drawing.Point(8, 160);
     this.label2.Name = "label2";
     this.label2.Size = new System.Drawing.Size(56, 34);
     this.label2.TabIndex = 153;
     this.label2.Text = "Package Class";
     //
     // gridPackageClass
     //
     this.gridPackageClass.Location = new System.Drawing.Point(64, 160);
     this.gridPackageClass.MainView = this.gvPackageClass;
     this.gridPackageClass.Name = "gridPackageClass";
     this.gridPackageClass.Size = new System.Drawing.Size(424, 128);
     this.gridPackageClass.TabIndex = 147;
     this.gridPackageClass.ViewCollection.AddRange(new DevExpress.XtraGrid.Views.Base.BaseView[] {
     this.gvPackageClass});
     //
     // gvPackageClass
     //
     this.gvPackageClass.Columns.AddRange(new DevExpress.XtraGrid.Columns.GridColumn[] {
     this.gridColumn15,
     this.gridColumn16});
     this.gvPackageClass.GridControl = this.gridPackageClass;
     this.gvPackageClass.Name = "gvPackageClass";
     this.gvPackageClass.OptionsBehavior.AllowIncrementalSearch = true;
     this.gvPackageClass.OptionsBehavior.Editable = false;
     this.gvPackageClass.OptionsCustomization.AllowFilter = false;
     this.gvPackageClass.OptionsSelection.MultiSelect = true;
     this.gvPackageClass.OptionsView.ShowGroupPanel = false;
     this.gvPackageClass.SortInfo.AddRange(new DevExpress.XtraGrid.Columns.GridColumnSortInfo[] {
     new DevExpress.XtraGrid.Columns.GridColumnSortInfo(this.gridColumn15, DevExpress.Data.ColumnSortOrder.Ascending)});
     //
     // gridColumn15
     //
     this.gridColumn15.Caption = "Class Code";
     this.gridColumn15.FieldName = "strClassCode";
     this.gridColumn15.Name = "gridColumn15";
     this.gridColumn15.Visible = true;
     this.gridColumn15.VisibleIndex = 0;
     this.gridColumn15.Width = 107;
     //
     // gridColumn16
     //
     this.gridColumn16.Caption = "Description";
     this.gridColumn16.FieldName = "strDescription";
     this.gridColumn16.Name = "gridColumn16";
     this.gridColumn16.Visible = true;
     this.gridColumn16.VisibleIndex = 1;
     this.gridColumn16.Width = 279;
     //
     // btn_PGB_Del
     //
     this.btn_PGB_Del.ButtonStyle = DevExpress.XtraEditors.Controls.BorderStyles.Simple;
     this.btn_PGB_Del.Location = new System.Drawing.Point(496, 96);
     this.btn_PGB_Del.Name = "btn_PGB_Del";
     this.btn_PGB_Del.Size = new System.Drawing.Size(30, 20);
     this.btn_PGB_Del.TabIndex = 144;
     this.btn_PGB_Del.Text = "<";
     this.btn_PGB_Del.Click += new System.EventHandler(this.btn_PGB_Del_Click);
     //
     // btn_PGBAll_Del
     //
     this.btn_PGBAll_Del.ButtonStyle = DevExpress.XtraEditors.Controls.BorderStyles.Simple;
     this.btn_PGBAll_Del.Location = new System.Drawing.Point(496, 72);
     this.btn_PGBAll_Del.Name = "btn_PGBAll_Del";
     this.btn_PGBAll_Del.Size = new System.Drawing.Size(30, 20);
     this.btn_PGBAll_Del.TabIndex = 143;
     this.btn_PGBAll_Del.Text = "<<";
     this.btn_PGBAll_Del.Click += new System.EventHandler(this.btn_PGBAll_Del_Click);
     //
     // btn_PGBAll_Add
     //
     this.btn_PGBAll_Add.ButtonStyle = DevExpress.XtraEditors.Controls.BorderStyles.Simple;
     this.btn_PGBAll_Add.Location = new System.Drawing.Point(496, 48);
     this.btn_PGBAll_Add.Name = "btn_PGBAll_Add";
     this.btn_PGBAll_Add.Size = new System.Drawing.Size(30, 20);
     this.btn_PGBAll_Add.TabIndex = 142;
     this.btn_PGBAll_Add.Text = ">>";
     this.btn_PGBAll_Add.Click += new System.EventHandler(this.btn_PGBAll_Add_Click);
     //
     // btn_PGB_Add
     //
     this.btn_PGB_Add.ButtonStyle = DevExpress.XtraEditors.Controls.BorderStyles.Simple;
     this.btn_PGB_Add.Location = new System.Drawing.Point(496, 24);
     this.btn_PGB_Add.Name = "btn_PGB_Add";
     this.btn_PGB_Add.Size = new System.Drawing.Size(30, 20);
     this.btn_PGB_Add.TabIndex = 141;
     this.btn_PGB_Add.Text = ">";
     this.btn_PGB_Add.Click += new System.EventHandler(this.btn_PGB_Add_Click);
     //
     // btn_PGUB_Del
     //
     this.btn_PGUB_Del.ButtonStyle = DevExpress.XtraEditors.Controls.BorderStyles.Simple;
     this.btn_PGUB_Del.Location = new System.Drawing.Point(496, 362);
     this.btn_PGUB_Del.Name = "btn_PGUB_Del";
     this.btn_PGUB_Del.Size = new System.Drawing.Size(30, 20);
     this.btn_PGUB_Del.TabIndex = 144;
     this.btn_PGUB_Del.Text = "<";
     this.btn_PGUB_Del.Click += new System.EventHandler(this.btn_PGUB_Del_Click);
     //
     // btn_PGUBAll_Del
     //
     this.btn_PGUBAll_Del.ButtonStyle = DevExpress.XtraEditors.Controls.BorderStyles.Simple;
     this.btn_PGUBAll_Del.Location = new System.Drawing.Point(496, 338);
     this.btn_PGUBAll_Del.Name = "btn_PGUBAll_Del";
     this.btn_PGUBAll_Del.Size = new System.Drawing.Size(30, 20);
     this.btn_PGUBAll_Del.TabIndex = 143;
     this.btn_PGUBAll_Del.Text = "<<";
     this.btn_PGUBAll_Del.Click += new System.EventHandler(this.btn_PGUBAll_Del_Click);
     //
     // btn_PGBAll_Add
     //
     this.btn_PGUBAll_Add.ButtonStyle = DevExpress.XtraEditors.Controls.BorderStyles.Simple;
     this.btn_PGUBAll_Add.Location = new System.Drawing.Point(496, 314);
     this.btn_PGUBAll_Add.Name = "btn_PGUBAll_Add";
     this.btn_PGUBAll_Add.Size = new System.Drawing.Size(30, 20);
     this.btn_PGUBAll_Add.TabIndex = 142;
     this.btn_PGUBAll_Add.Text = ">>";
     this.btn_PGUBAll_Add.Click += new System.EventHandler(this.btn_PGUBAll_Add_Click);
     //
     // btn_PUGB_Add
     //
     this.btn_PGUB_Add.ButtonStyle = DevExpress.XtraEditors.Controls.BorderStyles.Simple;
     this.btn_PGUB_Add.Location = new System.Drawing.Point(496, 290);
     this.btn_PGUB_Add.Name = "btn_PGUB_Add";
     this.btn_PGUB_Add.Size = new System.Drawing.Size(30, 20);
     this.btn_PGUB_Add.TabIndex = 141;
     this.btn_PGUB_Add.Text = ">";
     this.btn_PGUB_Add.Click += new System.EventHandler(this.btn_PGUB_Add_Click);
     //
     // gridPcGroupBranch2
     //
     this.gridPcGroupBranch2.Location = new System.Drawing.Point(536, 24);
     this.gridPcGroupBranch2.MainView = this.gvPcGroupBranch2;
     this.gridPcGroupBranch2.Name = "gridPcGroupBranch2";
     this.gridPcGroupBranch2.Size = new System.Drawing.Size(424, 128);
     this.gridPcGroupBranch2.TabIndex = 145;
     this.gridPcGroupBranch2.ViewCollection.AddRange(new DevExpress.XtraGrid.Views.Base.BaseView[] {
     this.gvPcGroupBranch2});
     //
     // gvPcGroupBranch2
     //
     this.gvPcGroupBranch2.Columns.AddRange(new DevExpress.XtraGrid.Columns.GridColumn[] {
     this.gridColumn17,
     this.gridColumn18,
     this.gridColumn22});
     this.gvPcGroupBranch2.GridControl = this.gridPcGroupBranch2;
     this.gvPcGroupBranch2.Name = "gvPcGroupBranch2";
     this.gvPcGroupBranch2.OptionsBehavior.AllowIncrementalSearch = true;
     this.gvPcGroupBranch2.OptionsBehavior.Editable = false;
     this.gvPcGroupBranch2.OptionsCustomization.AllowFilter = false;
     this.gvPcGroupBranch2.OptionsSelection.MultiSelect = true;
     this.gvPcGroupBranch2.OptionsView.ShowGroupPanel = false;
     this.gvPcGroupBranch2.SortInfo.AddRange(new DevExpress.XtraGrid.Columns.GridColumnSortInfo[] {
     new DevExpress.XtraGrid.Columns.GridColumnSortInfo(this.gridColumn17, DevExpress.Data.ColumnSortOrder.Ascending)});
     //
     // gridColumn17
     //
     this.gridColumn17.Caption = "Branch";
     this.gridColumn17.FieldName = "strBranchCode";
     this.gridColumn17.Name = "gridColumn17";
     this.gridColumn17.Visible = true;
     this.gridColumn17.VisibleIndex = 0;
     this.gridColumn17.Width = 104;
     //
     // gridColumn18
     //
     this.gridColumn18.Caption = "Branch Name";
     this.gridColumn18.FieldName = "strBranchName";
     this.gridColumn18.Name = "gridColumn18";
     this.gridColumn18.Visible = true;
     this.gridColumn18.VisibleIndex = 1;
     this.gridColumn18.Width = 282;
     //
     // gridColumn22
     //
     this.gridColumn22.Caption = "strPackageCode";
     this.gridColumn22.FieldName = "strPackageCode";
     this.gridColumn22.Name = "gridColumn22";
     //
     // gridColumn50
     //
     this.gridColumn50.Caption = "Branch";
     this.gridColumn50.FieldName = "strBranchCode";
     this.gridColumn50.Name = "gridColumn50";
     this.gridColumn50.Visible = true;
     this.gridColumn50.VisibleIndex = 0;
     this.gridColumn50.Width = 104;
     //
     // gridColumn51
     //
     this.gridColumn51.Caption = "Branch Name";
     this.gridColumn51.FieldName = "strBranchName";
     this.gridColumn51.Name = "gridColumn51";
     this.gridColumn51.Visible = true;
     this.gridColumn51.VisibleIndex = 1;
     this.gridColumn51.Width = 282;
     //
     // gridColumn52
     //
     this.gridColumn52.Caption = "strPackageCode";
     this.gridColumn52.FieldName = "strPackageCode";
     this.gridColumn52.Name = "gridColumn52";
     //
     // label4
     //
     this.label4.Location = new System.Drawing.Point(8, 24);
     this.label4.Name = "label4";
     this.label4.Size = new System.Drawing.Size(56, 54);
     this.label4.TabIndex = 146;
     this.label4.Text = "Package Sell Branch";
     //
     // gridPcGroupBranch
     //
     this.gridPcGroupBranch.Location = new System.Drawing.Point(64, 24);
     this.gridPcGroupBranch.MainView = this.gvPcGroupBranch;
     this.gridPcGroupBranch.Name = "gridPcGroupBranch";
     this.gridPcGroupBranch.Size = new System.Drawing.Size(424, 128);
     this.gridPcGroupBranch.TabIndex = 140;
     this.gridPcGroupBranch.ViewCollection.AddRange(new DevExpress.XtraGrid.Views.Base.BaseView[] {
     this.gvPcGroupBranch});
     //
     // gvPcGroupBranch
     //
     this.gvPcGroupBranch.Columns.AddRange(new DevExpress.XtraGrid.Columns.GridColumn[] {
     this.gridColumn19,
     this.gridColumn20});
     this.gvPcGroupBranch.GridControl = this.gridPcGroupBranch;
     this.gvPcGroupBranch.Name = "gvPcGroupBranch";
     this.gvPcGroupBranch.OptionsBehavior.AllowIncrementalSearch = true;
     this.gvPcGroupBranch.OptionsBehavior.Editable = false;
     this.gvPcGroupBranch.OptionsCustomization.AllowFilter = false;
     this.gvPcGroupBranch.OptionsSelection.MultiSelect = true;
     this.gvPcGroupBranch.OptionsView.ShowGroupPanel = false;
     this.gvPcGroupBranch.SortInfo.AddRange(new DevExpress.XtraGrid.Columns.GridColumnSortInfo[] {
     new DevExpress.XtraGrid.Columns.GridColumnSortInfo(this.gridColumn19, DevExpress.Data.ColumnSortOrder.Ascending)});
     //
     // gridColumn19
     //
     this.gridColumn19.Caption = "Branch";
     this.gridColumn19.FieldName = "strBranchCode";
     this.gridColumn19.Name = "gridColumn19";
     this.gridColumn19.Visible = true;
     this.gridColumn19.VisibleIndex = 0;
     this.gridColumn19.Width = 107;
     //
     // gridColumn20
     //
     this.gridColumn20.Caption = "Branch Name";
     this.gridColumn20.FieldName = "strBranchName";
     this.gridColumn20.Name = "gridColumn20";
     this.gridColumn20.Visible = true;
     this.gridColumn20.VisibleIndex = 1;
     this.gridColumn20.Width = 279;
     //
     // gridColumn53
     //
     this.gridColumn53.Caption = "Branch";
     this.gridColumn53.FieldName = "strBranchCode";
     this.gridColumn53.Name = "gridColumn53";
     this.gridColumn53.Visible = true;
     this.gridColumn53.VisibleIndex = 0;
     this.gridColumn53.Width = 107;
     //
     // gridColumn54
     //
     this.gridColumn54.Caption = "Branch Name";
     this.gridColumn54.FieldName = "strBranchName";
     this.gridColumn54.Name = "gridColumn54";
     this.gridColumn54.Visible = true;
     this.gridColumn54.VisibleIndex = 1;
     this.gridColumn54.Width = 279;
     //
     // label119
     //
     this.label119.BackColor = System.Drawing.Color.Transparent;
     this.label119.Font = new System.Drawing.Font("Tahoma", 9.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label119.Location = new System.Drawing.Point(560, 24);
     this.label119.Name = "label119";
     this.label119.Size = new System.Drawing.Size(56, 16);
     this.label119.TabIndex = 139;
     this.label119.Text = "Services";
     this.label119.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
     //
     // label120
     //
     this.label120.BackColor = System.Drawing.Color.Transparent;
     this.label120.Font = new System.Drawing.Font("Tahoma", 9.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label120.Location = new System.Drawing.Point(288, 24);
     this.label120.Name = "label120";
     this.label120.Size = new System.Drawing.Size(56, 16);
     this.label120.TabIndex = 138;
     this.label120.Text = "Class";
     this.label120.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
     //
     // gridPcGroupUseBranch2
     //
     this.gridPcGroupUseBranch2.Location = new System.Drawing.Point(536, 290);
     this.gridPcGroupUseBranch2.MainView = this.gvPcGroupUseBranch2;
     this.gridPcGroupUseBranch2.Name = "gridPcGroupBranch2";
     this.gridPcGroupUseBranch2.Size = new System.Drawing.Size(424, 128);
     this.gridPcGroupUseBranch2.TabIndex = 145;
     this.gridPcGroupUseBranch2.ViewCollection.AddRange(new DevExpress.XtraGrid.Views.Base.BaseView[] {
     this.gvPcGroupUseBranch2});
     //
     // gvPcGroupUseBranch2
     //
     this.gvPcGroupUseBranch2.Columns.AddRange(new DevExpress.XtraGrid.Columns.GridColumn[] {
     this.gridColumn50,
     this.gridColumn51,
     this.gridColumn52});
     this.gvPcGroupUseBranch2.GridControl = this.gridPcGroupUseBranch2;
     this.gvPcGroupUseBranch2.Name = "gvPcGroupUseBranch2";
     this.gvPcGroupUseBranch2.OptionsBehavior.AllowIncrementalSearch = true;
     this.gvPcGroupUseBranch2.OptionsBehavior.Editable = false;
     this.gvPcGroupUseBranch2.OptionsCustomization.AllowFilter = false;
     this.gvPcGroupUseBranch2.OptionsSelection.MultiSelect = true;
     this.gvPcGroupUseBranch2.OptionsView.ShowGroupPanel = false;
     this.gvPcGroupUseBranch2.SortInfo.AddRange(new DevExpress.XtraGrid.Columns.GridColumnSortInfo[] {
     new DevExpress.XtraGrid.Columns.GridColumnSortInfo(this.gridColumn17, DevExpress.Data.ColumnSortOrder.Ascending)});
     //
     // label5
     //
     this.label5.Location = new System.Drawing.Point(8, 290);
     this.label5.Name = "label5";
     this.label5.Size = new System.Drawing.Size(56, 54);
     this.label5.TabIndex = 146;
     this.label5.Text = "Package Use Branch";
     //
     // gridPcGroupUseBranch
     //
     this.gridPcGroupUseBranch.Location = new System.Drawing.Point(64, 290);
     this.gridPcGroupUseBranch.MainView = this.gvPcGroupUseBranch;
     this.gridPcGroupUseBranch.Name = "gridPcGroupBranch";
     this.gridPcGroupUseBranch.Size = new System.Drawing.Size(424, 128);
     this.gridPcGroupUseBranch.TabIndex = 140;
     this.gridPcGroupUseBranch.ViewCollection.AddRange(new DevExpress.XtraGrid.Views.Base.BaseView[] {
     this.gvPcGroupUseBranch});
     //
     // gvPcGroupUseBranch
     //
     this.gvPcGroupUseBranch.Columns.AddRange(new DevExpress.XtraGrid.Columns.GridColumn[] {
     this.gridColumn53,
     this.gridColumn54});
     this.gvPcGroupUseBranch.GridControl = this.gridPcGroupUseBranch;
     this.gvPcGroupUseBranch.Name = "gvPcGroupBranch";
     this.gvPcGroupUseBranch.OptionsBehavior.AllowIncrementalSearch = true;
     this.gvPcGroupUseBranch.OptionsBehavior.Editable = false;
     this.gvPcGroupUseBranch.OptionsCustomization.AllowFilter = false;
     this.gvPcGroupUseBranch.OptionsSelection.MultiSelect = true;
     this.gvPcGroupUseBranch.OptionsView.ShowGroupPanel = false;
     this.gvPcGroupUseBranch.SortInfo.AddRange(new DevExpress.XtraGrid.Columns.GridColumnSortInfo[] {
     new DevExpress.XtraGrid.Columns.GridColumnSortInfo(this.gridColumn19, DevExpress.Data.ColumnSortOrder.Ascending)});
     //
     // grpPackageService
     //
     this.grpPackageService.Controls.Add(this.btn_PSAll_Del);
     this.grpPackageService.Controls.Add(this.btn_PS_Del);
     this.grpPackageService.Controls.Add(this.btn_PSAdd_Add);
     this.grpPackageService.Controls.Add(this.btn_PS_Add);
     this.grpPackageService.Controls.Add(this.gridPackageService2);
     this.grpPackageService.Controls.Add(this.label1);
     this.grpPackageService.Controls.Add(this.gridPackageService);
     this.grpPackageService.Controls.Add(this.btn_PB_Del);
     this.grpPackageService.Controls.Add(this.btn_PBAll_Del);
     this.grpPackageService.Controls.Add(this.btn_PBAll_Add);
     this.grpPackageService.Controls.Add(this.btn_PB_Add);
     this.grpPackageService.Controls.Add(this.btn_PUB_Del);
     this.grpPackageService.Controls.Add(this.btn_PUBAll_Del);
     this.grpPackageService.Controls.Add(this.btn_PUBAll_Add);
     this.grpPackageService.Controls.Add(this.btn_PUB_Add);
     this.grpPackageService.Controls.Add(this.gridPackageBranch2);
     this.grpPackageService.Controls.Add(this.gridPackageUseBranch2);
     this.grpPackageService.Controls.Add(this.label3);
     this.grpPackageService.Controls.Add(this.label7);
     this.grpPackageService.Controls.Add(this.gridPackageBranch);
     this.grpPackageService.Controls.Add(this.gridPackageUseBranch);
     this.grpPackageService.Location = new System.Drawing.Point(8, 288);
     this.grpPackageService.LookAndFeel.Style = DevExpress.LookAndFeel.LookAndFeelStyle.Office2003;
     this.grpPackageService.LookAndFeel.UseDefaultLookAndFeel = false;
     this.grpPackageService.Name = "grpPackageService";
     this.grpPackageService.Size = new System.Drawing.Size(960, 424);
     this.grpPackageService.TabIndex = 99;
     this.grpPackageService.Text = "EMPLOYEE PACKAGE SETUP .....";
     //
     // btn_PSAll_Del
     //
     this.btn_PSAll_Del.ButtonStyle = DevExpress.XtraEditors.Controls.BorderStyles.Simple;
     this.btn_PSAll_Del.Location = new System.Drawing.Point(496, 232);
     this.btn_PSAll_Del.Name = "btn_PSAll_Del";
     this.btn_PSAll_Del.Size = new System.Drawing.Size(30, 20);
     this.btn_PSAll_Del.TabIndex = 28;
     this.btn_PSAll_Del.Text = "<";
     this.btn_PSAll_Del.Click += new System.EventHandler(this.btn_PSAll_Del_Click);
     //
     // btn_PS_Del
     //
     this.btn_PS_Del.ButtonStyle = DevExpress.XtraEditors.Controls.BorderStyles.Simple;
     this.btn_PS_Del.Location = new System.Drawing.Point(496, 208);
     this.btn_PS_Del.Name = "btn_PS_Del";
     this.btn_PS_Del.Size = new System.Drawing.Size(30, 20);
     this.btn_PS_Del.TabIndex = 27;
     this.btn_PS_Del.Text = "<<";
     this.btn_PS_Del.Click += new System.EventHandler(this.btn_PS_Del_Click);
     //
     // btn_PSAdd_Add
     //
     this.btn_PSAdd_Add.ButtonStyle = DevExpress.XtraEditors.Controls.BorderStyles.Simple;
     this.btn_PSAdd_Add.Location = new System.Drawing.Point(496, 184);
     this.btn_PSAdd_Add.Name = "btn_PSAdd_Add";
     this.btn_PSAdd_Add.Size = new System.Drawing.Size(30, 20);
     this.btn_PSAdd_Add.TabIndex = 26;
     this.btn_PSAdd_Add.Text = ">>";
     this.btn_PSAdd_Add.Click += new System.EventHandler(this.btn_PSAdd_Add_Click);
     //
     // btn_PS_Add
     //
     this.btn_PS_Add.ButtonStyle = DevExpress.XtraEditors.Controls.BorderStyles.Simple;
     this.btn_PS_Add.Location = new System.Drawing.Point(496, 160);
     this.btn_PS_Add.Name = "btn_PS_Add";
     this.btn_PS_Add.Size = new System.Drawing.Size(30, 20);
     this.btn_PS_Add.TabIndex = 25;
     this.btn_PS_Add.Text = ">";
     this.btn_PS_Add.Click += new System.EventHandler(this.btn_PS_Add_Click);
     //
     // gridPackageService2
     //
     this.gridPackageService2.Location = new System.Drawing.Point(536, 160);
     this.gridPackageService2.MainView = this.gvPackageService2;
     this.gridPackageService2.Name = "gridPackageService2";
     this.gridPackageService2.Size = new System.Drawing.Size(424, 128);
     this.gridPackageService2.TabIndex = 29;
     this.gridPackageService2.ViewCollection.AddRange(new DevExpress.XtraGrid.Views.Base.BaseView[] {
     this.gvPackageService2});
     //
     // gvPackageService2
     //
     this.gvPackageService2.Columns.AddRange(new DevExpress.XtraGrid.Columns.GridColumn[] {
     this.gridColumn9,
     this.gridColumn10,
     this.gridColumn23});
     this.gvPackageService2.GridControl = this.gridPackageService2;
     this.gvPackageService2.Name = "gvPackageService2";
     this.gvPackageService2.OptionsBehavior.AllowIncrementalSearch = true;
     this.gvPackageService2.OptionsBehavior.Editable = false;
     this.gvPackageService2.OptionsCustomization.AllowFilter = false;
     this.gvPackageService2.OptionsSelection.MultiSelect = true;
     this.gvPackageService2.OptionsView.ShowGroupPanel = false;
     this.gvPackageService2.SortInfo.AddRange(new DevExpress.XtraGrid.Columns.GridColumnSortInfo[] {
     new DevExpress.XtraGrid.Columns.GridColumnSortInfo(this.gridColumn9, DevExpress.Data.ColumnSortOrder.Ascending)});
     //
     // gridColumn9
     //
     this.gridColumn9.Caption = "Service Code";
     this.gridColumn9.FieldName = "strServiceCode";
     this.gridColumn9.Name = "gridColumn9";
     this.gridColumn9.Visible = true;
     this.gridColumn9.VisibleIndex = 0;
     this.gridColumn9.Width = 104;
     //
     // gridColumn10
     //
     this.gridColumn10.Caption = "Description";
     this.gridColumn10.FieldName = "strDescription";
     this.gridColumn10.Name = "gridColumn10";
     this.gridColumn10.Visible = true;
     this.gridColumn10.VisibleIndex = 1;
     this.gridColumn10.Width = 282;
     //
     // gridColumn23
     //
     this.gridColumn23.FieldName = "strPackageCode";
     this.gridColumn23.Name = "gridColumn23";
     //
     // label1
     //
     this.label1.Location = new System.Drawing.Point(8, 168);
     this.label1.Name = "label1";
     this.label1.Size = new System.Drawing.Size(56, 34);
     this.label1.TabIndex = 30;
     this.label1.Text = "Package Service";
     //
     // gridPackageService
     //
     this.gridPackageService.Location = new System.Drawing.Point(64, 160);
     this.gridPackageService.MainView = this.gvPackageService;
     this.gridPackageService.Name = "gridPackageService";
     this.gridPackageService.Size = new System.Drawing.Size(424, 128);
     this.gridPackageService.TabIndex = 24;
     this.gridPackageService.ViewCollection.AddRange(new DevExpress.XtraGrid.Views.Base.BaseView[] {
     this.gvPackageService});
     //
     // gvPackageService
     //
     this.gvPackageService.Columns.AddRange(new DevExpress.XtraGrid.Columns.GridColumn[] {
     this.gridColumn11,
     this.gridColumn12});
     this.gvPackageService.GridControl = this.gridPackageService;
     this.gvPackageService.Name = "gvPackageService";
     this.gvPackageService.OptionsBehavior.AllowIncrementalSearch = true;
     this.gvPackageService.OptionsBehavior.Editable = false;
     this.gvPackageService.OptionsCustomization.AllowFilter = false;
     this.gvPackageService.OptionsSelection.MultiSelect = true;
     this.gvPackageService.OptionsView.ShowGroupPanel = false;
     this.gvPackageService.SortInfo.AddRange(new DevExpress.XtraGrid.Columns.GridColumnSortInfo[] {
     new DevExpress.XtraGrid.Columns.GridColumnSortInfo(this.gridColumn11, DevExpress.Data.ColumnSortOrder.Ascending)});
     //
     // gridColumn11
     //
     this.gridColumn11.Caption = "Service Code";
     this.gridColumn11.FieldName = "strServiceCode";
     this.gridColumn11.Name = "gridColumn11";
     this.gridColumn11.Visible = true;
     this.gridColumn11.VisibleIndex = 0;
     this.gridColumn11.Width = 107;
     //
     // gridColumn12
     //
     this.gridColumn12.Caption = "Description";
     this.gridColumn12.FieldName = "strDescription";
     this.gridColumn12.Name = "gridColumn12";
     this.gridColumn12.Visible = true;
     this.gridColumn12.VisibleIndex = 1;
     this.gridColumn12.Width = 279;
     //
     // btn_PB_Del
     //
     this.btn_PB_Del.ButtonStyle = DevExpress.XtraEditors.Controls.BorderStyles.Simple;
     this.btn_PB_Del.Location = new System.Drawing.Point(496, 96);
     this.btn_PB_Del.Name = "btn_PB_Del";
     this.btn_PB_Del.Size = new System.Drawing.Size(30, 20);
     this.btn_PB_Del.TabIndex = 21;
     this.btn_PB_Del.Text = "<";
     this.btn_PB_Del.Click += new System.EventHandler(this.btn_PB_Del_Click);
     //
     // btn_PBAll_Del
     //
     this.btn_PBAll_Del.ButtonStyle = DevExpress.XtraEditors.Controls.BorderStyles.Simple;
     this.btn_PBAll_Del.Location = new System.Drawing.Point(496, 72);
     this.btn_PBAll_Del.Name = "btn_PBAll_Del";
     this.btn_PBAll_Del.Size = new System.Drawing.Size(30, 20);
     this.btn_PBAll_Del.TabIndex = 20;
     this.btn_PBAll_Del.Text = "<<";
     this.btn_PBAll_Del.Click += new System.EventHandler(this.btn_PBAll_Del_Click);
     //
     // btn_PBAll_Add
     //
     this.btn_PBAll_Add.ButtonStyle = DevExpress.XtraEditors.Controls.BorderStyles.Simple;
     this.btn_PBAll_Add.Location = new System.Drawing.Point(496, 48);
     this.btn_PBAll_Add.Name = "btn_PBAll_Add";
     this.btn_PBAll_Add.Size = new System.Drawing.Size(30, 20);
     this.btn_PBAll_Add.TabIndex = 19;
     this.btn_PBAll_Add.Text = ">>";
     this.btn_PBAll_Add.Click += new System.EventHandler(this.btn_PBAll_Add_Click);
     //
     // btn_PB_Add
     //
     this.btn_PB_Add.ButtonStyle = DevExpress.XtraEditors.Controls.BorderStyles.Simple;
     this.btn_PB_Add.Location = new System.Drawing.Point(496, 24);
     this.btn_PB_Add.Name = "btn_PB_Add";
     this.btn_PB_Add.Size = new System.Drawing.Size(30, 20);
     this.btn_PB_Add.TabIndex = 18;
     this.btn_PB_Add.Text = ">";
     this.btn_PB_Add.Click += new System.EventHandler(this.btn_PB_Add_Click);
     //
     // btn_PUB_Del
     //
     this.btn_PUB_Del.ButtonStyle = DevExpress.XtraEditors.Controls.BorderStyles.Simple;
     this.btn_PUB_Del.Location = new System.Drawing.Point(496, 362);
     this.btn_PUB_Del.Name = "btn_PUB_Del";
     this.btn_PUB_Del.Size = new System.Drawing.Size(30, 20);
     this.btn_PUB_Del.TabIndex = 21;
     this.btn_PUB_Del.Text = "<";
     this.btn_PUB_Del.Click += new System.EventHandler(this.btn_PUB_Del_Click);
     //
     // btn_PUBAll_Del
     //
     this.btn_PUBAll_Del.ButtonStyle = DevExpress.XtraEditors.Controls.BorderStyles.Simple;
     this.btn_PUBAll_Del.Location = new System.Drawing.Point(496, 338);
     this.btn_PUBAll_Del.Name = "btn_PUBAll_Del";
     this.btn_PUBAll_Del.Size = new System.Drawing.Size(30, 20);
     this.btn_PUBAll_Del.TabIndex = 20;
     this.btn_PUBAll_Del.Text = "<<";
     this.btn_PUBAll_Del.Click += new System.EventHandler(this.btn_PUBAll_Del_Click);
     //
     // btn_PUBAll_Add
     //
     this.btn_PUBAll_Add.ButtonStyle = DevExpress.XtraEditors.Controls.BorderStyles.Simple;
     this.btn_PUBAll_Add.Location = new System.Drawing.Point(496, 314);
     this.btn_PUBAll_Add.Name = "btn_PUBAll_Add";
     this.btn_PUBAll_Add.Size = new System.Drawing.Size(30, 20);
     this.btn_PUBAll_Add.TabIndex = 19;
     this.btn_PUBAll_Add.Text = ">>";
     this.btn_PUBAll_Add.Click += new System.EventHandler(this.btn_PUBAll_Add_Click);
     //
     // btn_PUB_Add
     //
     this.btn_PUB_Add.ButtonStyle = DevExpress.XtraEditors.Controls.BorderStyles.Simple;
     this.btn_PUB_Add.Location = new System.Drawing.Point(496, 290);
     this.btn_PUB_Add.Name = "btn_PUB_Add";
     this.btn_PUB_Add.Size = new System.Drawing.Size(30, 20);
     this.btn_PUB_Add.TabIndex = 18;
     this.btn_PUB_Add.Text = ">";
     this.btn_PUB_Add.Click += new System.EventHandler(this.btn_PUB_Add_Click);
     //
     // gridPackageBranch2
     //
     this.gridPackageBranch2.Location = new System.Drawing.Point(536, 24);
     this.gridPackageBranch2.MainView = this.gvPSBranch2;
     this.gridPackageBranch2.Name = "gridPackageBranch2";
     this.gridPackageBranch2.Size = new System.Drawing.Size(424, 128);
     this.gridPackageBranch2.TabIndex = 22;
     this.gridPackageBranch2.ViewCollection.AddRange(new DevExpress.XtraGrid.Views.Base.BaseView[] {
     this.gvPSBranch2});
     //
     // gridPackageUseBranch2
     //
     this.gridPackageUseBranch2.Location = new System.Drawing.Point(536, 290);
     this.gridPackageUseBranch2.MainView = this.gvPSUseBranch2;
     this.gridPackageUseBranch2.Name = "gridPackageUseBranch2";
     this.gridPackageUseBranch2.Size = new System.Drawing.Size(424, 128);
     this.gridPackageUseBranch2.TabIndex = 22;
     this.gridPackageUseBranch2.ViewCollection.AddRange(new DevExpress.XtraGrid.Views.Base.BaseView[] {
     this.gvPSUseBranch2});
     //
     // gvPSBranch2
     //
     this.gvPSBranch2.Columns.AddRange(new DevExpress.XtraGrid.Columns.GridColumn[] {
     this.colBranchCode2,
     this.colBranchName2});
     this.gvPSBranch2.GridControl = this.gridPackageBranch2;
     this.gvPSBranch2.Name = "gvPSBranch2";
     this.gvPSBranch2.OptionsBehavior.AllowIncrementalSearch = true;
     this.gvPSBranch2.OptionsBehavior.Editable = false;
     this.gvPSBranch2.OptionsCustomization.AllowFilter = false;
     this.gvPSBranch2.OptionsSelection.MultiSelect = true;
     this.gvPSBranch2.OptionsView.ShowGroupPanel = false;
     this.gvPSBranch2.SortInfo.AddRange(new DevExpress.XtraGrid.Columns.GridColumnSortInfo[] {
     new DevExpress.XtraGrid.Columns.GridColumnSortInfo(this.colBranchCode2, DevExpress.Data.ColumnSortOrder.Ascending)});
     //
     // colBranchCode2
     //
     this.colBranchCode2.Caption = "Branch";
     this.colBranchCode2.FieldName = "strBranchCode";
     this.colBranchCode2.Name = "colBranchCode2";
     this.colBranchCode2.Visible = true;
     this.colBranchCode2.VisibleIndex = 0;
     this.colBranchCode2.Width = 104;
     //
     // colBranchName2
     //
     this.colBranchName2.Caption = "Branch Name";
     this.colBranchName2.FieldName = "strBranchName";
     this.colBranchName2.Name = "colBranchName2";
     this.colBranchName2.Visible = true;
     this.colBranchName2.VisibleIndex = 1;
     this.colBranchName2.Width = 282;
     //
     // label3
     //
     this.label3.Location = new System.Drawing.Point(8, 24);
     this.label3.Name = "label3";
     this.label3.Size = new System.Drawing.Size(56, 54);
     this.label3.TabIndex = 23;
     this.label3.Text = "Package Sell Branch";
     //
     // gvPSUseBranch2
     //
     this.gvPSUseBranch2.Columns.AddRange(new DevExpress.XtraGrid.Columns.GridColumn[] {
     this.colUseBranchCode2,
     this.colUseBranchName2});
     this.gvPSUseBranch2.GridControl = this.gridPackageUseBranch2;
     this.gvPSUseBranch2.Name = "gvPSUseBranch2";
     this.gvPSUseBranch2.OptionsBehavior.AllowIncrementalSearch = true;
     this.gvPSUseBranch2.OptionsBehavior.Editable = false;
     this.gvPSUseBranch2.OptionsCustomization.AllowFilter = false;
     this.gvPSUseBranch2.OptionsSelection.MultiSelect = true;
     this.gvPSUseBranch2.OptionsView.ShowGroupPanel = false;
     this.gvPSUseBranch2.SortInfo.AddRange(new DevExpress.XtraGrid.Columns.GridColumnSortInfo[] {
     new DevExpress.XtraGrid.Columns.GridColumnSortInfo(this.colUseBranchCode2, DevExpress.Data.ColumnSortOrder.Ascending)});
     //
     // colUseBranchCode2
     //
     this.colUseBranchCode2.Caption = "Branch";
     this.colUseBranchCode2.FieldName = "strBranchCode";
     this.colUseBranchCode2.Name = "colUseBranchCode2";
     this.colUseBranchCode2.Visible = true;
     this.colUseBranchCode2.VisibleIndex = 0;
     this.colUseBranchCode2.Width = 104;
     //
     // colUseBranchName2
     //
     this.colUseBranchName2.Caption = "Branch Name";
     this.colUseBranchName2.FieldName = "strBranchName";
     this.colUseBranchName2.Name = "colUseBranchName2";
     this.colUseBranchName2.Visible = true;
     this.colUseBranchName2.VisibleIndex = 1;
     this.colUseBranchName2.Width = 282;
     //
     // label7
     //
     this.label7.Location = new System.Drawing.Point(8, 290);
     this.label7.Name = "label7";
     this.label7.Size = new System.Drawing.Size(56, 54);
     this.label7.TabIndex = 23;
     this.label7.Text = "Package Use Branch";
     //
     // gridPackageBranch
     //
     this.gridPackageBranch.Location = new System.Drawing.Point(64, 24);
     this.gridPackageBranch.MainView = this.gvPSBranch;
     this.gridPackageBranch.Name = "gridPackageBranch";
     this.gridPackageBranch.Size = new System.Drawing.Size(424, 128);
     this.gridPackageBranch.TabIndex = 17;
     this.gridPackageBranch.ViewCollection.AddRange(new DevExpress.XtraGrid.Views.Base.BaseView[] {
     this.gvPSBranch});
     //
     // gvPSBranch
     //
     this.gvPSBranch.Columns.AddRange(new DevExpress.XtraGrid.Columns.GridColumn[] {
     this.colBranchCode,
     this.colBranchName});
     this.gvPSBranch.GridControl = this.gridPackageBranch;
     this.gvPSBranch.Name = "gvPSBranch";
     this.gvPSBranch.OptionsBehavior.AllowIncrementalSearch = true;
     this.gvPSBranch.OptionsBehavior.Editable = false;
     this.gvPSBranch.OptionsCustomization.AllowFilter = false;
     this.gvPSBranch.OptionsSelection.MultiSelect = true;
     this.gvPSBranch.OptionsView.ShowGroupPanel = false;
     this.gvPSBranch.SortInfo.AddRange(new DevExpress.XtraGrid.Columns.GridColumnSortInfo[] {
     new DevExpress.XtraGrid.Columns.GridColumnSortInfo(this.colBranchCode, DevExpress.Data.ColumnSortOrder.Ascending)});
     //
     // colBranchCode
     //
     this.colBranchCode.Caption = "Branch";
     this.colBranchCode.FieldName = "strBranchCode";
     this.colBranchCode.Name = "colBranchCode";
     this.colBranchCode.Visible = true;
     this.colBranchCode.VisibleIndex = 0;
     this.colBranchCode.Width = 107;
     //
     // colBranchName
     //
     this.colBranchName.Caption = "Branch Name";
     this.colBranchName.FieldName = "strBranchName";
     this.colBranchName.Name = "colBranchName";
     this.colBranchName.Visible = true;
     this.colBranchName.VisibleIndex = 1;
     this.colBranchName.Width = 279;
     //
     // gridPackageUseBranch
     //
     this.gridPackageUseBranch.Location = new System.Drawing.Point(64, 290);
     this.gridPackageUseBranch.MainView = this.gvPSUseBranch;
     this.gridPackageUseBranch.Name = "gridPackageUseBranch";
     this.gridPackageUseBranch.Size = new System.Drawing.Size(424, 128);
     this.gridPackageUseBranch.TabIndex = 17;
     this.gridPackageUseBranch.ViewCollection.AddRange(new DevExpress.XtraGrid.Views.Base.BaseView[] {
     this.gvPSUseBranch});
     //
     // gvPSUseBranch
     //
     this.gvPSUseBranch.Columns.AddRange(new DevExpress.XtraGrid.Columns.GridColumn[] {
     this.colUseBranchCode,
     this.colUseBranchName});
     this.gvPSUseBranch.GridControl = this.gridPackageUseBranch;
     this.gvPSUseBranch.Name = "gvPSUseBranch";
     this.gvPSUseBranch.OptionsBehavior.AllowIncrementalSearch = true;
     this.gvPSUseBranch.OptionsBehavior.Editable = false;
     this.gvPSUseBranch.OptionsCustomization.AllowFilter = false;
     this.gvPSUseBranch.OptionsSelection.MultiSelect = true;
     this.gvPSUseBranch.OptionsView.ShowGroupPanel = false;
     this.gvPSUseBranch.SortInfo.AddRange(new DevExpress.XtraGrid.Columns.GridColumnSortInfo[] {
     new DevExpress.XtraGrid.Columns.GridColumnSortInfo(this.colUseBranchCode, DevExpress.Data.ColumnSortOrder.Ascending)});
     //
     // colUseBranchCode
     //
     this.colUseBranchCode.Caption = "Branch";
     this.colUseBranchCode.FieldName = "strBranchCode";
     this.colUseBranchCode.Name = "colUseBranchCode";
     this.colUseBranchCode.Visible = true;
     this.colUseBranchCode.VisibleIndex = 0;
     this.colUseBranchCode.Width = 107;
     //
     // colUseBranchName
     //
     this.colUseBranchName.Caption = "Branch Name";
     this.colUseBranchName.FieldName = "strBranchName";
     this.colUseBranchName.Name = "colUseBranchName";
     this.colUseBranchName.Visible = true;
     this.colUseBranchName.VisibleIndex = 1;
     this.colUseBranchName.Width = 279;
     //
     // PackageGroup
     //
     this.PackageGroup.Controls.Add(this.btn_PacGroup_Add);
     this.PackageGroup.Controls.Add(this.btn_PacGroup_Del);
     this.PackageGroup.Controls.Add(this.groupControl2);
     this.PackageGroup.Controls.Add(this.splitter2);
     this.PackageGroup.ImeMode = System.Windows.Forms.ImeMode.On;
     this.PackageGroup.Location = new System.Drawing.Point(8, 288);
     this.PackageGroup.LookAndFeel.Style = DevExpress.LookAndFeel.LookAndFeelStyle.Office2003;
     this.PackageGroup.LookAndFeel.UseDefaultLookAndFeel = false;
     this.PackageGroup.Name = "PackageGroup";
     this.PackageGroup.Size = new System.Drawing.Size(952, 434);
     this.PackageGroup.TabIndex = 100;
     this.PackageGroup.Text = "PACKAGE GROUP ENTRIES SETUP .....";
     //
     // btn_PacGroup_Add
     //
     this.btn_PacGroup_Add.Appearance.Font = new System.Drawing.Font("Tahoma", 14.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.btn_PacGroup_Add.Appearance.Options.UseFont = true;
     this.btn_PacGroup_Add.Appearance.Options.UseTextOptions = true;
     this.btn_PacGroup_Add.Appearance.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.btn_PacGroup_Add.Appearance.TextOptions.VAlignment = DevExpress.Utils.VertAlignment.Top;
     this.btn_PacGroup_Add.Appearance.TextOptions.WordWrap = DevExpress.Utils.WordWrap.Wrap;
     this.btn_PacGroup_Add.ImageIndex = 0;
     this.btn_PacGroup_Add.ImageList = this.imageList1;
     this.btn_PacGroup_Add.ImeMode = System.Windows.Forms.ImeMode.On;
     this.btn_PacGroup_Add.Location = new System.Drawing.Point(8, 24);
     this.btn_PacGroup_Add.Name = "btn_PacGroup_Add";
     this.btn_PacGroup_Add.Size = new System.Drawing.Size(32, 16);
     this.btn_PacGroup_Add.TabIndex = 134;
     this.btn_PacGroup_Add.Click += new System.EventHandler(this.btn_PacGroup_Add_Click);
     //
     // btn_PacGroup_Del
     //
     this.btn_PacGroup_Del.Appearance.Font = new System.Drawing.Font("Tahoma", 14.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.btn_PacGroup_Del.Appearance.Options.UseFont = true;
     this.btn_PacGroup_Del.Appearance.Options.UseTextOptions = true;
     this.btn_PacGroup_Del.Appearance.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.btn_PacGroup_Del.Appearance.TextOptions.VAlignment = DevExpress.Utils.VertAlignment.Top;
     this.btn_PacGroup_Del.Appearance.TextOptions.WordWrap = DevExpress.Utils.WordWrap.Wrap;
     this.btn_PacGroup_Del.ImageIndex = 1;
     this.btn_PacGroup_Del.ImageList = this.imageList1;
     this.btn_PacGroup_Del.Location = new System.Drawing.Point(40, 24);
     this.btn_PacGroup_Del.Name = "btn_PacGroup_Del";
     this.btn_PacGroup_Del.Size = new System.Drawing.Size(32, 16);
     this.btn_PacGroup_Del.TabIndex = 133;
     this.btn_PacGroup_Del.Click += new System.EventHandler(this.btn_PacGroup_Del_Click);
     //
     // groupControl2
     //
     this.groupControl2.BorderStyle = DevExpress.XtraEditors.Controls.BorderStyles.NoBorder;
     this.groupControl2.Controls.Add(this.gridControlMd_GroupEntries);
     this.groupControl2.Location = new System.Drawing.Point(0, 40);
     this.groupControl2.Name = "groupControl2";
     this.groupControl2.Size = new System.Drawing.Size(968, 248);
     this.groupControl2.TabIndex = 12;
     this.groupControl2.Text = "groupControl2";
     //
     // gridControlMd_GroupEntries
     //
     this.gridControlMd_GroupEntries.Dock = System.Windows.Forms.DockStyle.Fill;
     this.gridControlMd_GroupEntries.Location = new System.Drawing.Point(0, 0);
     this.gridControlMd_GroupEntries.LookAndFeel.UseDefaultLookAndFeel = false;
     this.gridControlMd_GroupEntries.MainView = this.gridViewMd_GroupEntries;
     this.gridControlMd_GroupEntries.Name = "gridControlMd_GroupEntries";
     this.gridControlMd_GroupEntries.RepositoryItems.AddRange(new DevExpress.XtraEditors.Repository.RepositoryItem[] {
     this.lk_GrpPackageCode});
     this.gridControlMd_GroupEntries.Size = new System.Drawing.Size(968, 248);
     this.gridControlMd_GroupEntries.TabIndex = 12;
     this.gridControlMd_GroupEntries.ViewCollection.AddRange(new DevExpress.XtraGrid.Views.Base.BaseView[] {
     this.gridViewMd_GroupEntries});
     //
     // gridViewMd_GroupEntries
     //
     this.gridViewMd_GroupEntries.Columns.AddRange(new DevExpress.XtraGrid.Columns.GridColumn[] {
     this.gridColumn44,
     this.gridColumn45,
     this.gridColumn46});
     this.gridViewMd_GroupEntries.GridControl = this.gridControlMd_GroupEntries;
     this.gridViewMd_GroupEntries.Name = "gridViewMd_GroupEntries";
     this.gridViewMd_GroupEntries.OptionsCustomization.AllowFilter = false;
     this.gridViewMd_GroupEntries.OptionsCustomization.AllowSort = false;
     this.gridViewMd_GroupEntries.OptionsView.ShowGroupPanel = false;
     this.gridViewMd_GroupEntries.LostFocus += new System.EventHandler(this.gridViewMd_GroupEntries_LostFocus);
     //
     // gridColumn44
     //
     this.gridColumn44.Caption = "Package Group Code";
     this.gridColumn44.FieldName = "strPackageGroupCode";
     this.gridColumn44.Name = "gridColumn44";
     //
     // gridColumn45
     //
     this.gridColumn45.Caption = "Package Code";
     this.gridColumn45.ColumnEdit = this.lk_GrpPackageCode;
     this.gridColumn45.FieldName = "strPackageCode";
     this.gridColumn45.Name = "gridColumn45";
     this.gridColumn45.Visible = true;
     this.gridColumn45.VisibleIndex = 0;
     //
     // lk_GrpPackageCode
     //
     this.lk_GrpPackageCode.AutoHeight = false;
     this.lk_GrpPackageCode.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.lk_GrpPackageCode.Name = "lk_GrpPackageCode";
     //
     // gridColumn46
     //
     this.gridColumn46.AppearanceCell.Options.UseTextOptions = true;
     this.gridColumn46.AppearanceCell.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Near;
     this.gridColumn46.Caption = "Quantity";
     this.gridColumn46.DisplayFormat.FormatType = DevExpress.Utils.FormatType.Numeric;
     this.gridColumn46.FieldName = "nQuantity";
     this.gridColumn46.Name = "gridColumn46";
     this.gridColumn46.Visible = true;
     this.gridColumn46.VisibleIndex = 1;
     //
     // splitter2
     //
     this.splitter2.BackColor = System.Drawing.SystemColors.Control;
     this.splitter2.Dock = System.Windows.Forms.DockStyle.Right;
     this.splitter2.ForeColor = System.Drawing.SystemColors.ControlText;
     this.splitter2.Location = new System.Drawing.Point(948, 19);
     this.splitter2.Name = "splitter2";
     this.splitter2.Size = new System.Drawing.Size(2, 413);
     this.splitter2.TabIndex = 7;
     this.splitter2.TabStop = false;
     //
     // GroupCreditPackage
     //
     this.GroupCreditPackage.Controls.Add(this.btn_CreGroup_Add);
     this.GroupCreditPackage.Controls.Add(this.btn_CreGroup_Del);
     this.GroupCreditPackage.Controls.Add(this.groupControl3);
     this.GroupCreditPackage.Location = new System.Drawing.Point(8, 288);
     this.GroupCreditPackage.LookAndFeel.Style = DevExpress.LookAndFeel.LookAndFeelStyle.Office2003;
     this.GroupCreditPackage.LookAndFeel.UseDefaultLookAndFeel = false;
     this.GroupCreditPackage.Name = "GroupCreditPackage";
     this.GroupCreditPackage.Size = new System.Drawing.Size(968, 300);
     this.GroupCreditPackage.TabIndex = 101;
     this.GroupCreditPackage.Text = "EMPLOYEE CREDIT PACKAGE SETUP .....";
     //
     // btn_CreGroup_Add
     //
     this.btn_CreGroup_Add.Appearance.Font = new System.Drawing.Font("Tahoma", 14.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.btn_CreGroup_Add.Appearance.Options.UseFont = true;
     this.btn_CreGroup_Add.Appearance.Options.UseTextOptions = true;
     this.btn_CreGroup_Add.Appearance.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.btn_CreGroup_Add.Appearance.TextOptions.VAlignment = DevExpress.Utils.VertAlignment.Top;
     this.btn_CreGroup_Add.Appearance.TextOptions.WordWrap = DevExpress.Utils.WordWrap.Wrap;
     this.btn_CreGroup_Add.ImageIndex = 0;
     this.btn_CreGroup_Add.ImageList = this.imageList1;
     this.btn_CreGroup_Add.ImeMode = System.Windows.Forms.ImeMode.On;
     this.btn_CreGroup_Add.Location = new System.Drawing.Point(0, 24);
     this.btn_CreGroup_Add.Name = "btn_CreGroup_Add";
     this.btn_CreGroup_Add.Size = new System.Drawing.Size(32, 16);
     this.btn_CreGroup_Add.TabIndex = 136;
     this.btn_CreGroup_Add.Click += new System.EventHandler(this.btn_CreGroup_Add_Click);
     //
     // btn_CreGroup_Del
     //
     this.btn_CreGroup_Del.Appearance.Font = new System.Drawing.Font("Tahoma", 14.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.btn_CreGroup_Del.Appearance.Options.UseFont = true;
     this.btn_CreGroup_Del.Appearance.Options.UseTextOptions = true;
     this.btn_CreGroup_Del.Appearance.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.btn_CreGroup_Del.Appearance.TextOptions.VAlignment = DevExpress.Utils.VertAlignment.Top;
     this.btn_CreGroup_Del.Appearance.TextOptions.WordWrap = DevExpress.Utils.WordWrap.Wrap;
     this.btn_CreGroup_Del.ImageIndex = 1;
     this.btn_CreGroup_Del.ImageList = this.imageList1;
     this.btn_CreGroup_Del.Location = new System.Drawing.Point(32, 24);
     this.btn_CreGroup_Del.Name = "btn_CreGroup_Del";
     this.btn_CreGroup_Del.Size = new System.Drawing.Size(32, 16);
     this.btn_CreGroup_Del.TabIndex = 135;
     this.btn_CreGroup_Del.Click += new System.EventHandler(this.btn_CreGroup_Del_Click);
     //
     // groupControl3
     //
     this.groupControl3.BorderStyle = DevExpress.XtraEditors.Controls.BorderStyles.NoBorder;
     this.groupControl3.Controls.Add(this.GridCreditRestric);
     this.groupControl3.Location = new System.Drawing.Point(0, 40);
     this.groupControl3.Name = "groupControl3";
     this.groupControl3.Size = new System.Drawing.Size(944, 256);
     this.groupControl3.TabIndex = 12;
     this.groupControl3.Text = "groupControl3";
     //
     // GridCreditRestric
     //
     this.GridCreditRestric.Dock = System.Windows.Forms.DockStyle.Fill;
     gridLevelNode2.RelationName = "Level1";
     this.GridCreditRestric.LevelTree.Nodes.AddRange(new DevExpress.XtraGrid.GridLevelNode[] {
     gridLevelNode2});
     this.GridCreditRestric.Location = new System.Drawing.Point(0, 0);
     this.GridCreditRestric.LookAndFeel.UseDefaultLookAndFeel = false;
     this.GridCreditRestric.MainView = this.gridViewmd_CreditRestric;
     this.GridCreditRestric.Name = "GridCreditRestric";
     this.GridCreditRestric.RepositoryItems.AddRange(new DevExpress.XtraEditors.Repository.RepositoryItem[] {
     this.lk_PackageCode,
     this.chk_AllowDiscount});
     this.GridCreditRestric.Size = new System.Drawing.Size(944, 256);
     this.GridCreditRestric.TabIndex = 12;
     this.GridCreditRestric.ViewCollection.AddRange(new DevExpress.XtraGrid.Views.Base.BaseView[] {
     this.gridViewmd_CreditRestric});
     //
     // gridViewmd_CreditRestric
     //
     this.gridViewmd_CreditRestric.Columns.AddRange(new DevExpress.XtraGrid.Columns.GridColumn[] {
     this.gridColumn25,
     this.gridColumn26,
     this.gridColumn27});
     this.gridViewmd_CreditRestric.GridControl = this.GridCreditRestric;
     this.gridViewmd_CreditRestric.Name = "gridViewmd_CreditRestric";
     this.gridViewmd_CreditRestric.OptionsCustomization.AllowFilter = false;
     this.gridViewmd_CreditRestric.OptionsCustomization.AllowSort = false;
     this.gridViewmd_CreditRestric.OptionsView.ShowGroupPanel = false;
     this.gridViewmd_CreditRestric.LostFocus += new System.EventHandler(this.gridViewmd_CreditRestric_LostFocus);
     //
     // gridColumn25
     //
     this.gridColumn25.FieldName = "strCreditPackageCode";
     this.gridColumn25.Name = "gridColumn25";
     //
     // gridColumn26
     //
     this.gridColumn26.Caption = "Package Code";
     this.gridColumn26.ColumnEdit = this.lk_PackageCode;
     this.gridColumn26.FieldName = "strPackageCode";
     this.gridColumn26.Name = "gridColumn26";
     this.gridColumn26.Visible = true;
     this.gridColumn26.VisibleIndex = 0;
     //
     // lk_PackageCode
     //
     this.lk_PackageCode.AutoHeight = false;
     this.lk_PackageCode.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.lk_PackageCode.Name = "lk_PackageCode";
     //
     // gridColumn27
     //
     this.gridColumn27.AppearanceCell.Options.UseTextOptions = true;
     this.gridColumn27.AppearanceCell.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Near;
     this.gridColumn27.Caption = "Allow Discount";
     this.gridColumn27.ColumnEdit = this.chk_AllowDiscount;
     this.gridColumn27.FieldName = "fAllowDiscount";
     this.gridColumn27.ImageAlignment = System.Drawing.StringAlignment.Center;
     this.gridColumn27.Name = "gridColumn27";
     this.gridColumn27.Visible = true;
     this.gridColumn27.VisibleIndex = 1;
     //
     // chk_AllowDiscount
     //
     this.chk_AllowDiscount.AutoHeight = false;
     this.chk_AllowDiscount.Name = "chk_AllowDiscount";
     //
     // grpBranch
     //
     this.grpBranch.Controls.Add(this.btnPacBranch_Del);
     this.grpBranch.Controls.Add(this.btnPacBranch_DelAll);
     this.grpBranch.Controls.Add(this.btnPacBranch_AddAll);
     this.grpBranch.Controls.Add(this.btnPacBranch_Add);
     this.grpBranch.Controls.Add(this.gridPacBranch2);
     this.grpBranch.Controls.Add(this.label6);
     this.grpBranch.Controls.Add(this.gridPacBranch);
     this.grpBranch.Location = new System.Drawing.Point(3, 290);
     this.grpBranch.LookAndFeel.Style = DevExpress.LookAndFeel.LookAndFeelStyle.Office2003;
     this.grpBranch.LookAndFeel.UseDefaultLookAndFeel = false;
     this.grpBranch.Name = "grpBranch";
     this.grpBranch.Size = new System.Drawing.Size(960, 296);
     this.grpBranch.TabIndex = 102;
     this.grpBranch.Text = "PACKAGE SETUP .....";
     //
     // btnPacBranch_Del
     //
     this.btnPacBranch_Del.ButtonStyle = DevExpress.XtraEditors.Controls.BorderStyles.Simple;
     this.btnPacBranch_Del.Location = new System.Drawing.Point(496, 96);
     this.btnPacBranch_Del.Name = "btnPacBranch_Del";
     this.btnPacBranch_Del.Size = new System.Drawing.Size(30, 20);
     this.btnPacBranch_Del.TabIndex = 21;
     this.btnPacBranch_Del.Text = "<";
     this.btnPacBranch_Del.Click += new System.EventHandler(this.btnPacBranch_Del_Click);
     //
     // btnPacBranch_DelAll
     //
     this.btnPacBranch_DelAll.ButtonStyle = DevExpress.XtraEditors.Controls.BorderStyles.Simple;
     this.btnPacBranch_DelAll.Location = new System.Drawing.Point(496, 72);
     this.btnPacBranch_DelAll.Name = "btnPacBranch_DelAll";
     this.btnPacBranch_DelAll.Size = new System.Drawing.Size(30, 20);
     this.btnPacBranch_DelAll.TabIndex = 20;
     this.btnPacBranch_DelAll.Text = "<<";
     this.btnPacBranch_DelAll.Click += new System.EventHandler(this.btnPacBranch_DelAll_Click);
     //
     // btnPacBranch_AddAll
     //
     this.btnPacBranch_AddAll.ButtonStyle = DevExpress.XtraEditors.Controls.BorderStyles.Simple;
     this.btnPacBranch_AddAll.Location = new System.Drawing.Point(496, 48);
     this.btnPacBranch_AddAll.Name = "btnPacBranch_AddAll";
     this.btnPacBranch_AddAll.Size = new System.Drawing.Size(30, 20);
     this.btnPacBranch_AddAll.TabIndex = 19;
     this.btnPacBranch_AddAll.Text = ">>";
     this.btnPacBranch_AddAll.Click += new System.EventHandler(this.btnPacBranch_AddAll_Click);
     //
     // btnPacBranch_Add
     //
     this.btnPacBranch_Add.ButtonStyle = DevExpress.XtraEditors.Controls.BorderStyles.Simple;
     this.btnPacBranch_Add.Location = new System.Drawing.Point(496, 24);
     this.btnPacBranch_Add.Name = "btnPacBranch_Add";
     this.btnPacBranch_Add.Size = new System.Drawing.Size(30, 20);
     this.btnPacBranch_Add.TabIndex = 18;
     this.btnPacBranch_Add.Text = ">";
     this.btnPacBranch_Add.Click += new System.EventHandler(this.btnPacBranch_Add_Click);
     //
     // gridPacBranch2
     //
     this.gridPacBranch2.Location = new System.Drawing.Point(536, 24);
     this.gridPacBranch2.MainView = this.gvPacBranch2;
     this.gridPacBranch2.Name = "gridPacBranch2";
     this.gridPacBranch2.Size = new System.Drawing.Size(424, 264);
     this.gridPacBranch2.TabIndex = 22;
     this.gridPacBranch2.ViewCollection.AddRange(new DevExpress.XtraGrid.Views.Base.BaseView[] {
     this.gvPacBranch2});
     //
     // gvPacBranch2
     //
     this.gvPacBranch2.Columns.AddRange(new DevExpress.XtraGrid.Columns.GridColumn[] {
     this.gridColumn33,
     this.gridColumn34});
     this.gvPacBranch2.GridControl = this.gridPacBranch2;
     this.gvPacBranch2.Name = "gvPacBranch2";
     this.gvPacBranch2.OptionsBehavior.AllowIncrementalSearch = true;
     this.gvPacBranch2.OptionsBehavior.Editable = false;
     this.gvPacBranch2.OptionsCustomization.AllowFilter = false;
     this.gvPacBranch2.OptionsSelection.MultiSelect = true;
     this.gvPacBranch2.OptionsView.ShowGroupPanel = false;
     this.gvPacBranch2.SortInfo.AddRange(new DevExpress.XtraGrid.Columns.GridColumnSortInfo[] {
     new DevExpress.XtraGrid.Columns.GridColumnSortInfo(this.gridColumn33, DevExpress.Data.ColumnSortOrder.Ascending)});
     //
     // gridColumn33
     //
     this.gridColumn33.Caption = "Branch";
     this.gridColumn33.FieldName = "strBranchCode";
     this.gridColumn33.Name = "gridColumn33";
     this.gridColumn33.Visible = true;
     this.gridColumn33.VisibleIndex = 0;
     this.gridColumn33.Width = 104;
     //
     // gridColumn34
     //
     this.gridColumn34.Caption = "Branch Name";
     this.gridColumn34.FieldName = "strBranchName";
     this.gridColumn34.Name = "gridColumn34";
     this.gridColumn34.Visible = true;
     this.gridColumn34.VisibleIndex = 1;
     this.gridColumn34.Width = 282;
     //
     // label6
     //
     this.label6.Location = new System.Drawing.Point(8, 24);
     this.label6.Name = "label6";
     this.label6.Size = new System.Drawing.Size(56, 34);
     this.label6.TabIndex = 23;
     this.label6.Text = "Package Branch";
     //
     // gridPacBranch
     //
     this.gridPacBranch.Location = new System.Drawing.Point(64, 24);
     this.gridPacBranch.MainView = this.gvPacBranch;
     this.gridPacBranch.Name = "gridPacBranch";
     this.gridPacBranch.Size = new System.Drawing.Size(424, 264);
     this.gridPacBranch.TabIndex = 17;
     this.gridPacBranch.ViewCollection.AddRange(new DevExpress.XtraGrid.Views.Base.BaseView[] {
     this.gvPacBranch});
     //
     // gvPacBranch
     //
     this.gvPacBranch.Columns.AddRange(new DevExpress.XtraGrid.Columns.GridColumn[] {
     this.gridColumn35,
     this.gridColumn36});
     this.gvPacBranch.GridControl = this.gridPacBranch;
     this.gvPacBranch.Name = "gvPacBranch";
     this.gvPacBranch.OptionsBehavior.AllowIncrementalSearch = true;
     this.gvPacBranch.OptionsBehavior.Editable = false;
     this.gvPacBranch.OptionsCustomization.AllowFilter = false;
     this.gvPacBranch.OptionsSelection.MultiSelect = true;
     this.gvPacBranch.OptionsView.ShowGroupPanel = false;
     this.gvPacBranch.SortInfo.AddRange(new DevExpress.XtraGrid.Columns.GridColumnSortInfo[] {
     new DevExpress.XtraGrid.Columns.GridColumnSortInfo(this.gridColumn35, DevExpress.Data.ColumnSortOrder.Ascending)});
     //
     // gridColumn35
     //
     this.gridColumn35.Caption = "Branch";
     this.gridColumn35.FieldName = "strBranchCode";
     this.gridColumn35.Name = "gridColumn35";
     this.gridColumn35.Visible = true;
     this.gridColumn35.VisibleIndex = 0;
     this.gridColumn35.Width = 107;
     //
     // gridColumn36
     //
     this.gridColumn36.Caption = "Branch Name";
     this.gridColumn36.FieldName = "strBranchName";
     this.gridColumn36.Name = "gridColumn36";
     this.gridColumn36.Visible = true;
     this.gridColumn36.VisibleIndex = 1;
     this.gridColumn36.Width = 279;
     //
     // frmPackage
     //
     this.BackColor = System.Drawing.Color.White;
     this.AutoScroll = true;
     this.ClientSize = new System.Drawing.Size(982, 600);
     this.Controls.Add(this.grpPackageService);
     this.Controls.Add(this.grpMDPackageTop);
     this.Controls.Add(this.grpPackageClass);
     this.Controls.Add(this.GroupCreditPackage);
     this.Controls.Add(this.grpBranch);
     this.Controls.Add(this.PackageGroup);
     this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.None;
     this.Name = "frmPackage";
     this.Text = "frmPackage";
     this.Load += new System.EventHandler(this.frmPackage_Load);
     ((System.ComponentModel.ISupportInitialize)(this.grpMDPackageTop)).EndInit();
     this.grpMDPackageTop.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.ddlPackageCategory.Properties)).EndInit();
     this.Searchpanel.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.txtSearch.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.grpPackage)).EndInit();
     this.grpPackage.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.groupControl1)).EndInit();
     this.groupControl1.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.gridControlMd_Package)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridViewMd_Package)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.chk_DurationUnit)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.StartDate.VistaTimeProperties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.StartDate)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.EndDate.VistaTimeProperties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.EndDate)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.chk_Peak)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.chk_StudentPackage)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.lk_Category)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.chk_GIRO)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.chk_Sell)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.chk_Peak_1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.chk_StuPackage)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemCheckEdit1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.chk_RestUpgrade)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.grpPackageGroup)).EndInit();
     this.grpPackageGroup.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.groupControl4)).EndInit();
     this.groupControl4.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.gridControlMd_PackageGroup)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridViewMd_PackageGroup)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.lk_pkGroupCatID)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.grpCreditPackage)).EndInit();
     this.grpCreditPackage.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.groupControl5)).EndInit();
     this.groupControl5.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.gridControlMd_CreditPackage)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridViewMd_CreditPackage)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.EffCCStartDate.VistaTimeProperties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.EffCCStartDate)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.EffCCEndDate.VistaTimeProperties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.EffCCEndDate)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.lk_CreditCategoryID)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.grpPackageClass)).EndInit();
     this.grpPackageClass.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.gridPackageClass2)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.gvPackageClass2)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridPackageClass)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.gvPackageClass)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridPcGroupBranch2)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.gvPcGroupBranch2)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridPcGroupBranch)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.gvPcGroupBranch)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridPcGroupUseBranch2)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.gvPcGroupUseBranch2)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridPcGroupUseBranch)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.gvPcGroupUseBranch)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.grpPackageService)).EndInit();
     this.grpPackageService.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.gridPackageService2)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.gvPackageService2)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridPackageService)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.gvPackageService)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridPackageBranch2)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.gvPSBranch2)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridPackageBranch)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.gvPSBranch)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridPackageUseBranch2)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.gvPSUseBranch2)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridPackageUseBranch)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.gvPSUseBranch)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.PackageGroup)).EndInit();
     this.PackageGroup.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.groupControl2)).EndInit();
     this.groupControl2.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.gridControlMd_GroupEntries)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridViewMd_GroupEntries)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.lk_GrpPackageCode)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.GroupCreditPackage)).EndInit();
     this.GroupCreditPackage.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.groupControl3)).EndInit();
     this.groupControl3.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.GridCreditRestric)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridViewmd_CreditRestric)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.lk_PackageCode)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.chk_AllowDiscount)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.grpBranch)).EndInit();
     this.grpBranch.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.gridPacBranch2)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.gvPacBranch2)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridPacBranch)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.gvPacBranch)).EndInit();
     this.ResumeLayout(false);
 }
Example #42
0
 private void InitializeComponent()
 {
     this.components = new System.ComponentModel.Container();
     System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(UCFieldManage));
     this.gridControl1              = new DevExpress.XtraGrid.GridControl();
     this.gridView1                 = new DevExpress.XtraGrid.Views.Grid.GridView();
     this.gridColumnName            = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumnAlias           = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumnDataType        = new DevExpress.XtraGrid.Columns.GridColumn();
     this.repositoryItemComboBox1   = new DevExpress.XtraEditors.Repository.RepositoryItemComboBox();
     this.gridColumnSystemName      = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumnSystemAlias     = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumnCanQuery        = new DevExpress.XtraGrid.Columns.GridColumn();
     this.repositoryItemRadioGroup1 = new DevExpress.XtraEditors.Repository.RepositoryItemRadioGroup();
     this.gridColumnNeedCheck       = new DevExpress.XtraGrid.Columns.GridColumn();
     this.repositoryItemRadioGroup2 = new DevExpress.XtraEditors.Repository.RepositoryItemRadioGroup();
     this.gridColumnCanStats        = new DevExpress.XtraGrid.Columns.GridColumn();
     this.repositoryItemRadioGroup3 = new DevExpress.XtraEditors.Repository.RepositoryItemRadioGroup();
     this.barManager1               = new DevExpress.XtraBars.BarManager(this.components);
     this.bar2 = new DevExpress.XtraBars.Bar();
     this.bbi_SaveFieldInfo    = new DevExpress.XtraBars.BarButtonItem();
     this.bbi_Add              = new DevExpress.XtraBars.BarButtonItem();
     this.bbi_Delete           = new DevExpress.XtraBars.BarButtonItem();
     this.bbi_Import           = new DevExpress.XtraBars.BarButtonItem();
     this.bbi_Export           = 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.imageCollection1     = new DevExpress.Utils.ImageCollection(this.components);
     ((System.ComponentModel.ISupportInitialize)(this.gridControl1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridView1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemComboBox1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemRadioGroup1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemRadioGroup2)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemRadioGroup3)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.barManager1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.imageCollection1)).BeginInit();
     this.SuspendLayout();
     //
     // gridControl1
     //
     this.gridControl1.Dock     = System.Windows.Forms.DockStyle.Fill;
     this.gridControl1.Location = new System.Drawing.Point(0, 24);
     this.gridControl1.MainView = this.gridView1;
     this.gridControl1.Name     = "gridControl1";
     this.gridControl1.RepositoryItems.AddRange(new DevExpress.XtraEditors.Repository.RepositoryItem[] {
         this.repositoryItemRadioGroup1,
         this.repositoryItemRadioGroup2,
         this.repositoryItemRadioGroup3,
         this.repositoryItemComboBox1
     });
     this.gridControl1.Size     = new System.Drawing.Size(582, 371);
     this.gridControl1.TabIndex = 3;
     this.gridControl1.ViewCollection.AddRange(new DevExpress.XtraGrid.Views.Base.BaseView[] {
         this.gridView1
     });
     //
     // gridView1
     //
     this.gridView1.Columns.AddRange(new DevExpress.XtraGrid.Columns.GridColumn[] {
         this.gridColumnName,
         this.gridColumnAlias,
         this.gridColumnDataType,
         this.gridColumnSystemName,
         this.gridColumnSystemAlias,
         this.gridColumnCanQuery,
         this.gridColumnNeedCheck,
         this.gridColumnCanStats
     });
     this.gridView1.GridControl = this.gridControl1;
     this.gridView1.Name        = "gridView1";
     this.gridView1.OptionsCustomization.AllowFilter           = false;
     this.gridView1.OptionsCustomization.AllowGroup            = false;
     this.gridView1.OptionsCustomization.AllowQuickHideColumns = false;
     this.gridView1.OptionsCustomization.AllowSort             = false;
     this.gridView1.OptionsView.ShowGroupPanel = false;
     this.gridView1.CellValueChanged          += new DevExpress.XtraGrid.Views.Base.CellValueChangedEventHandler(this.gridView1_CellValueChanged);
     //
     // gridColumnName
     //
     this.gridColumnName.Caption   = "名称";
     this.gridColumnName.FieldName = "Name";
     this.gridColumnName.Name      = "gridColumnName";
     this.gridColumnName.OptionsColumn.AllowSort = DevExpress.Utils.DefaultBoolean.False;
     this.gridColumnName.OptionsColumn.ShowInCustomizationForm = false;
     this.gridColumnName.OptionsFilter.AllowAutoFilter         = false;
     this.gridColumnName.OptionsFilter.AllowFilter             = false;
     this.gridColumnName.Visible      = true;
     this.gridColumnName.VisibleIndex = 0;
     //
     // gridColumnAlias
     //
     this.gridColumnAlias.Caption   = "别名";
     this.gridColumnAlias.FieldName = "Alias";
     this.gridColumnAlias.Name      = "gridColumnAlias";
     this.gridColumnAlias.OptionsColumn.AllowSort = DevExpress.Utils.DefaultBoolean.False;
     this.gridColumnAlias.OptionsColumn.ShowInCustomizationForm = false;
     this.gridColumnAlias.OptionsFilter.AllowAutoFilter         = false;
     this.gridColumnAlias.OptionsFilter.AllowFilter             = false;
     this.gridColumnAlias.Visible      = true;
     this.gridColumnAlias.VisibleIndex = 1;
     //
     // gridColumnDataType
     //
     this.gridColumnDataType.Caption      = "数据类型";
     this.gridColumnDataType.ColumnEdit   = this.repositoryItemComboBox1;
     this.gridColumnDataType.FieldName    = "DataType";
     this.gridColumnDataType.Name         = "gridColumnDataType";
     this.gridColumnDataType.Visible      = true;
     this.gridColumnDataType.VisibleIndex = 2;
     //
     // repositoryItemComboBox1
     //
     this.repositoryItemComboBox1.AutoHeight = false;
     this.repositoryItemComboBox1.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
         new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)
     });
     this.repositoryItemComboBox1.Items.AddRange(new object[] {
         "String",
         "Decimal"
     });
     this.repositoryItemComboBox1.Name              = "repositoryItemComboBox1";
     this.repositoryItemComboBox1.TextEditStyle     = DevExpress.XtraEditors.Controls.TextEditStyles.DisableTextEditor;
     this.repositoryItemComboBox1.EditValueChanged += new System.EventHandler(this.repositoryItemComboBox1_EditValueChanged);
     //
     // gridColumnSystemName
     //
     this.gridColumnSystemName.Caption   = "系统名称";
     this.gridColumnSystemName.FieldName = "SystemName";
     this.gridColumnSystemName.Name      = "gridColumnSystemName";
     this.gridColumnSystemName.OptionsColumn.AllowSort = DevExpress.Utils.DefaultBoolean.False;
     this.gridColumnSystemName.OptionsColumn.ShowInCustomizationForm = false;
     this.gridColumnSystemName.OptionsFilter.AllowAutoFilter         = false;
     this.gridColumnSystemName.OptionsFilter.AllowFilter             = false;
     this.gridColumnSystemName.Visible      = true;
     this.gridColumnSystemName.VisibleIndex = 3;
     //
     // gridColumnSystemAlias
     //
     this.gridColumnSystemAlias.Caption   = "系统别名";
     this.gridColumnSystemAlias.FieldName = "SystemAlias";
     this.gridColumnSystemAlias.Name      = "gridColumnSystemAlias";
     this.gridColumnSystemAlias.OptionsColumn.AllowSort = DevExpress.Utils.DefaultBoolean.False;
     this.gridColumnSystemAlias.OptionsColumn.ShowInCustomizationForm = false;
     this.gridColumnSystemAlias.OptionsFilter.AllowAutoFilter         = false;
     this.gridColumnSystemAlias.OptionsFilter.AllowFilter             = false;
     this.gridColumnSystemAlias.Visible      = true;
     this.gridColumnSystemAlias.VisibleIndex = 4;
     //
     // gridColumnCanQuery
     //
     this.gridColumnCanQuery.Caption    = "能否查询";
     this.gridColumnCanQuery.ColumnEdit = this.repositoryItemRadioGroup1;
     this.gridColumnCanQuery.FieldName  = "CanQuery";
     this.gridColumnCanQuery.Name       = "gridColumnCanQuery";
     this.gridColumnCanQuery.OptionsColumn.AllowSort = DevExpress.Utils.DefaultBoolean.False;
     this.gridColumnCanQuery.OptionsColumn.ShowInCustomizationForm = false;
     this.gridColumnCanQuery.OptionsFilter.AllowAutoFilter         = false;
     this.gridColumnCanQuery.OptionsFilter.AllowFilter             = false;
     this.gridColumnCanQuery.Visible      = true;
     this.gridColumnCanQuery.VisibleIndex = 5;
     //
     // repositoryItemRadioGroup1
     //
     this.repositoryItemRadioGroup1.Columns = 2;
     this.repositoryItemRadioGroup1.Items.AddRange(new DevExpress.XtraEditors.Controls.RadioGroupItem[] {
         new DevExpress.XtraEditors.Controls.RadioGroupItem("true", "是"),
         new DevExpress.XtraEditors.Controls.RadioGroupItem("false", "否")
     });
     this.repositoryItemRadioGroup1.Name = "repositoryItemRadioGroup1";
     this.repositoryItemRadioGroup1.SelectedIndexChanged += new System.EventHandler(this.repositoryItemRadioGroup1_SelectedIndexChanged);
     //
     // gridColumnNeedCheck
     //
     this.gridColumnNeedCheck.Caption    = "能否检查";
     this.gridColumnNeedCheck.ColumnEdit = this.repositoryItemRadioGroup2;
     this.gridColumnNeedCheck.FieldName  = "NeedCheck";
     this.gridColumnNeedCheck.Name       = "gridColumnNeedCheck";
     this.gridColumnNeedCheck.OptionsColumn.AllowSort = DevExpress.Utils.DefaultBoolean.False;
     this.gridColumnNeedCheck.OptionsColumn.ShowInCustomizationForm = false;
     this.gridColumnNeedCheck.OptionsFilter.AllowAutoFilter         = false;
     this.gridColumnNeedCheck.OptionsFilter.AllowFilter             = false;
     this.gridColumnNeedCheck.Visible      = true;
     this.gridColumnNeedCheck.VisibleIndex = 7;
     //
     // repositoryItemRadioGroup2
     //
     this.repositoryItemRadioGroup2.Columns = 2;
     this.repositoryItemRadioGroup2.Items.AddRange(new DevExpress.XtraEditors.Controls.RadioGroupItem[] {
         new DevExpress.XtraEditors.Controls.RadioGroupItem("true", "是"),
         new DevExpress.XtraEditors.Controls.RadioGroupItem("false", "否")
     });
     this.repositoryItemRadioGroup2.Name = "repositoryItemRadioGroup2";
     this.repositoryItemRadioGroup2.SelectedIndexChanged += new System.EventHandler(this.repositoryItemRadioGroup2_SelectedIndexChanged);
     //
     // gridColumnCanStats
     //
     this.gridColumnCanStats.Caption    = "能否统计";
     this.gridColumnCanStats.ColumnEdit = this.repositoryItemRadioGroup3;
     this.gridColumnCanStats.FieldName  = "CanStats";
     this.gridColumnCanStats.Name       = "gridColumnCanStats";
     this.gridColumnCanStats.OptionsColumn.AllowSort = DevExpress.Utils.DefaultBoolean.False;
     this.gridColumnCanStats.OptionsColumn.ShowInCustomizationForm = false;
     this.gridColumnCanStats.OptionsFilter.AllowAutoFilter         = false;
     this.gridColumnCanStats.OptionsFilter.AllowFilter             = false;
     this.gridColumnCanStats.Visible      = true;
     this.gridColumnCanStats.VisibleIndex = 6;
     //
     // repositoryItemRadioGroup3
     //
     this.repositoryItemRadioGroup3.Columns = 2;
     this.repositoryItemRadioGroup3.Items.AddRange(new DevExpress.XtraEditors.Controls.RadioGroupItem[] {
         new DevExpress.XtraEditors.Controls.RadioGroupItem("true", "是"),
         new DevExpress.XtraEditors.Controls.RadioGroupItem("false", "否")
     });
     this.repositoryItemRadioGroup3.Name = "repositoryItemRadioGroup3";
     this.repositoryItemRadioGroup3.SelectedIndexChanged += new System.EventHandler(this.repositoryItemRadioGroup3_SelectedIndexChanged);
     //
     // barManager1
     //
     this.barManager1.AllowCustomization      = false;
     this.barManager1.AllowQuickCustomization = false;
     this.barManager1.Bars.AddRange(new DevExpress.XtraBars.Bar[] {
         this.bar2
     });
     this.barManager1.DockControls.Add(this.barDockControlTop);
     this.barManager1.DockControls.Add(this.barDockControlBottom);
     this.barManager1.DockControls.Add(this.barDockControlLeft);
     this.barManager1.DockControls.Add(this.barDockControlRight);
     this.barManager1.Form   = this;
     this.barManager1.Images = this.imageCollection1;
     this.barManager1.Items.AddRange(new DevExpress.XtraBars.BarItem[] {
         this.bbi_Add,
         this.bbi_Delete,
         this.bbi_Import,
         this.bbi_Export,
         this.bbi_SaveFieldInfo
     });
     this.barManager1.MainMenu  = this.bar2;
     this.barManager1.MaxItemId = 6;
     //
     // bar2
     //
     this.bar2.BarName   = "Main menu";
     this.bar2.DockCol   = 0;
     this.bar2.DockRow   = 0;
     this.bar2.DockStyle = DevExpress.XtraBars.BarDockStyle.Top;
     this.bar2.LinksPersistInfo.AddRange(new DevExpress.XtraBars.LinkPersistInfo[] {
         new DevExpress.XtraBars.LinkPersistInfo(this.bbi_SaveFieldInfo),
         new DevExpress.XtraBars.LinkPersistInfo(this.bbi_Add, true),
         new DevExpress.XtraBars.LinkPersistInfo(this.bbi_Delete),
         new DevExpress.XtraBars.LinkPersistInfo(this.bbi_Import, true),
         new DevExpress.XtraBars.LinkPersistInfo(this.bbi_Export)
     });
     this.bar2.OptionsBar.AllowQuickCustomization = false;
     this.bar2.OptionsBar.DisableCustomization    = true;
     this.bar2.OptionsBar.DrawDragBorder          = false;
     this.bar2.OptionsBar.MultiLine   = true;
     this.bar2.OptionsBar.UseWholeRow = true;
     this.bar2.Text = "Main menu";
     //
     // bbi_SaveFieldInfo
     //
     this.bbi_SaveFieldInfo.Caption    = "保存字段信息";
     this.bbi_SaveFieldInfo.Id         = 5;
     this.bbi_SaveFieldInfo.ImageIndex = 0;
     this.bbi_SaveFieldInfo.Name       = "bbi_SaveFieldInfo";
     this.bbi_SaveFieldInfo.ItemClick += new DevExpress.XtraBars.ItemClickEventHandler(this.bbi_SaveFieldInfo_ItemClick);
     //
     // bbi_Add
     //
     this.bbi_Add.Caption    = "添加";
     this.bbi_Add.Id         = 0;
     this.bbi_Add.ImageIndex = 1;
     this.bbi_Add.Name       = "bbi_Add";
     this.bbi_Add.ItemClick += new DevExpress.XtraBars.ItemClickEventHandler(this.bbi_Add_ItemClick);
     //
     // bbi_Delete
     //
     this.bbi_Delete.Caption    = "删除";
     this.bbi_Delete.Id         = 1;
     this.bbi_Delete.ImageIndex = 2;
     this.bbi_Delete.Name       = "bbi_Delete";
     this.bbi_Delete.ItemClick += new DevExpress.XtraBars.ItemClickEventHandler(this.bbi_Delete_ItemClick);
     //
     // bbi_Import
     //
     this.bbi_Import.Caption    = "导入";
     this.bbi_Import.Id         = 3;
     this.bbi_Import.ImageIndex = 3;
     this.bbi_Import.Name       = "bbi_Import";
     this.bbi_Import.ItemClick += new DevExpress.XtraBars.ItemClickEventHandler(this.bbi_Import_ItemClick);
     //
     // bbi_Export
     //
     this.bbi_Export.Caption    = "导出";
     this.bbi_Export.Id         = 4;
     this.bbi_Export.ImageIndex = 4;
     this.bbi_Export.Name       = "bbi_Export";
     this.bbi_Export.ItemClick += new DevExpress.XtraBars.ItemClickEventHandler(this.bbi_Export_ItemClick);
     //
     // barDockControlTop
     //
     this.barDockControlTop.CausesValidation = false;
     this.barDockControlTop.Dock             = System.Windows.Forms.DockStyle.Top;
     this.barDockControlTop.Location         = new System.Drawing.Point(0, 0);
     this.barDockControlTop.Size             = new System.Drawing.Size(582, 24);
     //
     // barDockControlBottom
     //
     this.barDockControlBottom.CausesValidation = false;
     this.barDockControlBottom.Dock             = System.Windows.Forms.DockStyle.Bottom;
     this.barDockControlBottom.Location         = new System.Drawing.Point(0, 395);
     this.barDockControlBottom.Size             = new System.Drawing.Size(582, 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, 371);
     //
     // barDockControlRight
     //
     this.barDockControlRight.CausesValidation = false;
     this.barDockControlRight.Dock             = System.Windows.Forms.DockStyle.Right;
     this.barDockControlRight.Location         = new System.Drawing.Point(582, 24);
     this.barDockControlRight.Size             = new System.Drawing.Size(0, 371);
     //
     // imageCollection1
     //
     this.imageCollection1.ImageStream = ((DevExpress.Utils.ImageCollectionStreamer)(resources.GetObject("imageCollection1.ImageStream")));
     this.imageCollection1.InsertGalleryImage("save_16x16.png", "images/save/save_16x16.png", DevExpress.Images.ImageResourceCache.Default.GetImage("images/save/save_16x16.png"), 0);
     this.imageCollection1.Images.SetKeyName(0, "save_16x16.png");
     this.imageCollection1.InsertGalleryImage("add_16x16.png", "images/actions/add_16x16.png", DevExpress.Images.ImageResourceCache.Default.GetImage("images/actions/add_16x16.png"), 1);
     this.imageCollection1.Images.SetKeyName(1, "add_16x16.png");
     this.imageCollection1.InsertGalleryImage("remove_16x16.png", "images/actions/remove_16x16.png", DevExpress.Images.ImageResourceCache.Default.GetImage("images/actions/remove_16x16.png"), 2);
     this.imageCollection1.Images.SetKeyName(2, "remove_16x16.png");
     this.imageCollection1.InsertGalleryImage("open_16x16.png", "images/actions/open_16x16.png", DevExpress.Images.ImageResourceCache.Default.GetImage("images/actions/open_16x16.png"), 3);
     this.imageCollection1.Images.SetKeyName(3, "open_16x16.png");
     this.imageCollection1.InsertGalleryImage("loadfrom_16x16.png", "images/actions/loadfrom_16x16.png", DevExpress.Images.ImageResourceCache.Default.GetImage("images/actions/loadfrom_16x16.png"), 4);
     this.imageCollection1.Images.SetKeyName(4, "loadfrom_16x16.png");
     //
     // UCFieldManage
     //
     this.Controls.Add(this.gridControl1);
     this.Controls.Add(this.barDockControlLeft);
     this.Controls.Add(this.barDockControlRight);
     this.Controls.Add(this.barDockControlBottom);
     this.Controls.Add(this.barDockControlTop);
     this.Name = "UCFieldManage";
     this.Size = new System.Drawing.Size(582, 395);
     ((System.ComponentModel.ISupportInitialize)(this.gridControl1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridView1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemComboBox1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemRadioGroup1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemRadioGroup2)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemRadioGroup3)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.barManager1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.imageCollection1)).EndInit();
     this.ResumeLayout(false);
 }
Example #43
0
        private void AddEditorsToTreeview()
        {
            repositoryItemCheckEdit1 = new DevExpress.XtraEditors.Repository.RepositoryItemCheckEdit();
            repositoryItemComboBox1 = new DevExpress.XtraEditors.Repository.RepositoryItemComboBox();
            repositoryItemButtonEdit1 = new DevExpress.XtraEditors.Repository.RepositoryItemButtonEdit();

            repositoryItemButtonEdit1.Click += new EventHandler(repositoryItemButtonEdit1_Click);

            treeList.RepositoryItems.AddRange(new DevExpress.XtraEditors.Repository.RepositoryItem[] { repositoryItemCheckEdit1, repositoryItemComboBox1, repositoryItemButtonEdit1 });
        }
Example #44
0
 private void InitializeComponent()
 {
     DevExpress.Utils.SerializableAppearanceObject serializableAppearanceObject1 = new DevExpress.Utils.SerializableAppearanceObject();
     this.ToolStripMenuItemDelete = new System.Windows.Forms.ToolStripMenuItem();
     this.contextMenuStrip1       = new System.Windows.Forms.ContextMenuStrip();
     this.ToolStripMenuItemEdit   = new System.Windows.Forms.ToolStripMenuItem();
     this.layoutControlItem5      = new DevExpress.XtraLayout.LayoutControlItem();
     this.gridControl1            = new DevExpress.XtraGrid.GridControl();
     this.gridView1 = new DevExpress.XtraGrid.Views.Grid.GridView();
     this.symbleCol = new DevExpress.XtraGrid.Columns.GridColumn();
     this.repositoryItemColorEdit1 = new DevExpress.XtraEditors.Repository.RepositoryItemColorEdit();
     this.minValueCol             = new DevExpress.XtraGrid.Columns.GridColumn();
     this.repositoryItemSpinEdit1 = new DevExpress.XtraEditors.Repository.RepositoryItemSpinEdit();
     this.maxValueCol             = new DevExpress.XtraGrid.Columns.GridColumn();
     this.typeValueCol            = new DevExpress.XtraGrid.Columns.GridColumn();
     this.repositoryItemComboBox1 = new DevExpress.XtraEditors.Repository.RepositoryItemComboBox();
     this.layoutControlItem4      = new DevExpress.XtraLayout.LayoutControlItem();
     this.checkEditDefault        = new DevExpress.XtraEditors.CheckEdit();
     this.layoutControl1          = new DevExpress.XtraLayout.LayoutControl();
     this.colorEditDefault        = new DevExpress.XtraEditors.ColorEdit();
     this.spinEditRang            = new DevExpress.XtraEditors.SpinEdit();
     this.cmbField            = new DevExpress.XtraEditors.ComboBoxEdit();
     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.contextMenuStrip1.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem5)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridControl1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridView1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemColorEdit1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemSpinEdit1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemComboBox1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem4)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.checkEditDefault.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControl1)).BeginInit();
     this.layoutControl1.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.colorEditDefault.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.spinEditRang.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.cmbField.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlGroup1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem2)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem3)).BeginInit();
     this.SuspendLayout();
     //
     // ToolStripMenuItemDelete
     //
     this.ToolStripMenuItemDelete.Name = "ToolStripMenuItemDelete";
     this.ToolStripMenuItemDelete.Size = new System.Drawing.Size(181, 22);
     this.ToolStripMenuItemDelete.Text = "${res:View_Delete}";
     //
     // contextMenuStrip1
     //
     this.contextMenuStrip1.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
         this.ToolStripMenuItemEdit,
         this.ToolStripMenuItemDelete
     });
     this.contextMenuStrip1.Name = "contextMenuStrip1";
     this.contextMenuStrip1.Size = new System.Drawing.Size(182, 48);
     //
     // ToolStripMenuItemEdit
     //
     this.ToolStripMenuItemEdit.Name = "ToolStripMenuItemEdit";
     this.ToolStripMenuItemEdit.Size = new System.Drawing.Size(181, 22);
     this.ToolStripMenuItemEdit.Text = "${res:View_Delete}";
     //
     // layoutControlItem5
     //
     this.layoutControlItem5.Control = this.gridControl1;
     this.layoutControlItem5.CustomizationFormText = "layoutControlItem5";
     this.layoutControlItem5.Location = new System.Drawing.Point(0, 78);
     this.layoutControlItem5.Name     = "layoutControlItem5";
     this.layoutControlItem5.Size     = new System.Drawing.Size(266, 320);
     this.layoutControlItem5.Text     = "layoutControlItem5";
     this.layoutControlItem5.TextSize = new System.Drawing.Size(0, 0);
     this.layoutControlItem5.TextToControlDistance = 0;
     this.layoutControlItem5.TextVisible           = false;
     //
     // gridControl1
     //
     this.gridControl1.Location = new System.Drawing.Point(12, 90);
     this.gridControl1.MainView = this.gridView1;
     this.gridControl1.Name     = "gridControl1";
     this.gridControl1.RepositoryItems.AddRange(new DevExpress.XtraEditors.Repository.RepositoryItem[] {
         this.repositoryItemColorEdit1,
         this.repositoryItemSpinEdit1,
         this.repositoryItemComboBox1
     });
     this.gridControl1.Size     = new System.Drawing.Size(262, 316);
     this.gridControl1.TabIndex = 4;
     this.gridControl1.ViewCollection.AddRange(new DevExpress.XtraGrid.Views.Base.BaseView[] {
         this.gridView1
     });
     //
     // gridView1
     //
     this.gridView1.Appearance.FocusedCell.BackColor            = System.Drawing.Color.CornflowerBlue;
     this.gridView1.Appearance.FocusedCell.Options.UseBackColor = true;
     this.gridView1.Appearance.FocusedRow.BackColor             = System.Drawing.Color.CornflowerBlue;
     this.gridView1.Appearance.FocusedRow.Options.UseBackColor  = true;
     this.gridView1.Appearance.SelectedRow.BackColor            = System.Drawing.Color.CornflowerBlue;
     this.gridView1.Appearance.SelectedRow.Options.UseBackColor = true;
     this.gridView1.Columns.AddRange(new DevExpress.XtraGrid.Columns.GridColumn[] {
         this.symbleCol,
         this.minValueCol,
         this.maxValueCol,
         this.typeValueCol
     });
     this.gridView1.GridControl = this.gridControl1;
     this.gridView1.Name        = "gridView1";
     this.gridView1.OptionsCustomization.AllowColumnMoving     = false;
     this.gridView1.OptionsCustomization.AllowFilter           = false;
     this.gridView1.OptionsCustomization.AllowGroup            = false;
     this.gridView1.OptionsCustomization.AllowQuickHideColumns = false;
     this.gridView1.OptionsFilter.AllowColumnMRUFilterList     = false;
     this.gridView1.OptionsFilter.AllowFilterEditor            = false;
     this.gridView1.OptionsFilter.AllowMRUFilterList           = false;
     this.gridView1.OptionsMenu.EnableColumnMenu                   = false;
     this.gridView1.OptionsMenu.EnableFooterMenu                   = false;
     this.gridView1.OptionsMenu.EnableGroupPanelMenu               = false;
     this.gridView1.OptionsMenu.ShowAutoFilterRowItem              = false;
     this.gridView1.OptionsSelection.EnableAppearanceFocusedCell   = false;
     this.gridView1.OptionsSelection.EnableAppearanceHideSelection = false;
     this.gridView1.OptionsSelection.MultiSelect                   = true;
     this.gridView1.OptionsView.ShowFilterPanelMode                = DevExpress.XtraGrid.Views.Base.ShowFilterPanelMode.Never;
     this.gridView1.OptionsView.ShowGroupPanel = false;
     //
     // symbleCol
     //
     this.symbleCol.Caption    = "符号";
     this.symbleCol.ColumnEdit = this.repositoryItemColorEdit1;
     this.symbleCol.FieldName  = "ColorCol";
     this.symbleCol.Name       = "symbleCol";
     this.symbleCol.OptionsColumn.AllowEdit              = false;
     this.symbleCol.OptionsColumn.AllowGroup             = DevExpress.Utils.DefaultBoolean.False;
     this.symbleCol.OptionsColumn.AllowIncrementalSearch = false;
     this.symbleCol.OptionsColumn.AllowMove              = false;
     this.symbleCol.OptionsColumn.AllowShowHide          = false;
     this.symbleCol.OptionsColumn.AllowSort              = DevExpress.Utils.DefaultBoolean.False;
     this.symbleCol.OptionsColumn.ReadOnly = true;
     this.symbleCol.OptionsColumn.ShowInCustomizationForm = false;
     this.symbleCol.OptionsColumn.ShowInExpressionEditor  = false;
     this.symbleCol.OptionsFilter.AllowAutoFilter         = false;
     this.symbleCol.OptionsFilter.AllowFilter             = false;
     this.symbleCol.Visible      = true;
     this.symbleCol.VisibleIndex = 0;
     //
     // repositoryItemColorEdit1
     //
     this.repositoryItemColorEdit1.AutoHeight = false;
     this.repositoryItemColorEdit1.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
         new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Glyph)
     });
     this.repositoryItemColorEdit1.ColorAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.repositoryItemColorEdit1.Name           = "repositoryItemColorEdit1";
     this.repositoryItemColorEdit1.ReadOnly       = true;
     //
     // minValueCol
     //
     this.minValueCol.Caption    = "下限";
     this.minValueCol.ColumnEdit = this.repositoryItemSpinEdit1;
     this.minValueCol.DisplayFormat.FormatType = DevExpress.Utils.FormatType.Numeric;
     this.minValueCol.FieldName = "minValueCol";
     this.minValueCol.Name      = "minValueCol";
     this.minValueCol.OptionsColumn.AllowGroup             = DevExpress.Utils.DefaultBoolean.False;
     this.minValueCol.OptionsColumn.AllowIncrementalSearch = false;
     this.minValueCol.OptionsColumn.AllowMove               = false;
     this.minValueCol.OptionsColumn.AllowShowHide           = false;
     this.minValueCol.OptionsColumn.AllowSort               = DevExpress.Utils.DefaultBoolean.False;
     this.minValueCol.OptionsColumn.ShowInCustomizationForm = false;
     this.minValueCol.OptionsFilter.AllowAutoFilter         = false;
     this.minValueCol.OptionsFilter.AllowFilter             = false;
     this.minValueCol.Visible      = true;
     this.minValueCol.VisibleIndex = 1;
     //
     // repositoryItemSpinEdit1
     //
     this.repositoryItemSpinEdit1.AutoHeight = false;
     this.repositoryItemSpinEdit1.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
         new DevExpress.XtraEditors.Controls.EditorButton()
     });
     this.repositoryItemSpinEdit1.Name = "repositoryItemSpinEdit1";
     //
     // maxValueCol
     //
     this.maxValueCol.Caption      = "上限";
     this.maxValueCol.ColumnEdit   = this.repositoryItemSpinEdit1;
     this.maxValueCol.FieldName    = "maxValueCol";
     this.maxValueCol.Name         = "maxValueCol";
     this.maxValueCol.Visible      = true;
     this.maxValueCol.VisibleIndex = 2;
     //
     // typeValueCol
     //
     this.typeValueCol.Caption      = "区间类型";
     this.typeValueCol.ColumnEdit   = this.repositoryItemComboBox1;
     this.typeValueCol.FieldName    = "typeValueCol";
     this.typeValueCol.Name         = "typeValueCol";
     this.typeValueCol.Visible      = true;
     this.typeValueCol.VisibleIndex = 3;
     //
     // repositoryItemComboBox1
     //
     this.repositoryItemComboBox1.AutoHeight = false;
     this.repositoryItemComboBox1.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
         new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)
     });
     this.repositoryItemComboBox1.Name          = "repositoryItemComboBox1";
     this.repositoryItemComboBox1.TextEditStyle = DevExpress.XtraEditors.Controls.TextEditStyles.DisableTextEditor;
     //
     // layoutControlItem4
     //
     this.layoutControlItem4.Control = this.checkEditDefault;
     this.layoutControlItem4.CustomizationFormText = "layoutControlItem4";
     this.layoutControlItem4.Location = new System.Drawing.Point(0, 52);
     this.layoutControlItem4.Name     = "layoutControlItem4";
     this.layoutControlItem4.Size     = new System.Drawing.Size(73, 26);
     this.layoutControlItem4.Text     = "layoutControlItem4";
     this.layoutControlItem4.TextSize = new System.Drawing.Size(0, 0);
     this.layoutControlItem4.TextToControlDistance = 0;
     this.layoutControlItem4.TextVisible           = false;
     //
     // checkEditDefault
     //
     this.checkEditDefault.EditValue                 = true;
     this.checkEditDefault.Location                  = new System.Drawing.Point(12, 64);
     this.checkEditDefault.Name                      = "checkEditDefault";
     this.checkEditDefault.Properties.Caption        = "默认";
     this.checkEditDefault.Properties.GlyphAlignment = DevExpress.Utils.HorzAlignment.Default;
     this.checkEditDefault.Size                      = new System.Drawing.Size(69, 19);
     this.checkEditDefault.StyleController           = this.layoutControl1;
     this.checkEditDefault.TabIndex                  = 2;
     //
     // layoutControl1
     //
     this.layoutControl1.Controls.Add(this.gridControl1);
     this.layoutControl1.Controls.Add(this.colorEditDefault);
     this.layoutControl1.Controls.Add(this.checkEditDefault);
     this.layoutControl1.Controls.Add(this.spinEditRang);
     this.layoutControl1.Controls.Add(this.cmbField);
     this.layoutControl1.Dock     = System.Windows.Forms.DockStyle.Fill;
     this.layoutControl1.Location = new System.Drawing.Point(0, 0);
     this.layoutControl1.Name     = "layoutControl1";
     this.layoutControl1.Root     = this.layoutControlGroup1;
     this.layoutControl1.Size     = new System.Drawing.Size(286, 418);
     this.layoutControl1.TabIndex = 2;
     this.layoutControl1.Text     = "layoutControl1";
     //
     // colorEditDefault
     //
     this.colorEditDefault.EditValue = System.Drawing.Color.FromArgb(((int)(((byte)(192)))), ((int)(((byte)(192)))), ((int)(((byte)(0)))));
     this.colorEditDefault.Location  = new System.Drawing.Point(85, 64);
     this.colorEditDefault.Name      = "colorEditDefault";
     this.colorEditDefault.Properties.AllowDropDownWhenReadOnly = DevExpress.Utils.DefaultBoolean.False;
     this.colorEditDefault.Properties.AllowMouseWheel           = false;
     this.colorEditDefault.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
         new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Glyph, "", -1, false, true, false, DevExpress.XtraEditors.ImageLocation.MiddleCenter, null, new DevExpress.Utils.KeyShortcut(System.Windows.Forms.Keys.None), serializableAppearanceObject1, "", null, null, true)
     });
     this.colorEditDefault.Properties.ColorAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.colorEditDefault.Properties.ShowDropDown   = DevExpress.XtraEditors.Controls.ShowDropDown.Never;
     this.colorEditDefault.Size            = new System.Drawing.Size(189, 22);
     this.colorEditDefault.StyleController = this.layoutControl1;
     this.colorEditDefault.TabIndex        = 3;
     this.colorEditDefault.Click          += new System.EventHandler(this.colorEditDefault_Click);
     //
     // spinEditRang
     //
     this.spinEditRang.EditValue = new decimal(new int[] {
         0,
         0,
         0,
         0
     });
     this.spinEditRang.Location = new System.Drawing.Point(39, 38);
     this.spinEditRang.Name     = "spinEditRang";
     this.spinEditRang.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
         new DevExpress.XtraEditors.Controls.EditorButton()
     });
     this.spinEditRang.Properties.IsFloatValue  = false;
     this.spinEditRang.Properties.Mask.EditMask = "N00";
     this.spinEditRang.Properties.MaxValue      = new decimal(new int[] {
         50,
         0,
         0,
         0
     });
     this.spinEditRang.Size            = new System.Drawing.Size(235, 22);
     this.spinEditRang.StyleController = this.layoutControl1;
     this.spinEditRang.TabIndex        = 1;
     //
     // cmbField
     //
     this.cmbField.Location = new System.Drawing.Point(39, 12);
     this.cmbField.Name     = "cmbField";
     this.cmbField.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
         new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)
     });
     this.cmbField.Properties.TextEditStyle = DevExpress.XtraEditors.Controls.TextEditStyles.DisableTextEditor;
     this.cmbField.Size            = new System.Drawing.Size(235, 22);
     this.cmbField.StyleController = this.layoutControl1;
     this.cmbField.TabIndex        = 0;
     //
     // 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.Size        = new System.Drawing.Size(286, 418);
     this.layoutControlGroup1.Text        = "layoutControlGroup1";
     this.layoutControlGroup1.TextVisible = false;
     //
     // layoutControlItem1
     //
     this.layoutControlItem1.Control = this.cmbField;
     this.layoutControlItem1.CustomizationFormText = "字段";
     this.layoutControlItem1.Location = new System.Drawing.Point(0, 0);
     this.layoutControlItem1.Name     = "layoutControlItem1";
     this.layoutControlItem1.Size     = new System.Drawing.Size(266, 26);
     this.layoutControlItem1.Text     = "字段";
     this.layoutControlItem1.TextSize = new System.Drawing.Size(24, 14);
     //
     // layoutControlItem2
     //
     this.layoutControlItem2.Control = this.spinEditRang;
     this.layoutControlItem2.CustomizationFormText = "段数";
     this.layoutControlItem2.Location = new System.Drawing.Point(0, 26);
     this.layoutControlItem2.Name     = "layoutControlItem2";
     this.layoutControlItem2.Size     = new System.Drawing.Size(266, 26);
     this.layoutControlItem2.Text     = "段数";
     this.layoutControlItem2.TextSize = new System.Drawing.Size(24, 14);
     //
     // layoutControlItem3
     //
     this.layoutControlItem3.Control = this.colorEditDefault;
     this.layoutControlItem3.CustomizationFormText = "layoutControlItem3";
     this.layoutControlItem3.Location = new System.Drawing.Point(73, 52);
     this.layoutControlItem3.Name     = "layoutControlItem3";
     this.layoutControlItem3.Size     = new System.Drawing.Size(193, 26);
     this.layoutControlItem3.Text     = "layoutControlItem3";
     this.layoutControlItem3.TextSize = new System.Drawing.Size(0, 0);
     this.layoutControlItem3.TextToControlDistance = 0;
     this.layoutControlItem3.TextVisible           = false;
     //
     // UCRangeLabel
     //
     this.Controls.Add(this.layoutControl1);
     this.Name = "UCRangeLabel";
     this.Size = new System.Drawing.Size(286, 418);
     this.contextMenuStrip1.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem5)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridControl1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridView1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemColorEdit1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemSpinEdit1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemComboBox1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem4)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.checkEditDefault.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControl1)).EndInit();
     this.layoutControl1.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.colorEditDefault.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.spinEditRang.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.cmbField.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlGroup1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem2)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem3)).EndInit();
     this.ResumeLayout(false);
 }
Example #45
0
 /// <summary>
 /// Required method for Designer support - do not modify
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     this.components = new System.ComponentModel.Container();
     System.Resources.ResourceManager resources = new System.Resources.ResourceManager(typeof(frmPromotionItem));
     this.gridViewMd_ItemPromotion = new DevExpress.XtraGrid.Views.Grid.GridView();
     this.gridColumn3 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn4 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.lk_CategoryID = new DevExpress.XtraEditors.Repository.RepositoryItemImageComboBox();
     this.gridColumn1 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.lk_GroupID = new DevExpress.XtraEditors.Repository.RepositoryItemImageComboBox();
     this.gridColumn2 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridControlMd_ItemPromotion = new DevExpress.XtraGrid.GridControl();
     this.lk_PromotionCode = new DevExpress.XtraEditors.Repository.RepositoryItemLookUpEdit();
     this.lk_CategoryIDs = new DevExpress.XtraEditors.Repository.RepositoryItemComboBox();
     this.lk_Code = new DevExpress.XtraEditors.Repository.RepositoryItemLookUpEdit();
     this.grpMDClass = new DevExpress.XtraEditors.GroupControl();
     this.grpMDItemPromotion = new DevExpress.XtraEditors.GroupControl();
     this.btn_Del = new DevExpress.XtraEditors.SimpleButton();
     this.imageList1 = new System.Windows.Forms.ImageList(this.components);
     this.btn_Add = new DevExpress.XtraEditors.SimpleButton();
     this.groupControl2 = new DevExpress.XtraEditors.GroupControl();
     this.btn_Search = new DevExpress.XtraEditors.SimpleButton();
     this.txtSearch = new DevExpress.XtraEditors.TextEdit();
     ((System.ComponentModel.ISupportInitialize)(this.gridViewMd_ItemPromotion)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.lk_CategoryID)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.lk_GroupID)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridControlMd_ItemPromotion)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.lk_PromotionCode)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.lk_CategoryIDs)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.lk_Code)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.grpMDClass)).BeginInit();
     this.grpMDClass.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.grpMDItemPromotion)).BeginInit();
     this.grpMDItemPromotion.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.groupControl2)).BeginInit();
     this.groupControl2.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.txtSearch.Properties)).BeginInit();
     this.SuspendLayout();
     //
     // gridViewMd_ItemPromotion
     //
     this.gridViewMd_ItemPromotion.Columns.AddRange(new DevExpress.XtraGrid.Columns.GridColumn[] {
                                                                                                     this.gridColumn3,
                                                                                                     this.gridColumn4,
                                                                                                     this.gridColumn1,
                                                                                                     this.gridColumn2});
     this.gridViewMd_ItemPromotion.GridControl = this.gridControlMd_ItemPromotion;
     this.gridViewMd_ItemPromotion.Name = "gridViewMd_ItemPromotion";
     this.gridViewMd_ItemPromotion.OptionsBehavior.Editable = false;
     this.gridViewMd_ItemPromotion.OptionsCustomization.AllowColumnMoving = false;
     this.gridViewMd_ItemPromotion.OptionsCustomization.AllowFilter = false;
     this.gridViewMd_ItemPromotion.OptionsCustomization.AllowSort = false;
     this.gridViewMd_ItemPromotion.OptionsView.ShowGroupPanel = false;
     this.gridViewMd_ItemPromotion.CellValueChanged += new DevExpress.XtraGrid.Views.Base.CellValueChangedEventHandler(this.gridViewMd_ItemPromotion_CellValueChanged);
     this.gridViewMd_ItemPromotion.DoubleClick += new System.EventHandler(this.gridViewMd_ItemPromotion_DoubleClick);
     this.gridViewMd_ItemPromotion.LostFocus += new System.EventHandler(this.gridViewMd_ItemPromotion_LostFocus);
     //
     // gridColumn3
     //
     this.gridColumn3.Caption = "Promotion Code";
     this.gridColumn3.FieldName = "strPromotionCode";
     this.gridColumn3.Name = "gridColumn3";
     this.gridColumn3.Visible = true;
     this.gridColumn3.VisibleIndex = 0;
     //
     // gridColumn4
     //
     this.gridColumn4.Caption = "Category Type";
     this.gridColumn4.ColumnEdit = this.lk_CategoryID;
     this.gridColumn4.FieldName = "nCategoryTypeID";
     this.gridColumn4.Name = "gridColumn4";
     this.gridColumn4.Visible = true;
     this.gridColumn4.VisibleIndex = 1;
     //
     // lk_CategoryID
     //
     this.lk_CategoryID.AutoHeight = false;
     this.lk_CategoryID.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
                                                                                                new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.lk_CategoryID.Items.AddRange(new object[] {
                                                        new DevExpress.XtraEditors.Controls.ImageComboBoxItem("Item or Product", 1, -1),
                                                        new DevExpress.XtraEditors.Controls.ImageComboBoxItem("Package", 2, -1),
                                                        new DevExpress.XtraEditors.Controls.ImageComboBoxItem("Package Group", 3, -1),
                                                        new DevExpress.XtraEditors.Controls.ImageComboBoxItem("Credit Package", 4, -1)});
     this.lk_CategoryID.Name = "lk_CategoryID";
     //
     // gridColumn1
     //
     this.gridColumn1.Caption = "Group";
     this.gridColumn1.ColumnEdit = this.lk_GroupID;
     this.gridColumn1.FieldName = "nGroupID";
     this.gridColumn1.Name = "gridColumn1";
     this.gridColumn1.Visible = true;
     this.gridColumn1.VisibleIndex = 2;
     //
     // lk_GroupID
     //
     this.lk_GroupID.AutoHeight = false;
     this.lk_GroupID.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
                                                                                             new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.lk_GroupID.Items.AddRange(new object[] {
                                                     new DevExpress.XtraEditors.Controls.ImageComboBoxItem("Item", 0, -1),
                                                     new DevExpress.XtraEditors.Controls.ImageComboBoxItem("Group", 1, -1)});
     this.lk_GroupID.Name = "lk_GroupID";
     //
     // gridColumn2
     //
     this.gridColumn2.Caption = "Code";
     this.gridColumn2.FieldName = "strCode";
     this.gridColumn2.Name = "gridColumn2";
     this.gridColumn2.Visible = true;
     this.gridColumn2.VisibleIndex = 3;
     //
     // gridControlMd_ItemPromotion
     //
     this.gridControlMd_ItemPromotion.Dock = System.Windows.Forms.DockStyle.Top;
     //
     // gridControlMd_ItemPromotion.EmbeddedNavigator
     //
     this.gridControlMd_ItemPromotion.EmbeddedNavigator.Name = "";
     this.gridControlMd_ItemPromotion.Location = new System.Drawing.Point(0, 0);
     this.gridControlMd_ItemPromotion.LookAndFeel.Style = DevExpress.LookAndFeel.LookAndFeelStyle.Skin;
     this.gridControlMd_ItemPromotion.LookAndFeel.UseDefaultLookAndFeel = false;
     this.gridControlMd_ItemPromotion.MainView = this.gridViewMd_ItemPromotion;
     this.gridControlMd_ItemPromotion.Name = "gridControlMd_ItemPromotion";
     this.gridControlMd_ItemPromotion.RepositoryItems.AddRange(new DevExpress.XtraEditors.Repository.RepositoryItem[] {
                                                                                                                          this.lk_PromotionCode,
                                                                                                                          this.lk_CategoryIDs,
                                                                                                                          this.lk_CategoryID,
                                                                                                                          this.lk_GroupID,
                                                                                                                          this.lk_Code});
     this.gridControlMd_ItemPromotion.Size = new System.Drawing.Size(976, 444);
     this.gridControlMd_ItemPromotion.TabIndex = 126;
     this.gridControlMd_ItemPromotion.ViewCollection.AddRange(new DevExpress.XtraGrid.Views.Base.BaseView[] {
                                                                                                                this.gridViewMd_ItemPromotion});
     //
     // lk_PromotionCode
     //
     this.lk_PromotionCode.AutoHeight = false;
     this.lk_PromotionCode.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
                                                                                                   new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.lk_PromotionCode.Name = "lk_PromotionCode";
     //
     // lk_CategoryIDs
     //
     this.lk_CategoryIDs.AutoHeight = false;
     this.lk_CategoryIDs.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
                                                                                                 new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.lk_CategoryIDs.Name = "lk_CategoryIDs";
     //
     // lk_Code
     //
     this.lk_Code.AutoHeight = false;
     this.lk_Code.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
                                                                                          new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.lk_Code.Name = "lk_Code";
     //
     // grpMDClass
     //
     this.grpMDClass.Appearance.BackColor = System.Drawing.SystemColors.Control;
     this.grpMDClass.Appearance.Options.UseBackColor = true;
     this.grpMDClass.Controls.Add(this.grpMDItemPromotion);
     this.grpMDClass.ImeMode = System.Windows.Forms.ImeMode.On;
     this.grpMDClass.Location = new System.Drawing.Point(-5, -26);
     this.grpMDClass.LookAndFeel.Style = DevExpress.LookAndFeel.LookAndFeelStyle.Office2003;
     this.grpMDClass.LookAndFeel.UseDefaultLookAndFeel = false;
     this.grpMDClass.LookAndFeel.UseWindowsXPTheme = false;
     this.grpMDClass.Name = "grpMDClass";
     this.grpMDClass.Size = new System.Drawing.Size(1021, 560);
     this.grpMDClass.TabIndex = 34;
     this.grpMDClass.Text = "Class";
     //
     // grpMDItemPromotion
     //
     this.grpMDItemPromotion.Appearance.BackColor = System.Drawing.SystemColors.Control;
     this.grpMDItemPromotion.Appearance.Options.UseBackColor = true;
     this.grpMDItemPromotion.AppearanceCaption.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((System.Byte)(0)));
     this.grpMDItemPromotion.AppearanceCaption.Options.UseFont = true;
     this.grpMDItemPromotion.Controls.Add(this.btn_Del);
     this.grpMDItemPromotion.Controls.Add(this.btn_Add);
     this.grpMDItemPromotion.Controls.Add(this.groupControl2);
     this.grpMDItemPromotion.Controls.Add(this.btn_Search);
     this.grpMDItemPromotion.Controls.Add(this.txtSearch);
     this.grpMDItemPromotion.ImeMode = System.Windows.Forms.ImeMode.On;
     this.grpMDItemPromotion.Location = new System.Drawing.Point(8, 24);
     this.grpMDItemPromotion.LookAndFeel.Style = DevExpress.LookAndFeel.LookAndFeelStyle.Office2003;
     this.grpMDItemPromotion.LookAndFeel.UseDefaultLookAndFeel = false;
     this.grpMDItemPromotion.LookAndFeel.UseWindowsXPTheme = false;
     this.grpMDItemPromotion.Name = "grpMDItemPromotion";
     this.grpMDItemPromotion.Size = new System.Drawing.Size(1000, 504);
     this.grpMDItemPromotion.TabIndex = 138;
     this.grpMDItemPromotion.Text = "Item Promotion";
     //
     // btn_Del
     //
     this.btn_Del.Appearance.Font = new System.Drawing.Font("Tahoma", 14.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((System.Byte)(0)));
     this.btn_Del.Appearance.Options.UseFont = true;
     this.btn_Del.Appearance.Options.UseTextOptions = true;
     this.btn_Del.Appearance.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.btn_Del.Appearance.TextOptions.VAlignment = DevExpress.Utils.VertAlignment.Top;
     this.btn_Del.Appearance.TextOptions.WordWrap = DevExpress.Utils.WordWrap.Wrap;
     this.btn_Del.ImageIndex = 1;
     this.btn_Del.ImageList = this.imageList1;
     this.btn_Del.Location = new System.Drawing.Point(48, 24);
     this.btn_Del.Name = "btn_Del";
     this.btn_Del.Size = new System.Drawing.Size(38, 16);
     this.btn_Del.TabIndex = 131;
     this.btn_Del.Click += new System.EventHandler(this.btn_Del_Click);
     //
     // imageList1
     //
     this.imageList1.ColorDepth = System.Windows.Forms.ColorDepth.Depth24Bit;
     this.imageList1.ImageSize = new System.Drawing.Size(16, 16);
     this.imageList1.ImageStream = ((System.Windows.Forms.ImageListStreamer)(resources.GetObject("imageList1.ImageStream")));
     this.imageList1.TransparentColor = System.Drawing.Color.Magenta;
     //
     // btn_Add
     //
     this.btn_Add.Appearance.Font = new System.Drawing.Font("Tahoma", 14.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((System.Byte)(0)));
     this.btn_Add.Appearance.Options.UseFont = true;
     this.btn_Add.Appearance.Options.UseTextOptions = true;
     this.btn_Add.Appearance.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.btn_Add.Appearance.TextOptions.VAlignment = DevExpress.Utils.VertAlignment.Top;
     this.btn_Add.Appearance.TextOptions.WordWrap = DevExpress.Utils.WordWrap.Wrap;
     this.btn_Add.ImageIndex = 0;
     this.btn_Add.ImageList = this.imageList1;
     this.btn_Add.ImeMode = System.Windows.Forms.ImeMode.On;
     this.btn_Add.Location = new System.Drawing.Point(8, 24);
     this.btn_Add.Name = "btn_Add";
     this.btn_Add.Size = new System.Drawing.Size(38, 16);
     this.btn_Add.TabIndex = 132;
     this.btn_Add.Click += new System.EventHandler(this.btn_Add_Click);
     //
     // groupControl2
     //
     this.groupControl2.BorderStyle = DevExpress.XtraEditors.Controls.BorderStyles.NoBorder;
     this.groupControl2.Controls.Add(this.gridControlMd_ItemPromotion);
     this.groupControl2.Location = new System.Drawing.Point(8, 48);
     this.groupControl2.LookAndFeel.Style = DevExpress.LookAndFeel.LookAndFeelStyle.Office2003;
     this.groupControl2.LookAndFeel.UseDefaultLookAndFeel = false;
     this.groupControl2.LookAndFeel.UseWindowsXPTheme = false;
     this.groupControl2.Name = "groupControl2";
     this.groupControl2.Size = new System.Drawing.Size(976, 448);
     this.groupControl2.TabIndex = 128;
     this.groupControl2.Text = "Promotion Item";
     //
     // btn_Search
     //
     this.btn_Search.Appearance.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold);
     this.btn_Search.Appearance.Options.UseFont = true;
     this.btn_Search.ButtonStyle = DevExpress.XtraEditors.Controls.BorderStyles.Simple;
     this.btn_Search.Location = new System.Drawing.Point(912, 24);
     this.btn_Search.Name = "btn_Search";
     this.btn_Search.Size = new System.Drawing.Size(56, 20);
     this.btn_Search.TabIndex = 137;
     this.btn_Search.Text = "Search";
     this.btn_Search.Click += new System.EventHandler(this.btn_Search_Click);
     //
     // txtSearch
     //
     this.txtSearch.EditValue = "";
     this.txtSearch.Location = new System.Drawing.Point(720, 24);
     this.txtSearch.Name = "txtSearch";
     //
     // txtSearch.Properties
     //
     this.txtSearch.Properties.Appearance.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((System.Byte)(0)));
     this.txtSearch.Properties.Appearance.Options.UseFont = true;
     this.txtSearch.Properties.LookAndFeel.Style = DevExpress.LookAndFeel.LookAndFeelStyle.Skin;
     this.txtSearch.Properties.LookAndFeel.UseDefaultLookAndFeel = false;
     this.txtSearch.Size = new System.Drawing.Size(176, 20);
     this.txtSearch.TabIndex = 136;
     this.txtSearch.KeyDown += new System.Windows.Forms.KeyEventHandler(this.txtSearch_KeyDown);
     //
     // frmPromotionItem
     //
     this.AutoScaleBaseSize = new System.Drawing.Size(5, 14);
     this.ClientSize = new System.Drawing.Size(1000, 509);
     this.Controls.Add(this.grpMDClass);
     this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.None;
     this.Name = "frmPromotionItem";
     this.Text = "Promotion Item";
     this.Load += new System.EventHandler(this.frmPromotionItem_Load);
     ((System.ComponentModel.ISupportInitialize)(this.gridViewMd_ItemPromotion)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.lk_CategoryID)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.lk_GroupID)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridControlMd_ItemPromotion)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.lk_PromotionCode)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.lk_CategoryIDs)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.lk_Code)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.grpMDClass)).EndInit();
     this.grpMDClass.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.grpMDItemPromotion)).EndInit();
     this.grpMDItemPromotion.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.groupControl2)).EndInit();
     this.groupControl2.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.txtSearch.Properties)).EndInit();
     this.ResumeLayout(false);
 }
Example #46
0
        /// <summary>
        /// 初始化列,
        /// </summary>

        public void InitColumns()
        {

            //需要隐藏列时在这写代码
            for (int i = 0; i < gridView1.Columns.Count; i++)
            {
                gridView1.Columns[i].OptionsColumn.AllowEdit = false;
            }
            gridView1.Columns["xlqd"].Caption = "缺陷发生地点";
            hideColumn("OrgCode");
            hideColumn("LineID");
            hideColumn("gzrjID");
            //hideColumn("s1");
            hideColumn("s3");
            hideColumn("s2");

            //if (currRecord.Kind == "交叉跨越对地距离测量流程")
            //{
                gridView1.Columns["s1"].Caption = "是否处理缺陷";
                DevExpress.XtraEditors.Repository.RepositoryItemComboBox box = new DevExpress.XtraEditors.Repository.RepositoryItemComboBox();
                box.Properties.Items.Clear();
                box.Properties.Items.Add("是");
                box.Properties.Items.Add("否");
                box.EditValueChanged += new EventHandler(box_EditValueChanged);
                gridView1.Columns["s1"].ColumnEdit = box;
                gridView1.Columns["s1"].OptionsColumn.AllowEdit = true;
                hideColumn("remark");
            //}
            //else
            //{
            //    gridView1.Columns["s1"].Caption = "流程选择";
            //    DevExpress.XtraEditors.Repository.RepositoryItemComboBox box = new DevExpress.XtraEditors.Repository.RepositoryItemComboBox();
            //    box.Properties.Items.Clear();
            //    box.Properties.Items.Add("一般");
            //    box.Properties.Items.Add("紧急");
            //    box.Properties.Items.Add("重大");
            //    box.Properties.Items.Add("低压");
            //    gridView1.Columns["s1"].ColumnEdit = box;
            //    gridView1.Columns["s1"].OptionsColumn.AllowEdit = true;
            //}

            //cob.SelectedIndexChanged += new EventHandler(cob_SelectedIndexChanged);
            hideColumn("CreateMan");

            hideColumn("CreateDate");

            hideColumn("xcr");

            hideColumn("xcrq");

            hideColumn("xsr");
            gridView1.Columns["xlqd"].Caption = "缺陷发生地点";
        }
        private void CreateGridMaster()
        {
            //Xóa lưới đã tạo trước đó (nếu có)
            this.gridControlMaster.DataSource = null;
            this.gridViewMaster.Columns.Clear();
            this.gridViewMaster.Bands.Clear();
            //Định nghĩa danh sách cột
            List<BandedGridColumn> columns = new List<BandedGridColumn>();

            GridBand bID = CreateBand("ID", 0, 10, FixedStyle.None);
            BandedGridColumn cID = new BandedGridColumn();
            cID.FieldName = "ID";
            bID.Columns.Add(cID);
            cID.VisibleIndex = 0;
            columns.Add(cID);
            bID.Visible = false;

            GridBand bEmp = CreateBand("Nhân viên", 1, 200, FixedStyle.Left);
            BandedGridColumn cEmp = new BandedGridColumn();
            HelpBandedGrid.CotCombobox((GridColumn)cEmp, "DM_NHAN_VIEN", "ID", "NAME", "EMP_ID", "1=1");
            bEmp.Columns.Add(cEmp);
            cEmp.VisibleIndex = 1;
            columns.Add(cEmp);
            cEmp.OptionsColumn.AllowEdit = false;
            cEmp.OptionsColumn.AllowFocus = false;
            cEmp.OptionsColumn.ReadOnly = true;

            GridBand bNghiCoPhep = CreateBand("Nghỉ có phép", 63, 50, FixedStyle.None);
            BandedGridColumn cNghiCoPhep = new BandedGridColumn();
            HelpBandedGrid.CotCalcEdit(cNghiCoPhep, "NGHI_CO_PHEP", 2);
            bNghiCoPhep.Columns.Add(cNghiCoPhep);
            cNghiCoPhep.VisibleIndex = 63;
            columns.Add(cNghiCoPhep);

            GridBand bNghiKoPhep = CreateBand("Nghỉ không phép", 64, 50, FixedStyle.None);

            BandedGridColumn cNghiKoPhep = new BandedGridColumn();
            HelpBandedGrid.CotCalcEdit(cNghiKoPhep, "NGHI_KHONG_PHEP", 2);
            bNghiKoPhep.Columns.Add(cNghiKoPhep);
            cNghiKoPhep.VisibleIndex = 64;
            cNghiKoPhep.Caption = "";
            columns.Add(cNghiKoPhep);

            GridBand bSoNgay = CreateBand("Số ngày làm việc", 65, 50, FixedStyle.None);
            BandedGridColumn cSoNgay = new BandedGridColumn();
            HelpBandedGrid.CotCalcEdit(cSoNgay, "SO_NGAY_LAM_VIEC", 2);
            bSoNgay.Columns.Add(cSoNgay);
            cSoNgay.VisibleIndex = 65;
            cSoNgay.Caption = "";
            columns.Add(cSoNgay);

            GridBand bKhongLuong = CreateBand("Số ngày không lương", 66, 50, FixedStyle.None);
            BandedGridColumn cKhongLuong = new BandedGridColumn();
            HelpBandedGrid.CotCalcEdit(cKhongLuong, "SO_NGAY_KHONG_LUONG", 2);
            bKhongLuong.Columns.Add(cKhongLuong);
            cKhongLuong.VisibleIndex = 66;
            cKhongLuong.Caption = "";
            columns.Add(cKhongLuong);

            GridBand bTroCap = CreateBand("Số ngày trợ cấp", 67, 50, FixedStyle.None);
            BandedGridColumn cTroCap = new BandedGridColumn();
            HelpBandedGrid.CotCalcEdit(cTroCap, "SO_NGAY_TRO_CAP", 2);
            bTroCap.Columns.Add(cTroCap);
            cTroCap.VisibleIndex = 67;
            cTroCap.Caption = "";
            columns.Add(cTroCap);

            GridBand bHuongLuong = CreateBand("Số ngày hưởng lương", 68, 50, FixedStyle.None);
            BandedGridColumn cHuongLuong = new BandedGridColumn();
            HelpBandedGrid.CotCalcEdit(cHuongLuong, "SO_NGAY_HUONG_LUONG", 2);
            bHuongLuong.Columns.Add(cHuongLuong);
            cHuongLuong.VisibleIndex = 68;
            columns.Add(cHuongLuong);
            cHuongLuong.Caption = "";

            //Định nghĩa danh sách các ngày trong tháng được chọn
            List<GridBand> bNgay = new List<GridBand>();
            int cntIndex = 1;

            //Lấy ngày đầu tiên của tháng được chọn (Tạm thời chưa có control Filter nên lấy tạm tháng hiện tại)
            DateTime dateFirstMonth = HelpDate.GetStartOfMonth(dateThangNam._getMorth(), dateThangNam._getYear());
            int daysInMonth = CountDateInMonth(dateThangNam._getMorth(), dateThangNam._getYear());
            DevExpress.XtraEditors.Repository.RepositoryItemComboBox rep_cbb = new DevExpress.XtraEditors.Repository.RepositoryItemComboBox();
            rep_cbb.Items.AddRange(new object[] { "N", "V", "4" });
            for (int i = 1; i <= daysInMonth; i++)
            {
                //Band thứ
                GridBand bItem = new GridBand();
                bItem.Caption = GetThuVN(dateFirstMonth.DayOfWeek.ToString());
                bItem.Name = "N" + ((i > 9) ? i.ToString() : ("0" + i));
                bItem.Width = 100;
                bItem.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
                bItem.AppearanceHeader.Options.UseTextOptions = true;
                bItem.OptionsBand.FixedWidth = true;
                bItem.OptionsBand.AllowSize = false;
                bNgay.Add(bItem);

                //Band ngày/tháng/năm
                GridBand bDate = new GridBand();
                bDate.Caption = dateFirstMonth.Date.ToShortDateString();
                bDate.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
                bDate.AppearanceHeader.Options.UseTextOptions = true;
                bItem.Children.Add(bDate);

                //Cột sáng, chiều
                GridBand bSang = CreateBand("Sáng", 0, 50, FixedStyle.None);
                BandedGridColumn cSang = new BandedGridColumn();
                cSang.VisibleIndex = ++cntIndex;
                cSang.FieldName = "N" + ((i > 9) ? i.ToString() : ("0" + i)) + "_SANG";
                cSang.ColumnEdit = rep_cbb;
                bSang.Columns.Add(cSang);
                columns.Add(cSang);

                GridBand bChieu = CreateBand("Chiều", 0, 50, FixedStyle.None);
                BandedGridColumn cChieu = new BandedGridColumn();
                cChieu.VisibleIndex = ++cntIndex;
                cChieu.FieldName = "N" + ((i > 9) ? i.ToString() : ("0" + i)) + "_CHIEU";
                cChieu.ColumnEdit = rep_cbb;
                bChieu.Columns.Add(cChieu);
                columns.Add(cChieu);

                bDate.Children.Add(bSang);
                bDate.Children.Add(bChieu);

                //Tăng ngày lên
                dateFirstMonth = dateFirstMonth.AddDays(1);
            }

            this.gridViewMaster.Bands.Add(bID);
            this.gridViewMaster.Bands.Add(bEmp);
            this.gridViewMaster.Bands.AddRange(bNgay.ToArray());
            this.gridViewMaster.Bands.Add(bNghiCoPhep);
            this.gridViewMaster.Bands.Add(bNghiKoPhep);
            this.gridViewMaster.Bands.Add(bSoNgay);
            this.gridViewMaster.Bands.Add(bKhongLuong);
            this.gridViewMaster.Bands.Add(bTroCap);
            this.gridViewMaster.Bands.Add(bHuongLuong);
            this.gridViewMaster.Columns.AddRange(columns.ToArray());
            this.gridViewMaster.OptionsView.ShowColumnHeaders = true;
        }
 /// <summary>
 /// �����֧������ķ��� - ��Ҫ
 /// ʹ�ô���༭���޸Ĵ˷��������ݡ�
 /// </summary>
 private void InitializeComponent()
 {
     this.panelControl = new DevExpress.XtraEditors.PanelControl();
     this.checkEdit1 = new DevExpress.XtraEditors.CheckEdit();
     this.xtraTabControl1 = new DevExpress.XtraTab.XtraTabControl();
     this.tabPage = new DevExpress.XtraTab.XtraTabPage();
     this.vGridControl = new DevExpress.XtraVerticalGrid.VGridControl();
     this.ItemTextEditAreaName = new DevExpress.XtraEditors.Repository.RepositoryItemTextEdit();
     this.ItemTextEditSubstationName = new DevExpress.XtraEditors.Repository.RepositoryItemTextEdit();
     this.ItemTextEditTitle = new DevExpress.XtraEditors.Repository.RepositoryItemTextEdit();
     this.ItemTextEditL1 = new DevExpress.XtraEditors.Repository.RepositoryItemTextEdit();
     this.ItemTextEditL2 = new DevExpress.XtraEditors.Repository.RepositoryItemTextEdit();
     this.ItemTextEditL3 = new DevExpress.XtraEditors.Repository.RepositoryItemTextEdit();
     this.ItemTextEditL4 = new DevExpress.XtraEditors.Repository.RepositoryItemTextEdit();
     this.ItemTextEditL5 = new DevExpress.XtraEditors.Repository.RepositoryItemTextEdit();
     this.ItemDateEditL6 = new DevExpress.XtraEditors.Repository.RepositoryItemDateEdit();
     this.ItemTextEditK1 = new DevExpress.XtraEditors.Repository.RepositoryItemTextEdit();
     this.ItemTextEditK2 = new DevExpress.XtraEditors.Repository.RepositoryItemTextEdit();
     this.ItemTextEditK3 = new DevExpress.XtraEditors.Repository.RepositoryItemTextEdit();
     this.ItemTextEditK4 = new DevExpress.XtraEditors.Repository.RepositoryItemTextEdit();
     this.ItemTextEditK5 = new DevExpress.XtraEditors.Repository.RepositoryItemTextEdit();
     this.ItemTextEditK6 = new DevExpress.XtraEditors.Repository.RepositoryItemTextEdit();
     this.ItemTextEditK7 = new DevExpress.XtraEditors.Repository.RepositoryItemTextEdit();
     this.ItemTextEditK8 = new DevExpress.XtraEditors.Repository.RepositoryItemTextEdit();
     this.ItemTextEditK9 = new DevExpress.XtraEditors.Repository.RepositoryItemTextEdit();
     this.ItemTextEditK10 = new DevExpress.XtraEditors.Repository.RepositoryItemTextEdit();
     this.ItemTextEditK11 = new DevExpress.XtraEditors.Repository.RepositoryItemTextEdit();
     this.ItemTextEditK12 = new DevExpress.XtraEditors.Repository.RepositoryItemTextEdit();
     this.ItemTextEditK13 = new DevExpress.XtraEditors.Repository.RepositoryItemTextEdit();
     this.ItemTextEditK14 = new DevExpress.XtraEditors.Repository.RepositoryItemTextEdit();
     this.ItemTextEditK15 = new DevExpress.XtraEditors.Repository.RepositoryItemTextEdit();
     this.ItemTextEditK16 = new DevExpress.XtraEditors.Repository.RepositoryItemTextEdit();
     this.ItemTextEditK17 = new DevExpress.XtraEditors.Repository.RepositoryItemTextEdit();
     this.ItemTextEditK18 = new DevExpress.XtraEditors.Repository.RepositoryItemTextEdit();
     this.ItemTextEditK19 = new DevExpress.XtraEditors.Repository.RepositoryItemTextEdit();
     this.ItemTextEditS1 = new DevExpress.XtraEditors.Repository.RepositoryItemTextEdit();
     this.ItemTextEditS2 = new DevExpress.XtraEditors.Repository.RepositoryItemTextEdit();
     this.ItemTextEditS3 = new DevExpress.XtraEditors.Repository.RepositoryItemTextEdit();
     this.ItemTextEditS4 = new DevExpress.XtraEditors.Repository.RepositoryItemTextEdit();
     this.ItemTextEditS5 = new DevExpress.XtraEditors.Repository.RepositoryItemTextEdit();
     this.ItemTextEditS6 = new DevExpress.XtraEditors.Repository.RepositoryItemTextEdit();
     this.ItemTextEditS7 = new DevExpress.XtraEditors.Repository.RepositoryItemTextEdit();
     this.ItemTextEditS8 = new DevExpress.XtraEditors.Repository.RepositoryItemTextEdit();
     this.ItemTextEditS9 = new DevExpress.XtraEditors.Repository.RepositoryItemTextEdit();
     this.ItemTextEditS10 = new DevExpress.XtraEditors.Repository.RepositoryItemTextEdit();
     this.repositoryItemTextEdit1 = new DevExpress.XtraEditors.Repository.RepositoryItemTextEdit();
     this.repositoryItemTextEdit2 = new DevExpress.XtraEditors.Repository.RepositoryItemTextEdit();
     this.repositoryItemComboBox1 = new DevExpress.XtraEditors.Repository.RepositoryItemComboBox();
     this.repositoryItemComboBox2 = new DevExpress.XtraEditors.Repository.RepositoryItemComboBox();
     this.repositoryItemComboBox3 = new DevExpress.XtraEditors.Repository.RepositoryItemComboBox();
     this.repositoryItemComboBox4 = new DevExpress.XtraEditors.Repository.RepositoryItemComboBox();
     this.repositoryItemComboBox5 = new DevExpress.XtraEditors.Repository.RepositoryItemComboBox();
     this.rowAreaName = new DevExpress.XtraVerticalGrid.Rows.EditorRow();
     this.rowSubstationName = new DevExpress.XtraVerticalGrid.Rows.EditorRow();
     this.rowTitle = new DevExpress.XtraVerticalGrid.Rows.EditorRow();
     this.rowL1 = new DevExpress.XtraVerticalGrid.Rows.EditorRow();
     this.rowL2 = new DevExpress.XtraVerticalGrid.Rows.EditorRow();
     this.rowL3 = new DevExpress.XtraVerticalGrid.Rows.EditorRow();
     this.rowL4 = new DevExpress.XtraVerticalGrid.Rows.EditorRow();
     this.rowL5 = new DevExpress.XtraVerticalGrid.Rows.EditorRow();
     this.rowL6 = new DevExpress.XtraVerticalGrid.Rows.EditorRow();
     this.rowK1 = new DevExpress.XtraVerticalGrid.Rows.EditorRow();
     this.rowK2 = new DevExpress.XtraVerticalGrid.Rows.EditorRow();
     this.rowK3 = new DevExpress.XtraVerticalGrid.Rows.EditorRow();
     this.rowK4 = new DevExpress.XtraVerticalGrid.Rows.EditorRow();
     this.rowK5 = new DevExpress.XtraVerticalGrid.Rows.EditorRow();
     this.rowK6 = new DevExpress.XtraVerticalGrid.Rows.EditorRow();
     this.rowK7 = new DevExpress.XtraVerticalGrid.Rows.EditorRow();
     this.categoryRow1 = new DevExpress.XtraVerticalGrid.Rows.CategoryRow();
     this.editorRow1 = new DevExpress.XtraVerticalGrid.Rows.EditorRow();
     this.editorRow2 = new DevExpress.XtraVerticalGrid.Rows.EditorRow();
     this.editorRow3 = new DevExpress.XtraVerticalGrid.Rows.EditorRow();
     this.rowK8 = new DevExpress.XtraVerticalGrid.Rows.EditorRow();
     this.rowK9 = new DevExpress.XtraVerticalGrid.Rows.EditorRow();
     this.rowK10 = new DevExpress.XtraVerticalGrid.Rows.EditorRow();
     this.rowK11 = new DevExpress.XtraVerticalGrid.Rows.EditorRow();
     this.rowK12 = new DevExpress.XtraVerticalGrid.Rows.EditorRow();
     this.rowK13 = new DevExpress.XtraVerticalGrid.Rows.EditorRow();
     this.rowK14 = new DevExpress.XtraVerticalGrid.Rows.EditorRow();
     this.rowK15 = new DevExpress.XtraVerticalGrid.Rows.EditorRow();
     this.rowK16 = new DevExpress.XtraVerticalGrid.Rows.EditorRow();
     this.rowK17 = new DevExpress.XtraVerticalGrid.Rows.EditorRow();
     this.rowK18 = new DevExpress.XtraVerticalGrid.Rows.EditorRow();
     this.rowK19 = new DevExpress.XtraVerticalGrid.Rows.EditorRow();
     this.rowS1 = new DevExpress.XtraVerticalGrid.Rows.EditorRow();
     this.rowS2 = new DevExpress.XtraVerticalGrid.Rows.EditorRow();
     this.rowS3 = new DevExpress.XtraVerticalGrid.Rows.EditorRow();
     this.rowS4 = new DevExpress.XtraVerticalGrid.Rows.EditorRow();
     this.rowS5 = new DevExpress.XtraVerticalGrid.Rows.EditorRow();
     this.rowS6 = new DevExpress.XtraVerticalGrid.Rows.EditorRow();
     this.rowS7 = new DevExpress.XtraVerticalGrid.Rows.EditorRow();
     this.rowS8 = new DevExpress.XtraVerticalGrid.Rows.EditorRow();
     this.rowS9 = new DevExpress.XtraVerticalGrid.Rows.EditorRow();
     this.rowS10 = new DevExpress.XtraVerticalGrid.Rows.EditorRow();
     this.btnOK = new DevExpress.XtraEditors.SimpleButton();
     this.btnCancel = new DevExpress.XtraEditors.SimpleButton();
     ((System.ComponentModel.ISupportInitialize)(this.panelControl)).BeginInit();
     this.panelControl.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.checkEdit1.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.xtraTabControl1)).BeginInit();
     this.xtraTabControl1.SuspendLayout();
     this.tabPage.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.vGridControl)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.ItemTextEditAreaName)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.ItemTextEditSubstationName)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.ItemTextEditTitle)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.ItemTextEditL1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.ItemTextEditL2)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.ItemTextEditL3)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.ItemTextEditL4)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.ItemTextEditL5)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.ItemDateEditL6)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.ItemTextEditK1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.ItemTextEditK2)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.ItemTextEditK3)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.ItemTextEditK4)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.ItemTextEditK5)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.ItemTextEditK6)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.ItemTextEditK7)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.ItemTextEditK8)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.ItemTextEditK9)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.ItemTextEditK10)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.ItemTextEditK11)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.ItemTextEditK12)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.ItemTextEditK13)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.ItemTextEditK14)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.ItemTextEditK15)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.ItemTextEditK16)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.ItemTextEditK17)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.ItemTextEditK18)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.ItemTextEditK19)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.ItemTextEditS1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.ItemTextEditS2)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.ItemTextEditS3)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.ItemTextEditS4)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.ItemTextEditS5)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.ItemTextEditS6)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.ItemTextEditS7)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.ItemTextEditS8)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.ItemTextEditS9)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.ItemTextEditS10)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemTextEdit1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemTextEdit2)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemComboBox1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemComboBox2)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemComboBox3)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemComboBox4)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemComboBox5)).BeginInit();
     this.SuspendLayout();
     //
     // panelControl
     //
     this.panelControl.Controls.Add(this.checkEdit1);
     this.panelControl.Controls.Add(this.xtraTabControl1);
     this.panelControl.Controls.Add(this.btnOK);
     this.panelControl.Controls.Add(this.btnCancel);
     this.panelControl.Location = new System.Drawing.Point(0, 0);
     this.panelControl.Name = "panelControl";
     this.panelControl.Size = new System.Drawing.Size(395, 372);
     this.panelControl.TabIndex = 0;
     this.panelControl.Text = "panelControl1";
     this.panelControl.Paint += new System.Windows.Forms.PaintEventHandler(this.panelControl_Paint);
     //
     // checkEdit1
     //
     this.checkEdit1.Location = new System.Drawing.Point(16, 344);
     this.checkEdit1.Name = "checkEdit1";
     this.checkEdit1.Properties.Caption = "�������";
     this.checkEdit1.Size = new System.Drawing.Size(75, 19);
     this.checkEdit1.TabIndex = 2;
     //
     // xtraTabControl1
     //
     this.xtraTabControl1.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
                 | System.Windows.Forms.AnchorStyles.Left)
                 | System.Windows.Forms.AnchorStyles.Right)));
     this.xtraTabControl1.Location = new System.Drawing.Point(7, 7);
     this.xtraTabControl1.Name = "xtraTabControl1";
     this.xtraTabControl1.SelectedTabPage = this.tabPage;
     this.xtraTabControl1.Size = new System.Drawing.Size(382, 330);
     this.xtraTabControl1.TabIndex = 1;
     this.xtraTabControl1.TabPages.AddRange(new DevExpress.XtraTab.XtraTabPage[] {
     this.tabPage});
     this.xtraTabControl1.Text = "xtraTabControl1";
     //
     // tabPage
     //
     this.tabPage.Controls.Add(this.vGridControl);
     this.tabPage.Name = "tabPage";
     this.tabPage.Size = new System.Drawing.Size(378, 303);
     this.tabPage.Text = "��·���";
     //
     // vGridControl
     //
     this.vGridControl.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.vGridControl.Location = new System.Drawing.Point(7, 3);
     this.vGridControl.Name = "vGridControl";
     this.vGridControl.RecordWidth = 178;
     this.vGridControl.RepositoryItems.AddRange(new DevExpress.XtraEditors.Repository.RepositoryItem[] {
     this.ItemTextEditAreaName,
     this.ItemTextEditSubstationName,
     this.ItemTextEditTitle,
     this.ItemTextEditL1,
     this.ItemTextEditL2,
     this.ItemTextEditL3,
     this.ItemTextEditL4,
     this.ItemTextEditL5,
     this.ItemDateEditL6,
     this.ItemTextEditK1,
     this.ItemTextEditK2,
     this.ItemTextEditK3,
     this.ItemTextEditK4,
     this.ItemTextEditK5,
     this.ItemTextEditK6,
     this.ItemTextEditK7,
     this.ItemTextEditK8,
     this.ItemTextEditK9,
     this.ItemTextEditK10,
     this.ItemTextEditK11,
     this.ItemTextEditK12,
     this.ItemTextEditK13,
     this.ItemTextEditK14,
     this.ItemTextEditK15,
     this.ItemTextEditK16,
     this.ItemTextEditK17,
     this.ItemTextEditK18,
     this.ItemTextEditK19,
     this.ItemTextEditS1,
     this.ItemTextEditS2,
     this.ItemTextEditS3,
     this.ItemTextEditS4,
     this.ItemTextEditS5,
     this.ItemTextEditS6,
     this.ItemTextEditS7,
     this.ItemTextEditS8,
     this.ItemTextEditS9,
     this.ItemTextEditS10,
     this.repositoryItemTextEdit1,
     this.repositoryItemTextEdit2,
     this.repositoryItemComboBox1,
     this.repositoryItemComboBox2,
     this.repositoryItemComboBox3,
     this.repositoryItemComboBox4,
     this.repositoryItemComboBox5});
     this.vGridControl.RowHeaderWidth = 140;
     this.vGridControl.Rows.AddRange(new DevExpress.XtraVerticalGrid.Rows.BaseRow[] {
     this.rowAreaName,
     this.rowSubstationName,
     this.rowTitle,
     this.rowL1,
     this.rowL2,
     this.rowL3,
     this.rowL4,
     this.rowL5,
     this.rowL6,
     this.rowK1,
     this.rowK2,
     this.rowK3,
     this.rowK4,
     this.rowK5,
     this.rowK6,
     this.rowK7,
     this.categoryRow1,
     this.editorRow3,
     this.rowK8,
     this.rowK9,
     this.rowK10,
     this.rowK11,
     this.rowK12,
     this.rowK13,
     this.rowK14,
     this.rowK15,
     this.rowK16,
     this.rowK17,
     this.rowK18,
     this.rowK19,
     this.rowS1,
     this.rowS2,
     this.rowS3,
     this.rowS4,
     this.rowS5,
     this.rowS6,
     this.rowS7,
     this.rowS8,
     this.rowS9,
     this.rowS10});
     this.vGridControl.Size = new System.Drawing.Size(354, 288);
     this.vGridControl.TabIndex = 0;
     //
     // ItemTextEditAreaName
     //
     this.ItemTextEditAreaName.AutoHeight = false;
     this.ItemTextEditAreaName.MaxLength = 100;
     this.ItemTextEditAreaName.Name = "ItemTextEditAreaName";
     //
     // ItemTextEditSubstationName
     //
     this.ItemTextEditSubstationName.AutoHeight = false;
     this.ItemTextEditSubstationName.MaxLength = 100;
     this.ItemTextEditSubstationName.Name = "ItemTextEditSubstationName";
     //
     // ItemTextEditTitle
     //
     this.ItemTextEditTitle.AutoHeight = false;
     this.ItemTextEditTitle.MaxLength = 100;
     this.ItemTextEditTitle.Name = "ItemTextEditTitle";
     //
     // ItemTextEditL1
     //
     this.ItemTextEditL1.AutoHeight = false;
     this.ItemTextEditL1.Name = "ItemTextEditL1";
     //
     // ItemTextEditL2
     //
     this.ItemTextEditL2.AutoHeight = false;
     this.ItemTextEditL2.MaxLength = 100;
     this.ItemTextEditL2.Name = "ItemTextEditL2";
     //
     // ItemTextEditL3
     //
     this.ItemTextEditL3.AutoHeight = false;
     this.ItemTextEditL3.MaxLength = 100;
     this.ItemTextEditL3.Name = "ItemTextEditL3";
     //
     // ItemTextEditL4
     //
     this.ItemTextEditL4.AutoHeight = false;
     this.ItemTextEditL4.MaxLength = 100;
     this.ItemTextEditL4.Name = "ItemTextEditL4";
     //
     // ItemTextEditL5
     //
     this.ItemTextEditL5.AutoHeight = false;
     this.ItemTextEditL5.DisplayFormat.FormatString = "n2";
     this.ItemTextEditL5.DisplayFormat.FormatType = DevExpress.Utils.FormatType.Numeric;
     this.ItemTextEditL5.EditFormat.FormatString = "n2";
     this.ItemTextEditL5.EditFormat.FormatType = DevExpress.Utils.FormatType.Numeric;
     this.ItemTextEditL5.Mask.EditMask = "n2";
     this.ItemTextEditL5.Mask.MaskType = DevExpress.XtraEditors.Mask.MaskType.Numeric;
     this.ItemTextEditL5.Name = "ItemTextEditL5";
     //
     // ItemDateEditL6
     //
     this.ItemDateEditL6.AutoHeight = false;
     this.ItemDateEditL6.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.ItemDateEditL6.DisplayFormat.FormatString = "yyyy-MM-dd";
     this.ItemDateEditL6.DisplayFormat.FormatType = DevExpress.Utils.FormatType.DateTime;
     this.ItemDateEditL6.EditFormat.FormatString = "yyyy-MM-dd";
     this.ItemDateEditL6.EditFormat.FormatType = DevExpress.Utils.FormatType.DateTime;
     this.ItemDateEditL6.Mask.EditMask = "yyyy-MM-dd";
     this.ItemDateEditL6.Name = "ItemDateEditL6";
     this.ItemDateEditL6.TextEditStyle = DevExpress.XtraEditors.Controls.TextEditStyles.DisableTextEditor;
     //
     // ItemTextEditK1
     //
     this.ItemTextEditK1.AutoHeight = false;
     this.ItemTextEditK1.Name = "ItemTextEditK1";
     //
     // ItemTextEditK2
     //
     this.ItemTextEditK2.AutoHeight = false;
     this.ItemTextEditK2.MaxLength = 100;
     this.ItemTextEditK2.Name = "ItemTextEditK2";
     //
     // ItemTextEditK3
     //
     this.ItemTextEditK3.AutoHeight = false;
     this.ItemTextEditK3.MaxLength = 100;
     this.ItemTextEditK3.Name = "ItemTextEditK3";
     //
     // ItemTextEditK4
     //
     this.ItemTextEditK4.AutoHeight = false;
     this.ItemTextEditK4.DisplayFormat.FormatString = "n4";
     this.ItemTextEditK4.DisplayFormat.FormatType = DevExpress.Utils.FormatType.Numeric;
     this.ItemTextEditK4.EditFormat.FormatString = "n4";
     this.ItemTextEditK4.EditFormat.FormatType = DevExpress.Utils.FormatType.Numeric;
     this.ItemTextEditK4.Mask.EditMask = "n4";
     this.ItemTextEditK4.Mask.MaskType = DevExpress.XtraEditors.Mask.MaskType.Numeric;
     this.ItemTextEditK4.Name = "ItemTextEditK4";
     //
     // ItemTextEditK5
     //
     this.ItemTextEditK5.AutoHeight = false;
     this.ItemTextEditK5.DisplayFormat.FormatString = "n4";
     this.ItemTextEditK5.DisplayFormat.FormatType = DevExpress.Utils.FormatType.Numeric;
     this.ItemTextEditK5.EditFormat.FormatString = "n4";
     this.ItemTextEditK5.EditFormat.FormatType = DevExpress.Utils.FormatType.Numeric;
     this.ItemTextEditK5.Mask.EditMask = "n4";
     this.ItemTextEditK5.Mask.MaskType = DevExpress.XtraEditors.Mask.MaskType.Numeric;
     this.ItemTextEditK5.Name = "ItemTextEditK5";
     //
     // ItemTextEditK6
     //
     this.ItemTextEditK6.AutoHeight = false;
     this.ItemTextEditK6.DisplayFormat.FormatString = "n4";
     this.ItemTextEditK6.DisplayFormat.FormatType = DevExpress.Utils.FormatType.Numeric;
     this.ItemTextEditK6.EditFormat.FormatString = "n4";
     this.ItemTextEditK6.EditFormat.FormatType = DevExpress.Utils.FormatType.Numeric;
     this.ItemTextEditK6.Mask.EditMask = "n4";
     this.ItemTextEditK6.Mask.MaskType = DevExpress.XtraEditors.Mask.MaskType.Numeric;
     this.ItemTextEditK6.Name = "ItemTextEditK6";
     //
     // ItemTextEditK7
     //
     this.ItemTextEditK7.AutoHeight = false;
     this.ItemTextEditK7.DisplayFormat.FormatString = "n4";
     this.ItemTextEditK7.DisplayFormat.FormatType = DevExpress.Utils.FormatType.Numeric;
     this.ItemTextEditK7.EditFormat.FormatString = "n4";
     this.ItemTextEditK7.EditFormat.FormatType = DevExpress.Utils.FormatType.Numeric;
     this.ItemTextEditK7.Mask.EditMask = "n4";
     this.ItemTextEditK7.Mask.MaskType = DevExpress.XtraEditors.Mask.MaskType.Numeric;
     this.ItemTextEditK7.Name = "ItemTextEditK7";
     //
     // ItemTextEditK8
     //
     this.ItemTextEditK8.AutoHeight = false;
     this.ItemTextEditK8.DisplayFormat.FormatString = "n0";
     this.ItemTextEditK8.DisplayFormat.FormatType = DevExpress.Utils.FormatType.Numeric;
     this.ItemTextEditK8.EditFormat.FormatString = "n0";
     this.ItemTextEditK8.EditFormat.FormatType = DevExpress.Utils.FormatType.Numeric;
     this.ItemTextEditK8.Mask.EditMask = "n0";
     this.ItemTextEditK8.Mask.MaskType = DevExpress.XtraEditors.Mask.MaskType.Numeric;
     this.ItemTextEditK8.Name = "ItemTextEditK8";
     //
     // ItemTextEditK9
     //
     this.ItemTextEditK9.AutoHeight = false;
     this.ItemTextEditK9.DisplayFormat.FormatString = "n0";
     this.ItemTextEditK9.DisplayFormat.FormatType = DevExpress.Utils.FormatType.Numeric;
     this.ItemTextEditK9.EditFormat.FormatString = "n0";
     this.ItemTextEditK9.EditFormat.FormatType = DevExpress.Utils.FormatType.Numeric;
     this.ItemTextEditK9.Mask.EditMask = "n0";
     this.ItemTextEditK9.Mask.MaskType = DevExpress.XtraEditors.Mask.MaskType.Numeric;
     this.ItemTextEditK9.Name = "ItemTextEditK9";
     //
     // ItemTextEditK10
     //
     this.ItemTextEditK10.AutoHeight = false;
     this.ItemTextEditK10.DisplayFormat.FormatString = "n0";
     this.ItemTextEditK10.DisplayFormat.FormatType = DevExpress.Utils.FormatType.Numeric;
     this.ItemTextEditK10.EditFormat.FormatString = "n0";
     this.ItemTextEditK10.EditFormat.FormatType = DevExpress.Utils.FormatType.Numeric;
     this.ItemTextEditK10.Mask.EditMask = "n0";
     this.ItemTextEditK10.Mask.MaskType = DevExpress.XtraEditors.Mask.MaskType.Numeric;
     this.ItemTextEditK10.Name = "ItemTextEditK10";
     //
     // ItemTextEditK11
     //
     this.ItemTextEditK11.AutoHeight = false;
     this.ItemTextEditK11.DisplayFormat.FormatString = "n0";
     this.ItemTextEditK11.DisplayFormat.FormatType = DevExpress.Utils.FormatType.Numeric;
     this.ItemTextEditK11.EditFormat.FormatString = "n0";
     this.ItemTextEditK11.EditFormat.FormatType = DevExpress.Utils.FormatType.Numeric;
     this.ItemTextEditK11.Mask.EditMask = "n0";
     this.ItemTextEditK11.Mask.MaskType = DevExpress.XtraEditors.Mask.MaskType.Numeric;
     this.ItemTextEditK11.Name = "ItemTextEditK11";
     //
     // ItemTextEditK12
     //
     this.ItemTextEditK12.AutoHeight = false;
     this.ItemTextEditK12.DisplayFormat.FormatString = "n0";
     this.ItemTextEditK12.DisplayFormat.FormatType = DevExpress.Utils.FormatType.Numeric;
     this.ItemTextEditK12.EditFormat.FormatString = "n0";
     this.ItemTextEditK12.EditFormat.FormatType = DevExpress.Utils.FormatType.Numeric;
     this.ItemTextEditK12.Mask.EditMask = "n0";
     this.ItemTextEditK12.Mask.MaskType = DevExpress.XtraEditors.Mask.MaskType.Numeric;
     this.ItemTextEditK12.Name = "ItemTextEditK12";
     //
     // ItemTextEditK13
     //
     this.ItemTextEditK13.AutoHeight = false;
     this.ItemTextEditK13.DisplayFormat.FormatString = "n0";
     this.ItemTextEditK13.DisplayFormat.FormatType = DevExpress.Utils.FormatType.Numeric;
     this.ItemTextEditK13.EditFormat.FormatString = "n0";
     this.ItemTextEditK13.EditFormat.FormatType = DevExpress.Utils.FormatType.Numeric;
     this.ItemTextEditK13.Mask.EditMask = "n0";
     this.ItemTextEditK13.Mask.MaskType = DevExpress.XtraEditors.Mask.MaskType.Numeric;
     this.ItemTextEditK13.Name = "ItemTextEditK13";
     //
     // ItemTextEditK14
     //
     this.ItemTextEditK14.AutoHeight = false;
     this.ItemTextEditK14.DisplayFormat.FormatString = "n0";
     this.ItemTextEditK14.DisplayFormat.FormatType = DevExpress.Utils.FormatType.Numeric;
     this.ItemTextEditK14.EditFormat.FormatString = "n0";
     this.ItemTextEditK14.EditFormat.FormatType = DevExpress.Utils.FormatType.Numeric;
     this.ItemTextEditK14.Mask.EditMask = "n0";
     this.ItemTextEditK14.Mask.MaskType = DevExpress.XtraEditors.Mask.MaskType.Numeric;
     this.ItemTextEditK14.Name = "ItemTextEditK14";
     //
     // ItemTextEditK15
     //
     this.ItemTextEditK15.AutoHeight = false;
     this.ItemTextEditK15.DisplayFormat.FormatString = "n0";
     this.ItemTextEditK15.DisplayFormat.FormatType = DevExpress.Utils.FormatType.Numeric;
     this.ItemTextEditK15.EditFormat.FormatString = "n0";
     this.ItemTextEditK15.EditFormat.FormatType = DevExpress.Utils.FormatType.Numeric;
     this.ItemTextEditK15.Mask.EditMask = "n0";
     this.ItemTextEditK15.Mask.MaskType = DevExpress.XtraEditors.Mask.MaskType.Numeric;
     this.ItemTextEditK15.Name = "ItemTextEditK15";
     //
     // ItemTextEditK16
     //
     this.ItemTextEditK16.AutoHeight = false;
     this.ItemTextEditK16.DisplayFormat.FormatString = "n2";
     this.ItemTextEditK16.DisplayFormat.FormatType = DevExpress.Utils.FormatType.Numeric;
     this.ItemTextEditK16.EditFormat.FormatString = "n2";
     this.ItemTextEditK16.EditFormat.FormatType = DevExpress.Utils.FormatType.Numeric;
     this.ItemTextEditK16.Mask.EditMask = "n2";
     this.ItemTextEditK16.Mask.MaskType = DevExpress.XtraEditors.Mask.MaskType.Numeric;
     this.ItemTextEditK16.Name = "ItemTextEditK16";
     //
     // ItemTextEditK17
     //
     this.ItemTextEditK17.AutoHeight = false;
     this.ItemTextEditK17.DisplayFormat.FormatString = "n2";
     this.ItemTextEditK17.DisplayFormat.FormatType = DevExpress.Utils.FormatType.Numeric;
     this.ItemTextEditK17.EditFormat.FormatString = "n2";
     this.ItemTextEditK17.EditFormat.FormatType = DevExpress.Utils.FormatType.Numeric;
     this.ItemTextEditK17.Mask.EditMask = "n2";
     this.ItemTextEditK17.Mask.MaskType = DevExpress.XtraEditors.Mask.MaskType.Numeric;
     this.ItemTextEditK17.Name = "ItemTextEditK17";
     //
     // ItemTextEditK18
     //
     this.ItemTextEditK18.AutoHeight = false;
     this.ItemTextEditK18.DisplayFormat.FormatString = "n2";
     this.ItemTextEditK18.DisplayFormat.FormatType = DevExpress.Utils.FormatType.Numeric;
     this.ItemTextEditK18.EditFormat.FormatString = "n2";
     this.ItemTextEditK18.EditFormat.FormatType = DevExpress.Utils.FormatType.Numeric;
     this.ItemTextEditK18.Mask.EditMask = "n2";
     this.ItemTextEditK18.Mask.MaskType = DevExpress.XtraEditors.Mask.MaskType.Numeric;
     this.ItemTextEditK18.Name = "ItemTextEditK18";
     //
     // ItemTextEditK19
     //
     this.ItemTextEditK19.AutoHeight = false;
     this.ItemTextEditK19.DisplayFormat.FormatString = "n2";
     this.ItemTextEditK19.DisplayFormat.FormatType = DevExpress.Utils.FormatType.Numeric;
     this.ItemTextEditK19.EditFormat.FormatString = "n2";
     this.ItemTextEditK19.EditFormat.FormatType = DevExpress.Utils.FormatType.Numeric;
     this.ItemTextEditK19.Mask.EditMask = "n2";
     this.ItemTextEditK19.Mask.MaskType = DevExpress.XtraEditors.Mask.MaskType.Numeric;
     this.ItemTextEditK19.Name = "ItemTextEditK19";
     //
     // ItemTextEditS1
     //
     this.ItemTextEditS1.AutoHeight = false;
     this.ItemTextEditS1.MaxLength = 100;
     this.ItemTextEditS1.Name = "ItemTextEditS1";
     //
     // ItemTextEditS2
     //
     this.ItemTextEditS2.AutoHeight = false;
     this.ItemTextEditS2.MaxLength = 100;
     this.ItemTextEditS2.Name = "ItemTextEditS2";
     //
     // ItemTextEditS3
     //
     this.ItemTextEditS3.AutoHeight = false;
     this.ItemTextEditS3.MaxLength = 100;
     this.ItemTextEditS3.Name = "ItemTextEditS3";
     //
     // ItemTextEditS4
     //
     this.ItemTextEditS4.AutoHeight = false;
     this.ItemTextEditS4.MaxLength = 100;
     this.ItemTextEditS4.Name = "ItemTextEditS4";
     //
     // ItemTextEditS5
     //
     this.ItemTextEditS5.AutoHeight = false;
     this.ItemTextEditS5.MaxLength = 100;
     this.ItemTextEditS5.Name = "ItemTextEditS5";
     //
     // ItemTextEditS6
     //
     this.ItemTextEditS6.AutoHeight = false;
     this.ItemTextEditS6.MaxLength = 100;
     this.ItemTextEditS6.Name = "ItemTextEditS6";
     //
     // ItemTextEditS7
     //
     this.ItemTextEditS7.AutoHeight = false;
     this.ItemTextEditS7.MaxLength = 100;
     this.ItemTextEditS7.Name = "ItemTextEditS7";
     //
     // ItemTextEditS8
     //
     this.ItemTextEditS8.AutoHeight = false;
     this.ItemTextEditS8.MaxLength = 100;
     this.ItemTextEditS8.Name = "ItemTextEditS8";
     //
     // ItemTextEditS9
     //
     this.ItemTextEditS9.AutoHeight = false;
     this.ItemTextEditS9.MaxLength = 100;
     this.ItemTextEditS9.Name = "ItemTextEditS9";
     //
     // ItemTextEditS10
     //
     this.ItemTextEditS10.AutoHeight = false;
     this.ItemTextEditS10.MaxLength = 100;
     this.ItemTextEditS10.Name = "ItemTextEditS10";
     //
     // repositoryItemTextEdit1
     //
     this.repositoryItemTextEdit1.AutoHeight = false;
     this.repositoryItemTextEdit1.DisplayFormat.FormatString = "n4";
     this.repositoryItemTextEdit1.DisplayFormat.FormatType = DevExpress.Utils.FormatType.Numeric;
     this.repositoryItemTextEdit1.EditFormat.FormatString = "n4";
     this.repositoryItemTextEdit1.EditFormat.FormatType = DevExpress.Utils.FormatType.Numeric;
     this.repositoryItemTextEdit1.Mask.EditMask = "n4";
     this.repositoryItemTextEdit1.Mask.MaskType = DevExpress.XtraEditors.Mask.MaskType.Numeric;
     this.repositoryItemTextEdit1.Name = "repositoryItemTextEdit1";
     //
     // repositoryItemTextEdit2
     //
     this.repositoryItemTextEdit2.AutoHeight = false;
     this.repositoryItemTextEdit2.DisplayFormat.FormatString = "n4";
     this.repositoryItemTextEdit2.DisplayFormat.FormatType = DevExpress.Utils.FormatType.Numeric;
     this.repositoryItemTextEdit2.EditFormat.FormatString = "n4";
     this.repositoryItemTextEdit2.EditFormat.FormatType = DevExpress.Utils.FormatType.Numeric;
     this.repositoryItemTextEdit2.Mask.EditMask = "n4";
     this.repositoryItemTextEdit2.Mask.MaskType = DevExpress.XtraEditors.Mask.MaskType.Numeric;
     this.repositoryItemTextEdit2.Name = "repositoryItemTextEdit2";
     //
     // repositoryItemComboBox1
     //
     this.repositoryItemComboBox1.AutoHeight = false;
     this.repositoryItemComboBox1.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.repositoryItemComboBox1.Name = "repositoryItemComboBox1";
     //
     // repositoryItemComboBox2
     //
     this.repositoryItemComboBox2.AutoHeight = false;
     this.repositoryItemComboBox2.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.repositoryItemComboBox2.Name = "repositoryItemComboBox2";
     //
     // repositoryItemComboBox3
     //
     this.repositoryItemComboBox3.AutoHeight = false;
     this.repositoryItemComboBox3.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.repositoryItemComboBox3.Name = "repositoryItemComboBox3";
     //
     // repositoryItemComboBox4
     //
     this.repositoryItemComboBox4.AutoHeight = false;
     this.repositoryItemComboBox4.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.repositoryItemComboBox4.Items.AddRange(new object[] {
     "500",
     "220",
     "110",
     "66",
     "35"});
     this.repositoryItemComboBox4.Name = "repositoryItemComboBox4";
     this.repositoryItemComboBox4.TextEditStyle = DevExpress.XtraEditors.Controls.TextEditStyles.DisableTextEditor;
     //
     // repositoryItemComboBox5
     //
     this.repositoryItemComboBox5.AutoHeight = false;
     this.repositoryItemComboBox5.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.repositoryItemComboBox5.Items.AddRange(new object[] {
     "10",
     "6",
     "0.4"});
     this.repositoryItemComboBox5.Name = "repositoryItemComboBox5";
     this.repositoryItemComboBox5.TextEditStyle = DevExpress.XtraEditors.Controls.TextEditStyles.DisableTextEditor;
     //
     // rowAreaName
     //
     this.rowAreaName.Height = 25;
     this.rowAreaName.Name = "rowAreaName";
     this.rowAreaName.Properties.Caption = "����";
     this.rowAreaName.Properties.FieldName = "AreaName";
     this.rowAreaName.Properties.ImageIndex = 25;
     this.rowAreaName.Properties.RowEdit = this.ItemTextEditAreaName;
     //
     // rowSubstationName
     //
     this.rowSubstationName.Height = 25;
     this.rowSubstationName.Name = "rowSubstationName";
     this.rowSubstationName.Properties.Caption = "���վ����";
     this.rowSubstationName.Properties.FieldName = "SubstationName";
     this.rowSubstationName.Properties.ImageIndex = 25;
     this.rowSubstationName.Properties.RowEdit = this.ItemTextEditSubstationName;
     //
     // rowTitle
     //
     this.rowTitle.Height = 25;
     this.rowTitle.Name = "rowTitle";
     this.rowTitle.Properties.Caption = "��·����";
     this.rowTitle.Properties.FieldName = "Title";
     this.rowTitle.Properties.ImageIndex = 25;
     this.rowTitle.Properties.RowEdit = this.ItemTextEditTitle;
     //
     // rowL1
     //
     this.rowL1.Height = 25;
     this.rowL1.Name = "rowL1";
     this.rowL1.Properties.Caption = "��ѹ�ȼ�(kV)";
     this.rowL1.Properties.FieldName = "L1";
     this.rowL1.Properties.ImageIndex = 25;
     this.rowL1.Properties.RowEdit = this.repositoryItemComboBox4;
     //
     // rowL2
     //
     this.rowL2.Height = 25;
     this.rowL2.Name = "rowL2";
     this.rowL2.Properties.Caption = "�����վ";
     this.rowL2.Properties.FieldName = "L2";
     this.rowL2.Properties.ImageIndex = 25;
     this.rowL2.Properties.RowEdit = this.ItemTextEditL2;
     //
     // rowL3
     //
     this.rowL3.Height = 25;
     this.rowL3.Name = "rowL3";
     this.rowL3.Properties.Caption = "�յ���վ";
     this.rowL3.Properties.FieldName = "L3";
     this.rowL3.Properties.ImageIndex = 25;
     this.rowL3.Properties.RowEdit = this.ItemTextEditL3;
     //
     // rowL4
     //
     this.rowL4.Height = 25;
     this.rowL4.Name = "rowL4";
     this.rowL4.Properties.Caption = "�����ͺ�";
     this.rowL4.Properties.FieldName = "L4";
     this.rowL4.Properties.ImageIndex = 25;
     this.rowL4.Properties.RowEdit = this.ItemTextEditL4;
     //
     // rowL5
     //
     this.rowL5.Height = 25;
     this.rowL5.Name = "rowL5";
     this.rowL5.Properties.Caption = "��·����(km)";
     this.rowL5.Properties.FieldName = "L5";
     this.rowL5.Properties.ImageIndex = 25;
     this.rowL5.Properties.RowEdit = this.ItemTextEditL5;
     //
     // rowL6
     //
     this.rowL6.Height = 25;
     this.rowL6.Name = "rowL6";
     this.rowL6.Properties.Caption = "Ͷ��ʱ��";
     this.rowL6.Properties.FieldName = "L6";
     this.rowL6.Properties.ImageIndex = 25;
     this.rowL6.Properties.RowEdit = this.ItemDateEditL6;
     //
     // rowK1
     //
     this.rowK1.Height = 25;
     this.rowK1.Name = "rowK1";
     this.rowK1.Properties.Caption = "��ѹ�ȼ�(kV)";
     this.rowK1.Properties.FieldName = "K1";
     this.rowK1.Properties.ImageIndex = 25;
     this.rowK1.Properties.RowEdit = this.repositoryItemComboBox5;
     //
     // rowK2
     //
     this.rowK2.Height = 25;
     this.rowK2.Name = "rowK2";
     this.rowK2.Properties.Caption = "���ڵ����ͺ�";
     this.rowK2.Properties.FieldName = "K2";
     this.rowK2.Properties.ImageIndex = 25;
     this.rowK2.Properties.RowEdit = this.repositoryItemComboBox1;
     //
     // rowK3
     //
     this.rowK3.Height = 25;
     this.rowK3.Name = "rowK3";
     this.rowK3.Properties.Caption = "��·����";
     this.rowK3.Properties.FieldName = "K3";
     this.rowK3.Properties.ImageIndex = 25;
     this.rowK3.Properties.RowEdit = this.repositoryItemComboBox2;
     //
     // rowK4
     //
     this.rowK4.Height = 25;
     this.rowK4.Name = "rowK4";
     this.rowK4.Properties.Caption = "�����߳���(km)";
     this.rowK4.Properties.FieldName = "K4";
     this.rowK4.Properties.ImageIndex = 25;
     this.rowK4.Properties.RowEdit = this.ItemTextEditK4;
     //
     // rowK5
     //
     this.rowK5.Height = 25;
     this.rowK5.Name = "rowK5";
     this.rowK5.Properties.Caption = "��·�ܳ���(km)";
     this.rowK5.Properties.FieldName = "K5";
     this.rowK5.Properties.ImageIndex = 25;
     this.rowK5.Properties.RowEdit = this.ItemTextEditK5;
     this.rowK5.Visible = false;
     //
     // rowK6
     //
     this.rowK6.Height = 25;
     this.rowK6.Name = "rowK6";
     this.rowK6.Properties.Caption = "�����߳�(km)";
     this.rowK6.Properties.FieldName = "K6";
     this.rowK6.Properties.ImageIndex = 25;
     this.rowK6.Properties.RowEdit = this.ItemTextEditK6;
     //
     // rowK7
     //
     this.rowK7.Height = 25;
     this.rowK7.Name = "rowK7";
     this.rowK7.Properties.Caption = "�ܿ��߳�(km)";
     this.rowK7.Properties.FieldName = "K7";
     this.rowK7.Properties.ImageIndex = 25;
     this.rowK7.Properties.RowEdit = this.ItemTextEditK7;
     this.rowK7.Visible = false;
     //
     // categoryRow1
     //
     this.categoryRow1.ChildRows.AddRange(new DevExpress.XtraVerticalGrid.Rows.BaseRow[] {
     this.editorRow1,
     this.editorRow2});
     this.categoryRow1.Name = "categoryRow1";
     this.categoryRow1.Properties.Caption = "�ܿ��߳�(km)";
     //
     // editorRow1
     //
     this.editorRow1.Name = "editorRow1";
     this.editorRow1.Properties.Caption = "�㵼��";
     this.editorRow1.Properties.FieldName = "K20";
     this.editorRow1.Properties.RowEdit = this.repositoryItemTextEdit1;
     //
     // editorRow2
     //
     this.editorRow2.Name = "editorRow2";
     this.editorRow2.Properties.Caption = "��Ե��";
     this.editorRow2.Properties.FieldName = "K21";
     this.editorRow2.Properties.RowEdit = this.repositoryItemTextEdit2;
     //
     // editorRow3
     //
     this.editorRow3.Name = "editorRow3";
     this.editorRow3.Properties.Caption = "�����·����ģʽ";
     this.editorRow3.Properties.FieldName = "K22";
     this.editorRow3.Properties.RowEdit = this.repositoryItemComboBox3;
     //
     // rowK8
     //
     this.rowK8.Height = 25;
     this.rowK8.Name = "rowK8";
     this.rowK8.Properties.Caption = "��ȫ����(A)";
     this.rowK8.Properties.FieldName = "K8";
     this.rowK8.Properties.ImageIndex = 25;
     this.rowK8.Properties.RowEdit = this.ItemTextEditK8;
     //
     // rowK9
     //
     this.rowK9.Height = 25;
     this.rowK9.Name = "rowK9";
     this.rowK9.Properties.Caption = "����̨��";
     this.rowK9.Properties.FieldName = "K9";
     this.rowK9.Properties.ImageIndex = 25;
     this.rowK9.Properties.RowEdit = this.ItemTextEditK9;
     //
     // rowK10
     //
     this.rowK10.Height = 25;
     this.rowK10.Name = "rowK10";
     this.rowK10.Properties.Caption = "��������(kVA)";
     this.rowK10.Properties.FieldName = "K10";
     this.rowK10.Properties.ImageIndex = 25;
     this.rowK10.Properties.RowEdit = this.ItemTextEditK10;
     //
     // rowK11
     //
     this.rowK11.Height = 25;
     this.rowK11.Name = "rowK11";
     this.rowK11.Properties.Caption = "ר��̨��";
     this.rowK11.Properties.FieldName = "K11";
     this.rowK11.Properties.ImageIndex = 25;
     this.rowK11.Properties.RowEdit = this.ItemTextEditK11;
     //
     // rowK12
     //
     this.rowK12.Height = 25;
     this.rowK12.Name = "rowK12";
     this.rowK12.Properties.Caption = "ר������(kVA)";
     this.rowK12.Properties.FieldName = "K12";
     this.rowK12.Properties.ImageIndex = 25;
     this.rowK12.Properties.RowEdit = this.ItemTextEditK12;
     //
     // rowK13
     //
     this.rowK13.Height = 25;
     this.rowK13.Name = "rowK13";
     this.rowK13.Properties.Caption = "���������(kVA)";
     this.rowK13.Properties.FieldName = "K13";
     this.rowK13.Properties.ImageIndex = 25;
     this.rowK13.Properties.RowEdit = this.ItemTextEditK13;
     //
     // rowK14
     //
     this.rowK14.Height = 25;
     this.rowK14.Name = "rowK14";
     this.rowK14.Properties.Caption = "�޹�������̨��(̨)";
     this.rowK14.Properties.FieldName = "K14";
     this.rowK14.Properties.ImageIndex = 25;
     this.rowK14.Properties.RowEdit = this.ItemTextEditK14;
     //
     // rowK15
     //
     this.rowK15.Height = 25;
     this.rowK15.Name = "rowK15";
     this.rowK15.Properties.Caption = "�޹�����������(Kvar)";
     this.rowK15.Properties.FieldName = "K15";
     this.rowK15.Properties.ImageIndex = 25;
     this.rowK15.Properties.RowEdit = this.ItemTextEditK15;
     //
     // rowK16
     //
     this.rowK16.Height = 25;
     this.rowK16.Name = "rowK16";
     this.rowK16.Properties.Caption = "������(A)";
     this.rowK16.Properties.FieldName = "K16";
     this.rowK16.Properties.ImageIndex = 25;
     this.rowK16.Properties.RowEdit = this.ItemTextEditK16;
     //
     // rowK17
     //
     this.rowK17.Height = 25;
     this.rowK17.Name = "rowK17";
     this.rowK17.Properties.Caption = "��为����(%)";
     this.rowK17.Properties.FieldName = "K17";
     this.rowK17.Properties.ImageIndex = 25;
     this.rowK17.Properties.RowEdit = this.ItemTextEditK17;
     this.rowK17.Visible = false;
     //
     // rowK18
     //
     this.rowK18.Height = 25;
     this.rowK18.Name = "rowK18";
     this.rowK18.Properties.Caption = "��λ�߳��������(kVA/km)";
     this.rowK18.Properties.FieldName = "K18";
     this.rowK18.Properties.ImageIndex = 25;
     this.rowK18.Properties.RowEdit = this.ItemTextEditK18;
     //
     // rowK19
     //
     this.rowK19.Height = 25;
     this.rowK19.Name = "rowK19";
     this.rowK19.Properties.Caption = "��·������(%)";
     this.rowK19.Properties.FieldName = "K19";
     this.rowK19.Properties.ImageIndex = 25;
     this.rowK19.Properties.RowEdit = this.ItemTextEditK19;
     this.rowK19.Visible = false;
     //
     // rowS1
     //
     this.rowS1.Height = 25;
     this.rowS1.Name = "rowS1";
     this.rowS1.Properties.FieldName = "S1";
     this.rowS1.Properties.ImageIndex = 25;
     this.rowS1.Properties.RowEdit = this.ItemTextEditS1;
     //
     // rowS2
     //
     this.rowS2.Height = 25;
     this.rowS2.Name = "rowS2";
     this.rowS2.Properties.FieldName = "S2";
     this.rowS2.Properties.ImageIndex = 25;
     this.rowS2.Properties.RowEdit = this.ItemTextEditS2;
     //
     // rowS3
     //
     this.rowS3.Height = 25;
     this.rowS3.Name = "rowS3";
     this.rowS3.Properties.FieldName = "S3";
     this.rowS3.Properties.ImageIndex = 25;
     this.rowS3.Properties.RowEdit = this.ItemTextEditS3;
     //
     // rowS4
     //
     this.rowS4.Height = 25;
     this.rowS4.Name = "rowS4";
     this.rowS4.Properties.FieldName = "S4";
     this.rowS4.Properties.ImageIndex = 25;
     this.rowS4.Properties.RowEdit = this.ItemTextEditS4;
     //
     // rowS5
     //
     this.rowS5.Height = 25;
     this.rowS5.Name = "rowS5";
     this.rowS5.Properties.FieldName = "S5";
     this.rowS5.Properties.ImageIndex = 25;
     this.rowS5.Properties.RowEdit = this.ItemTextEditS5;
     //
     // rowS6
     //
     this.rowS6.Height = 25;
     this.rowS6.Name = "rowS6";
     this.rowS6.Properties.FieldName = "S6";
     this.rowS6.Properties.ImageIndex = 25;
     this.rowS6.Properties.RowEdit = this.ItemTextEditS6;
     //
     // rowS7
     //
     this.rowS7.Height = 25;
     this.rowS7.Name = "rowS7";
     this.rowS7.Properties.FieldName = "S7";
     this.rowS7.Properties.ImageIndex = 25;
     this.rowS7.Properties.RowEdit = this.ItemTextEditS7;
     //
     // rowS8
     //
     this.rowS8.Height = 25;
     this.rowS8.Name = "rowS8";
     this.rowS8.Properties.FieldName = "S8";
     this.rowS8.Properties.ImageIndex = 25;
     this.rowS8.Properties.RowEdit = this.ItemTextEditS8;
     //
     // rowS9
     //
     this.rowS9.Height = 25;
     this.rowS9.Name = "rowS9";
     this.rowS9.Properties.FieldName = "S9";
     this.rowS9.Properties.ImageIndex = 25;
     this.rowS9.Properties.RowEdit = this.ItemTextEditS9;
     //
     // rowS10
     //
     this.rowS10.Height = 25;
     this.rowS10.Name = "rowS10";
     this.rowS10.Properties.FieldName = "S10";
     this.rowS10.Properties.ImageIndex = 25;
     this.rowS10.Properties.RowEdit = this.ItemTextEditS10;
     //
     // btnOK
     //
     this.btnOK.Location = new System.Drawing.Point(187, 343);
     this.btnOK.Name = "btnOK";
     this.btnOK.Size = new System.Drawing.Size(75, 23);
     this.btnOK.TabIndex = 0;
     this.btnOK.Text = "ȷ��";
     this.btnOK.Click += new System.EventHandler(this.btnOK_Click);
     //
     // btnCancel
     //
     this.btnCancel.DialogResult = System.Windows.Forms.DialogResult.Cancel;
     this.btnCancel.Location = new System.Drawing.Point(291, 343);
     this.btnCancel.Name = "btnCancel";
     this.btnCancel.Size = new System.Drawing.Size(75, 23);
     this.btnCancel.TabIndex = 0;
     this.btnCancel.Text = "ȡ��";
     //
     // FrmLine_InfoDialog
     //
     this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 12F);
     this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
     this.ClientSize = new System.Drawing.Size(393, 375);
     this.Controls.Add(this.panelControl);
     this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedDialog;
     this.MaximizeBox = false;
     this.MinimizeBox = false;
     this.Name = "FrmLine_InfoDialog";
     this.ShowInTaskbar = false;
     this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen;
     this.Text = "��·���";
     this.Load += new System.EventHandler(this.FrmLine_InfoDialog_Load);
     ((System.ComponentModel.ISupportInitialize)(this.panelControl)).EndInit();
     this.panelControl.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.checkEdit1.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.xtraTabControl1)).EndInit();
     this.xtraTabControl1.ResumeLayout(false);
     this.tabPage.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.vGridControl)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.ItemTextEditAreaName)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.ItemTextEditSubstationName)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.ItemTextEditTitle)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.ItemTextEditL1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.ItemTextEditL2)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.ItemTextEditL3)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.ItemTextEditL4)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.ItemTextEditL5)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.ItemDateEditL6)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.ItemTextEditK1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.ItemTextEditK2)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.ItemTextEditK3)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.ItemTextEditK4)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.ItemTextEditK5)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.ItemTextEditK6)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.ItemTextEditK7)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.ItemTextEditK8)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.ItemTextEditK9)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.ItemTextEditK10)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.ItemTextEditK11)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.ItemTextEditK12)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.ItemTextEditK13)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.ItemTextEditK14)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.ItemTextEditK15)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.ItemTextEditK16)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.ItemTextEditK17)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.ItemTextEditK18)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.ItemTextEditK19)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.ItemTextEditS1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.ItemTextEditS2)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.ItemTextEditS3)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.ItemTextEditS4)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.ItemTextEditS5)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.ItemTextEditS6)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.ItemTextEditS7)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.ItemTextEditS8)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.ItemTextEditS9)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.ItemTextEditS10)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemTextEdit1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemTextEdit2)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemComboBox1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemComboBox2)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemComboBox3)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemComboBox4)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemComboBox5)).EndInit();
     this.ResumeLayout(false);
 }
Example #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(frmCommission));
     this.grpMDCommision = new DevExpress.XtraEditors.GroupControl();
     this.tabControlCommission = new DevExpress.XtraTab.XtraTabControl();
     this.mdCM_tabSalesCommision = new DevExpress.XtraTab.XtraTabPage();
     this.grpSubMDCommissionScheme = new DevExpress.XtraEditors.GroupControl();
     this.gridControlMd_SalesCommisionScheme = new DevExpress.XtraGrid.GridControl();
     this.gridViewMd_SalesCommission = new DevExpress.XtraGrid.Views.Grid.GridView();
     this.nCommGroupID = new DevExpress.XtraGrid.Columns.GridColumn();
     this.strGroupName = new DevExpress.XtraGrid.Columns.GridColumn();
     this.nCalMethod = new DevExpress.XtraGrid.Columns.GridColumn();
     this.lk_CalMethod = new DevExpress.XtraEditors.Repository.RepositoryItemLookUpEdit();
     this.mBranchTarget = new DevExpress.XtraGrid.Columns.GridColumn();
     this.fCrossSales = new DevExpress.XtraGrid.Columns.GridColumn();
     this.chk_CrossSales = new DevExpress.XtraEditors.Repository.RepositoryItemCheckEdit();
     this.dtFrom = new DevExpress.XtraGrid.Columns.GridColumn();
     this.dtTo = new DevExpress.XtraGrid.Columns.GridColumn();
     this.mdSC_txtNEmployeeID = new DevExpress.XtraEditors.TextEdit();
     this.tabControlCommissionEntry = new DevExpress.XtraTab.XtraTabControl();
     this.tabMethodOne = new DevExpress.XtraTab.XtraTabPage();
     this.btn_Target_Add = new DevExpress.XtraEditors.SimpleButton();
     this.imageList1 = new System.Windows.Forms.ImageList(this.components);
     this.btn_Target_Del = new DevExpress.XtraEditors.SimpleButton();
     this.grpMDPromotionBelow2 = new DevExpress.XtraEditors.GroupControl();
     this.gridCategory2 = new DevExpress.XtraGrid.GridControl();
     this.gridViewCategory2 = new DevExpress.XtraGrid.Views.Grid.GridView();
     this.nCategoryID = new DevExpress.XtraGrid.Columns.GridColumn();
     this.Description2 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.Percentage2 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridCategory = new DevExpress.XtraGrid.GridControl();
     this.gridViewCategory = new DevExpress.XtraGrid.Views.Grid.GridView();
     this.CategoryID = new DevExpress.XtraGrid.Columns.GridColumn();
     this.Description = new DevExpress.XtraGrid.Columns.GridColumn();
     this.btnCategory_Add = new DevExpress.XtraEditors.SimpleButton();
     this.btnCategory_Del = new DevExpress.XtraEditors.SimpleButton();
     this.btnCategory_DelAll = new DevExpress.XtraEditors.SimpleButton();
     this.btnCategory_AddAll = new DevExpress.XtraEditors.SimpleButton();
     this.gridTarget = new DevExpress.XtraGrid.GridControl();
     this.gridViewTarget = new DevExpress.XtraGrid.Views.Grid.GridView();
     this.nIndivTargetFrom = new DevExpress.XtraGrid.Columns.GridColumn();
     this.nIndivTargetTo = new DevExpress.XtraGrid.Columns.GridColumn();
     this.nIndivPercent = new DevExpress.XtraGrid.Columns.GridColumn();
     this.nBranchTargetFrom = new DevExpress.XtraGrid.Columns.GridColumn();
     this.nBranchTargetTo = new DevExpress.XtraGrid.Columns.GridColumn();
     this.nBranchPercent = new DevExpress.XtraGrid.Columns.GridColumn();
     this.nBasePercent = new DevExpress.XtraGrid.Columns.GridColumn();
     this.mBaseAmount = new DevExpress.XtraGrid.Columns.GridColumn();
     this.fCombine = new DevExpress.XtraGrid.Columns.GridColumn();
     this.tabMethodTwo = new DevExpress.XtraTab.XtraTabPage();
     this.btn_Range_Del = new DevExpress.XtraEditors.SimpleButton();
     this.gridRange = new DevExpress.XtraGrid.GridControl();
     this.gridViewRange = new DevExpress.XtraGrid.Views.Grid.GridView();
     this.mRangeSalesFrom = new DevExpress.XtraGrid.Columns.GridColumn();
     this.mRangeSalesTo = new DevExpress.XtraGrid.Columns.GridColumn();
     this.nRangePercent = new DevExpress.XtraGrid.Columns.GridColumn();
     this.mRangeAmt = new DevExpress.XtraGrid.Columns.GridColumn();
     this.fCombine_Range = new DevExpress.XtraGrid.Columns.GridColumn();
     this.chk_fCombine = new DevExpress.XtraEditors.Repository.RepositoryItemCheckEdit();
     this.btn_Range_Add = new DevExpress.XtraEditors.SimpleButton();
     this.groupControl2 = new DevExpress.XtraEditors.GroupControl();
     this.grid2Category2 = new DevExpress.XtraGrid.GridControl();
     this.gridView2Category2 = new DevExpress.XtraGrid.Views.Grid.GridView();
     this.gridColumn18 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn19 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.grid2Category = new DevExpress.XtraGrid.GridControl();
     this.gridView2Category = new DevExpress.XtraGrid.Views.Grid.GridView();
     this.gridColumn21 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn22 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.btn2Category_Add = new DevExpress.XtraEditors.SimpleButton();
     this.btn2Category_Del = new DevExpress.XtraEditors.SimpleButton();
     this.btn2Category_DelAll = new DevExpress.XtraEditors.SimpleButton();
     this.btn2Category_AddAll = new DevExpress.XtraEditors.SimpleButton();
     this.tabMethodThree = new DevExpress.XtraTab.XtraTabPage();
     this.btn_Mgr_Del = new DevExpress.XtraEditors.SimpleButton();
     this.gridMgr = new DevExpress.XtraGrid.GridControl();
     this.gridViewMgr = new DevExpress.XtraGrid.Views.Grid.GridView();
     this.nBranchPercentFrom = new DevExpress.XtraGrid.Columns.GridColumn();
     this.nBranchPercentTo = new DevExpress.XtraGrid.Columns.GridColumn();
     this.nMgrPercent = new DevExpress.XtraGrid.Columns.GridColumn();
     this.dMgrAmt = new DevExpress.XtraGrid.Columns.GridColumn();
     this.fCombine_Mgr = new DevExpress.XtraGrid.Columns.GridColumn();
     this.chk_fCombine_Mgr = new DevExpress.XtraEditors.Repository.RepositoryItemCheckEdit();
     this.btn_Mgr_add = new DevExpress.XtraEditors.SimpleButton();
     this.groupControl3 = new DevExpress.XtraEditors.GroupControl();
     this.grid3Category2 = new DevExpress.XtraGrid.GridControl();
     this.gridView3Category2 = new DevExpress.XtraGrid.Views.Grid.GridView();
     this.gridColumn23 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn24 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn25 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.grid3Category = new DevExpress.XtraGrid.GridControl();
     this.gridView3Category = new DevExpress.XtraGrid.Views.Grid.GridView();
     this.gridColumn26 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn27 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.btn3Category_Add = new DevExpress.XtraEditors.SimpleButton();
     this.btn3Category_Del = new DevExpress.XtraEditors.SimpleButton();
     this.btn3Category_DelAll = new DevExpress.XtraEditors.SimpleButton();
     this.btn3Category_AddAll = new DevExpress.XtraEditors.SimpleButton();
     this.xtraTabPage1 = new DevExpress.XtraTab.XtraTabPage();
     this.btn_Add2 = new DevExpress.XtraEditors.SimpleButton();
     this.btn_del2 = new DevExpress.XtraEditors.SimpleButton();
     this.gridControlMd_SalesCommisionSchemeEntries = new DevExpress.XtraGrid.GridControl();
     this.gridViewMd_SalesCommissionSchemeEntries = new DevExpress.XtraGrid.Views.Grid.GridView();
     this.gridColumn17 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumnMdSCE2 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumnMdSCE3 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumnMdSCE4 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumnMdSCE5 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumnMdSCE6 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumnMdSCE7 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumnMdSCE8 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumnMdSCE9 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumnMdSCE10 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumnMdSCE11 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumnMdSCE12 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumnMdSCE13 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumnMdSCE14 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumnMdSCE15 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumnMdSCE16 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumnMdSCE17 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumnMdSCE18 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumnMdSCE19 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumnMdSCE20 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumnMdSCE21 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn1 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn2 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn3 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn4 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn5 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn6 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn7 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn8 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn9 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn10 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn11 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn12 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn13 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn14 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn15 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn16 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.repositoryItemComboBox1 = new DevExpress.XtraEditors.Repository.RepositoryItemComboBox();
     this.mdCM_tabInstructorCommision = new DevExpress.XtraTab.XtraTabPage();
     this.tabControlInstructorCommission = new DevExpress.XtraTab.XtraTabControl();
     this.tabPageInstructorType = new DevExpress.XtraTab.XtraTabPage();
     this.gridControlMd_InstructorType = new DevExpress.XtraGrid.GridControl();
     this.gridViewMdInstructor = new DevExpress.XtraGrid.Views.Grid.GridView();
     this.gridColumnMdIT1 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumnMdIT2 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumnMdIT3 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.repositoryItemImageComboBox1 = new DevExpress.XtraEditors.Repository.RepositoryItemImageComboBox();
     this.repositoryItemComboBox2 = new DevExpress.XtraEditors.Repository.RepositoryItemComboBox();
     this.tabPageInstructorComm = new DevExpress.XtraTab.XtraTabPage();
     this.gridControlMd_InstructorCommission = new DevExpress.XtraGrid.GridControl();
     this.gridViewMdIC = new DevExpress.XtraGrid.Views.Grid.GridView();
     this.gridColumnMdIC1 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumnMdIC2 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.tabPageInstructorTypeComm = new DevExpress.XtraTab.XtraTabPage();
     this.gridControlMd_InstructorTypeCommission = new DevExpress.XtraGrid.GridControl();
     this.gridViewMdITC = new DevExpress.XtraGrid.Views.Grid.GridView();
     this.gridColumnMdITC1 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.repositoryItemLookUpEdit1 = new DevExpress.XtraEditors.Repository.RepositoryItemLookUpEdit();
     this.gridColumnMdITC2 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.repositoryItemLookUpEdit2 = new DevExpress.XtraEditors.Repository.RepositoryItemLookUpEdit();
     this.gridColumnMdITC3 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.mdCM_tabPTCommision = new DevExpress.XtraTab.XtraTabPage();
     this.gridControlMd_PTCommission = new DevExpress.XtraGrid.GridControl();
     this.gridViewPTCommission = new DevExpress.XtraGrid.Views.Grid.GridView();
     this.gridColumnPT1 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumnPT2 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumnPT3 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridView2 = new DevExpress.XtraGrid.Views.Grid.GridView();
     this.btn_Add = new DevExpress.XtraEditors.SimpleButton();
     this.btn_Del = new DevExpress.XtraEditors.SimpleButton();
     this.panelSalesCommission = new System.Windows.Forms.Panel();
     this.cmbYear = new DevExpress.XtraEditors.ImageComboBoxEdit();
     this.label12 = new System.Windows.Forms.Label();
     this.lkBranch = new DevExpress.XtraEditors.LookUpEdit();
     this.label3 = new System.Windows.Forms.Label();
     this.btn_Search = new DevExpress.XtraEditors.SimpleButton();
     ((System.ComponentModel.ISupportInitialize)(this.grpMDCommision)).BeginInit();
     this.grpMDCommision.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.tabControlCommission)).BeginInit();
     this.tabControlCommission.SuspendLayout();
     this.mdCM_tabSalesCommision.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.grpSubMDCommissionScheme)).BeginInit();
     this.grpSubMDCommissionScheme.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.gridControlMd_SalesCommisionScheme)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridViewMd_SalesCommission)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.lk_CalMethod)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.chk_CrossSales)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.mdSC_txtNEmployeeID.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.tabControlCommissionEntry)).BeginInit();
     this.tabControlCommissionEntry.SuspendLayout();
     this.tabMethodOne.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.grpMDPromotionBelow2)).BeginInit();
     this.grpMDPromotionBelow2.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.gridCategory2)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridViewCategory2)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridCategory)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridViewCategory)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridTarget)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridViewTarget)).BeginInit();
     this.tabMethodTwo.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.gridRange)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridViewRange)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.chk_fCombine)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.groupControl2)).BeginInit();
     this.groupControl2.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.grid2Category2)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridView2Category2)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.grid2Category)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridView2Category)).BeginInit();
     this.tabMethodThree.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.gridMgr)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridViewMgr)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.chk_fCombine_Mgr)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.groupControl3)).BeginInit();
     this.groupControl3.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.grid3Category2)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridView3Category2)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.grid3Category)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridView3Category)).BeginInit();
     this.xtraTabPage1.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.gridControlMd_SalesCommisionSchemeEntries)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridViewMd_SalesCommissionSchemeEntries)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemComboBox1)).BeginInit();
     this.mdCM_tabInstructorCommision.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.tabControlInstructorCommission)).BeginInit();
     this.tabControlInstructorCommission.SuspendLayout();
     this.tabPageInstructorType.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.gridControlMd_InstructorType)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridViewMdInstructor)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemImageComboBox1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemComboBox2)).BeginInit();
     this.tabPageInstructorComm.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.gridControlMd_InstructorCommission)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridViewMdIC)).BeginInit();
     this.tabPageInstructorTypeComm.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.gridControlMd_InstructorTypeCommission)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridViewMdITC)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemLookUpEdit1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemLookUpEdit2)).BeginInit();
     this.mdCM_tabPTCommision.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.gridControlMd_PTCommission)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridViewPTCommission)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridView2)).BeginInit();
     this.panelSalesCommission.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.cmbYear.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.lkBranch.Properties)).BeginInit();
     this.SuspendLayout();
     //
     // grpMDCommision
     //
     this.grpMDCommision.Appearance.BackColor = System.Drawing.SystemColors.Control;
     this.grpMDCommision.Appearance.Options.UseBackColor = true;
     this.grpMDCommision.Controls.Add(this.tabControlCommission);
     this.grpMDCommision.Controls.Add(this.btn_Add);
     this.grpMDCommision.Controls.Add(this.btn_Del);
     this.grpMDCommision.Controls.Add(this.panelSalesCommission);
     this.grpMDCommision.Location = new System.Drawing.Point(8, 0);
     this.grpMDCommision.LookAndFeel.Style = DevExpress.LookAndFeel.LookAndFeelStyle.Office2003;
     this.grpMDCommision.LookAndFeel.UseDefaultLookAndFeel = false;
     this.grpMDCommision.LookAndFeel.UseWindowsXPTheme = false;
     this.grpMDCommision.Name = "grpMDCommision";
     this.grpMDCommision.Size = new System.Drawing.Size(980, 560);
     this.grpMDCommision.TabIndex = 17;
     this.grpMDCommision.Text = "Commision";
     //
     // tabControlCommission
     //
     this.tabControlCommission.AppearancePage.Header.Font = new System.Drawing.Font("Tahoma", 9.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((System.Byte)(0)));
     this.tabControlCommission.AppearancePage.Header.Options.UseFont = true;
     this.tabControlCommission.Location = new System.Drawing.Point(8, 48);
     this.tabControlCommission.LookAndFeel.SkinName = "Coffee";
     this.tabControlCommission.LookAndFeel.Style = DevExpress.LookAndFeel.LookAndFeelStyle.Skin;
     this.tabControlCommission.LookAndFeel.UseWindowsXPTheme = false;
     this.tabControlCommission.Name = "tabControlCommission";
     this.tabControlCommission.SelectedTabPage = this.mdCM_tabSalesCommision;
     this.tabControlCommission.Size = new System.Drawing.Size(960, 512);
     this.tabControlCommission.TabIndex = 13;
     this.tabControlCommission.TabPages.AddRange(new DevExpress.XtraTab.XtraTabPage[] {
                                                                                          this.mdCM_tabSalesCommision,
                                                                                          this.mdCM_tabInstructorCommision,
                                                                                          this.mdCM_tabPTCommision});
     this.tabControlCommission.Text = "xtraTabControl2";
     this.tabControlCommission.Click += new System.EventHandler(this.tabControlCommission_Click);
     this.tabControlCommission.SelectedPageChanged += new DevExpress.XtraTab.TabPageChangedEventHandler(this.tabControlCommission_SelectedPageChanged);
     //
     // mdCM_tabSalesCommision
     //
     this.mdCM_tabSalesCommision.Appearance.PageClient.BackColor = System.Drawing.SystemColors.Control;
     this.mdCM_tabSalesCommision.Appearance.PageClient.Options.UseBackColor = true;
     this.mdCM_tabSalesCommision.Controls.Add(this.grpSubMDCommissionScheme);
     this.mdCM_tabSalesCommision.Controls.Add(this.tabControlCommissionEntry);
     this.mdCM_tabSalesCommision.Name = "mdCM_tabSalesCommision";
     this.mdCM_tabSalesCommision.Size = new System.Drawing.Size(954, 483);
     this.mdCM_tabSalesCommision.Text = "Sales Commission";
     //
     // grpSubMDCommissionScheme
     //
     this.grpSubMDCommissionScheme.BorderStyle = DevExpress.XtraEditors.Controls.BorderStyles.NoBorder;
     this.grpSubMDCommissionScheme.Controls.Add(this.gridControlMd_SalesCommisionScheme);
     this.grpSubMDCommissionScheme.Controls.Add(this.mdSC_txtNEmployeeID);
     this.grpSubMDCommissionScheme.Dock = System.Windows.Forms.DockStyle.Top;
     this.grpSubMDCommissionScheme.Location = new System.Drawing.Point(0, 0);
     this.grpSubMDCommissionScheme.Name = "grpSubMDCommissionScheme";
     this.grpSubMDCommissionScheme.Size = new System.Drawing.Size(954, 136);
     this.grpSubMDCommissionScheme.TabIndex = 101;
     this.grpSubMDCommissionScheme.Text = "groupControl4";
     //
     // gridControlMd_SalesCommisionScheme
     //
     this.gridControlMd_SalesCommisionScheme.Dock = System.Windows.Forms.DockStyle.Fill;
     //
     // gridControlMd_SalesCommisionScheme.EmbeddedNavigator
     //
     this.gridControlMd_SalesCommisionScheme.EmbeddedNavigator.Name = "";
     this.gridControlMd_SalesCommisionScheme.Location = new System.Drawing.Point(0, 0);
     this.gridControlMd_SalesCommisionScheme.LookAndFeel.Style = DevExpress.LookAndFeel.LookAndFeelStyle.Skin;
     this.gridControlMd_SalesCommisionScheme.MainView = this.gridViewMd_SalesCommission;
     this.gridControlMd_SalesCommisionScheme.Name = "gridControlMd_SalesCommisionScheme";
     this.gridControlMd_SalesCommisionScheme.RepositoryItems.AddRange(new DevExpress.XtraEditors.Repository.RepositoryItem[] {
                                                                                                                                 this.chk_CrossSales,
                                                                                                                                 this.lk_CalMethod});
     this.gridControlMd_SalesCommisionScheme.Size = new System.Drawing.Size(954, 136);
     this.gridControlMd_SalesCommisionScheme.TabIndex = 101;
     this.gridControlMd_SalesCommisionScheme.ViewCollection.AddRange(new DevExpress.XtraGrid.Views.Base.BaseView[] {
                                                                                                                       this.gridViewMd_SalesCommission});
     //
     // gridViewMd_SalesCommission
     //
     this.gridViewMd_SalesCommission.Columns.AddRange(new DevExpress.XtraGrid.Columns.GridColumn[] {
                                                                                                       this.nCommGroupID,
                                                                                                       this.strGroupName,
                                                                                                       this.nCalMethod,
                                                                                                       this.mBranchTarget,
                                                                                                       this.fCrossSales,
                                                                                                       this.dtFrom,
                                                                                                       this.dtTo});
     this.gridViewMd_SalesCommission.GridControl = this.gridControlMd_SalesCommisionScheme;
     this.gridViewMd_SalesCommission.Name = "gridViewMd_SalesCommission";
     this.gridViewMd_SalesCommission.OptionsCustomization.AllowFilter = false;
     this.gridViewMd_SalesCommission.OptionsCustomization.AllowSort = false;
     this.gridViewMd_SalesCommission.OptionsView.ShowGroupPanel = false;
     this.gridViewMd_SalesCommission.FocusedRowChanged += new DevExpress.XtraGrid.Views.Base.FocusedRowChangedEventHandler(this.gridViewMd_SalesCommission_FocusedRowChanged);
     this.gridViewMd_SalesCommission.LostFocus += new System.EventHandler(this.gridViewMd_SalesCommission_LostFocus);
     //
     // nCommGroupID
     //
     this.nCommGroupID.Caption = "CommGroupID";
     this.nCommGroupID.FieldName = "nCommGroupID";
     this.nCommGroupID.Name = "nCommGroupID";
     this.nCommGroupID.Visible = true;
     this.nCommGroupID.VisibleIndex = 0;
     this.nCommGroupID.Width = 134;
     //
     // strGroupName
     //
     this.strGroupName.Caption = "GroupName";
     this.strGroupName.FieldName = "strGroupName";
     this.strGroupName.Name = "strGroupName";
     this.strGroupName.Visible = true;
     this.strGroupName.VisibleIndex = 1;
     this.strGroupName.Width = 203;
     //
     // nCalMethod
     //
     this.nCalMethod.Caption = "Method";
     this.nCalMethod.ColumnEdit = this.lk_CalMethod;
     this.nCalMethod.FieldName = "nCalMethod";
     this.nCalMethod.Name = "nCalMethod";
     this.nCalMethod.Visible = true;
     this.nCalMethod.VisibleIndex = 2;
     this.nCalMethod.Width = 120;
     //
     // lk_CalMethod
     //
     this.lk_CalMethod.AutoHeight = false;
     this.lk_CalMethod.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
                                                                                               new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.lk_CalMethod.Name = "lk_CalMethod";
     //
     // mBranchTarget
     //
     this.mBranchTarget.Caption = "Branch Target $";
     this.mBranchTarget.FieldName = "mBranchTarget";
     this.mBranchTarget.Name = "mBranchTarget";
     this.mBranchTarget.Visible = true;
     this.mBranchTarget.VisibleIndex = 3;
     this.mBranchTarget.Width = 153;
     //
     // fCrossSales
     //
     this.fCrossSales.Caption = "Cross Sales";
     this.fCrossSales.ColumnEdit = this.chk_CrossSales;
     this.fCrossSales.FieldName = "fCrossSales";
     this.fCrossSales.Name = "fCrossSales";
     this.fCrossSales.Visible = true;
     this.fCrossSales.VisibleIndex = 6;
     this.fCrossSales.Width = 73;
     //
     // chk_CrossSales
     //
     this.chk_CrossSales.AutoHeight = false;
     this.chk_CrossSales.Name = "chk_CrossSales";
     //
     // dtFrom
     //
     this.dtFrom.Caption = "From";
     this.dtFrom.DisplayFormat.FormatString = "dd/MM/yyyy";
     this.dtFrom.DisplayFormat.FormatType = DevExpress.Utils.FormatType.DateTime;
     this.dtFrom.FieldName = "dtFrom";
     this.dtFrom.Name = "dtFrom";
     this.dtFrom.Visible = true;
     this.dtFrom.VisibleIndex = 4;
     this.dtFrom.Width = 130;
     //
     // dtTo
     //
     this.dtTo.Caption = "Till";
     this.dtTo.DisplayFormat.FormatString = "dd/MM/yyyy";
     this.dtTo.DisplayFormat.FormatType = DevExpress.Utils.FormatType.DateTime;
     this.dtTo.FieldName = "dtTo";
     this.dtTo.Name = "dtTo";
     this.dtTo.Visible = true;
     this.dtTo.VisibleIndex = 5;
     this.dtTo.Width = 127;
     //
     // mdSC_txtNEmployeeID
     //
     this.mdSC_txtNEmployeeID.EditValue = "";
     this.mdSC_txtNEmployeeID.ImeMode = System.Windows.Forms.ImeMode.On;
     this.mdSC_txtNEmployeeID.Location = new System.Drawing.Point(552, 168);
     this.mdSC_txtNEmployeeID.Name = "mdSC_txtNEmployeeID";
     //
     // mdSC_txtNEmployeeID.Properties
     //
     this.mdSC_txtNEmployeeID.Properties.Appearance.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((System.Byte)(0)));
     this.mdSC_txtNEmployeeID.Properties.Appearance.Options.UseFont = true;
     this.mdSC_txtNEmployeeID.Properties.LookAndFeel.Style = DevExpress.LookAndFeel.LookAndFeelStyle.Skin;
     this.mdSC_txtNEmployeeID.Properties.LookAndFeel.UseDefaultLookAndFeel = false;
     this.mdSC_txtNEmployeeID.Size = new System.Drawing.Size(32, 20);
     this.mdSC_txtNEmployeeID.TabIndex = 111;
     //
     // tabControlCommissionEntry
     //
     this.tabControlCommissionEntry.AppearancePage.Header.Font = new System.Drawing.Font("Tahoma", 9.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((System.Byte)(0)));
     this.tabControlCommissionEntry.AppearancePage.Header.Options.UseFont = true;
     this.tabControlCommissionEntry.Dock = System.Windows.Forms.DockStyle.Bottom;
     this.tabControlCommissionEntry.Location = new System.Drawing.Point(0, 139);
     this.tabControlCommissionEntry.LookAndFeel.SkinName = "Coffee";
     this.tabControlCommissionEntry.LookAndFeel.Style = DevExpress.LookAndFeel.LookAndFeelStyle.Skin;
     this.tabControlCommissionEntry.LookAndFeel.UseWindowsXPTheme = false;
     this.tabControlCommissionEntry.Name = "tabControlCommissionEntry";
     this.tabControlCommissionEntry.SelectedTabPage = this.tabMethodOne;
     this.tabControlCommissionEntry.Size = new System.Drawing.Size(954, 344);
     this.tabControlCommissionEntry.TabIndex = 94;
     this.tabControlCommissionEntry.TabPages.AddRange(new DevExpress.XtraTab.XtraTabPage[] {
                                                                                               this.tabMethodOne,
                                                                                               this.tabMethodTwo,
                                                                                               this.tabMethodThree,
                                                                                               this.xtraTabPage1});
     this.tabControlCommissionEntry.Text = "xtraTabControl2";
     //
     // tabMethodOne
     //
     this.tabMethodOne.Controls.Add(this.btn_Target_Add);
     this.tabMethodOne.Controls.Add(this.btn_Target_Del);
     this.tabMethodOne.Controls.Add(this.grpMDPromotionBelow2);
     this.tabMethodOne.Controls.Add(this.gridTarget);
     this.tabMethodOne.Name = "tabMethodOne";
     this.tabMethodOne.Size = new System.Drawing.Size(948, 315);
     this.tabMethodOne.Text = "Method One";
     //
     // btn_Target_Add
     //
     this.btn_Target_Add.Appearance.Font = new System.Drawing.Font("Tahoma", 14.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((System.Byte)(0)));
     this.btn_Target_Add.Appearance.Options.UseFont = true;
     this.btn_Target_Add.Appearance.Options.UseTextOptions = true;
     this.btn_Target_Add.Appearance.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.btn_Target_Add.Appearance.TextOptions.VAlignment = DevExpress.Utils.VertAlignment.Top;
     this.btn_Target_Add.Appearance.TextOptions.WordWrap = DevExpress.Utils.WordWrap.Wrap;
     this.btn_Target_Add.ImageIndex = 0;
     this.btn_Target_Add.ImageList = this.imageList1;
     this.btn_Target_Add.ImeMode = System.Windows.Forms.ImeMode.On;
     this.btn_Target_Add.Location = new System.Drawing.Point(8, 176);
     this.btn_Target_Add.Name = "btn_Target_Add";
     this.btn_Target_Add.Size = new System.Drawing.Size(38, 16);
     this.btn_Target_Add.TabIndex = 136;
     this.btn_Target_Add.Click += new System.EventHandler(this.btn_Target_Add_Click);
     //
     // imageList1
     //
     this.imageList1.ColorDepth = System.Windows.Forms.ColorDepth.Depth24Bit;
     this.imageList1.ImageSize = new System.Drawing.Size(16, 16);
     this.imageList1.ImageStream = ((System.Windows.Forms.ImageListStreamer)(resources.GetObject("imageList1.ImageStream")));
     this.imageList1.TransparentColor = System.Drawing.Color.Magenta;
     //
     // btn_Target_Del
     //
     this.btn_Target_Del.Appearance.Font = new System.Drawing.Font("Tahoma", 14.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((System.Byte)(0)));
     this.btn_Target_Del.Appearance.Options.UseFont = true;
     this.btn_Target_Del.Appearance.Options.UseTextOptions = true;
     this.btn_Target_Del.Appearance.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.btn_Target_Del.Appearance.TextOptions.VAlignment = DevExpress.Utils.VertAlignment.Top;
     this.btn_Target_Del.Appearance.TextOptions.WordWrap = DevExpress.Utils.WordWrap.Wrap;
     this.btn_Target_Del.ImageIndex = 1;
     this.btn_Target_Del.ImageList = this.imageList1;
     this.btn_Target_Del.Location = new System.Drawing.Point(48, 176);
     this.btn_Target_Del.Name = "btn_Target_Del";
     this.btn_Target_Del.Size = new System.Drawing.Size(38, 16);
     this.btn_Target_Del.TabIndex = 135;
     this.btn_Target_Del.Click += new System.EventHandler(this.btn_Target_Del_Click);
     //
     // grpMDPromotionBelow2
     //
     this.grpMDPromotionBelow2.BorderStyle = DevExpress.XtraEditors.Controls.BorderStyles.Simple;
     this.grpMDPromotionBelow2.Controls.Add(this.gridCategory2);
     this.grpMDPromotionBelow2.Controls.Add(this.gridCategory);
     this.grpMDPromotionBelow2.Controls.Add(this.btnCategory_Add);
     this.grpMDPromotionBelow2.Controls.Add(this.btnCategory_Del);
     this.grpMDPromotionBelow2.Controls.Add(this.btnCategory_DelAll);
     this.grpMDPromotionBelow2.Controls.Add(this.btnCategory_AddAll);
     this.grpMDPromotionBelow2.Location = new System.Drawing.Point(0, 8);
     this.grpMDPromotionBelow2.LookAndFeel.Style = DevExpress.LookAndFeel.LookAndFeelStyle.Skin;
     this.grpMDPromotionBelow2.LookAndFeel.UseDefaultLookAndFeel = false;
     this.grpMDPromotionBelow2.Name = "grpMDPromotionBelow2";
     this.grpMDPromotionBelow2.ShowCaption = false;
     this.grpMDPromotionBelow2.Size = new System.Drawing.Size(896, 160);
     this.grpMDPromotionBelow2.TabIndex = 7;
     this.grpMDPromotionBelow2.Text = "groupControl1";
     //
     // gridCategory2
     //
     //
     // gridCategory2.EmbeddedNavigator
     //
     this.gridCategory2.EmbeddedNavigator.Name = "";
     this.gridCategory2.Location = new System.Drawing.Point(480, 8);
     this.gridCategory2.MainView = this.gridViewCategory2;
     this.gridCategory2.Name = "gridCategory2";
     this.gridCategory2.Size = new System.Drawing.Size(376, 144);
     this.gridCategory2.TabIndex = 29;
     this.gridCategory2.ViewCollection.AddRange(new DevExpress.XtraGrid.Views.Base.BaseView[] {
                                                                                                  this.gridViewCategory2});
     //
     // gridViewCategory2
     //
     this.gridViewCategory2.Columns.AddRange(new DevExpress.XtraGrid.Columns.GridColumn[] {
                                                                                              this.nCategoryID,
                                                                                              this.Description2,
                                                                                              this.Percentage2});
     this.gridViewCategory2.GridControl = this.gridCategory2;
     this.gridViewCategory2.Name = "gridViewCategory2";
     this.gridViewCategory2.OptionsBehavior.AllowIncrementalSearch = true;
     this.gridViewCategory2.OptionsCustomization.AllowFilter = false;
     this.gridViewCategory2.OptionsSelection.MultiSelect = true;
     this.gridViewCategory2.OptionsView.ShowGroupPanel = false;
     this.gridViewCategory2.SortInfo.AddRange(new DevExpress.XtraGrid.Columns.GridColumnSortInfo[] {
                                                                                                       new DevExpress.XtraGrid.Columns.GridColumnSortInfo(this.nCategoryID, DevExpress.Data.ColumnSortOrder.Ascending)});
     this.gridViewCategory2.SynchronizeClones = false;
     this.gridViewCategory2.CellValueChanged += new DevExpress.XtraGrid.Views.Base.CellValueChangedEventHandler(this.Update_Pecentage);
     this.gridViewCategory2.FocusedRowChanged += new DevExpress.XtraGrid.Views.Base.FocusedRowChangedEventHandler(this.gridTarget_FocusedRowChanged);
     //
     // nCategoryID
     //
     this.nCategoryID.Caption = "CategoryID";
     this.nCategoryID.FieldName = "nCategoryID";
     this.nCategoryID.Name = "nCategoryID";
     this.nCategoryID.OptionsColumn.AllowEdit = false;
     this.nCategoryID.Visible = true;
     this.nCategoryID.VisibleIndex = 0;
     this.nCategoryID.Width = 102;
     //
     // Description2
     //
     this.Description2.Caption = "Description";
     this.Description2.FieldName = "strDescription";
     this.Description2.Name = "Description2";
     this.Description2.OptionsColumn.AllowEdit = false;
     this.Description2.Visible = true;
     this.Description2.VisibleIndex = 1;
     this.Description2.Width = 181;
     //
     // Percentage2
     //
     this.Percentage2.Caption = "%";
     this.Percentage2.DisplayFormat.FormatType = DevExpress.Utils.FormatType.Numeric;
     this.Percentage2.FieldName = "Percentage";
     this.Percentage2.Name = "Percentage2";
     this.Percentage2.Visible = true;
     this.Percentage2.VisibleIndex = 2;
     this.Percentage2.Width = 79;
     //
     // gridCategory
     //
     //
     // gridCategory.EmbeddedNavigator
     //
     this.gridCategory.EmbeddedNavigator.Name = "";
     this.gridCategory.Location = new System.Drawing.Point(8, 8);
     this.gridCategory.MainView = this.gridViewCategory;
     this.gridCategory.Name = "gridCategory";
     this.gridCategory.Size = new System.Drawing.Size(376, 144);
     this.gridCategory.TabIndex = 24;
     this.gridCategory.ViewCollection.AddRange(new DevExpress.XtraGrid.Views.Base.BaseView[] {
                                                                                                 this.gridViewCategory});
     //
     // gridViewCategory
     //
     this.gridViewCategory.Columns.AddRange(new DevExpress.XtraGrid.Columns.GridColumn[] {
                                                                                             this.CategoryID,
                                                                                             this.Description});
     this.gridViewCategory.GridControl = this.gridCategory;
     this.gridViewCategory.Name = "gridViewCategory";
     this.gridViewCategory.OptionsBehavior.AllowIncrementalSearch = true;
     this.gridViewCategory.OptionsBehavior.Editable = false;
     this.gridViewCategory.OptionsCustomization.AllowFilter = false;
     this.gridViewCategory.OptionsSelection.MultiSelect = true;
     this.gridViewCategory.OptionsView.ShowGroupPanel = false;
     this.gridViewCategory.SortInfo.AddRange(new DevExpress.XtraGrid.Columns.GridColumnSortInfo[] {
                                                                                                      new DevExpress.XtraGrid.Columns.GridColumnSortInfo(this.CategoryID, DevExpress.Data.ColumnSortOrder.Ascending)});
     //
     // CategoryID
     //
     this.CategoryID.Caption = "CategoryID";
     this.CategoryID.FieldName = "nCategoryID";
     this.CategoryID.Name = "CategoryID";
     this.CategoryID.OptionsColumn.AllowSort = DevExpress.Utils.DefaultBoolean.False;
     this.CategoryID.Visible = true;
     this.CategoryID.VisibleIndex = 0;
     this.CategoryID.Width = 100;
     //
     // Description
     //
     this.Description.Caption = "Description";
     this.Description.FieldName = "strDescription";
     this.Description.Name = "Description";
     this.Description.Visible = true;
     this.Description.VisibleIndex = 1;
     this.Description.Width = 262;
     //
     // btnCategory_Add
     //
     this.btnCategory_Add.ButtonStyle = DevExpress.XtraEditors.Controls.BorderStyles.Simple;
     this.btnCategory_Add.Location = new System.Drawing.Point(416, 16);
     this.btnCategory_Add.Name = "btnCategory_Add";
     this.btnCategory_Add.Size = new System.Drawing.Size(32, 24);
     this.btnCategory_Add.TabIndex = 25;
     this.btnCategory_Add.Text = ">";
     this.btnCategory_Add.Click += new System.EventHandler(this.btnCategory_Add_Click);
     //
     // btnCategory_Del
     //
     this.btnCategory_Del.ButtonStyle = DevExpress.XtraEditors.Controls.BorderStyles.Simple;
     this.btnCategory_Del.Location = new System.Drawing.Point(416, 112);
     this.btnCategory_Del.Name = "btnCategory_Del";
     this.btnCategory_Del.Size = new System.Drawing.Size(32, 24);
     this.btnCategory_Del.TabIndex = 28;
     this.btnCategory_Del.Text = "<";
     this.btnCategory_Del.Click += new System.EventHandler(this.btnCategory_Del_Click);
     //
     // btnCategory_DelAll
     //
     this.btnCategory_DelAll.ButtonStyle = DevExpress.XtraEditors.Controls.BorderStyles.Simple;
     this.btnCategory_DelAll.Location = new System.Drawing.Point(416, 48);
     this.btnCategory_DelAll.Name = "btnCategory_DelAll";
     this.btnCategory_DelAll.Size = new System.Drawing.Size(32, 24);
     this.btnCategory_DelAll.TabIndex = 27;
     this.btnCategory_DelAll.Text = "<<";
     this.btnCategory_DelAll.Click += new System.EventHandler(this.btnCategory_DelAll_Click);
     //
     // btnCategory_AddAll
     //
     this.btnCategory_AddAll.ButtonStyle = DevExpress.XtraEditors.Controls.BorderStyles.Simple;
     this.btnCategory_AddAll.Location = new System.Drawing.Point(416, 80);
     this.btnCategory_AddAll.Name = "btnCategory_AddAll";
     this.btnCategory_AddAll.Size = new System.Drawing.Size(32, 24);
     this.btnCategory_AddAll.TabIndex = 26;
     this.btnCategory_AddAll.Text = ">>";
     this.btnCategory_AddAll.Click += new System.EventHandler(this.btnCategory_AddAll_Click);
     //
     // gridTarget
     //
     //
     // gridTarget.EmbeddedNavigator
     //
     this.gridTarget.EmbeddedNavigator.Name = "";
     this.gridTarget.Location = new System.Drawing.Point(8, 192);
     this.gridTarget.MainView = this.gridViewTarget;
     this.gridTarget.Name = "gridTarget";
     this.gridTarget.Size = new System.Drawing.Size(888, 120);
     this.gridTarget.TabIndex = 25;
     this.gridTarget.ViewCollection.AddRange(new DevExpress.XtraGrid.Views.Base.BaseView[] {
                                                                                               this.gridViewTarget});
     //
     // gridViewTarget
     //
     this.gridViewTarget.Columns.AddRange(new DevExpress.XtraGrid.Columns.GridColumn[] {
                                                                                           this.nIndivTargetFrom,
                                                                                           this.nIndivTargetTo,
                                                                                           this.nIndivPercent,
                                                                                           this.nBranchTargetFrom,
                                                                                           this.nBranchTargetTo,
                                                                                           this.nBranchPercent,
                                                                                           this.nBasePercent,
                                                                                           this.mBaseAmount,
                                                                                           this.fCombine});
     this.gridViewTarget.GridControl = this.gridTarget;
     this.gridViewTarget.Name = "gridViewTarget";
     this.gridViewTarget.OptionsBehavior.AllowIncrementalSearch = true;
     this.gridViewTarget.OptionsCustomization.AllowFilter = false;
     this.gridViewTarget.OptionsSelection.MultiSelect = true;
     this.gridViewTarget.OptionsView.ShowGroupPanel = false;
     this.gridViewTarget.LostFocus += new System.EventHandler(this.gridViewTarget_LostFocus);
     //
     // nIndivTargetFrom
     //
     this.nIndivTargetFrom.Caption = "Individual From";
     this.nIndivTargetFrom.FieldName = "nIndivTargetFrom";
     this.nIndivTargetFrom.Name = "nIndivTargetFrom";
     this.nIndivTargetFrom.Visible = true;
     this.nIndivTargetFrom.VisibleIndex = 0;
     this.nIndivTargetFrom.Width = 117;
     //
     // nIndivTargetTo
     //
     this.nIndivTargetTo.Caption = "Individual To";
     this.nIndivTargetTo.FieldName = "nIndivTargetTo";
     this.nIndivTargetTo.Name = "nIndivTargetTo";
     this.nIndivTargetTo.Visible = true;
     this.nIndivTargetTo.VisibleIndex = 1;
     this.nIndivTargetTo.Width = 114;
     //
     // nIndivPercent
     //
     this.nIndivPercent.Caption = "Reward %";
     this.nIndivPercent.FieldName = "nIndivPercent";
     this.nIndivPercent.Name = "nIndivPercent";
     this.nIndivPercent.Visible = true;
     this.nIndivPercent.VisibleIndex = 2;
     this.nIndivPercent.Width = 105;
     //
     // nBranchTargetFrom
     //
     this.nBranchTargetFrom.Caption = "Branch From";
     this.nBranchTargetFrom.FieldName = "nBranchTargetFrom";
     this.nBranchTargetFrom.Name = "nBranchTargetFrom";
     this.nBranchTargetFrom.Visible = true;
     this.nBranchTargetFrom.VisibleIndex = 3;
     this.nBranchTargetFrom.Width = 103;
     //
     // nBranchTargetTo
     //
     this.nBranchTargetTo.Caption = "Branch To";
     this.nBranchTargetTo.FieldName = "nBranchTargetTo";
     this.nBranchTargetTo.Name = "nBranchTargetTo";
     this.nBranchTargetTo.Visible = true;
     this.nBranchTargetTo.VisibleIndex = 4;
     this.nBranchTargetTo.Width = 113;
     //
     // nBranchPercent
     //
     this.nBranchPercent.Caption = "+ Branch %";
     this.nBranchPercent.FieldName = "nBranchPercent";
     this.nBranchPercent.Name = "nBranchPercent";
     this.nBranchPercent.Visible = true;
     this.nBranchPercent.VisibleIndex = 5;
     this.nBranchPercent.Width = 82;
     //
     // nBasePercent
     //
     this.nBasePercent.Caption = "Min %";
     this.nBasePercent.FieldName = "nBasePercent";
     this.nBasePercent.Name = "nBasePercent";
     this.nBasePercent.Visible = true;
     this.nBasePercent.VisibleIndex = 6;
     this.nBasePercent.Width = 82;
     //
     // mBaseAmount
     //
     this.mBaseAmount.Caption = "Min Amount";
     this.mBaseAmount.FieldName = "mBaseAmount";
     this.mBaseAmount.Name = "mBaseAmount";
     this.mBaseAmount.Visible = true;
     this.mBaseAmount.VisibleIndex = 7;
     this.mBaseAmount.Width = 103;
     //
     // fCombine
     //
     this.fCombine.Caption = "Both";
     this.fCombine.FieldName = "fCombine";
     this.fCombine.Name = "fCombine";
     this.fCombine.Visible = true;
     this.fCombine.VisibleIndex = 8;
     this.fCombine.Width = 55;
     //
     // tabMethodTwo
     //
     this.tabMethodTwo.Controls.Add(this.btn_Range_Del);
     this.tabMethodTwo.Controls.Add(this.gridRange);
     this.tabMethodTwo.Controls.Add(this.btn_Range_Add);
     this.tabMethodTwo.Controls.Add(this.groupControl2);
     this.tabMethodTwo.Name = "tabMethodTwo";
     this.tabMethodTwo.Size = new System.Drawing.Size(948, 315);
     this.tabMethodTwo.Text = "Method Two";
     //
     // btn_Range_Del
     //
     this.btn_Range_Del.Appearance.Font = new System.Drawing.Font("Tahoma", 14.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((System.Byte)(0)));
     this.btn_Range_Del.Appearance.Options.UseFont = true;
     this.btn_Range_Del.Appearance.Options.UseTextOptions = true;
     this.btn_Range_Del.Appearance.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.btn_Range_Del.Appearance.TextOptions.VAlignment = DevExpress.Utils.VertAlignment.Top;
     this.btn_Range_Del.Appearance.TextOptions.WordWrap = DevExpress.Utils.WordWrap.Wrap;
     this.btn_Range_Del.ImageIndex = 1;
     this.btn_Range_Del.ImageList = this.imageList1;
     this.btn_Range_Del.Location = new System.Drawing.Point(48, 168);
     this.btn_Range_Del.Name = "btn_Range_Del";
     this.btn_Range_Del.Size = new System.Drawing.Size(38, 20);
     this.btn_Range_Del.TabIndex = 139;
     this.btn_Range_Del.Click += new System.EventHandler(this.btn_Range_Del_Click);
     //
     // gridRange
     //
     //
     // gridRange.EmbeddedNavigator
     //
     this.gridRange.EmbeddedNavigator.Name = "";
     this.gridRange.Location = new System.Drawing.Point(8, 192);
     this.gridRange.MainView = this.gridViewRange;
     this.gridRange.Name = "gridRange";
     this.gridRange.RepositoryItems.AddRange(new DevExpress.XtraEditors.Repository.RepositoryItem[] {
                                                                                                        this.chk_fCombine});
     this.gridRange.Size = new System.Drawing.Size(888, 120);
     this.gridRange.TabIndex = 137;
     this.gridRange.ViewCollection.AddRange(new DevExpress.XtraGrid.Views.Base.BaseView[] {
                                                                                              this.gridViewRange});
     //
     // gridViewRange
     //
     this.gridViewRange.Columns.AddRange(new DevExpress.XtraGrid.Columns.GridColumn[] {
                                                                                          this.mRangeSalesFrom,
                                                                                          this.mRangeSalesTo,
                                                                                          this.nRangePercent,
                                                                                          this.mRangeAmt,
                                                                                          this.fCombine_Range});
     this.gridViewRange.GridControl = this.gridRange;
     this.gridViewRange.Name = "gridViewRange";
     this.gridViewRange.OptionsBehavior.AllowIncrementalSearch = true;
     this.gridViewRange.OptionsCustomization.AllowFilter = false;
     this.gridViewRange.OptionsSelection.MultiSelect = true;
     this.gridViewRange.OptionsView.ShowGroupPanel = false;
     this.gridViewRange.LostFocus += new System.EventHandler(this.gridViewRange_LostFocus);
     //
     // mRangeSalesFrom
     //
     this.mRangeSalesFrom.Caption = "Sales From $";
     this.mRangeSalesFrom.FieldName = "mRangeSalesFrom";
     this.mRangeSalesFrom.Name = "mRangeSalesFrom";
     this.mRangeSalesFrom.Visible = true;
     this.mRangeSalesFrom.VisibleIndex = 0;
     this.mRangeSalesFrom.Width = 195;
     //
     // mRangeSalesTo
     //
     this.mRangeSalesTo.Caption = "Sales To $";
     this.mRangeSalesTo.FieldName = "mRangeSalesTo";
     this.mRangeSalesTo.Name = "mRangeSalesTo";
     this.mRangeSalesTo.Visible = true;
     this.mRangeSalesTo.VisibleIndex = 1;
     this.mRangeSalesTo.Width = 190;
     //
     // nRangePercent
     //
     this.nRangePercent.Caption = "Reward % ";
     this.nRangePercent.FieldName = "nRangePercent";
     this.nRangePercent.Name = "nRangePercent";
     this.nRangePercent.Visible = true;
     this.nRangePercent.VisibleIndex = 2;
     this.nRangePercent.Width = 175;
     //
     // mRangeAmt
     //
     this.mRangeAmt.Caption = "Reward Amount";
     this.mRangeAmt.FieldName = "mRangeAmt";
     this.mRangeAmt.Name = "mRangeAmt";
     this.mRangeAmt.Visible = true;
     this.mRangeAmt.VisibleIndex = 3;
     this.mRangeAmt.Width = 222;
     //
     // fCombine_Range
     //
     this.fCombine_Range.Caption = "Both";
     this.fCombine_Range.ColumnEdit = this.chk_fCombine;
     this.fCombine_Range.FieldName = "fCombine ";
     this.fCombine_Range.Name = "fCombine_Range";
     this.fCombine_Range.Visible = true;
     this.fCombine_Range.VisibleIndex = 4;
     this.fCombine_Range.Width = 92;
     //
     // chk_fCombine
     //
     this.chk_fCombine.AutoHeight = false;
     this.chk_fCombine.Name = "chk_fCombine";
     //
     // btn_Range_Add
     //
     this.btn_Range_Add.Appearance.Font = new System.Drawing.Font("Tahoma", 14.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((System.Byte)(0)));
     this.btn_Range_Add.Appearance.Options.UseFont = true;
     this.btn_Range_Add.Appearance.Options.UseTextOptions = true;
     this.btn_Range_Add.Appearance.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.btn_Range_Add.Appearance.TextOptions.VAlignment = DevExpress.Utils.VertAlignment.Top;
     this.btn_Range_Add.Appearance.TextOptions.WordWrap = DevExpress.Utils.WordWrap.Wrap;
     this.btn_Range_Add.ImageIndex = 0;
     this.btn_Range_Add.ImageList = this.imageList1;
     this.btn_Range_Add.ImeMode = System.Windows.Forms.ImeMode.On;
     this.btn_Range_Add.Location = new System.Drawing.Point(8, 168);
     this.btn_Range_Add.Name = "btn_Range_Add";
     this.btn_Range_Add.Size = new System.Drawing.Size(38, 20);
     this.btn_Range_Add.TabIndex = 140;
     this.btn_Range_Add.Click += new System.EventHandler(this.btn_Range_Add_Click);
     //
     // groupControl2
     //
     this.groupControl2.BorderStyle = DevExpress.XtraEditors.Controls.BorderStyles.Simple;
     this.groupControl2.Controls.Add(this.grid2Category2);
     this.groupControl2.Controls.Add(this.grid2Category);
     this.groupControl2.Controls.Add(this.btn2Category_Add);
     this.groupControl2.Controls.Add(this.btn2Category_Del);
     this.groupControl2.Controls.Add(this.btn2Category_DelAll);
     this.groupControl2.Controls.Add(this.btn2Category_AddAll);
     this.groupControl2.Location = new System.Drawing.Point(0, 8);
     this.groupControl2.LookAndFeel.Style = DevExpress.LookAndFeel.LookAndFeelStyle.Skin;
     this.groupControl2.LookAndFeel.UseDefaultLookAndFeel = false;
     this.groupControl2.Name = "groupControl2";
     this.groupControl2.ShowCaption = false;
     this.groupControl2.Size = new System.Drawing.Size(896, 160);
     this.groupControl2.TabIndex = 8;
     this.groupControl2.Text = "groupControl1";
     //
     // grid2Category2
     //
     //
     // grid2Category2.EmbeddedNavigator
     //
     this.grid2Category2.EmbeddedNavigator.Name = "";
     this.grid2Category2.Location = new System.Drawing.Point(456, 8);
     this.grid2Category2.MainView = this.gridView2Category2;
     this.grid2Category2.Name = "grid2Category2";
     this.grid2Category2.Size = new System.Drawing.Size(376, 144);
     this.grid2Category2.TabIndex = 29;
     this.grid2Category2.ViewCollection.AddRange(new DevExpress.XtraGrid.Views.Base.BaseView[] {
                                                                                                   this.gridView2Category2});
     //
     // gridView2Category2
     //
     this.gridView2Category2.Columns.AddRange(new DevExpress.XtraGrid.Columns.GridColumn[] {
                                                                                               this.gridColumn18,
                                                                                               this.gridColumn19});
     this.gridView2Category2.GridControl = this.grid2Category2;
     this.gridView2Category2.HorzScrollVisibility = DevExpress.XtraGrid.Views.Base.ScrollVisibility.Never;
     this.gridView2Category2.Name = "gridView2Category2";
     this.gridView2Category2.OptionsBehavior.AllowIncrementalSearch = true;
     this.gridView2Category2.OptionsCustomization.AllowFilter = false;
     this.gridView2Category2.OptionsSelection.MultiSelect = true;
     this.gridView2Category2.OptionsView.ShowGroupPanel = false;
     this.gridView2Category2.SortInfo.AddRange(new DevExpress.XtraGrid.Columns.GridColumnSortInfo[] {
                                                                                                        new DevExpress.XtraGrid.Columns.GridColumnSortInfo(this.gridColumn18, DevExpress.Data.ColumnSortOrder.Ascending)});
     this.gridView2Category2.SynchronizeClones = false;
     this.gridView2Category2.FocusedRowChanged += new DevExpress.XtraGrid.Views.Base.FocusedRowChangedEventHandler(this.gridRange_FocusedRowChanged);
     //
     // gridColumn18
     //
     this.gridColumn18.Caption = "CategoryID";
     this.gridColumn18.FieldName = "nCategoryID";
     this.gridColumn18.Name = "gridColumn18";
     this.gridColumn18.OptionsColumn.AllowEdit = false;
     this.gridColumn18.Visible = true;
     this.gridColumn18.VisibleIndex = 0;
     this.gridColumn18.Width = 78;
     //
     // gridColumn19
     //
     this.gridColumn19.Caption = "Description";
     this.gridColumn19.FieldName = "strDescription";
     this.gridColumn19.Name = "gridColumn19";
     this.gridColumn19.OptionsColumn.AllowEdit = false;
     this.gridColumn19.Visible = true;
     this.gridColumn19.VisibleIndex = 1;
     this.gridColumn19.Width = 171;
     //
     // grid2Category
     //
     //
     // grid2Category.EmbeddedNavigator
     //
     this.grid2Category.EmbeddedNavigator.Name = "";
     this.grid2Category.Location = new System.Drawing.Point(8, 8);
     this.grid2Category.MainView = this.gridView2Category;
     this.grid2Category.Name = "grid2Category";
     this.grid2Category.Size = new System.Drawing.Size(360, 144);
     this.grid2Category.TabIndex = 24;
     this.grid2Category.ViewCollection.AddRange(new DevExpress.XtraGrid.Views.Base.BaseView[] {
                                                                                                  this.gridView2Category});
     //
     // gridView2Category
     //
     this.gridView2Category.Columns.AddRange(new DevExpress.XtraGrid.Columns.GridColumn[] {
                                                                                              this.gridColumn21,
                                                                                              this.gridColumn22});
     this.gridView2Category.GridControl = this.grid2Category;
     this.gridView2Category.Name = "gridView2Category";
     this.gridView2Category.OptionsBehavior.AllowIncrementalSearch = true;
     this.gridView2Category.OptionsBehavior.Editable = false;
     this.gridView2Category.OptionsCustomization.AllowFilter = false;
     this.gridView2Category.OptionsSelection.MultiSelect = true;
     this.gridView2Category.OptionsView.ShowGroupPanel = false;
     this.gridView2Category.SortInfo.AddRange(new DevExpress.XtraGrid.Columns.GridColumnSortInfo[] {
                                                                                                       new DevExpress.XtraGrid.Columns.GridColumnSortInfo(this.gridColumn21, DevExpress.Data.ColumnSortOrder.Ascending)});
     //
     // gridColumn21
     //
     this.gridColumn21.Caption = "CategoryID";
     this.gridColumn21.FieldName = "nCategoryID";
     this.gridColumn21.Name = "gridColumn21";
     this.gridColumn21.OptionsColumn.AllowSort = DevExpress.Utils.DefaultBoolean.False;
     this.gridColumn21.Visible = true;
     this.gridColumn21.VisibleIndex = 0;
     this.gridColumn21.Width = 78;
     //
     // gridColumn22
     //
     this.gridColumn22.Caption = "Description";
     this.gridColumn22.FieldName = "strDescription";
     this.gridColumn22.Name = "gridColumn22";
     this.gridColumn22.Visible = true;
     this.gridColumn22.VisibleIndex = 1;
     this.gridColumn22.Width = 268;
     //
     // btn2Category_Add
     //
     this.btn2Category_Add.ButtonStyle = DevExpress.XtraEditors.Controls.BorderStyles.Simple;
     this.btn2Category_Add.Location = new System.Drawing.Point(392, 16);
     this.btn2Category_Add.Name = "btn2Category_Add";
     this.btn2Category_Add.Size = new System.Drawing.Size(32, 24);
     this.btn2Category_Add.TabIndex = 25;
     this.btn2Category_Add.Text = ">";
     this.btn2Category_Add.Click += new System.EventHandler(this.btn2Category_Add_Click);
     //
     // btn2Category_Del
     //
     this.btn2Category_Del.ButtonStyle = DevExpress.XtraEditors.Controls.BorderStyles.Simple;
     this.btn2Category_Del.Location = new System.Drawing.Point(392, 112);
     this.btn2Category_Del.Name = "btn2Category_Del";
     this.btn2Category_Del.Size = new System.Drawing.Size(32, 24);
     this.btn2Category_Del.TabIndex = 28;
     this.btn2Category_Del.Text = "<";
     this.btn2Category_Del.Click += new System.EventHandler(this.btn2Category_Del_Click);
     //
     // btn2Category_DelAll
     //
     this.btn2Category_DelAll.ButtonStyle = DevExpress.XtraEditors.Controls.BorderStyles.Simple;
     this.btn2Category_DelAll.Location = new System.Drawing.Point(392, 48);
     this.btn2Category_DelAll.Name = "btn2Category_DelAll";
     this.btn2Category_DelAll.Size = new System.Drawing.Size(32, 24);
     this.btn2Category_DelAll.TabIndex = 27;
     this.btn2Category_DelAll.Text = "<<";
     this.btn2Category_DelAll.Click += new System.EventHandler(this.btn2Category_DelAll_Click);
     //
     // btn2Category_AddAll
     //
     this.btn2Category_AddAll.ButtonStyle = DevExpress.XtraEditors.Controls.BorderStyles.Simple;
     this.btn2Category_AddAll.Location = new System.Drawing.Point(392, 80);
     this.btn2Category_AddAll.Name = "btn2Category_AddAll";
     this.btn2Category_AddAll.Size = new System.Drawing.Size(32, 24);
     this.btn2Category_AddAll.TabIndex = 26;
     this.btn2Category_AddAll.Text = ">>";
     this.btn2Category_AddAll.Click += new System.EventHandler(this.btn2Category_AddAll_Click);
     //
     // tabMethodThree
     //
     this.tabMethodThree.Controls.Add(this.btn_Mgr_Del);
     this.tabMethodThree.Controls.Add(this.gridMgr);
     this.tabMethodThree.Controls.Add(this.btn_Mgr_add);
     this.tabMethodThree.Controls.Add(this.groupControl3);
     this.tabMethodThree.Name = "tabMethodThree";
     this.tabMethodThree.Size = new System.Drawing.Size(948, 315);
     this.tabMethodThree.Text = "Method Three";
     //
     // btn_Mgr_Del
     //
     this.btn_Mgr_Del.Appearance.Font = new System.Drawing.Font("Tahoma", 14.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((System.Byte)(0)));
     this.btn_Mgr_Del.Appearance.Options.UseFont = true;
     this.btn_Mgr_Del.Appearance.Options.UseTextOptions = true;
     this.btn_Mgr_Del.Appearance.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.btn_Mgr_Del.Appearance.TextOptions.VAlignment = DevExpress.Utils.VertAlignment.Top;
     this.btn_Mgr_Del.Appearance.TextOptions.WordWrap = DevExpress.Utils.WordWrap.Wrap;
     this.btn_Mgr_Del.ImageIndex = 1;
     this.btn_Mgr_Del.ImageList = this.imageList1;
     this.btn_Mgr_Del.Location = new System.Drawing.Point(48, 160);
     this.btn_Mgr_Del.Name = "btn_Mgr_Del";
     this.btn_Mgr_Del.Size = new System.Drawing.Size(38, 20);
     this.btn_Mgr_Del.TabIndex = 139;
     this.btn_Mgr_Del.Click += new System.EventHandler(this.btn_Mgr_Del_Click);
     //
     // gridMgr
     //
     //
     // gridMgr.EmbeddedNavigator
     //
     this.gridMgr.EmbeddedNavigator.Name = "";
     this.gridMgr.Location = new System.Drawing.Point(8, 184);
     this.gridMgr.MainView = this.gridViewMgr;
     this.gridMgr.Name = "gridMgr";
     this.gridMgr.RepositoryItems.AddRange(new DevExpress.XtraEditors.Repository.RepositoryItem[] {
                                                                                                      this.chk_fCombine_Mgr});
     this.gridMgr.Size = new System.Drawing.Size(888, 120);
     this.gridMgr.TabIndex = 137;
     this.gridMgr.ViewCollection.AddRange(new DevExpress.XtraGrid.Views.Base.BaseView[] {
                                                                                            this.gridViewMgr});
     //
     // gridViewMgr
     //
     this.gridViewMgr.Columns.AddRange(new DevExpress.XtraGrid.Columns.GridColumn[] {
                                                                                        this.nBranchPercentFrom,
                                                                                        this.nBranchPercentTo,
                                                                                        this.nMgrPercent,
                                                                                        this.dMgrAmt,
                                                                                        this.fCombine_Mgr});
     this.gridViewMgr.GridControl = this.gridMgr;
     this.gridViewMgr.Name = "gridViewMgr";
     this.gridViewMgr.OptionsBehavior.AllowIncrementalSearch = true;
     this.gridViewMgr.OptionsCustomization.AllowFilter = false;
     this.gridViewMgr.OptionsSelection.MultiSelect = true;
     this.gridViewMgr.OptionsView.ShowGroupPanel = false;
     this.gridViewMgr.LostFocus += new System.EventHandler(this.gridViewMgr_LostFocus);
     //
     // nBranchPercentFrom
     //
     this.nBranchPercentFrom.Caption = "Branch From %";
     this.nBranchPercentFrom.FieldName = "nBranchPercentFrom";
     this.nBranchPercentFrom.Name = "nBranchPercentFrom";
     this.nBranchPercentFrom.Visible = true;
     this.nBranchPercentFrom.VisibleIndex = 0;
     this.nBranchPercentFrom.Width = 117;
     //
     // nBranchPercentTo
     //
     this.nBranchPercentTo.Caption = "Branch To %";
     this.nBranchPercentTo.FieldName = "nBranchPercentTo";
     this.nBranchPercentTo.Name = "nBranchPercentTo";
     this.nBranchPercentTo.Visible = true;
     this.nBranchPercentTo.VisibleIndex = 1;
     this.nBranchPercentTo.Width = 114;
     //
     // nMgrPercent
     //
     this.nMgrPercent.Caption = "Reward %";
     this.nMgrPercent.FieldName = "nMgrPercent";
     this.nMgrPercent.Name = "nMgrPercent";
     this.nMgrPercent.Visible = true;
     this.nMgrPercent.VisibleIndex = 2;
     this.nMgrPercent.Width = 105;
     //
     // dMgrAmt
     //
     this.dMgrAmt.Caption = "Min. Amount";
     this.dMgrAmt.FieldName = "dMgrAmt";
     this.dMgrAmt.Name = "dMgrAmt";
     this.dMgrAmt.Visible = true;
     this.dMgrAmt.VisibleIndex = 3;
     this.dMgrAmt.Width = 103;
     //
     // fCombine_Mgr
     //
     this.fCombine_Mgr.Caption = "Both";
     this.fCombine_Mgr.ColumnEdit = this.chk_fCombine_Mgr;
     this.fCombine_Mgr.FieldName = "fCombine";
     this.fCombine_Mgr.Name = "fCombine_Mgr";
     this.fCombine_Mgr.Visible = true;
     this.fCombine_Mgr.VisibleIndex = 4;
     this.fCombine_Mgr.Width = 113;
     //
     // chk_fCombine_Mgr
     //
     this.chk_fCombine_Mgr.AutoHeight = false;
     this.chk_fCombine_Mgr.Name = "chk_fCombine_Mgr";
     //
     // btn_Mgr_add
     //
     this.btn_Mgr_add.Appearance.Font = new System.Drawing.Font("Tahoma", 14.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((System.Byte)(0)));
     this.btn_Mgr_add.Appearance.Options.UseFont = true;
     this.btn_Mgr_add.Appearance.Options.UseTextOptions = true;
     this.btn_Mgr_add.Appearance.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.btn_Mgr_add.Appearance.TextOptions.VAlignment = DevExpress.Utils.VertAlignment.Top;
     this.btn_Mgr_add.Appearance.TextOptions.WordWrap = DevExpress.Utils.WordWrap.Wrap;
     this.btn_Mgr_add.ImageIndex = 0;
     this.btn_Mgr_add.ImageList = this.imageList1;
     this.btn_Mgr_add.ImeMode = System.Windows.Forms.ImeMode.On;
     this.btn_Mgr_add.Location = new System.Drawing.Point(8, 160);
     this.btn_Mgr_add.Name = "btn_Mgr_add";
     this.btn_Mgr_add.Size = new System.Drawing.Size(38, 20);
     this.btn_Mgr_add.TabIndex = 140;
     this.btn_Mgr_add.Click += new System.EventHandler(this.btn_Mgr_add_Click);
     //
     // groupControl3
     //
     this.groupControl3.BorderStyle = DevExpress.XtraEditors.Controls.BorderStyles.Simple;
     this.groupControl3.Controls.Add(this.grid3Category2);
     this.groupControl3.Controls.Add(this.grid3Category);
     this.groupControl3.Controls.Add(this.btn3Category_Add);
     this.groupControl3.Controls.Add(this.btn3Category_Del);
     this.groupControl3.Controls.Add(this.btn3Category_DelAll);
     this.groupControl3.Controls.Add(this.btn3Category_AddAll);
     this.groupControl3.Location = new System.Drawing.Point(0, 8);
     this.groupControl3.LookAndFeel.Style = DevExpress.LookAndFeel.LookAndFeelStyle.Skin;
     this.groupControl3.LookAndFeel.UseDefaultLookAndFeel = false;
     this.groupControl3.Name = "groupControl3";
     this.groupControl3.ShowCaption = false;
     this.groupControl3.Size = new System.Drawing.Size(896, 152);
     this.groupControl3.TabIndex = 8;
     this.groupControl3.Text = "groupControl1";
     //
     // grid3Category2
     //
     //
     // grid3Category2.EmbeddedNavigator
     //
     this.grid3Category2.EmbeddedNavigator.Name = "";
     this.grid3Category2.Location = new System.Drawing.Point(456, 8);
     this.grid3Category2.MainView = this.gridView3Category2;
     this.grid3Category2.Name = "grid3Category2";
     this.grid3Category2.Size = new System.Drawing.Size(376, 136);
     this.grid3Category2.TabIndex = 29;
     this.grid3Category2.ViewCollection.AddRange(new DevExpress.XtraGrid.Views.Base.BaseView[] {
                                                                                                   this.gridView3Category2});
     //
     // gridView3Category2
     //
     this.gridView3Category2.Columns.AddRange(new DevExpress.XtraGrid.Columns.GridColumn[] {
                                                                                               this.gridColumn23,
                                                                                               this.gridColumn24,
                                                                                               this.gridColumn25});
     this.gridView3Category2.GridControl = this.grid3Category2;
     this.gridView3Category2.Name = "gridView3Category2";
     this.gridView3Category2.OptionsBehavior.AllowIncrementalSearch = true;
     this.gridView3Category2.OptionsCustomization.AllowFilter = false;
     this.gridView3Category2.OptionsSelection.MultiSelect = true;
     this.gridView3Category2.OptionsView.ShowGroupPanel = false;
     this.gridView3Category2.SortInfo.AddRange(new DevExpress.XtraGrid.Columns.GridColumnSortInfo[] {
                                                                                                        new DevExpress.XtraGrid.Columns.GridColumnSortInfo(this.gridColumn23, DevExpress.Data.ColumnSortOrder.Ascending)});
     this.gridView3Category2.SynchronizeClones = false;
     this.gridView3Category2.FocusedRowChanged += new DevExpress.XtraGrid.Views.Base.FocusedRowChangedEventHandler(this.gridManager_FocusedRowChanged);
     //
     // gridColumn23
     //
     this.gridColumn23.Caption = "CategoryID";
     this.gridColumn23.FieldName = "nCategoryID";
     this.gridColumn23.Name = "gridColumn23";
     this.gridColumn23.OptionsColumn.AllowEdit = false;
     this.gridColumn23.Visible = true;
     this.gridColumn23.VisibleIndex = 0;
     this.gridColumn23.Width = 78;
     //
     // gridColumn24
     //
     this.gridColumn24.Caption = "Description";
     this.gridColumn24.FieldName = "strDescription";
     this.gridColumn24.Name = "gridColumn24";
     this.gridColumn24.OptionsColumn.AllowEdit = false;
     this.gridColumn24.Visible = true;
     this.gridColumn24.VisibleIndex = 1;
     this.gridColumn24.Width = 171;
     //
     // gridColumn25
     //
     this.gridColumn25.Caption = "%";
     this.gridColumn25.DisplayFormat.FormatType = DevExpress.Utils.FormatType.Numeric;
     this.gridColumn25.FieldName = "Percentage";
     this.gridColumn25.Name = "gridColumn25";
     this.gridColumn25.Width = 73;
     //
     // grid3Category
     //
     //
     // grid3Category.EmbeddedNavigator
     //
     this.grid3Category.EmbeddedNavigator.Name = "";
     this.grid3Category.Location = new System.Drawing.Point(8, 8);
     this.grid3Category.MainView = this.gridView3Category;
     this.grid3Category.Name = "grid3Category";
     this.grid3Category.Size = new System.Drawing.Size(360, 136);
     this.grid3Category.TabIndex = 24;
     this.grid3Category.ViewCollection.AddRange(new DevExpress.XtraGrid.Views.Base.BaseView[] {
                                                                                                  this.gridView3Category});
     //
     // gridView3Category
     //
     this.gridView3Category.Columns.AddRange(new DevExpress.XtraGrid.Columns.GridColumn[] {
                                                                                              this.gridColumn26,
                                                                                              this.gridColumn27});
     this.gridView3Category.GridControl = this.grid3Category;
     this.gridView3Category.Name = "gridView3Category";
     this.gridView3Category.OptionsBehavior.AllowIncrementalSearch = true;
     this.gridView3Category.OptionsBehavior.Editable = false;
     this.gridView3Category.OptionsCustomization.AllowFilter = false;
     this.gridView3Category.OptionsSelection.MultiSelect = true;
     this.gridView3Category.OptionsView.ShowGroupPanel = false;
     this.gridView3Category.SortInfo.AddRange(new DevExpress.XtraGrid.Columns.GridColumnSortInfo[] {
                                                                                                       new DevExpress.XtraGrid.Columns.GridColumnSortInfo(this.gridColumn26, DevExpress.Data.ColumnSortOrder.Ascending)});
     //
     // gridColumn26
     //
     this.gridColumn26.Caption = "CategoryID";
     this.gridColumn26.FieldName = "nCategoryID";
     this.gridColumn26.Name = "gridColumn26";
     this.gridColumn26.OptionsColumn.AllowSort = DevExpress.Utils.DefaultBoolean.False;
     this.gridColumn26.Visible = true;
     this.gridColumn26.VisibleIndex = 0;
     this.gridColumn26.Width = 78;
     //
     // gridColumn27
     //
     this.gridColumn27.Caption = "Description";
     this.gridColumn27.FieldName = "strDescription";
     this.gridColumn27.Name = "gridColumn27";
     this.gridColumn27.Visible = true;
     this.gridColumn27.VisibleIndex = 1;
     this.gridColumn27.Width = 268;
     //
     // btn3Category_Add
     //
     this.btn3Category_Add.ButtonStyle = DevExpress.XtraEditors.Controls.BorderStyles.Simple;
     this.btn3Category_Add.Location = new System.Drawing.Point(392, 16);
     this.btn3Category_Add.Name = "btn3Category_Add";
     this.btn3Category_Add.Size = new System.Drawing.Size(32, 24);
     this.btn3Category_Add.TabIndex = 25;
     this.btn3Category_Add.Text = ">";
     this.btn3Category_Add.Click += new System.EventHandler(this.btn3Category_Add_Click);
     //
     // btn3Category_Del
     //
     this.btn3Category_Del.ButtonStyle = DevExpress.XtraEditors.Controls.BorderStyles.Simple;
     this.btn3Category_Del.Location = new System.Drawing.Point(392, 112);
     this.btn3Category_Del.Name = "btn3Category_Del";
     this.btn3Category_Del.Size = new System.Drawing.Size(32, 24);
     this.btn3Category_Del.TabIndex = 28;
     this.btn3Category_Del.Text = "<";
     this.btn3Category_Del.Click += new System.EventHandler(this.btn3Category_Del_Click);
     //
     // btn3Category_DelAll
     //
     this.btn3Category_DelAll.ButtonStyle = DevExpress.XtraEditors.Controls.BorderStyles.Simple;
     this.btn3Category_DelAll.Location = new System.Drawing.Point(392, 48);
     this.btn3Category_DelAll.Name = "btn3Category_DelAll";
     this.btn3Category_DelAll.Size = new System.Drawing.Size(32, 24);
     this.btn3Category_DelAll.TabIndex = 27;
     this.btn3Category_DelAll.Text = "<<";
     this.btn3Category_DelAll.Click += new System.EventHandler(this.btn3Category_DelAll_Click);
     //
     // btn3Category_AddAll
     //
     this.btn3Category_AddAll.ButtonStyle = DevExpress.XtraEditors.Controls.BorderStyles.Simple;
     this.btn3Category_AddAll.Location = new System.Drawing.Point(392, 80);
     this.btn3Category_AddAll.Name = "btn3Category_AddAll";
     this.btn3Category_AddAll.Size = new System.Drawing.Size(32, 24);
     this.btn3Category_AddAll.TabIndex = 26;
     this.btn3Category_AddAll.Text = ">>";
     this.btn3Category_AddAll.Click += new System.EventHandler(this.btn3Category_AddAll_Click);
     //
     // xtraTabPage1
     //
     this.xtraTabPage1.Controls.Add(this.btn_Add2);
     this.xtraTabPage1.Controls.Add(this.btn_del2);
     this.xtraTabPage1.Controls.Add(this.gridControlMd_SalesCommisionSchemeEntries);
     this.xtraTabPage1.Name = "xtraTabPage1";
     this.xtraTabPage1.PageEnabled = false;
     this.xtraTabPage1.PageVisible = false;
     this.xtraTabPage1.Size = new System.Drawing.Size(948, 315);
     this.xtraTabPage1.Text = "xtraTabPage1";
     //
     // btn_Add2
     //
     this.btn_Add2.Appearance.Font = new System.Drawing.Font("Tahoma", 14.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((System.Byte)(0)));
     this.btn_Add2.Appearance.Options.UseFont = true;
     this.btn_Add2.Appearance.Options.UseTextOptions = true;
     this.btn_Add2.Appearance.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.btn_Add2.Appearance.TextOptions.VAlignment = DevExpress.Utils.VertAlignment.Top;
     this.btn_Add2.Appearance.TextOptions.WordWrap = DevExpress.Utils.WordWrap.Wrap;
     this.btn_Add2.ImageIndex = 0;
     this.btn_Add2.ImageList = this.imageList1;
     this.btn_Add2.ImeMode = System.Windows.Forms.ImeMode.On;
     this.btn_Add2.Location = new System.Drawing.Point(0, 8);
     this.btn_Add2.Name = "btn_Add2";
     this.btn_Add2.Size = new System.Drawing.Size(38, 20);
     this.btn_Add2.TabIndex = 138;
     //
     // btn_del2
     //
     this.btn_del2.Appearance.Font = new System.Drawing.Font("Tahoma", 14.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((System.Byte)(0)));
     this.btn_del2.Appearance.Options.UseFont = true;
     this.btn_del2.Appearance.Options.UseTextOptions = true;
     this.btn_del2.Appearance.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.btn_del2.Appearance.TextOptions.VAlignment = DevExpress.Utils.VertAlignment.Top;
     this.btn_del2.Appearance.TextOptions.WordWrap = DevExpress.Utils.WordWrap.Wrap;
     this.btn_del2.ImageIndex = 1;
     this.btn_del2.ImageList = this.imageList1;
     this.btn_del2.Location = new System.Drawing.Point(40, 8);
     this.btn_del2.Name = "btn_del2";
     this.btn_del2.Size = new System.Drawing.Size(38, 20);
     this.btn_del2.TabIndex = 137;
     //
     // gridControlMd_SalesCommisionSchemeEntries
     //
     this.gridControlMd_SalesCommisionSchemeEntries.Dock = System.Windows.Forms.DockStyle.Bottom;
     //
     // gridControlMd_SalesCommisionSchemeEntries.EmbeddedNavigator
     //
     this.gridControlMd_SalesCommisionSchemeEntries.EmbeddedNavigator.Name = "";
     this.gridControlMd_SalesCommisionSchemeEntries.Location = new System.Drawing.Point(0, 131);
     this.gridControlMd_SalesCommisionSchemeEntries.LookAndFeel.Style = DevExpress.LookAndFeel.LookAndFeelStyle.Skin;
     this.gridControlMd_SalesCommisionSchemeEntries.LookAndFeel.UseWindowsXPTheme = false;
     this.gridControlMd_SalesCommisionSchemeEntries.MainView = this.gridViewMd_SalesCommissionSchemeEntries;
     this.gridControlMd_SalesCommisionSchemeEntries.Name = "gridControlMd_SalesCommisionSchemeEntries";
     this.gridControlMd_SalesCommisionSchemeEntries.RepositoryItems.AddRange(new DevExpress.XtraEditors.Repository.RepositoryItem[] {
                                                                                                                                        this.repositoryItemComboBox1});
     this.gridControlMd_SalesCommisionSchemeEntries.Size = new System.Drawing.Size(948, 184);
     this.gridControlMd_SalesCommisionSchemeEntries.TabIndex = 96;
     this.gridControlMd_SalesCommisionSchemeEntries.ViewCollection.AddRange(new DevExpress.XtraGrid.Views.Base.BaseView[] {
                                                                                                                              this.gridViewMd_SalesCommissionSchemeEntries});
     //
     // gridViewMd_SalesCommissionSchemeEntries
     //
     this.gridViewMd_SalesCommissionSchemeEntries.Appearance.FocusedRow.BackColor = System.Drawing.Color.White;
     this.gridViewMd_SalesCommissionSchemeEntries.Columns.AddRange(new DevExpress.XtraGrid.Columns.GridColumn[] {
                                                                                                                    this.gridColumn17,
                                                                                                                    this.gridColumnMdSCE2,
                                                                                                                    this.gridColumnMdSCE3,
                                                                                                                    this.gridColumnMdSCE4,
                                                                                                                    this.gridColumnMdSCE5,
                                                                                                                    this.gridColumnMdSCE6,
                                                                                                                    this.gridColumnMdSCE7,
                                                                                                                    this.gridColumnMdSCE8,
                                                                                                                    this.gridColumnMdSCE9,
                                                                                                                    this.gridColumnMdSCE10,
                                                                                                                    this.gridColumnMdSCE11,
                                                                                                                    this.gridColumnMdSCE12,
                                                                                                                    this.gridColumnMdSCE13,
                                                                                                                    this.gridColumnMdSCE14,
                                                                                                                    this.gridColumnMdSCE15,
                                                                                                                    this.gridColumnMdSCE16,
                                                                                                                    this.gridColumnMdSCE17,
                                                                                                                    this.gridColumnMdSCE18,
                                                                                                                    this.gridColumnMdSCE19,
                                                                                                                    this.gridColumnMdSCE20,
                                                                                                                    this.gridColumnMdSCE21,
                                                                                                                    this.gridColumn1,
                                                                                                                    this.gridColumn2,
                                                                                                                    this.gridColumn3,
                                                                                                                    this.gridColumn4,
                                                                                                                    this.gridColumn5,
                                                                                                                    this.gridColumn6,
                                                                                                                    this.gridColumn7,
                                                                                                                    this.gridColumn8,
                                                                                                                    this.gridColumn9,
                                                                                                                    this.gridColumn10,
                                                                                                                    this.gridColumn11,
                                                                                                                    this.gridColumn12,
                                                                                                                    this.gridColumn13,
                                                                                                                    this.gridColumn14,
                                                                                                                    this.gridColumn15,
                                                                                                                    this.gridColumn16});
     this.gridViewMd_SalesCommissionSchemeEntries.GridControl = this.gridControlMd_SalesCommisionSchemeEntries;
     this.gridViewMd_SalesCommissionSchemeEntries.Name = "gridViewMd_SalesCommissionSchemeEntries";
     this.gridViewMd_SalesCommissionSchemeEntries.OptionsCustomization.AllowFilter = false;
     this.gridViewMd_SalesCommissionSchemeEntries.OptionsCustomization.AllowSort = false;
     this.gridViewMd_SalesCommissionSchemeEntries.OptionsView.ColumnAutoWidth = false;
     this.gridViewMd_SalesCommissionSchemeEntries.OptionsView.ShowGroupPanel = false;
     //
     // gridColumn17
     //
     this.gridColumn17.Caption = "Priority ID";
     this.gridColumn17.FieldName = "nPriorityID";
     this.gridColumn17.Name = "gridColumn17";
     this.gridColumn17.Visible = true;
     this.gridColumn17.VisibleIndex = 0;
     //
     // gridColumnMdSCE2
     //
     this.gridColumnMdSCE2.AppearanceCell.BackColor = System.Drawing.SystemColors.InactiveCaption;
     this.gridColumnMdSCE2.AppearanceCell.Options.UseBackColor = true;
     this.gridColumnMdSCE2.Caption = "Fitness Pkg %";
     this.gridColumnMdSCE2.DisplayFormat.FormatString = "f";
     this.gridColumnMdSCE2.DisplayFormat.FormatType = DevExpress.Utils.FormatType.Numeric;
     this.gridColumnMdSCE2.FieldName = "nFitnessPackageBranchTargetPercent";
     this.gridColumnMdSCE2.MinWidth = 30;
     this.gridColumnMdSCE2.Name = "gridColumnMdSCE2";
     this.gridColumnMdSCE2.Visible = true;
     this.gridColumnMdSCE2.VisibleIndex = 1;
     this.gridColumnMdSCE2.Width = 80;
     //
     // gridColumnMdSCE3
     //
     this.gridColumnMdSCE3.AppearanceCell.BackColor = System.Drawing.SystemColors.InactiveCaption;
     this.gridColumnMdSCE3.AppearanceCell.Options.UseBackColor = true;
     this.gridColumnMdSCE3.Caption = "Fitness Prod %";
     this.gridColumnMdSCE3.DisplayFormat.FormatString = "f";
     this.gridColumnMdSCE3.DisplayFormat.FormatType = DevExpress.Utils.FormatType.Numeric;
     this.gridColumnMdSCE3.FieldName = "nFitnessProductBranchTargetPercent";
     this.gridColumnMdSCE3.MinWidth = 30;
     this.gridColumnMdSCE3.Name = "gridColumnMdSCE3";
     this.gridColumnMdSCE3.Visible = true;
     this.gridColumnMdSCE3.VisibleIndex = 2;
     this.gridColumnMdSCE3.Width = 80;
     //
     // gridColumnMdSCE4
     //
     this.gridColumnMdSCE4.AppearanceCell.BackColor = System.Drawing.SystemColors.InactiveCaption;
     this.gridColumnMdSCE4.AppearanceCell.Options.UseBackColor = true;
     this.gridColumnMdSCE4.Caption = "SPA Pkg %";
     this.gridColumnMdSCE4.DisplayFormat.FormatString = "f";
     this.gridColumnMdSCE4.DisplayFormat.FormatType = DevExpress.Utils.FormatType.Numeric;
     this.gridColumnMdSCE4.FieldName = "nSPAPackageBranchTargetPercent";
     this.gridColumnMdSCE4.MinWidth = 30;
     this.gridColumnMdSCE4.Name = "gridColumnMdSCE4";
     this.gridColumnMdSCE4.Visible = true;
     this.gridColumnMdSCE4.VisibleIndex = 3;
     this.gridColumnMdSCE4.Width = 80;
     //
     // gridColumnMdSCE5
     //
     this.gridColumnMdSCE5.AppearanceCell.BackColor = System.Drawing.SystemColors.InactiveCaption;
     this.gridColumnMdSCE5.AppearanceCell.Options.UseBackColor = true;
     this.gridColumnMdSCE5.Caption = "SPA Prod %";
     this.gridColumnMdSCE5.DisplayFormat.FormatString = "f";
     this.gridColumnMdSCE5.DisplayFormat.FormatType = DevExpress.Utils.FormatType.Numeric;
     this.gridColumnMdSCE5.FieldName = "nSPAProductBranchTargetPercent";
     this.gridColumnMdSCE5.Name = "gridColumnMdSCE5";
     this.gridColumnMdSCE5.Visible = true;
     this.gridColumnMdSCE5.VisibleIndex = 4;
     this.gridColumnMdSCE5.Width = 80;
     //
     // gridColumnMdSCE6
     //
     this.gridColumnMdSCE6.AppearanceCell.BackColor = System.Drawing.SystemColors.InactiveCaption;
     this.gridColumnMdSCE6.AppearanceCell.Options.UseBackColor = true;
     this.gridColumnMdSCE6.Caption = "PT Pkg %";
     this.gridColumnMdSCE6.DisplayFormat.FormatString = "f";
     this.gridColumnMdSCE6.DisplayFormat.FormatType = DevExpress.Utils.FormatType.Numeric;
     this.gridColumnMdSCE6.FieldName = "nPTPackageBranchTargetPercent";
     this.gridColumnMdSCE6.Name = "gridColumnMdSCE6";
     this.gridColumnMdSCE6.Visible = true;
     this.gridColumnMdSCE6.VisibleIndex = 5;
     this.gridColumnMdSCE6.Width = 60;
     //
     // gridColumnMdSCE7
     //
     this.gridColumnMdSCE7.AppearanceCell.BackColor = System.Drawing.Color.FromArgb(((System.Byte)(255)), ((System.Byte)(255)), ((System.Byte)(192)));
     this.gridColumnMdSCE7.AppearanceCell.Options.UseBackColor = true;
     this.gridColumnMdSCE7.Caption = "Fitness Pkg %";
     this.gridColumnMdSCE7.DisplayFormat.FormatString = "f";
     this.gridColumnMdSCE7.DisplayFormat.FormatType = DevExpress.Utils.FormatType.Numeric;
     this.gridColumnMdSCE7.FieldName = "nFitnessPackageIndTargetPercent";
     this.gridColumnMdSCE7.Name = "gridColumnMdSCE7";
     this.gridColumnMdSCE7.Visible = true;
     this.gridColumnMdSCE7.VisibleIndex = 6;
     this.gridColumnMdSCE7.Width = 80;
     //
     // gridColumnMdSCE8
     //
     this.gridColumnMdSCE8.AppearanceCell.BackColor = System.Drawing.Color.FromArgb(((System.Byte)(255)), ((System.Byte)(255)), ((System.Byte)(192)));
     this.gridColumnMdSCE8.AppearanceCell.Options.UseBackColor = true;
     this.gridColumnMdSCE8.Caption = "Fitness Prod %";
     this.gridColumnMdSCE8.DisplayFormat.FormatString = "f";
     this.gridColumnMdSCE8.DisplayFormat.FormatType = DevExpress.Utils.FormatType.Numeric;
     this.gridColumnMdSCE8.FieldName = "nFitnessProductIndTargetPercent";
     this.gridColumnMdSCE8.Name = "gridColumnMdSCE8";
     this.gridColumnMdSCE8.Visible = true;
     this.gridColumnMdSCE8.VisibleIndex = 7;
     this.gridColumnMdSCE8.Width = 80;
     //
     // gridColumnMdSCE9
     //
     this.gridColumnMdSCE9.AppearanceCell.BackColor = System.Drawing.Color.FromArgb(((System.Byte)(255)), ((System.Byte)(255)), ((System.Byte)(192)));
     this.gridColumnMdSCE9.AppearanceCell.Options.UseBackColor = true;
     this.gridColumnMdSCE9.Caption = "SPA Pkg %";
     this.gridColumnMdSCE9.DisplayFormat.FormatString = "f";
     this.gridColumnMdSCE9.DisplayFormat.FormatType = DevExpress.Utils.FormatType.Numeric;
     this.gridColumnMdSCE9.FieldName = "nSPAPackageIndTargetPercent";
     this.gridColumnMdSCE9.Name = "gridColumnMdSCE9";
     this.gridColumnMdSCE9.Visible = true;
     this.gridColumnMdSCE9.VisibleIndex = 8;
     this.gridColumnMdSCE9.Width = 80;
     //
     // gridColumnMdSCE10
     //
     this.gridColumnMdSCE10.AppearanceCell.BackColor = System.Drawing.Color.FromArgb(((System.Byte)(255)), ((System.Byte)(255)), ((System.Byte)(192)));
     this.gridColumnMdSCE10.AppearanceCell.Options.UseBackColor = true;
     this.gridColumnMdSCE10.Caption = "SPA Prod %";
     this.gridColumnMdSCE10.DisplayFormat.FormatString = "f";
     this.gridColumnMdSCE10.DisplayFormat.FormatType = DevExpress.Utils.FormatType.Numeric;
     this.gridColumnMdSCE10.FieldName = "nSPAProductIndTargetPercent";
     this.gridColumnMdSCE10.Name = "gridColumnMdSCE10";
     this.gridColumnMdSCE10.Visible = true;
     this.gridColumnMdSCE10.VisibleIndex = 9;
     this.gridColumnMdSCE10.Width = 80;
     //
     // gridColumnMdSCE11
     //
     this.gridColumnMdSCE11.AppearanceCell.BackColor = System.Drawing.Color.FromArgb(((System.Byte)(255)), ((System.Byte)(255)), ((System.Byte)(192)));
     this.gridColumnMdSCE11.AppearanceCell.Options.UseBackColor = true;
     this.gridColumnMdSCE11.Caption = "PT Pkg %";
     this.gridColumnMdSCE11.DisplayFormat.FormatString = "f";
     this.gridColumnMdSCE11.DisplayFormat.FormatType = DevExpress.Utils.FormatType.Numeric;
     this.gridColumnMdSCE11.FieldName = "nPTPackageIndTargetPercent";
     this.gridColumnMdSCE11.Name = "gridColumnMdSCE11";
     this.gridColumnMdSCE11.Visible = true;
     this.gridColumnMdSCE11.VisibleIndex = 10;
     this.gridColumnMdSCE11.Width = 80;
     //
     // gridColumnMdSCE12
     //
     this.gridColumnMdSCE12.AppearanceCell.BackColor = System.Drawing.SystemColors.InactiveCaption;
     this.gridColumnMdSCE12.AppearanceCell.Options.UseBackColor = true;
     this.gridColumnMdSCE12.Caption = "Fitness Pkg Excess";
     this.gridColumnMdSCE12.DisplayFormat.FormatString = "f2";
     this.gridColumnMdSCE12.DisplayFormat.FormatType = DevExpress.Utils.FormatType.Numeric;
     this.gridColumnMdSCE12.FieldName = "nFitnessPackageBranchExcess";
     this.gridColumnMdSCE12.Name = "gridColumnMdSCE12";
     this.gridColumnMdSCE12.Visible = true;
     this.gridColumnMdSCE12.VisibleIndex = 11;
     this.gridColumnMdSCE12.Width = 100;
     //
     // gridColumnMdSCE13
     //
     this.gridColumnMdSCE13.AppearanceCell.BackColor = System.Drawing.SystemColors.InactiveCaption;
     this.gridColumnMdSCE13.AppearanceCell.Options.UseBackColor = true;
     this.gridColumnMdSCE13.Caption = "Fitness Prod Excess";
     this.gridColumnMdSCE13.DisplayFormat.FormatString = "f2";
     this.gridColumnMdSCE13.DisplayFormat.FormatType = DevExpress.Utils.FormatType.Numeric;
     this.gridColumnMdSCE13.FieldName = "nFitnessProductBranchExcess";
     this.gridColumnMdSCE13.Name = "gridColumnMdSCE13";
     this.gridColumnMdSCE13.Visible = true;
     this.gridColumnMdSCE13.VisibleIndex = 12;
     this.gridColumnMdSCE13.Width = 100;
     //
     // gridColumnMdSCE14
     //
     this.gridColumnMdSCE14.AppearanceCell.BackColor = System.Drawing.SystemColors.InactiveCaption;
     this.gridColumnMdSCE14.AppearanceCell.Options.UseBackColor = true;
     this.gridColumnMdSCE14.Caption = "SPA Pkg Excess";
     this.gridColumnMdSCE14.DisplayFormat.FormatString = "f2";
     this.gridColumnMdSCE14.DisplayFormat.FormatType = DevExpress.Utils.FormatType.Numeric;
     this.gridColumnMdSCE14.FieldName = "nSpaPackageBranchExcess";
     this.gridColumnMdSCE14.Name = "gridColumnMdSCE14";
     this.gridColumnMdSCE14.Visible = true;
     this.gridColumnMdSCE14.VisibleIndex = 13;
     this.gridColumnMdSCE14.Width = 90;
     //
     // gridColumnMdSCE15
     //
     this.gridColumnMdSCE15.AppearanceCell.BackColor = System.Drawing.SystemColors.InactiveCaption;
     this.gridColumnMdSCE15.AppearanceCell.Options.UseBackColor = true;
     this.gridColumnMdSCE15.Caption = "SPA Prod Excess";
     this.gridColumnMdSCE15.DisplayFormat.FormatString = "f2";
     this.gridColumnMdSCE15.DisplayFormat.FormatType = DevExpress.Utils.FormatType.Numeric;
     this.gridColumnMdSCE15.FieldName = "nSpaProductBranchExcess";
     this.gridColumnMdSCE15.Name = "gridColumnMdSCE15";
     this.gridColumnMdSCE15.Visible = true;
     this.gridColumnMdSCE15.VisibleIndex = 14;
     this.gridColumnMdSCE15.Width = 90;
     //
     // gridColumnMdSCE16
     //
     this.gridColumnMdSCE16.AppearanceCell.BackColor = System.Drawing.SystemColors.InactiveCaption;
     this.gridColumnMdSCE16.AppearanceCell.Options.UseBackColor = true;
     this.gridColumnMdSCE16.Caption = "PT Pkg Excess";
     this.gridColumnMdSCE16.DisplayFormat.FormatString = "f2";
     this.gridColumnMdSCE16.DisplayFormat.FormatType = DevExpress.Utils.FormatType.Numeric;
     this.gridColumnMdSCE16.FieldName = "nPTPackageBranchExcess";
     this.gridColumnMdSCE16.Name = "gridColumnMdSCE16";
     this.gridColumnMdSCE16.Visible = true;
     this.gridColumnMdSCE16.VisibleIndex = 15;
     this.gridColumnMdSCE16.Width = 90;
     //
     // gridColumnMdSCE17
     //
     this.gridColumnMdSCE17.AppearanceCell.BackColor = System.Drawing.Color.FromArgb(((System.Byte)(255)), ((System.Byte)(255)), ((System.Byte)(192)));
     this.gridColumnMdSCE17.AppearanceCell.Options.UseBackColor = true;
     this.gridColumnMdSCE17.Caption = "Fitness Pkg Excess";
     this.gridColumnMdSCE17.DisplayFormat.FormatString = "f2";
     this.gridColumnMdSCE17.DisplayFormat.FormatType = DevExpress.Utils.FormatType.Numeric;
     this.gridColumnMdSCE17.FieldName = "nFitnessPackageIndExcess";
     this.gridColumnMdSCE17.Name = "gridColumnMdSCE17";
     this.gridColumnMdSCE17.Visible = true;
     this.gridColumnMdSCE17.VisibleIndex = 16;
     this.gridColumnMdSCE17.Width = 100;
     //
     // gridColumnMdSCE18
     //
     this.gridColumnMdSCE18.AppearanceCell.BackColor = System.Drawing.Color.FromArgb(((System.Byte)(255)), ((System.Byte)(255)), ((System.Byte)(192)));
     this.gridColumnMdSCE18.AppearanceCell.Options.UseBackColor = true;
     this.gridColumnMdSCE18.Caption = "Fitness Prod Excess";
     this.gridColumnMdSCE18.DisplayFormat.FormatString = "f2";
     this.gridColumnMdSCE18.DisplayFormat.FormatType = DevExpress.Utils.FormatType.Numeric;
     this.gridColumnMdSCE18.FieldName = "nFitnessProductIndExcess";
     this.gridColumnMdSCE18.Name = "gridColumnMdSCE18";
     this.gridColumnMdSCE18.Visible = true;
     this.gridColumnMdSCE18.VisibleIndex = 17;
     this.gridColumnMdSCE18.Width = 90;
     //
     // gridColumnMdSCE19
     //
     this.gridColumnMdSCE19.AppearanceCell.BackColor = System.Drawing.Color.FromArgb(((System.Byte)(255)), ((System.Byte)(255)), ((System.Byte)(192)));
     this.gridColumnMdSCE19.AppearanceCell.Options.UseBackColor = true;
     this.gridColumnMdSCE19.Caption = "SPA Pkg Excess";
     this.gridColumnMdSCE19.DisplayFormat.FormatString = "f2";
     this.gridColumnMdSCE19.DisplayFormat.FormatType = DevExpress.Utils.FormatType.Numeric;
     this.gridColumnMdSCE19.FieldName = "nSPAPackageIndExcess";
     this.gridColumnMdSCE19.Name = "gridColumnMdSCE19";
     this.gridColumnMdSCE19.Visible = true;
     this.gridColumnMdSCE19.VisibleIndex = 18;
     this.gridColumnMdSCE19.Width = 90;
     //
     // gridColumnMdSCE20
     //
     this.gridColumnMdSCE20.AppearanceCell.BackColor = System.Drawing.Color.FromArgb(((System.Byte)(255)), ((System.Byte)(255)), ((System.Byte)(192)));
     this.gridColumnMdSCE20.AppearanceCell.Options.UseBackColor = true;
     this.gridColumnMdSCE20.Caption = "SPA Prod Excess";
     this.gridColumnMdSCE20.DisplayFormat.FormatString = "f2";
     this.gridColumnMdSCE20.DisplayFormat.FormatType = DevExpress.Utils.FormatType.Numeric;
     this.gridColumnMdSCE20.FieldName = "nSPAProductIndExcess";
     this.gridColumnMdSCE20.Name = "gridColumnMdSCE20";
     this.gridColumnMdSCE20.Visible = true;
     this.gridColumnMdSCE20.VisibleIndex = 19;
     this.gridColumnMdSCE20.Width = 90;
     //
     // gridColumnMdSCE21
     //
     this.gridColumnMdSCE21.AppearanceCell.BackColor = System.Drawing.Color.FromArgb(((System.Byte)(255)), ((System.Byte)(255)), ((System.Byte)(192)));
     this.gridColumnMdSCE21.AppearanceCell.Options.UseBackColor = true;
     this.gridColumnMdSCE21.Caption = "PT Pkg Excess";
     this.gridColumnMdSCE21.DisplayFormat.FormatString = "f2";
     this.gridColumnMdSCE21.DisplayFormat.FormatType = DevExpress.Utils.FormatType.Numeric;
     this.gridColumnMdSCE21.FieldName = "nPTPackageIndExcess";
     this.gridColumnMdSCE21.Name = "gridColumnMdSCE21";
     this.gridColumnMdSCE21.Visible = true;
     this.gridColumnMdSCE21.VisibleIndex = 20;
     this.gridColumnMdSCE21.Width = 90;
     //
     // gridColumn1
     //
     this.gridColumn1.Caption = "Fitness Pkg Branch Comm %";
     this.gridColumn1.DisplayFormat.FormatString = "f";
     this.gridColumn1.DisplayFormat.FormatType = DevExpress.Utils.FormatType.Numeric;
     this.gridColumn1.FieldName = "nFitnessPackageBranchPercentComm";
     this.gridColumn1.Name = "gridColumn1";
     this.gridColumn1.Visible = true;
     this.gridColumn1.VisibleIndex = 21;
     this.gridColumn1.Width = 150;
     //
     // gridColumn2
     //
     this.gridColumn2.Caption = "Fitness Prod Branch Comm %";
     this.gridColumn2.DisplayFormat.FormatString = "f";
     this.gridColumn2.DisplayFormat.FormatType = DevExpress.Utils.FormatType.Numeric;
     this.gridColumn2.FieldName = "nFitnessProductBranchPercentComm";
     this.gridColumn2.Name = "gridColumn2";
     this.gridColumn2.Visible = true;
     this.gridColumn2.VisibleIndex = 22;
     this.gridColumn2.Width = 150;
     //
     // gridColumn3
     //
     this.gridColumn3.Caption = "SPA Pkg Branch Comm %";
     this.gridColumn3.DisplayFormat.FormatString = "f";
     this.gridColumn3.DisplayFormat.FormatType = DevExpress.Utils.FormatType.Numeric;
     this.gridColumn3.FieldName = "nSpaPackageBranchPercentComm";
     this.gridColumn3.Name = "gridColumn3";
     this.gridColumn3.Visible = true;
     this.gridColumn3.VisibleIndex = 23;
     this.gridColumn3.Width = 150;
     //
     // gridColumn4
     //
     this.gridColumn4.Caption = "SPA Prod Branch Comm %";
     this.gridColumn4.DisplayFormat.FormatString = "f";
     this.gridColumn4.DisplayFormat.FormatType = DevExpress.Utils.FormatType.Numeric;
     this.gridColumn4.FieldName = "nSpaProductBranchPercentComm";
     this.gridColumn4.Name = "gridColumn4";
     this.gridColumn4.Visible = true;
     this.gridColumn4.VisibleIndex = 24;
     this.gridColumn4.Width = 150;
     //
     // gridColumn5
     //
     this.gridColumn5.Caption = "PT Pkg Branch Comm %";
     this.gridColumn5.DisplayFormat.FormatString = "f";
     this.gridColumn5.DisplayFormat.FormatType = DevExpress.Utils.FormatType.Numeric;
     this.gridColumn5.FieldName = "nPTPackageBranchPercentComm";
     this.gridColumn5.Name = "gridColumn5";
     this.gridColumn5.Visible = true;
     this.gridColumn5.VisibleIndex = 25;
     this.gridColumn5.Width = 150;
     //
     // gridColumn6
     //
     this.gridColumn6.Caption = "Fitness Pkg Branch Shared Comm %";
     this.gridColumn6.DisplayFormat.FormatString = "f";
     this.gridColumn6.DisplayFormat.FormatType = DevExpress.Utils.FormatType.Numeric;
     this.gridColumn6.FieldName = "nFitnessPackageBranchPercentSharedComm";
     this.gridColumn6.Name = "gridColumn6";
     this.gridColumn6.Visible = true;
     this.gridColumn6.VisibleIndex = 26;
     this.gridColumn6.Width = 130;
     //
     // gridColumn7
     //
     this.gridColumn7.Caption = "Fitness Prod Branch Shared Comm %";
     this.gridColumn7.DisplayFormat.FormatString = "f";
     this.gridColumn7.DisplayFormat.FormatType = DevExpress.Utils.FormatType.Numeric;
     this.gridColumn7.FieldName = "nFitnessProductBranchPercentSharedComm";
     this.gridColumn7.Name = "gridColumn7";
     this.gridColumn7.Visible = true;
     this.gridColumn7.VisibleIndex = 27;
     this.gridColumn7.Width = 130;
     //
     // gridColumn8
     //
     this.gridColumn8.Caption = "SPA Pkg Branch Shared Comm %";
     this.gridColumn8.DisplayFormat.FormatString = "f";
     this.gridColumn8.DisplayFormat.FormatType = DevExpress.Utils.FormatType.Numeric;
     this.gridColumn8.FieldName = "nSpaPackageBranchPercentSharedComm";
     this.gridColumn8.Name = "gridColumn8";
     this.gridColumn8.Visible = true;
     this.gridColumn8.VisibleIndex = 28;
     this.gridColumn8.Width = 130;
     //
     // gridColumn9
     //
     this.gridColumn9.Caption = "SPA Prod Branch Shared Comm %";
     this.gridColumn9.DisplayFormat.FormatString = "f";
     this.gridColumn9.DisplayFormat.FormatType = DevExpress.Utils.FormatType.Numeric;
     this.gridColumn9.FieldName = "nSpaProductBranchPercentSharedComm";
     this.gridColumn9.Name = "gridColumn9";
     this.gridColumn9.Visible = true;
     this.gridColumn9.VisibleIndex = 29;
     this.gridColumn9.Width = 130;
     //
     // gridColumn10
     //
     this.gridColumn10.Caption = "PT Pkg Branch Shared Comm %";
     this.gridColumn10.DisplayFormat.FormatString = "f";
     this.gridColumn10.DisplayFormat.FormatType = DevExpress.Utils.FormatType.Numeric;
     this.gridColumn10.FieldName = "nPTPackageBranchPercentSharedComm";
     this.gridColumn10.Name = "gridColumn10";
     this.gridColumn10.Visible = true;
     this.gridColumn10.VisibleIndex = 30;
     this.gridColumn10.Width = 130;
     //
     // gridColumn11
     //
     this.gridColumn11.Caption = "Fitness Pkg Branch Individual Comm %";
     this.gridColumn11.DisplayFormat.FormatString = "f";
     this.gridColumn11.DisplayFormat.FormatType = DevExpress.Utils.FormatType.Numeric;
     this.gridColumn11.FieldName = "nFitnessPackageIndPercentComm";
     this.gridColumn11.Name = "gridColumn11";
     this.gridColumn11.Visible = true;
     this.gridColumn11.VisibleIndex = 31;
     this.gridColumn11.Width = 140;
     //
     // gridColumn12
     //
     this.gridColumn12.Caption = "Fitness Prod Branch Individual Comm %";
     this.gridColumn12.DisplayFormat.FormatString = "f";
     this.gridColumn12.DisplayFormat.FormatType = DevExpress.Utils.FormatType.Numeric;
     this.gridColumn12.FieldName = "nFitnessProductIndPercentComm";
     this.gridColumn12.Name = "gridColumn12";
     this.gridColumn12.Visible = true;
     this.gridColumn12.VisibleIndex = 32;
     this.gridColumn12.Width = 140;
     //
     // gridColumn13
     //
     this.gridColumn13.Caption = "SPA Pkg Branch Individual Comm %";
     this.gridColumn13.DisplayFormat.FormatString = "f";
     this.gridColumn13.DisplayFormat.FormatType = DevExpress.Utils.FormatType.Numeric;
     this.gridColumn13.FieldName = "nSpaPackageIndPercentComm";
     this.gridColumn13.Name = "gridColumn13";
     this.gridColumn13.Visible = true;
     this.gridColumn13.VisibleIndex = 33;
     this.gridColumn13.Width = 140;
     //
     // gridColumn14
     //
     this.gridColumn14.Caption = "SPA Prod Branch Individual Comm %";
     this.gridColumn14.DisplayFormat.FormatString = "f";
     this.gridColumn14.DisplayFormat.FormatType = DevExpress.Utils.FormatType.Numeric;
     this.gridColumn14.FieldName = "nSpaProductIndPercentComm";
     this.gridColumn14.Name = "gridColumn14";
     this.gridColumn14.Visible = true;
     this.gridColumn14.VisibleIndex = 34;
     this.gridColumn14.Width = 140;
     //
     // gridColumn15
     //
     this.gridColumn15.Caption = "PT Pkg Branch Individual Comm %";
     this.gridColumn15.DisplayFormat.FormatString = "f";
     this.gridColumn15.DisplayFormat.FormatType = DevExpress.Utils.FormatType.Numeric;
     this.gridColumn15.FieldName = "nPTPackageIndPercentComm";
     this.gridColumn15.Name = "gridColumn15";
     this.gridColumn15.Visible = true;
     this.gridColumn15.VisibleIndex = 35;
     this.gridColumn15.Width = 140;
     //
     // gridColumn16
     //
     this.gridColumn16.Caption = "Commission Amount";
     this.gridColumn16.DisplayFormat.FormatString = "f2";
     this.gridColumn16.DisplayFormat.FormatType = DevExpress.Utils.FormatType.Custom;
     this.gridColumn16.FieldName = "mCommissionAmount";
     this.gridColumn16.Name = "gridColumn16";
     this.gridColumn16.Visible = true;
     this.gridColumn16.VisibleIndex = 36;
     //
     // repositoryItemComboBox1
     //
     this.repositoryItemComboBox1.AutoHeight = false;
     this.repositoryItemComboBox1.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
                                                                                                          new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.repositoryItemComboBox1.DisplayFormat.FormatString = "f";
     this.repositoryItemComboBox1.DisplayFormat.FormatType = DevExpress.Utils.FormatType.Numeric;
     this.repositoryItemComboBox1.EditFormat.FormatString = "f";
     this.repositoryItemComboBox1.EditFormat.FormatType = DevExpress.Utils.FormatType.Numeric;
     this.repositoryItemComboBox1.Items.AddRange(new object[] {
                                                                  "1",
                                                                  "2",
                                                                  "3",
                                                                  "4",
                                                                  "5"});
     this.repositoryItemComboBox1.Mask.EditMask = "f";
     this.repositoryItemComboBox1.Mask.MaskType = DevExpress.XtraEditors.Mask.MaskType.Numeric;
     this.repositoryItemComboBox1.Name = "repositoryItemComboBox1";
     //
     // mdCM_tabInstructorCommision
     //
     this.mdCM_tabInstructorCommision.Controls.Add(this.tabControlInstructorCommission);
     this.mdCM_tabInstructorCommision.Name = "mdCM_tabInstructorCommision";
     this.mdCM_tabInstructorCommision.Size = new System.Drawing.Size(954, 483);
     this.mdCM_tabInstructorCommision.Text = "Instructor Commission";
     //
     // tabControlInstructorCommission
     //
     this.tabControlInstructorCommission.Appearance.BackColor = System.Drawing.Color.Transparent;
     this.tabControlInstructorCommission.Appearance.Options.UseBackColor = true;
     this.tabControlInstructorCommission.AppearancePage.Header.Font = new System.Drawing.Font("Tahoma", 9.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((System.Byte)(0)));
     this.tabControlInstructorCommission.AppearancePage.Header.Options.UseFont = true;
     this.tabControlInstructorCommission.Dock = System.Windows.Forms.DockStyle.Fill;
     this.tabControlInstructorCommission.Location = new System.Drawing.Point(0, 0);
     this.tabControlInstructorCommission.LookAndFeel.SkinName = "Coffee";
     this.tabControlInstructorCommission.LookAndFeel.UseWindowsXPTheme = false;
     this.tabControlInstructorCommission.Name = "tabControlInstructorCommission";
     this.tabControlInstructorCommission.SelectedTabPage = this.tabPageInstructorType;
     this.tabControlInstructorCommission.Size = new System.Drawing.Size(954, 483);
     this.tabControlInstructorCommission.TabIndex = 1;
     this.tabControlInstructorCommission.TabPages.AddRange(new DevExpress.XtraTab.XtraTabPage[] {
                                                                                                    this.tabPageInstructorType,
                                                                                                    this.tabPageInstructorComm,
                                                                                                    this.tabPageInstructorTypeComm});
     this.tabControlInstructorCommission.Text = "xtraTabControl2";
     this.tabControlInstructorCommission.SelectedPageChanged += new DevExpress.XtraTab.TabPageChangedEventHandler(this.tabControlInstructorCommission_SelectedPageChanged);
     //
     // tabPageInstructorType
     //
     this.tabPageInstructorType.Controls.Add(this.gridControlMd_InstructorType);
     this.tabPageInstructorType.Name = "tabPageInstructorType";
     this.tabPageInstructorType.Size = new System.Drawing.Size(948, 442);
     this.tabPageInstructorType.Text = "Instructor Type";
     //
     // gridControlMd_InstructorType
     //
     this.gridControlMd_InstructorType.Dock = System.Windows.Forms.DockStyle.Fill;
     //
     // gridControlMd_InstructorType.EmbeddedNavigator
     //
     this.gridControlMd_InstructorType.EmbeddedNavigator.Name = "";
     this.gridControlMd_InstructorType.Location = new System.Drawing.Point(0, 0);
     this.gridControlMd_InstructorType.LookAndFeel.Style = DevExpress.LookAndFeel.LookAndFeelStyle.Skin;
     this.gridControlMd_InstructorType.LookAndFeel.UseWindowsXPTheme = false;
     this.gridControlMd_InstructorType.MainView = this.gridViewMdInstructor;
     this.gridControlMd_InstructorType.Name = "gridControlMd_InstructorType";
     this.gridControlMd_InstructorType.RepositoryItems.AddRange(new DevExpress.XtraEditors.Repository.RepositoryItem[] {
                                                                                                                           this.repositoryItemComboBox2,
                                                                                                                           this.repositoryItemImageComboBox1});
     this.gridControlMd_InstructorType.Size = new System.Drawing.Size(948, 442);
     this.gridControlMd_InstructorType.TabIndex = 15;
     this.gridControlMd_InstructorType.ViewCollection.AddRange(new DevExpress.XtraGrid.Views.Base.BaseView[] {
                                                                                                                 this.gridViewMdInstructor});
     //
     // gridViewMdInstructor
     //
     this.gridViewMdInstructor.ActiveFilterEnabled = false;
     this.gridViewMdInstructor.Columns.AddRange(new DevExpress.XtraGrid.Columns.GridColumn[] {
                                                                                                 this.gridColumnMdIT1,
                                                                                                 this.gridColumnMdIT2,
                                                                                                 this.gridColumnMdIT3});
     this.gridViewMdInstructor.GridControl = this.gridControlMd_InstructorType;
     this.gridViewMdInstructor.Name = "gridViewMdInstructor";
     this.gridViewMdInstructor.OptionsCustomization.AllowFilter = false;
     this.gridViewMdInstructor.OptionsCustomization.AllowSort = false;
     this.gridViewMdInstructor.OptionsView.ShowGroupPanel = false;
     this.gridViewMdInstructor.LostFocus += new System.EventHandler(this.gridViewMdInstructor_LostFocus);
     //
     // gridColumnMdIT1
     //
     this.gridColumnMdIT1.Caption = "Instructor Type";
     this.gridColumnMdIT1.FieldName = "nInstructorTypeID";
     this.gridColumnMdIT1.Name = "gridColumnMdIT1";
     this.gridColumnMdIT1.Visible = true;
     this.gridColumnMdIT1.VisibleIndex = 0;
     //
     // gridColumnMdIT2
     //
     this.gridColumnMdIT2.Caption = "Name";
     this.gridColumnMdIT2.FieldName = "strDescription";
     this.gridColumnMdIT2.MinWidth = 40;
     this.gridColumnMdIT2.Name = "gridColumnMdIT2";
     this.gridColumnMdIT2.Visible = true;
     this.gridColumnMdIT2.VisibleIndex = 2;
     //
     // gridColumnMdIT3
     //
     this.gridColumnMdIT3.Caption = "Bonus Type ID";
     this.gridColumnMdIT3.ColumnEdit = this.repositoryItemImageComboBox1;
     this.gridColumnMdIT3.FieldName = "nBonusTypeID";
     this.gridColumnMdIT3.Name = "gridColumnMdIT3";
     this.gridColumnMdIT3.Visible = true;
     this.gridColumnMdIT3.VisibleIndex = 1;
     //
     // repositoryItemImageComboBox1
     //
     this.repositoryItemImageComboBox1.AutoHeight = false;
     this.repositoryItemImageComboBox1.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
                                                                                                               new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.repositoryItemImageComboBox1.Items.AddRange(new object[] {
                                                                       new DevExpress.XtraEditors.Controls.ImageComboBoxItem("No Bonus", 0, -1),
                                                                       new DevExpress.XtraEditors.Controls.ImageComboBoxItem("Extra for All Permenant Class", 1, -1),
                                                                       new DevExpress.XtraEditors.Controls.ImageComboBoxItem("Extra for All Class Taught", 2, -1)});
     this.repositoryItemImageComboBox1.Name = "repositoryItemImageComboBox1";
     //
     // repositoryItemComboBox2
     //
     this.repositoryItemComboBox2.AutoHeight = false;
     this.repositoryItemComboBox2.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
                                                                                                          new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.repositoryItemComboBox2.Name = "repositoryItemComboBox2";
     //
     // tabPageInstructorComm
     //
     this.tabPageInstructorComm.Controls.Add(this.gridControlMd_InstructorCommission);
     this.tabPageInstructorComm.Name = "tabPageInstructorComm";
     this.tabPageInstructorComm.Size = new System.Drawing.Size(948, 442);
     this.tabPageInstructorComm.Text = "Commission";
     //
     // gridControlMd_InstructorCommission
     //
     this.gridControlMd_InstructorCommission.Dock = System.Windows.Forms.DockStyle.Fill;
     //
     // gridControlMd_InstructorCommission.EmbeddedNavigator
     //
     this.gridControlMd_InstructorCommission.EmbeddedNavigator.Name = "";
     this.gridControlMd_InstructorCommission.Location = new System.Drawing.Point(0, 0);
     this.gridControlMd_InstructorCommission.LookAndFeel.Style = DevExpress.LookAndFeel.LookAndFeelStyle.Skin;
     this.gridControlMd_InstructorCommission.LookAndFeel.UseWindowsXPTheme = false;
     this.gridControlMd_InstructorCommission.MainView = this.gridViewMdIC;
     this.gridControlMd_InstructorCommission.Name = "gridControlMd_InstructorCommission";
     this.gridControlMd_InstructorCommission.Size = new System.Drawing.Size(948, 442);
     this.gridControlMd_InstructorCommission.TabIndex = 14;
     this.gridControlMd_InstructorCommission.ViewCollection.AddRange(new DevExpress.XtraGrid.Views.Base.BaseView[] {
                                                                                                                       this.gridViewMdIC});
     //
     // gridViewMdIC
     //
     this.gridViewMdIC.Columns.AddRange(new DevExpress.XtraGrid.Columns.GridColumn[] {
                                                                                         this.gridColumnMdIC1,
                                                                                         this.gridColumnMdIC2});
     this.gridViewMdIC.GridControl = this.gridControlMd_InstructorCommission;
     this.gridViewMdIC.Name = "gridViewMdIC";
     this.gridViewMdIC.OptionsCustomization.AllowFilter = false;
     this.gridViewMdIC.OptionsCustomization.AllowSort = false;
     this.gridViewMdIC.OptionsView.ShowGroupPanel = false;
     this.gridViewMdIC.LostFocus += new System.EventHandler(this.gridViewMdIC_LostFocus);
     //
     // gridColumnMdIC1
     //
     this.gridColumnMdIC1.Caption = "Commission Code";
     this.gridColumnMdIC1.FieldName = "nCommissionTypeID";
     this.gridColumnMdIC1.Name = "gridColumnMdIC1";
     this.gridColumnMdIC1.Visible = true;
     this.gridColumnMdIC1.VisibleIndex = 0;
     //
     // gridColumnMdIC2
     //
     this.gridColumnMdIC2.Caption = "Description";
     this.gridColumnMdIC2.FieldName = "strDescription";
     this.gridColumnMdIC2.Name = "gridColumnMdIC2";
     this.gridColumnMdIC2.Visible = true;
     this.gridColumnMdIC2.VisibleIndex = 1;
     //
     // tabPageInstructorTypeComm
     //
     this.tabPageInstructorTypeComm.Appearance.PageClient.BackColor = System.Drawing.SystemColors.Control;
     this.tabPageInstructorTypeComm.Appearance.PageClient.Options.UseBackColor = true;
     this.tabPageInstructorTypeComm.Controls.Add(this.gridControlMd_InstructorTypeCommission);
     this.tabPageInstructorTypeComm.Name = "tabPageInstructorTypeComm";
     this.tabPageInstructorTypeComm.Size = new System.Drawing.Size(948, 442);
     this.tabPageInstructorTypeComm.Text = "Instructor Type Commission";
     //
     // gridControlMd_InstructorTypeCommission
     //
     this.gridControlMd_InstructorTypeCommission.Dock = System.Windows.Forms.DockStyle.Fill;
     //
     // gridControlMd_InstructorTypeCommission.EmbeddedNavigator
     //
     this.gridControlMd_InstructorTypeCommission.EmbeddedNavigator.Name = "";
     this.gridControlMd_InstructorTypeCommission.Location = new System.Drawing.Point(0, 0);
     this.gridControlMd_InstructorTypeCommission.LookAndFeel.Style = DevExpress.LookAndFeel.LookAndFeelStyle.Skin;
     this.gridControlMd_InstructorTypeCommission.LookAndFeel.UseWindowsXPTheme = false;
     this.gridControlMd_InstructorTypeCommission.MainView = this.gridViewMdITC;
     this.gridControlMd_InstructorTypeCommission.Name = "gridControlMd_InstructorTypeCommission";
     this.gridControlMd_InstructorTypeCommission.RepositoryItems.AddRange(new DevExpress.XtraEditors.Repository.RepositoryItem[] {
                                                                                                                                     this.repositoryItemLookUpEdit1,
                                                                                                                                     this.repositoryItemLookUpEdit2});
     this.gridControlMd_InstructorTypeCommission.Size = new System.Drawing.Size(948, 442);
     this.gridControlMd_InstructorTypeCommission.TabIndex = 14;
     this.gridControlMd_InstructorTypeCommission.ViewCollection.AddRange(new DevExpress.XtraGrid.Views.Base.BaseView[] {
                                                                                                                           this.gridViewMdITC});
     //
     // gridViewMdITC
     //
     this.gridViewMdITC.Columns.AddRange(new DevExpress.XtraGrid.Columns.GridColumn[] {
                                                                                          this.gridColumnMdITC1,
                                                                                          this.gridColumnMdITC2,
                                                                                          this.gridColumnMdITC3});
     this.gridViewMdITC.GridControl = this.gridControlMd_InstructorTypeCommission;
     this.gridViewMdITC.Name = "gridViewMdITC";
     this.gridViewMdITC.OptionsCustomization.AllowFilter = false;
     this.gridViewMdITC.OptionsCustomization.AllowSort = false;
     this.gridViewMdITC.OptionsView.ShowGroupPanel = false;
     this.gridViewMdITC.LostFocus += new System.EventHandler(this.gridViewMdITC_LostFocus);
     //
     // gridColumnMdITC1
     //
     this.gridColumnMdITC1.Caption = "Instructor Type";
     this.gridColumnMdITC1.ColumnEdit = this.repositoryItemLookUpEdit1;
     this.gridColumnMdITC1.FieldName = "nInstructorTypeID";
     this.gridColumnMdITC1.Name = "gridColumnMdITC1";
     this.gridColumnMdITC1.Visible = true;
     this.gridColumnMdITC1.VisibleIndex = 0;
     //
     // repositoryItemLookUpEdit1
     //
     this.repositoryItemLookUpEdit1.AutoHeight = false;
     this.repositoryItemLookUpEdit1.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
                                                                                                            new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.repositoryItemLookUpEdit1.Name = "repositoryItemLookUpEdit1";
     //
     // gridColumnMdITC2
     //
     this.gridColumnMdITC2.Caption = "Commission Type";
     this.gridColumnMdITC2.ColumnEdit = this.repositoryItemLookUpEdit2;
     this.gridColumnMdITC2.FieldName = "nCommissionTypeID";
     this.gridColumnMdITC2.Name = "gridColumnMdITC2";
     this.gridColumnMdITC2.Visible = true;
     this.gridColumnMdITC2.VisibleIndex = 1;
     //
     // repositoryItemLookUpEdit2
     //
     this.repositoryItemLookUpEdit2.AutoHeight = false;
     this.repositoryItemLookUpEdit2.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
                                                                                                            new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.repositoryItemLookUpEdit2.Name = "repositoryItemLookUpEdit2";
     //
     // gridColumnMdITC3
     //
     this.gridColumnMdITC3.Caption = "Commission Amount";
     this.gridColumnMdITC3.FieldName = "mCommissionAmount";
     this.gridColumnMdITC3.Name = "gridColumnMdITC3";
     this.gridColumnMdITC3.Visible = true;
     this.gridColumnMdITC3.VisibleIndex = 2;
     //
     // mdCM_tabPTCommision
     //
     this.mdCM_tabPTCommision.Controls.Add(this.gridControlMd_PTCommission);
     this.mdCM_tabPTCommision.Name = "mdCM_tabPTCommision";
     this.mdCM_tabPTCommision.Size = new System.Drawing.Size(954, 483);
     this.mdCM_tabPTCommision.Text = "PT Commission";
     //
     // gridControlMd_PTCommission
     //
     this.gridControlMd_PTCommission.Dock = System.Windows.Forms.DockStyle.Fill;
     //
     // gridControlMd_PTCommission.EmbeddedNavigator
     //
     this.gridControlMd_PTCommission.EmbeddedNavigator.Name = "";
     this.gridControlMd_PTCommission.Location = new System.Drawing.Point(0, 0);
     this.gridControlMd_PTCommission.LookAndFeel.Style = DevExpress.LookAndFeel.LookAndFeelStyle.Skin;
     this.gridControlMd_PTCommission.LookAndFeel.UseWindowsXPTheme = false;
     this.gridControlMd_PTCommission.MainView = this.gridViewPTCommission;
     this.gridControlMd_PTCommission.Name = "gridControlMd_PTCommission";
     this.gridControlMd_PTCommission.Size = new System.Drawing.Size(954, 483);
     this.gridControlMd_PTCommission.TabIndex = 15;
     this.gridControlMd_PTCommission.ViewCollection.AddRange(new DevExpress.XtraGrid.Views.Base.BaseView[] {
                                                                                                               this.gridViewPTCommission,
                                                                                                               this.gridView2});
     //
     // gridViewPTCommission
     //
     this.gridViewPTCommission.Columns.AddRange(new DevExpress.XtraGrid.Columns.GridColumn[] {
                                                                                                 this.gridColumnPT1,
                                                                                                 this.gridColumnPT2,
                                                                                                 this.gridColumnPT3});
     this.gridViewPTCommission.GridControl = this.gridControlMd_PTCommission;
     this.gridViewPTCommission.Name = "gridViewPTCommission";
     this.gridViewPTCommission.OptionsCustomization.AllowFilter = false;
     this.gridViewPTCommission.OptionsCustomization.AllowSort = false;
     this.gridViewPTCommission.OptionsView.ShowGroupPanel = false;
     this.gridViewPTCommission.LostFocus += new System.EventHandler(this.gridViewPTCommission_LostFocus);
     //
     // gridColumnPT1
     //
     this.gridColumnPT1.Caption = "Lower Limit";
     this.gridColumnPT1.DisplayFormat.FormatString = "f2";
     this.gridColumnPT1.DisplayFormat.FormatType = DevExpress.Utils.FormatType.Numeric;
     this.gridColumnPT1.FieldName = "nLowerLimit";
     this.gridColumnPT1.Name = "gridColumnPT1";
     this.gridColumnPT1.Visible = true;
     this.gridColumnPT1.VisibleIndex = 0;
     //
     // gridColumnPT2
     //
     this.gridColumnPT2.Caption = "Upper Limit";
     this.gridColumnPT2.DisplayFormat.FormatString = "f2";
     this.gridColumnPT2.DisplayFormat.FormatType = DevExpress.Utils.FormatType.Numeric;
     this.gridColumnPT2.FieldName = "nUpperLimit";
     this.gridColumnPT2.Name = "gridColumnPT2";
     this.gridColumnPT2.Visible = true;
     this.gridColumnPT2.VisibleIndex = 1;
     //
     // gridColumnPT3
     //
     this.gridColumnPT3.Caption = "Service Commission";
     this.gridColumnPT3.DisplayFormat.FormatString = "f2";
     this.gridColumnPT3.DisplayFormat.FormatType = DevExpress.Utils.FormatType.Numeric;
     this.gridColumnPT3.FieldName = "mServiceCommission";
     this.gridColumnPT3.Name = "gridColumnPT3";
     this.gridColumnPT3.Visible = true;
     this.gridColumnPT3.VisibleIndex = 2;
     //
     // gridView2
     //
     this.gridView2.GridControl = this.gridControlMd_PTCommission;
     this.gridView2.Name = "gridView2";
     //
     // btn_Add
     //
     this.btn_Add.Appearance.Font = new System.Drawing.Font("Tahoma", 14.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((System.Byte)(0)));
     this.btn_Add.Appearance.Options.UseFont = true;
     this.btn_Add.Appearance.Options.UseTextOptions = true;
     this.btn_Add.Appearance.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.btn_Add.Appearance.TextOptions.VAlignment = DevExpress.Utils.VertAlignment.Top;
     this.btn_Add.Appearance.TextOptions.WordWrap = DevExpress.Utils.WordWrap.Wrap;
     this.btn_Add.ImageIndex = 0;
     this.btn_Add.ImageList = this.imageList1;
     this.btn_Add.ImeMode = System.Windows.Forms.ImeMode.On;
     this.btn_Add.Location = new System.Drawing.Point(16, 24);
     this.btn_Add.Name = "btn_Add";
     this.btn_Add.Size = new System.Drawing.Size(38, 16);
     this.btn_Add.TabIndex = 134;
     this.btn_Add.Click += new System.EventHandler(this.btn_Add_Click);
     //
     // btn_Del
     //
     this.btn_Del.Appearance.Font = new System.Drawing.Font("Tahoma", 14.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((System.Byte)(0)));
     this.btn_Del.Appearance.Options.UseFont = true;
     this.btn_Del.Appearance.Options.UseTextOptions = true;
     this.btn_Del.Appearance.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.btn_Del.Appearance.TextOptions.VAlignment = DevExpress.Utils.VertAlignment.Top;
     this.btn_Del.Appearance.TextOptions.WordWrap = DevExpress.Utils.WordWrap.Wrap;
     this.btn_Del.ImageIndex = 1;
     this.btn_Del.ImageList = this.imageList1;
     this.btn_Del.Location = new System.Drawing.Point(56, 24);
     this.btn_Del.Name = "btn_Del";
     this.btn_Del.Size = new System.Drawing.Size(38, 16);
     this.btn_Del.TabIndex = 133;
     this.btn_Del.Click += new System.EventHandler(this.btn_Del_Click);
     //
     // panelSalesCommission
     //
     this.panelSalesCommission.BackColor = System.Drawing.Color.Transparent;
     this.panelSalesCommission.Controls.Add(this.cmbYear);
     this.panelSalesCommission.Controls.Add(this.label12);
     this.panelSalesCommission.Controls.Add(this.lkBranch);
     this.panelSalesCommission.Controls.Add(this.label3);
     this.panelSalesCommission.Controls.Add(this.btn_Search);
     this.panelSalesCommission.Location = new System.Drawing.Point(176, 16);
     this.panelSalesCommission.Name = "panelSalesCommission";
     this.panelSalesCommission.Size = new System.Drawing.Size(792, 32);
     this.panelSalesCommission.TabIndex = 220;
     //
     // cmbYear
     //
     this.cmbYear.Location = new System.Drawing.Point(640, 8);
     this.cmbYear.Name = "cmbYear";
     //
     // cmbYear.Properties
     //
     this.cmbYear.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
                                                                                                     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.cmbYear.Properties.LookAndFeel.UseDefaultLookAndFeel = false;
     this.cmbYear.Size = new System.Drawing.Size(48, 20);
     this.cmbYear.TabIndex = 221;
     //
     // label12
     //
     this.label12.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((System.Byte)(0)));
     this.label12.Location = new System.Drawing.Point(600, 12);
     this.label12.Name = "label12";
     this.label12.Size = new System.Drawing.Size(40, 16);
     this.label12.TabIndex = 220;
     this.label12.Text = "Year";
     //
     // lkBranch
     //
     this.lkBranch.Location = new System.Drawing.Point(472, 8);
     this.lkBranch.Name = "lkBranch";
     //
     // lkBranch.Properties
     //
     this.lkBranch.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
                                                                                                      new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.lkBranch.Size = new System.Drawing.Size(112, 20);
     this.lkBranch.TabIndex = 149;
     this.lkBranch.KeyDown += new System.Windows.Forms.KeyEventHandler(this.Branch_KeyDown);
     //
     // label3
     //
     this.label3.BackColor = System.Drawing.Color.Transparent;
     this.label3.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((System.Byte)(0)));
     this.label3.Location = new System.Drawing.Point(392, 12);
     this.label3.Name = "label3";
     this.label3.Size = new System.Drawing.Size(56, 16);
     this.label3.TabIndex = 148;
     this.label3.Text = "Branch";
     this.label3.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
     //
     // btn_Search
     //
     this.btn_Search.Appearance.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold);
     this.btn_Search.Appearance.Options.UseFont = true;
     this.btn_Search.ButtonStyle = DevExpress.XtraEditors.Controls.BorderStyles.Simple;
     this.btn_Search.Location = new System.Drawing.Point(712, 8);
     this.btn_Search.Name = "btn_Search";
     this.btn_Search.Size = new System.Drawing.Size(56, 20);
     this.btn_Search.TabIndex = 219;
     this.btn_Search.Text = "Search";
     this.btn_Search.Click += new System.EventHandler(this.btn_Search_Click);
     //
     // frmCommission
     //
     this.AutoScale = false;
     this.AutoScaleBaseSize = new System.Drawing.Size(5, 13);
     this.BackColor = System.Drawing.Color.White;
     this.ClientSize = new System.Drawing.Size(1000, 560);
     this.Controls.Add(this.grpMDCommision);
     this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.None;
     this.Name = "frmCommission";
     this.Text = "frmCommission";
     this.Load += new System.EventHandler(this.frmCommission_Load);
     ((System.ComponentModel.ISupportInitialize)(this.grpMDCommision)).EndInit();
     this.grpMDCommision.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.tabControlCommission)).EndInit();
     this.tabControlCommission.ResumeLayout(false);
     this.mdCM_tabSalesCommision.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.grpSubMDCommissionScheme)).EndInit();
     this.grpSubMDCommissionScheme.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.gridControlMd_SalesCommisionScheme)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridViewMd_SalesCommission)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.lk_CalMethod)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.chk_CrossSales)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.mdSC_txtNEmployeeID.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.tabControlCommissionEntry)).EndInit();
     this.tabControlCommissionEntry.ResumeLayout(false);
     this.tabMethodOne.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.grpMDPromotionBelow2)).EndInit();
     this.grpMDPromotionBelow2.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.gridCategory2)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridViewCategory2)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridCategory)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridViewCategory)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridTarget)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridViewTarget)).EndInit();
     this.tabMethodTwo.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.gridRange)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridViewRange)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.chk_fCombine)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.groupControl2)).EndInit();
     this.groupControl2.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.grid2Category2)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridView2Category2)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.grid2Category)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridView2Category)).EndInit();
     this.tabMethodThree.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.gridMgr)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridViewMgr)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.chk_fCombine_Mgr)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.groupControl3)).EndInit();
     this.groupControl3.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.grid3Category2)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridView3Category2)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.grid3Category)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridView3Category)).EndInit();
     this.xtraTabPage1.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.gridControlMd_SalesCommisionSchemeEntries)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridViewMd_SalesCommissionSchemeEntries)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemComboBox1)).EndInit();
     this.mdCM_tabInstructorCommision.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.tabControlInstructorCommission)).EndInit();
     this.tabControlInstructorCommission.ResumeLayout(false);
     this.tabPageInstructorType.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.gridControlMd_InstructorType)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridViewMdInstructor)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemImageComboBox1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemComboBox2)).EndInit();
     this.tabPageInstructorComm.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.gridControlMd_InstructorCommission)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridViewMdIC)).EndInit();
     this.tabPageInstructorTypeComm.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.gridControlMd_InstructorTypeCommission)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridViewMdITC)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemLookUpEdit1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemLookUpEdit2)).EndInit();
     this.mdCM_tabPTCommision.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.gridControlMd_PTCommission)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridViewPTCommission)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridView2)).EndInit();
     this.panelSalesCommission.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.cmbYear.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.lkBranch.Properties)).EndInit();
     this.ResumeLayout(false);
 }
		/// <summary> 
		/// 设计器支持所需的方法 - 不要使用代码编辑器 
		/// 修改此方法的内容。
		/// </summary>
		private void InitializeComponent()
		{
            System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(StudentMorningCheckInfo));
            this.xtraTabControl_CheckInfo = new DevExpress.XtraTab.XtraTabControl();
            this.xtraTabPage_MorningCheck = new DevExpress.XtraTab.XtraTabPage();
            this.splitContainerControl1 = new DevExpress.XtraEditors.SplitContainerControl();
            this.groupControl_InfoStaticMornig = new DevExpress.XtraEditors.GroupControl();
            this.textEdit_HaveArr = new DevExpress.XtraEditors.TextEdit();
            this.notePanel_HaveArr = new DevExpress.Utils.Frames.NotePanel();
            this.textEdit_DayAmount = new DevExpress.XtraEditors.TextEdit();
            this.textEdit_ShouldArr = new DevExpress.XtraEditors.TextEdit();
            this.textEdit_Watch = new DevExpress.XtraEditors.TextEdit();
            this.textEdit_Ill = new DevExpress.XtraEditors.TextEdit();
            this.textEdit_Absence = new DevExpress.XtraEditors.TextEdit();
            this.textEdit_Health = new DevExpress.XtraEditors.TextEdit();
            this.notePanel_DayAmount = new DevExpress.Utils.Frames.NotePanel();
            this.notePanel_ShouldArr = new DevExpress.Utils.Frames.NotePanel();
            this.notePanel_Absence = new DevExpress.Utils.Frames.NotePanel();
            this.notePanel_Watch = new DevExpress.Utils.Frames.NotePanel();
            this.notePanel_Ill = new DevExpress.Utils.Frames.NotePanel();
            this.notePanel_Health = new DevExpress.Utils.Frames.NotePanel();
            this.textEdit_CurRecTimeBinding = new DevExpress.XtraEditors.TextEdit();
            this.textEdit_OrigStateBinding = new DevExpress.XtraEditors.TextEdit();
            this.groupControl_FastSerMorning = new DevExpress.XtraEditors.GroupControl();
            this.groupControl_TimeStatusMorning = new DevExpress.XtraEditors.GroupControl();
            this.dateEdit_SpecificDateMorning = new DevExpress.XtraEditors.DateEdit();
            this.notePanel_SpecificDateMorning = new DevExpress.Utils.Frames.NotePanel();
            this.textEdit_EndTimeMorning = new DevExpress.XtraEditors.TextEdit();
            this.textEdit_BegTimeMorning = new DevExpress.XtraEditors.TextEdit();
            this.comboBoxEdit_TimeModeMorning = new DevExpress.XtraEditors.ComboBoxEdit();
            this.notePanel_TimeModeMorning = new DevExpress.Utils.Frames.NotePanel();
            this.comboBoxEdit_Status = new DevExpress.XtraEditors.ComboBoxEdit();
            this.notePanel_Status = new DevExpress.Utils.Frames.NotePanel();
            this.notePanel_BegTimeMorning = new DevExpress.Utils.Frames.NotePanel();
            this.notePanel_EndTimeMorning = new DevExpress.Utils.Frames.NotePanel();
            this.groupControl_NumberNameMorning = new DevExpress.XtraEditors.GroupControl();
            this.textEdit_NumberMorning = new DevExpress.XtraEditors.TextEdit();
            this.textEdit_NameMorning = new DevExpress.XtraEditors.TextEdit();
            this.notePanel_NumberMorning = new DevExpress.Utils.Frames.NotePanel();
            this.notePanel_NameMorning = new DevExpress.Utils.Frames.NotePanel();
            this.groupControl_GradeClassMorning = new DevExpress.XtraEditors.GroupControl();
            this.comboBoxEdit_ClassMorning = new DevExpress.XtraEditors.ComboBoxEdit();
            this.comboBoxEdit_GradeMorning = new DevExpress.XtraEditors.ComboBoxEdit();
            this.notePanel1_GradeMorning = new DevExpress.Utils.Frames.NotePanel();
            this.notePanel1_ClassMorning = new DevExpress.Utils.Frames.NotePanel();
            this.notePanel_GradeClassMorning = new DevExpress.Utils.Frames.NotePanel();
            this.notePanel_TimeStatusMorning = new DevExpress.Utils.Frames.NotePanel();
            this.notePanel_NumberNameMorning = new DevExpress.Utils.Frames.NotePanel();
            this.notePanel1_SerCondMorning = new DevExpress.Utils.Frames.NotePanel();
            this.gridControl_MorningInfo = 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.repositoryItemComboBox_Status = new DevExpress.XtraEditors.Repository.RepositoryItemComboBox();
            this.panelControl1 = new DevExpress.XtraEditors.PanelControl();
            this.simpleButton_PrintMorning = new DevExpress.XtraEditors.SimpleButton();
            this.simpleButton_SearchMorning = new DevExpress.XtraEditors.SimpleButton();
            this.xtraTabPage_BackHomeCheck = new DevExpress.XtraTab.XtraTabPage();
            this.splitContainerControl2 = new DevExpress.XtraEditors.SplitContainerControl();
            this.groupControl1 = new DevExpress.XtraEditors.GroupControl();
            this.textEdit_ShouldGo = new DevExpress.XtraEditors.TextEdit();
            this.notePanel_ShouldGo = new DevExpress.Utils.Frames.NotePanel();
            this.textEdit_HasnotGone = new DevExpress.XtraEditors.TextEdit();
            this.notePanel_HasnotGone = new DevExpress.Utils.Frames.NotePanel();
            this.textEdit_HasGone = new DevExpress.XtraEditors.TextEdit();
            this.notePanel_HasGone = new DevExpress.Utils.Frames.NotePanel();
            this.groupControl_FastSerBack = new DevExpress.XtraEditors.GroupControl();
            this.groupControl_TimeCondBack = new DevExpress.XtraEditors.GroupControl();
            this.dateEdit_SpecificDateBack = new DevExpress.XtraEditors.DateEdit();
            this.notePanel_SpecificDateBack = new DevExpress.Utils.Frames.NotePanel();
            this.comboBoxEdit_TimeModeBack = new DevExpress.XtraEditors.ComboBoxEdit();
            this.notePanel_TimeModeBack = new DevExpress.Utils.Frames.NotePanel();
            this.textEdit_EndTimeBack = new DevExpress.XtraEditors.TextEdit();
            this.textEdit_BegTimeBack = new DevExpress.XtraEditors.TextEdit();
            this.comboBoxEdit_BackCond = new DevExpress.XtraEditors.ComboBoxEdit();
            this.notePanel_BackCond = new DevExpress.Utils.Frames.NotePanel();
            this.notePanel_BegTimeBack = new DevExpress.Utils.Frames.NotePanel();
            this.notePanel_EndTimeBack = new DevExpress.Utils.Frames.NotePanel();
            this.groupControl_NumberNameBack = new DevExpress.XtraEditors.GroupControl();
            this.textEdit_NameBack = new DevExpress.XtraEditors.TextEdit();
            this.textEdit_NumberBack = new DevExpress.XtraEditors.TextEdit();
            this.notePanel_NumberBack = new DevExpress.Utils.Frames.NotePanel();
            this.notePanel1_NameBack = new DevExpress.Utils.Frames.NotePanel();
            this.groupControl_GradeClassBack = new DevExpress.XtraEditors.GroupControl();
            this.comboBoxEdit_ClassBack = new DevExpress.XtraEditors.ComboBoxEdit();
            this.comboBoxEdit_GradeBack = new DevExpress.XtraEditors.ComboBoxEdit();
            this.notePanel1_GradeBack = new DevExpress.Utils.Frames.NotePanel();
            this.notePanel1_ClassBack = new DevExpress.Utils.Frames.NotePanel();
            this.notePanel_GradeClassBack = new DevExpress.Utils.Frames.NotePanel();
            this.notePanel_TimeConBack = new DevExpress.Utils.Frames.NotePanel();
            this.notePanel_NumberNameBack = new DevExpress.Utils.Frames.NotePanel();
            this.notePanel_SerCondBack = new DevExpress.Utils.Frames.NotePanel();
            this.gridControl_BackInfo = new DevExpress.XtraGrid.GridControl();
            this.gridView2 = new DevExpress.XtraGrid.Views.Grid.GridView();
            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.panelControl2 = new DevExpress.XtraEditors.PanelControl();
            this.simpleButton_PrintBack = new DevExpress.XtraEditors.SimpleButton();
            this.simpleButton_SearchBack = new DevExpress.XtraEditors.SimpleButton();
            this.xtraTabPage_FreeDefinition = new DevExpress.XtraTab.XtraTabPage();
            this.splitContainerControl3 = new DevExpress.XtraEditors.SplitContainerControl();
            this.groupControl_FastSerFreeDef = new DevExpress.XtraEditors.GroupControl();
            this.groupControl_TimeStatusFreeDef = new DevExpress.XtraEditors.GroupControl();
            this.dateEdit_SpecificDateFreeDef = new DevExpress.XtraEditors.DateEdit();
            this.notePanel_SpecificDateFreeDef = new DevExpress.Utils.Frames.NotePanel();
            this.comboBoxEdit_TimeModeFreeDef = new DevExpress.XtraEditors.ComboBoxEdit();
            this.textEdit_EndTimeFreeDef = new DevExpress.XtraEditors.TextEdit();
            this.textEdit_BegTimeFreeDef = new DevExpress.XtraEditors.TextEdit();
            this.notePanel_TimeMode_FreeDef = new DevExpress.Utils.Frames.NotePanel();
            this.comboBoxEdit_CustomStatusDef = new DevExpress.XtraEditors.ComboBoxEdit();
            this.notePanel_FreeDef = new DevExpress.Utils.Frames.NotePanel();
            this.notePanel_BegTimeFreeDef = new DevExpress.Utils.Frames.NotePanel();
            this.notePanel_EndTimeFreeDef = new DevExpress.Utils.Frames.NotePanel();
            this.groupControl_NumberNameFreeDef = new DevExpress.XtraEditors.GroupControl();
            this.textEdit_NameFreeDef = new DevExpress.XtraEditors.TextEdit();
            this.textEdit_NumberFreeDef = new DevExpress.XtraEditors.TextEdit();
            this.notePanel_NumberFreeDef = new DevExpress.Utils.Frames.NotePanel();
            this.notePanel_NameFreeDef = new DevExpress.Utils.Frames.NotePanel();
            this.groupControl_GradeClassFreeDef = new DevExpress.XtraEditors.GroupControl();
            this.comboBoxEdit_ClassFreeDef = new DevExpress.XtraEditors.ComboBoxEdit();
            this.comboBoxEdit_GradeFreeDef = new DevExpress.XtraEditors.ComboBoxEdit();
            this.notePanel_GradeFreeDef = new DevExpress.Utils.Frames.NotePanel();
            this.notePanel_ClassFreeDef = new DevExpress.Utils.Frames.NotePanel();
            this.notePanel_GradeClassFreeDef = new DevExpress.Utils.Frames.NotePanel();
            this.notePanel_TimeStatusFreeDef = new DevExpress.Utils.Frames.NotePanel();
            this.notePanel_NumberNameFreeDef = new DevExpress.Utils.Frames.NotePanel();
            this.notePanel1_SerCondFreeDef = new DevExpress.Utils.Frames.NotePanel();
            this.gridControl_FreeDef = new DevExpress.XtraGrid.GridControl();
            this.gridView3 = new DevExpress.XtraGrid.Views.Grid.GridView();
            this.gridColumn14 = new DevExpress.XtraGrid.Columns.GridColumn();
            this.gridColumn15 = new DevExpress.XtraGrid.Columns.GridColumn();
            this.gridColumn16 = new DevExpress.XtraGrid.Columns.GridColumn();
            this.gridColumn17 = new DevExpress.XtraGrid.Columns.GridColumn();
            this.gridColumn18 = new DevExpress.XtraGrid.Columns.GridColumn();
            this.gridColumn19 = new DevExpress.XtraGrid.Columns.GridColumn();
            this.repositoryItemComboBox_CustomState = new DevExpress.XtraEditors.Repository.RepositoryItemComboBox();
            this.repositoryItemComboBox1 = new DevExpress.XtraEditors.Repository.RepositoryItemComboBox();
            this.panelControl3 = new DevExpress.XtraEditors.PanelControl();
            this.simpleButton_SearchFreeDef = new DevExpress.XtraEditors.SimpleButton();
            this.xtraTabPage_MoreReport = new DevExpress.XtraTab.XtraTabPage();
            this.splitContainerControl4 = new DevExpress.XtraEditors.SplitContainerControl();
            this.groupControl_FastSerReport = new DevExpress.XtraEditors.GroupControl();
            this.textEdit_EndDateReport = new DevExpress.XtraEditors.TextEdit();
            this.textEdit_BegDateReport = new DevExpress.XtraEditors.TextEdit();
            this.textEdit_NumberReport = new DevExpress.XtraEditors.TextEdit();
            this.textEdit_NameReport = new DevExpress.XtraEditors.TextEdit();
            this.notePanel_NumberReport = new DevExpress.Utils.Frames.NotePanel();
            this.notePanel_NameReport = new DevExpress.Utils.Frames.NotePanel();
            this.comboBoxEdit_PrintType = new DevExpress.XtraEditors.ComboBoxEdit();
            this.notePanel_PrintType = new DevExpress.Utils.Frames.NotePanel();
            this.notePanel_EndDateReport = new DevExpress.Utils.Frames.NotePanel();
            this.notePanel_BegDateReport = new DevExpress.Utils.Frames.NotePanel();
            this.comboBoxEdit_ClassReport = new DevExpress.XtraEditors.ComboBoxEdit();
            this.notePanel_ClassReport = new DevExpress.Utils.Frames.NotePanel();
            this.comboBoxEdit_GradeReport = new DevExpress.XtraEditors.ComboBoxEdit();
            this.notePanel_GradeReport = new DevExpress.Utils.Frames.NotePanel();
            this.notePanel_SerCondReport = new DevExpress.Utils.Frames.NotePanel();
            this.groupControl_PreviewReport = new DevExpress.XtraEditors.GroupControl();
            this.panelControl4 = new DevExpress.XtraEditors.PanelControl();
            this.simpleButton_PrintReport = new DevExpress.XtraEditors.SimpleButton();
            this.simpleButton_PreviewReport = new DevExpress.XtraEditors.SimpleButton();
            this.xtraTabPage1 = new DevExpress.XtraTab.XtraTabPage();
            this.panel1 = new System.Windows.Forms.Panel();
            this.treeView1 = new System.Windows.Forms.TreeView();
            this.panel2 = new System.Windows.Forms.Panel();
            this.simpleButton1 = new DevExpress.XtraEditors.SimpleButton();
            this.checkedComboBoxEdit1 = new DevExpress.XtraEditors.CheckedComboBoxEdit();
            this.comboBox1 = new System.Windows.Forms.ComboBox();
            this.label1 = new System.Windows.Forms.Label();
            this.progressBar1 = new System.Windows.Forms.ProgressBar();
            this.saveFileDialog_Report = new System.Windows.Forms.SaveFileDialog();
            this.helpProvider_StuMorningCheckInfo = new System.Windows.Forms.HelpProvider();
            ((System.ComponentModel.ISupportInitialize)(this.xtraTabControl_CheckInfo)).BeginInit();
            this.xtraTabControl_CheckInfo.SuspendLayout();
            this.xtraTabPage_MorningCheck.SuspendLayout();
            ((System.ComponentModel.ISupportInitialize)(this.splitContainerControl1)).BeginInit();
            this.splitContainerControl1.SuspendLayout();
            ((System.ComponentModel.ISupportInitialize)(this.groupControl_InfoStaticMornig)).BeginInit();
            this.groupControl_InfoStaticMornig.SuspendLayout();
            ((System.ComponentModel.ISupportInitialize)(this.textEdit_HaveArr.Properties)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.textEdit_DayAmount.Properties)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.textEdit_ShouldArr.Properties)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.textEdit_Watch.Properties)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.textEdit_Ill.Properties)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.textEdit_Absence.Properties)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.textEdit_Health.Properties)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.textEdit_CurRecTimeBinding.Properties)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.textEdit_OrigStateBinding.Properties)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.groupControl_FastSerMorning)).BeginInit();
            this.groupControl_FastSerMorning.SuspendLayout();
            ((System.ComponentModel.ISupportInitialize)(this.groupControl_TimeStatusMorning)).BeginInit();
            this.groupControl_TimeStatusMorning.SuspendLayout();
            ((System.ComponentModel.ISupportInitialize)(this.dateEdit_SpecificDateMorning.Properties.VistaTimeProperties)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.dateEdit_SpecificDateMorning.Properties)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.textEdit_EndTimeMorning.Properties)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.textEdit_BegTimeMorning.Properties)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.comboBoxEdit_TimeModeMorning.Properties)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.comboBoxEdit_Status.Properties)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.groupControl_NumberNameMorning)).BeginInit();
            this.groupControl_NumberNameMorning.SuspendLayout();
            ((System.ComponentModel.ISupportInitialize)(this.textEdit_NumberMorning.Properties)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.textEdit_NameMorning.Properties)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.groupControl_GradeClassMorning)).BeginInit();
            this.groupControl_GradeClassMorning.SuspendLayout();
            ((System.ComponentModel.ISupportInitialize)(this.comboBoxEdit_ClassMorning.Properties)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.comboBoxEdit_GradeMorning.Properties)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.gridControl_MorningInfo)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.gridView1)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.repositoryItemComboBox_Status)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.panelControl1)).BeginInit();
            this.panelControl1.SuspendLayout();
            this.xtraTabPage_BackHomeCheck.SuspendLayout();
            ((System.ComponentModel.ISupportInitialize)(this.splitContainerControl2)).BeginInit();
            this.splitContainerControl2.SuspendLayout();
            ((System.ComponentModel.ISupportInitialize)(this.groupControl1)).BeginInit();
            this.groupControl1.SuspendLayout();
            ((System.ComponentModel.ISupportInitialize)(this.textEdit_ShouldGo.Properties)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.textEdit_HasnotGone.Properties)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.textEdit_HasGone.Properties)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.groupControl_FastSerBack)).BeginInit();
            this.groupControl_FastSerBack.SuspendLayout();
            ((System.ComponentModel.ISupportInitialize)(this.groupControl_TimeCondBack)).BeginInit();
            this.groupControl_TimeCondBack.SuspendLayout();
            ((System.ComponentModel.ISupportInitialize)(this.dateEdit_SpecificDateBack.Properties.VistaTimeProperties)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.dateEdit_SpecificDateBack.Properties)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.comboBoxEdit_TimeModeBack.Properties)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.textEdit_EndTimeBack.Properties)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.textEdit_BegTimeBack.Properties)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.comboBoxEdit_BackCond.Properties)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.groupControl_NumberNameBack)).BeginInit();
            this.groupControl_NumberNameBack.SuspendLayout();
            ((System.ComponentModel.ISupportInitialize)(this.textEdit_NameBack.Properties)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.textEdit_NumberBack.Properties)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.groupControl_GradeClassBack)).BeginInit();
            this.groupControl_GradeClassBack.SuspendLayout();
            ((System.ComponentModel.ISupportInitialize)(this.comboBoxEdit_ClassBack.Properties)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.comboBoxEdit_GradeBack.Properties)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.gridControl_BackInfo)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.gridView2)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.panelControl2)).BeginInit();
            this.panelControl2.SuspendLayout();
            this.xtraTabPage_FreeDefinition.SuspendLayout();
            ((System.ComponentModel.ISupportInitialize)(this.splitContainerControl3)).BeginInit();
            this.splitContainerControl3.SuspendLayout();
            ((System.ComponentModel.ISupportInitialize)(this.groupControl_FastSerFreeDef)).BeginInit();
            this.groupControl_FastSerFreeDef.SuspendLayout();
            ((System.ComponentModel.ISupportInitialize)(this.groupControl_TimeStatusFreeDef)).BeginInit();
            this.groupControl_TimeStatusFreeDef.SuspendLayout();
            ((System.ComponentModel.ISupportInitialize)(this.dateEdit_SpecificDateFreeDef.Properties.VistaTimeProperties)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.dateEdit_SpecificDateFreeDef.Properties)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.comboBoxEdit_TimeModeFreeDef.Properties)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.textEdit_EndTimeFreeDef.Properties)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.textEdit_BegTimeFreeDef.Properties)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.comboBoxEdit_CustomStatusDef.Properties)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.groupControl_NumberNameFreeDef)).BeginInit();
            this.groupControl_NumberNameFreeDef.SuspendLayout();
            ((System.ComponentModel.ISupportInitialize)(this.textEdit_NameFreeDef.Properties)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.textEdit_NumberFreeDef.Properties)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.groupControl_GradeClassFreeDef)).BeginInit();
            this.groupControl_GradeClassFreeDef.SuspendLayout();
            ((System.ComponentModel.ISupportInitialize)(this.comboBoxEdit_ClassFreeDef.Properties)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.comboBoxEdit_GradeFreeDef.Properties)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.gridControl_FreeDef)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.gridView3)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.repositoryItemComboBox_CustomState)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.repositoryItemComboBox1)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.panelControl3)).BeginInit();
            this.panelControl3.SuspendLayout();
            this.xtraTabPage_MoreReport.SuspendLayout();
            ((System.ComponentModel.ISupportInitialize)(this.splitContainerControl4)).BeginInit();
            this.splitContainerControl4.SuspendLayout();
            ((System.ComponentModel.ISupportInitialize)(this.groupControl_FastSerReport)).BeginInit();
            this.groupControl_FastSerReport.SuspendLayout();
            ((System.ComponentModel.ISupportInitialize)(this.textEdit_EndDateReport.Properties)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.textEdit_BegDateReport.Properties)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.textEdit_NumberReport.Properties)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.textEdit_NameReport.Properties)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.comboBoxEdit_PrintType.Properties)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.comboBoxEdit_ClassReport.Properties)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.comboBoxEdit_GradeReport.Properties)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.groupControl_PreviewReport)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.panelControl4)).BeginInit();
            this.panelControl4.SuspendLayout();
            this.xtraTabPage1.SuspendLayout();
            this.panel1.SuspendLayout();
            this.panel2.SuspendLayout();
            ((System.ComponentModel.ISupportInitialize)(this.checkedComboBoxEdit1.Properties)).BeginInit();
            this.SuspendLayout();
            // 
            // xtraTabControl_CheckInfo
            // 
            this.xtraTabControl_CheckInfo.Appearance.BackColor = System.Drawing.Color.WhiteSmoke;
            this.xtraTabControl_CheckInfo.Appearance.Options.UseBackColor = true;
            this.xtraTabControl_CheckInfo.AppearancePage.HeaderActive.Font = new System.Drawing.Font("Tahoma", 9F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.xtraTabControl_CheckInfo.AppearancePage.HeaderActive.ForeColor = System.Drawing.Color.DarkOrange;
            this.xtraTabControl_CheckInfo.AppearancePage.HeaderActive.Options.UseFont = true;
            this.xtraTabControl_CheckInfo.AppearancePage.HeaderActive.Options.UseForeColor = true;
            this.xtraTabControl_CheckInfo.Dock = System.Windows.Forms.DockStyle.Fill;
            this.xtraTabControl_CheckInfo.Location = new System.Drawing.Point(0, 0);
            this.xtraTabControl_CheckInfo.Name = "xtraTabControl_CheckInfo";
            this.xtraTabControl_CheckInfo.SelectedTabPage = this.xtraTabPage_MorningCheck;
            this.xtraTabControl_CheckInfo.Size = new System.Drawing.Size(772, 540);
            this.xtraTabControl_CheckInfo.TabIndex = 0;
            this.xtraTabControl_CheckInfo.TabPages.AddRange(new DevExpress.XtraTab.XtraTabPage[] {
            this.xtraTabPage_MorningCheck,
            this.xtraTabPage_BackHomeCheck,
            this.xtraTabPage_FreeDefinition,
            this.xtraTabPage_MoreReport,
            this.xtraTabPage1});
            // 
            // xtraTabPage_MorningCheck
            // 
            this.xtraTabPage_MorningCheck.Appearance.PageClient.BackColor = System.Drawing.Color.WhiteSmoke;
            this.xtraTabPage_MorningCheck.Appearance.PageClient.Options.UseBackColor = true;
            this.xtraTabPage_MorningCheck.Controls.Add(this.splitContainerControl1);
            this.xtraTabPage_MorningCheck.Name = "xtraTabPage_MorningCheck";
            this.xtraTabPage_MorningCheck.Size = new System.Drawing.Size(766, 511);
            this.xtraTabPage_MorningCheck.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_InfoStaticMornig);
            this.splitContainerControl1.Panel1.Controls.Add(this.groupControl_FastSerMorning);
            this.splitContainerControl1.Panel1.Text = "splitContainerControl1_Panel1";
            this.splitContainerControl1.Panel2.Controls.Add(this.gridControl_MorningInfo);
            this.splitContainerControl1.Panel2.Controls.Add(this.panelControl1);
            this.splitContainerControl1.Panel2.Text = "splitContainerControl1_Panel2";
            this.splitContainerControl1.Size = new System.Drawing.Size(766, 511);
            this.splitContainerControl1.SplitterPosition = 239;
            this.splitContainerControl1.TabIndex = 0;
            this.splitContainerControl1.Text = "splitContainerControl1";
            // 
            // groupControl_InfoStaticMornig
            // 
            this.groupControl_InfoStaticMornig.AppearanceCaption.Font = new System.Drawing.Font("Tahoma", 9F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.groupControl_InfoStaticMornig.AppearanceCaption.Options.UseFont = true;
            this.groupControl_InfoStaticMornig.Controls.Add(this.textEdit_HaveArr);
            this.groupControl_InfoStaticMornig.Controls.Add(this.notePanel_HaveArr);
            this.groupControl_InfoStaticMornig.Controls.Add(this.textEdit_DayAmount);
            this.groupControl_InfoStaticMornig.Controls.Add(this.textEdit_ShouldArr);
            this.groupControl_InfoStaticMornig.Controls.Add(this.textEdit_Watch);
            this.groupControl_InfoStaticMornig.Controls.Add(this.textEdit_Ill);
            this.groupControl_InfoStaticMornig.Controls.Add(this.textEdit_Absence);
            this.groupControl_InfoStaticMornig.Controls.Add(this.textEdit_Health);
            this.groupControl_InfoStaticMornig.Controls.Add(this.notePanel_DayAmount);
            this.groupControl_InfoStaticMornig.Controls.Add(this.notePanel_ShouldArr);
            this.groupControl_InfoStaticMornig.Controls.Add(this.notePanel_Absence);
            this.groupControl_InfoStaticMornig.Controls.Add(this.notePanel_Watch);
            this.groupControl_InfoStaticMornig.Controls.Add(this.notePanel_Ill);
            this.groupControl_InfoStaticMornig.Controls.Add(this.notePanel_Health);
            this.groupControl_InfoStaticMornig.Controls.Add(this.textEdit_CurRecTimeBinding);
            this.groupControl_InfoStaticMornig.Controls.Add(this.textEdit_OrigStateBinding);
            this.groupControl_InfoStaticMornig.Dock = System.Windows.Forms.DockStyle.Top;
            this.groupControl_InfoStaticMornig.Location = new System.Drawing.Point(0, 312);
            this.groupControl_InfoStaticMornig.Name = "groupControl_InfoStaticMornig";
            this.groupControl_InfoStaticMornig.Size = new System.Drawing.Size(239, 256);
            this.groupControl_InfoStaticMornig.TabIndex = 8;
            this.groupControl_InfoStaticMornig.Text = "晨检信息统计";
            // 
            // textEdit_HaveArr
            // 
            this.textEdit_HaveArr.EditValue = "";
            this.textEdit_HaveArr.Location = new System.Drawing.Point(88, 128);
            this.textEdit_HaveArr.Name = "textEdit_HaveArr";
            this.textEdit_HaveArr.Properties.Appearance.Font = new System.Drawing.Font("Tahoma", 10.5F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.textEdit_HaveArr.Properties.Appearance.ForeColor = System.Drawing.Color.Navy;
            this.textEdit_HaveArr.Properties.Appearance.Options.UseFont = true;
            this.textEdit_HaveArr.Properties.Appearance.Options.UseForeColor = true;
            this.textEdit_HaveArr.Properties.Appearance.Options.UseTextOptions = true;
            this.textEdit_HaveArr.Properties.Appearance.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
            this.textEdit_HaveArr.Properties.AppearanceDisabled.BackColor = System.Drawing.Color.AntiqueWhite;
            this.textEdit_HaveArr.Properties.AppearanceDisabled.Options.UseBackColor = true;
            this.textEdit_HaveArr.Size = new System.Drawing.Size(128, 24);
            this.textEdit_HaveArr.TabIndex = 27;
            // 
            // notePanel_HaveArr
            // 
            this.notePanel_HaveArr.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(224)))), ((int)(((byte)(224)))), ((int)(((byte)(224)))));
            this.notePanel_HaveArr.BackColor2 = System.Drawing.Color.DarkGray;
            this.notePanel_HaveArr.Font = new System.Drawing.Font("Tahoma", 8F);
            this.notePanel_HaveArr.ForeColor = System.Drawing.Color.Black;
            this.notePanel_HaveArr.GradientMode = System.Drawing.Drawing2D.LinearGradientMode.Vertical;
            this.notePanel_HaveArr.Location = new System.Drawing.Point(16, 128);
            this.notePanel_HaveArr.MaxRows = 5;
            this.notePanel_HaveArr.Name = "notePanel_HaveArr";
            this.notePanel_HaveArr.ParentAutoHeight = true;
            this.notePanel_HaveArr.Size = new System.Drawing.Size(64, 22);
            this.notePanel_HaveArr.TabIndex = 26;
            this.notePanel_HaveArr.TabStop = false;
            this.notePanel_HaveArr.Text = "实出勤:";
            // 
            // textEdit_DayAmount
            // 
            this.textEdit_DayAmount.EditValue = "";
            this.textEdit_DayAmount.Location = new System.Drawing.Point(128, 224);
            this.textEdit_DayAmount.Name = "textEdit_DayAmount";
            this.textEdit_DayAmount.Properties.Appearance.Font = new System.Drawing.Font("Tahoma", 10.5F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.textEdit_DayAmount.Properties.Appearance.ForeColor = System.Drawing.Color.Navy;
            this.textEdit_DayAmount.Properties.Appearance.Options.UseFont = true;
            this.textEdit_DayAmount.Properties.Appearance.Options.UseForeColor = true;
            this.textEdit_DayAmount.Properties.Appearance.Options.UseTextOptions = true;
            this.textEdit_DayAmount.Properties.Appearance.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
            this.textEdit_DayAmount.Properties.AppearanceDisabled.BackColor = System.Drawing.Color.AntiqueWhite;
            this.textEdit_DayAmount.Properties.AppearanceDisabled.Options.UseBackColor = true;
            this.textEdit_DayAmount.Size = new System.Drawing.Size(88, 24);
            this.textEdit_DayAmount.TabIndex = 25;
            // 
            // textEdit_ShouldArr
            // 
            this.textEdit_ShouldArr.EditValue = "";
            this.textEdit_ShouldArr.Location = new System.Drawing.Point(128, 192);
            this.textEdit_ShouldArr.Name = "textEdit_ShouldArr";
            this.textEdit_ShouldArr.Properties.Appearance.Font = new System.Drawing.Font("Tahoma", 10.5F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.textEdit_ShouldArr.Properties.Appearance.ForeColor = System.Drawing.Color.Navy;
            this.textEdit_ShouldArr.Properties.Appearance.Options.UseFont = true;
            this.textEdit_ShouldArr.Properties.Appearance.Options.UseForeColor = true;
            this.textEdit_ShouldArr.Properties.Appearance.Options.UseTextOptions = true;
            this.textEdit_ShouldArr.Properties.Appearance.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
            this.textEdit_ShouldArr.Properties.AppearanceDisabled.BackColor = System.Drawing.Color.AntiqueWhite;
            this.textEdit_ShouldArr.Properties.AppearanceDisabled.Options.UseBackColor = true;
            this.textEdit_ShouldArr.Size = new System.Drawing.Size(88, 24);
            this.textEdit_ShouldArr.TabIndex = 24;
            // 
            // textEdit_Watch
            // 
            this.textEdit_Watch.EditValue = "";
            this.textEdit_Watch.Location = new System.Drawing.Point(88, 96);
            this.textEdit_Watch.Name = "textEdit_Watch";
            this.textEdit_Watch.Properties.Appearance.Font = new System.Drawing.Font("Tahoma", 10.5F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.textEdit_Watch.Properties.Appearance.ForeColor = System.Drawing.Color.Navy;
            this.textEdit_Watch.Properties.Appearance.Options.UseFont = true;
            this.textEdit_Watch.Properties.Appearance.Options.UseForeColor = true;
            this.textEdit_Watch.Properties.Appearance.Options.UseTextOptions = true;
            this.textEdit_Watch.Properties.Appearance.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
            this.textEdit_Watch.Properties.AppearanceDisabled.BackColor = System.Drawing.Color.AntiqueWhite;
            this.textEdit_Watch.Properties.AppearanceDisabled.Options.UseBackColor = true;
            this.textEdit_Watch.Size = new System.Drawing.Size(128, 24);
            this.textEdit_Watch.TabIndex = 23;
            // 
            // textEdit_Ill
            // 
            this.textEdit_Ill.EditValue = "";
            this.textEdit_Ill.Location = new System.Drawing.Point(88, 64);
            this.textEdit_Ill.Name = "textEdit_Ill";
            this.textEdit_Ill.Properties.Appearance.Font = new System.Drawing.Font("Tahoma", 10.5F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.textEdit_Ill.Properties.Appearance.ForeColor = System.Drawing.Color.Navy;
            this.textEdit_Ill.Properties.Appearance.Options.UseFont = true;
            this.textEdit_Ill.Properties.Appearance.Options.UseForeColor = true;
            this.textEdit_Ill.Properties.Appearance.Options.UseTextOptions = true;
            this.textEdit_Ill.Properties.Appearance.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
            this.textEdit_Ill.Properties.AppearanceDisabled.BackColor = System.Drawing.Color.AntiqueWhite;
            this.textEdit_Ill.Properties.AppearanceDisabled.Options.UseBackColor = true;
            this.textEdit_Ill.Size = new System.Drawing.Size(128, 24);
            this.textEdit_Ill.TabIndex = 22;
            // 
            // textEdit_Absence
            // 
            this.textEdit_Absence.EditValue = "";
            this.textEdit_Absence.Location = new System.Drawing.Point(88, 160);
            this.textEdit_Absence.Name = "textEdit_Absence";
            this.textEdit_Absence.Properties.Appearance.Font = new System.Drawing.Font("Tahoma", 10.5F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.textEdit_Absence.Properties.Appearance.ForeColor = System.Drawing.Color.Navy;
            this.textEdit_Absence.Properties.Appearance.Options.UseFont = true;
            this.textEdit_Absence.Properties.Appearance.Options.UseForeColor = true;
            this.textEdit_Absence.Properties.Appearance.Options.UseTextOptions = true;
            this.textEdit_Absence.Properties.Appearance.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
            this.textEdit_Absence.Properties.AppearanceDisabled.BackColor = System.Drawing.Color.AntiqueWhite;
            this.textEdit_Absence.Properties.AppearanceDisabled.Options.UseBackColor = true;
            this.textEdit_Absence.Size = new System.Drawing.Size(128, 24);
            this.textEdit_Absence.TabIndex = 21;
            // 
            // textEdit_Health
            // 
            this.textEdit_Health.EditValue = "";
            this.textEdit_Health.Location = new System.Drawing.Point(88, 32);
            this.textEdit_Health.Name = "textEdit_Health";
            this.textEdit_Health.Properties.Appearance.Font = new System.Drawing.Font("Tahoma", 10.5F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.textEdit_Health.Properties.Appearance.ForeColor = System.Drawing.Color.Navy;
            this.textEdit_Health.Properties.Appearance.Options.UseFont = true;
            this.textEdit_Health.Properties.Appearance.Options.UseForeColor = true;
            this.textEdit_Health.Properties.Appearance.Options.UseTextOptions = true;
            this.textEdit_Health.Properties.Appearance.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
            this.textEdit_Health.Properties.AppearanceDisabled.BackColor = System.Drawing.Color.AntiqueWhite;
            this.textEdit_Health.Properties.AppearanceDisabled.Options.UseBackColor = true;
            this.textEdit_Health.Size = new System.Drawing.Size(128, 24);
            this.textEdit_Health.TabIndex = 20;
            // 
            // notePanel_DayAmount
            // 
            this.notePanel_DayAmount.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(224)))), ((int)(((byte)(224)))), ((int)(((byte)(224)))));
            this.notePanel_DayAmount.BackColor2 = System.Drawing.Color.DarkGray;
            this.notePanel_DayAmount.Font = new System.Drawing.Font("Tahoma", 8F);
            this.notePanel_DayAmount.ForeColor = System.Drawing.Color.Black;
            this.notePanel_DayAmount.GradientMode = System.Drawing.Drawing2D.LinearGradientMode.Vertical;
            this.notePanel_DayAmount.Location = new System.Drawing.Point(16, 224);
            this.notePanel_DayAmount.MaxRows = 5;
            this.notePanel_DayAmount.Name = "notePanel_DayAmount";
            this.notePanel_DayAmount.ParentAutoHeight = true;
            this.notePanel_DayAmount.Size = new System.Drawing.Size(104, 22);
            this.notePanel_DayAmount.TabIndex = 10;
            this.notePanel_DayAmount.TabStop = false;
            this.notePanel_DayAmount.Text = "应到天数总和:";
            // 
            // notePanel_ShouldArr
            // 
            this.notePanel_ShouldArr.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(224)))), ((int)(((byte)(224)))), ((int)(((byte)(224)))));
            this.notePanel_ShouldArr.BackColor2 = System.Drawing.Color.DarkGray;
            this.notePanel_ShouldArr.Font = new System.Drawing.Font("Tahoma", 8F);
            this.notePanel_ShouldArr.ForeColor = System.Drawing.Color.Black;
            this.notePanel_ShouldArr.GradientMode = System.Drawing.Drawing2D.LinearGradientMode.Vertical;
            this.notePanel_ShouldArr.Location = new System.Drawing.Point(16, 192);
            this.notePanel_ShouldArr.MaxRows = 5;
            this.notePanel_ShouldArr.Name = "notePanel_ShouldArr";
            this.notePanel_ShouldArr.ParentAutoHeight = true;
            this.notePanel_ShouldArr.Size = new System.Drawing.Size(104, 22);
            this.notePanel_ShouldArr.TabIndex = 9;
            this.notePanel_ShouldArr.TabStop = false;
            this.notePanel_ShouldArr.Text = "应到人数总和:";
            // 
            // notePanel_Absence
            // 
            this.notePanel_Absence.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(224)))), ((int)(((byte)(224)))), ((int)(((byte)(224)))));
            this.notePanel_Absence.BackColor2 = System.Drawing.Color.DarkGray;
            this.notePanel_Absence.Font = new System.Drawing.Font("Tahoma", 8F);
            this.notePanel_Absence.ForeColor = System.Drawing.Color.Black;
            this.notePanel_Absence.GradientMode = System.Drawing.Drawing2D.LinearGradientMode.Vertical;
            this.notePanel_Absence.Location = new System.Drawing.Point(16, 160);
            this.notePanel_Absence.MaxRows = 5;
            this.notePanel_Absence.Name = "notePanel_Absence";
            this.notePanel_Absence.ParentAutoHeight = true;
            this.notePanel_Absence.Size = new System.Drawing.Size(64, 22);
            this.notePanel_Absence.TabIndex = 8;
            this.notePanel_Absence.TabStop = false;
            this.notePanel_Absence.Text = "缺  席:";
            // 
            // notePanel_Watch
            // 
            this.notePanel_Watch.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(224)))), ((int)(((byte)(224)))), ((int)(((byte)(224)))));
            this.notePanel_Watch.BackColor2 = System.Drawing.Color.DarkGray;
            this.notePanel_Watch.Font = new System.Drawing.Font("Tahoma", 8F);
            this.notePanel_Watch.ForeColor = System.Drawing.Color.Black;
            this.notePanel_Watch.GradientMode = System.Drawing.Drawing2D.LinearGradientMode.Vertical;
            this.notePanel_Watch.Location = new System.Drawing.Point(16, 96);
            this.notePanel_Watch.MaxRows = 5;
            this.notePanel_Watch.Name = "notePanel_Watch";
            this.notePanel_Watch.ParentAutoHeight = true;
            this.notePanel_Watch.Size = new System.Drawing.Size(64, 22);
            this.notePanel_Watch.TabIndex = 7;
            this.notePanel_Watch.TabStop = false;
            this.notePanel_Watch.Text = "观  察:";
            // 
            // notePanel_Ill
            // 
            this.notePanel_Ill.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(224)))), ((int)(((byte)(224)))), ((int)(((byte)(224)))));
            this.notePanel_Ill.BackColor2 = System.Drawing.Color.DarkGray;
            this.notePanel_Ill.Font = new System.Drawing.Font("Tahoma", 8F);
            this.notePanel_Ill.ForeColor = System.Drawing.Color.Black;
            this.notePanel_Ill.GradientMode = System.Drawing.Drawing2D.LinearGradientMode.Vertical;
            this.notePanel_Ill.Location = new System.Drawing.Point(16, 64);
            this.notePanel_Ill.MaxRows = 5;
            this.notePanel_Ill.Name = "notePanel_Ill";
            this.notePanel_Ill.ParentAutoHeight = true;
            this.notePanel_Ill.Size = new System.Drawing.Size(64, 22);
            this.notePanel_Ill.TabIndex = 6;
            this.notePanel_Ill.TabStop = false;
            this.notePanel_Ill.Text = "服  药:";
            // 
            // notePanel_Health
            // 
            this.notePanel_Health.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(224)))), ((int)(((byte)(224)))), ((int)(((byte)(224)))));
            this.notePanel_Health.BackColor2 = System.Drawing.Color.DarkGray;
            this.notePanel_Health.Font = new System.Drawing.Font("Tahoma", 8F);
            this.notePanel_Health.ForeColor = System.Drawing.Color.Black;
            this.notePanel_Health.GradientMode = System.Drawing.Drawing2D.LinearGradientMode.Vertical;
            this.notePanel_Health.Location = new System.Drawing.Point(16, 32);
            this.notePanel_Health.MaxRows = 5;
            this.notePanel_Health.Name = "notePanel_Health";
            this.notePanel_Health.ParentAutoHeight = true;
            this.notePanel_Health.Size = new System.Drawing.Size(64, 22);
            this.notePanel_Health.TabIndex = 5;
            this.notePanel_Health.TabStop = false;
            this.notePanel_Health.Text = "健  康:";
            // 
            // textEdit_CurRecTimeBinding
            // 
            this.textEdit_CurRecTimeBinding.EditValue = "";
            this.textEdit_CurRecTimeBinding.Location = new System.Drawing.Point(136, 40);
            this.textEdit_CurRecTimeBinding.Name = "textEdit_CurRecTimeBinding";
            this.textEdit_CurRecTimeBinding.Properties.AutoHeight = false;
            this.textEdit_CurRecTimeBinding.Size = new System.Drawing.Size(16, 8);
            this.textEdit_CurRecTimeBinding.TabIndex = 12;
            // 
            // textEdit_OrigStateBinding
            // 
            this.textEdit_OrigStateBinding.EditValue = "";
            this.textEdit_OrigStateBinding.Location = new System.Drawing.Point(136, 72);
            this.textEdit_OrigStateBinding.Name = "textEdit_OrigStateBinding";
            this.textEdit_OrigStateBinding.Properties.AutoHeight = false;
            this.textEdit_OrigStateBinding.Size = new System.Drawing.Size(8, 8);
            this.textEdit_OrigStateBinding.TabIndex = 11;
            // 
            // groupControl_FastSerMorning
            // 
            this.groupControl_FastSerMorning.AppearanceCaption.Font = new System.Drawing.Font("Tahoma", 9F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.groupControl_FastSerMorning.AppearanceCaption.Options.UseFont = true;
            this.groupControl_FastSerMorning.Controls.Add(this.groupControl_TimeStatusMorning);
            this.groupControl_FastSerMorning.Controls.Add(this.groupControl_NumberNameMorning);
            this.groupControl_FastSerMorning.Controls.Add(this.groupControl_GradeClassMorning);
            this.groupControl_FastSerMorning.Controls.Add(this.notePanel_GradeClassMorning);
            this.groupControl_FastSerMorning.Controls.Add(this.notePanel_TimeStatusMorning);
            this.groupControl_FastSerMorning.Controls.Add(this.notePanel_NumberNameMorning);
            this.groupControl_FastSerMorning.Controls.Add(this.notePanel1_SerCondMorning);
            this.groupControl_FastSerMorning.Dock = System.Windows.Forms.DockStyle.Top;
            this.groupControl_FastSerMorning.Location = new System.Drawing.Point(0, 0);
            this.groupControl_FastSerMorning.Name = "groupControl_FastSerMorning";
            this.groupControl_FastSerMorning.Size = new System.Drawing.Size(239, 312);
            this.groupControl_FastSerMorning.TabIndex = 7;
            this.groupControl_FastSerMorning.Text = "快速搜索";
            // 
            // groupControl_TimeStatusMorning
            // 
            this.groupControl_TimeStatusMorning.AppearanceCaption.Font = new System.Drawing.Font("Tahoma", 9F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.groupControl_TimeStatusMorning.AppearanceCaption.ForeColor = System.Drawing.Color.Black;
            this.groupControl_TimeStatusMorning.AppearanceCaption.Options.UseFont = true;
            this.groupControl_TimeStatusMorning.AppearanceCaption.Options.UseForeColor = true;
            this.groupControl_TimeStatusMorning.Controls.Add(this.dateEdit_SpecificDateMorning);
            this.groupControl_TimeStatusMorning.Controls.Add(this.notePanel_SpecificDateMorning);
            this.groupControl_TimeStatusMorning.Controls.Add(this.textEdit_EndTimeMorning);
            this.groupControl_TimeStatusMorning.Controls.Add(this.textEdit_BegTimeMorning);
            this.groupControl_TimeStatusMorning.Controls.Add(this.comboBoxEdit_TimeModeMorning);
            this.groupControl_TimeStatusMorning.Controls.Add(this.notePanel_TimeModeMorning);
            this.groupControl_TimeStatusMorning.Controls.Add(this.comboBoxEdit_Status);
            this.groupControl_TimeStatusMorning.Controls.Add(this.notePanel_Status);
            this.groupControl_TimeStatusMorning.Controls.Add(this.notePanel_BegTimeMorning);
            this.groupControl_TimeStatusMorning.Controls.Add(this.notePanel_EndTimeMorning);
            this.groupControl_TimeStatusMorning.Dock = System.Windows.Forms.DockStyle.Bottom;
            this.groupControl_TimeStatusMorning.Location = new System.Drawing.Point(2, -114);
            this.groupControl_TimeStatusMorning.Name = "groupControl_TimeStatusMorning";
            this.groupControl_TimeStatusMorning.Size = new System.Drawing.Size(235, 184);
            this.groupControl_TimeStatusMorning.TabIndex = 22;
            this.groupControl_TimeStatusMorning.Text = "指定搜索的时间和晨检状态";
            this.groupControl_TimeStatusMorning.Visible = false;
            // 
            // dateEdit_SpecificDateMorning
            // 
            this.dateEdit_SpecificDateMorning.EditValue = new System.DateTime(2005, 1, 31, 0, 0, 0, 0);
            this.dateEdit_SpecificDateMorning.Location = new System.Drawing.Point(104, 24);
            this.dateEdit_SpecificDateMorning.Name = "dateEdit_SpecificDateMorning";
            this.dateEdit_SpecificDateMorning.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
            new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
            this.dateEdit_SpecificDateMorning.Properties.VistaTimeProperties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
            new DevExpress.XtraEditors.Controls.EditorButton()});
            this.dateEdit_SpecificDateMorning.Size = new System.Drawing.Size(112, 20);
            this.dateEdit_SpecificDateMorning.TabIndex = 24;
            // 
            // notePanel_SpecificDateMorning
            // 
            this.notePanel_SpecificDateMorning.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(224)))), ((int)(((byte)(224)))), ((int)(((byte)(224)))));
            this.notePanel_SpecificDateMorning.BackColor2 = System.Drawing.Color.DarkGray;
            this.notePanel_SpecificDateMorning.Font = new System.Drawing.Font("Tahoma", 8F);
            this.notePanel_SpecificDateMorning.ForeColor = System.Drawing.Color.Black;
            this.notePanel_SpecificDateMorning.GradientMode = System.Drawing.Drawing2D.LinearGradientMode.Vertical;
            this.notePanel_SpecificDateMorning.Location = new System.Drawing.Point(16, 24);
            this.notePanel_SpecificDateMorning.MaxRows = 5;
            this.notePanel_SpecificDateMorning.Name = "notePanel_SpecificDateMorning";
            this.notePanel_SpecificDateMorning.ParentAutoHeight = true;
            this.notePanel_SpecificDateMorning.Size = new System.Drawing.Size(80, 22);
            this.notePanel_SpecificDateMorning.TabIndex = 23;
            this.notePanel_SpecificDateMorning.TabStop = false;
            this.notePanel_SpecificDateMorning.Text = "指定日期:";
            // 
            // textEdit_EndTimeMorning
            // 
            this.textEdit_EndTimeMorning.EditValue = "";
            this.textEdit_EndTimeMorning.Location = new System.Drawing.Point(104, 88);
            this.textEdit_EndTimeMorning.Name = "textEdit_EndTimeMorning";
            this.textEdit_EndTimeMorning.Properties.DisplayFormat.FormatString = "d";
            this.textEdit_EndTimeMorning.Properties.DisplayFormat.FormatType = DevExpress.Utils.FormatType.DateTime;
            this.textEdit_EndTimeMorning.Properties.EditValueChangedFiringMode = DevExpress.XtraEditors.Controls.EditValueChangedFiringMode.Buffered;
            this.textEdit_EndTimeMorning.Properties.Mask.EditMask = "yyyy-MM-dd";
            this.textEdit_EndTimeMorning.Properties.Mask.MaskType = DevExpress.XtraEditors.Mask.MaskType.DateTime;
            this.textEdit_EndTimeMorning.Size = new System.Drawing.Size(112, 20);
            this.textEdit_EndTimeMorning.TabIndex = 22;
            // 
            // textEdit_BegTimeMorning
            // 
            this.textEdit_BegTimeMorning.EditValue = "";
            this.textEdit_BegTimeMorning.Location = new System.Drawing.Point(104, 56);
            this.textEdit_BegTimeMorning.Name = "textEdit_BegTimeMorning";
            this.textEdit_BegTimeMorning.Properties.DisplayFormat.FormatString = "d";
            this.textEdit_BegTimeMorning.Properties.DisplayFormat.FormatType = DevExpress.Utils.FormatType.DateTime;
            this.textEdit_BegTimeMorning.Properties.EditValueChangedFiringMode = DevExpress.XtraEditors.Controls.EditValueChangedFiringMode.Buffered;
            this.textEdit_BegTimeMorning.Properties.Mask.EditMask = "yyyy-MM-dd";
            this.textEdit_BegTimeMorning.Properties.Mask.MaskType = DevExpress.XtraEditors.Mask.MaskType.DateTime;
            this.textEdit_BegTimeMorning.Size = new System.Drawing.Size(112, 20);
            this.textEdit_BegTimeMorning.TabIndex = 21;
            // 
            // comboBoxEdit_TimeModeMorning
            // 
            this.comboBoxEdit_TimeModeMorning.EditValue = "模糊时间";
            this.comboBoxEdit_TimeModeMorning.Location = new System.Drawing.Point(104, 120);
            this.comboBoxEdit_TimeModeMorning.Name = "comboBoxEdit_TimeModeMorning";
            this.comboBoxEdit_TimeModeMorning.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
            new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
            this.comboBoxEdit_TimeModeMorning.Properties.Items.AddRange(new object[] {
            "模糊时间",
            "精确时间"});
            this.comboBoxEdit_TimeModeMorning.Size = new System.Drawing.Size(112, 20);
            this.comboBoxEdit_TimeModeMorning.TabIndex = 20;
            this.comboBoxEdit_TimeModeMorning.SelectedIndexChanged += new System.EventHandler(this.comboBoxEdit_TimeModeMorning_SelectedIndexChanged);
            // 
            // notePanel_TimeModeMorning
            // 
            this.notePanel_TimeModeMorning.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(224)))), ((int)(((byte)(224)))), ((int)(((byte)(224)))));
            this.notePanel_TimeModeMorning.BackColor2 = System.Drawing.Color.DarkGray;
            this.notePanel_TimeModeMorning.Font = new System.Drawing.Font("Tahoma", 8F);
            this.notePanel_TimeModeMorning.ForeColor = System.Drawing.Color.Black;
            this.notePanel_TimeModeMorning.GradientMode = System.Drawing.Drawing2D.LinearGradientMode.Vertical;
            this.notePanel_TimeModeMorning.Location = new System.Drawing.Point(16, 120);
            this.notePanel_TimeModeMorning.MaxRows = 5;
            this.notePanel_TimeModeMorning.Name = "notePanel_TimeModeMorning";
            this.notePanel_TimeModeMorning.ParentAutoHeight = true;
            this.notePanel_TimeModeMorning.Size = new System.Drawing.Size(80, 22);
            this.notePanel_TimeModeMorning.TabIndex = 19;
            this.notePanel_TimeModeMorning.TabStop = false;
            this.notePanel_TimeModeMorning.Text = "时间模式:";
            // 
            // comboBoxEdit_Status
            // 
            this.comboBoxEdit_Status.EditValue = "全部";
            this.comboBoxEdit_Status.Location = new System.Drawing.Point(104, 152);
            this.comboBoxEdit_Status.Name = "comboBoxEdit_Status";
            this.comboBoxEdit_Status.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
            new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
            this.comboBoxEdit_Status.Properties.Items.AddRange(new object[] {
            "全部"});
            this.comboBoxEdit_Status.Properties.TextEditStyle = DevExpress.XtraEditors.Controls.TextEditStyles.DisableTextEditor;
            this.comboBoxEdit_Status.Size = new System.Drawing.Size(112, 20);
            this.comboBoxEdit_Status.TabIndex = 18;
            this.comboBoxEdit_Status.SelectedIndexChanged += new System.EventHandler(this.comboBoxEdit_Status_SelectedIndexChanged);
            // 
            // notePanel_Status
            // 
            this.notePanel_Status.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(224)))), ((int)(((byte)(224)))), ((int)(((byte)(224)))));
            this.notePanel_Status.BackColor2 = System.Drawing.Color.DarkGray;
            this.notePanel_Status.Font = new System.Drawing.Font("Tahoma", 8F);
            this.notePanel_Status.ForeColor = System.Drawing.Color.Black;
            this.notePanel_Status.GradientMode = System.Drawing.Drawing2D.LinearGradientMode.Vertical;
            this.notePanel_Status.Location = new System.Drawing.Point(16, 152);
            this.notePanel_Status.MaxRows = 5;
            this.notePanel_Status.Name = "notePanel_Status";
            this.notePanel_Status.ParentAutoHeight = true;
            this.notePanel_Status.Size = new System.Drawing.Size(80, 22);
            this.notePanel_Status.TabIndex = 17;
            this.notePanel_Status.TabStop = false;
            this.notePanel_Status.Text = "晨检状态:";
            // 
            // notePanel_BegTimeMorning
            // 
            this.notePanel_BegTimeMorning.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(224)))), ((int)(((byte)(224)))), ((int)(((byte)(224)))));
            this.notePanel_BegTimeMorning.BackColor2 = System.Drawing.Color.DarkGray;
            this.notePanel_BegTimeMorning.Font = new System.Drawing.Font("Tahoma", 8F);
            this.notePanel_BegTimeMorning.ForeColor = System.Drawing.Color.Black;
            this.notePanel_BegTimeMorning.GradientMode = System.Drawing.Drawing2D.LinearGradientMode.Vertical;
            this.notePanel_BegTimeMorning.Location = new System.Drawing.Point(16, 56);
            this.notePanel_BegTimeMorning.MaxRows = 5;
            this.notePanel_BegTimeMorning.Name = "notePanel_BegTimeMorning";
            this.notePanel_BegTimeMorning.ParentAutoHeight = true;
            this.notePanel_BegTimeMorning.Size = new System.Drawing.Size(80, 22);
            this.notePanel_BegTimeMorning.TabIndex = 14;
            this.notePanel_BegTimeMorning.TabStop = false;
            this.notePanel_BegTimeMorning.Text = "起始时间:";
            // 
            // notePanel_EndTimeMorning
            // 
            this.notePanel_EndTimeMorning.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(224)))), ((int)(((byte)(224)))), ((int)(((byte)(224)))));
            this.notePanel_EndTimeMorning.BackColor2 = System.Drawing.Color.DarkGray;
            this.notePanel_EndTimeMorning.Font = new System.Drawing.Font("Tahoma", 8F);
            this.notePanel_EndTimeMorning.ForeColor = System.Drawing.Color.Black;
            this.notePanel_EndTimeMorning.GradientMode = System.Drawing.Drawing2D.LinearGradientMode.Vertical;
            this.notePanel_EndTimeMorning.Location = new System.Drawing.Point(16, 88);
            this.notePanel_EndTimeMorning.MaxRows = 5;
            this.notePanel_EndTimeMorning.Name = "notePanel_EndTimeMorning";
            this.notePanel_EndTimeMorning.ParentAutoHeight = true;
            this.notePanel_EndTimeMorning.Size = new System.Drawing.Size(80, 22);
            this.notePanel_EndTimeMorning.TabIndex = 13;
            this.notePanel_EndTimeMorning.TabStop = false;
            this.notePanel_EndTimeMorning.Text = "结束时间:";
            // 
            // groupControl_NumberNameMorning
            // 
            this.groupControl_NumberNameMorning.AppearanceCaption.Font = new System.Drawing.Font("Tahoma", 9F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.groupControl_NumberNameMorning.AppearanceCaption.ForeColor = System.Drawing.Color.Black;
            this.groupControl_NumberNameMorning.AppearanceCaption.Options.UseFont = true;
            this.groupControl_NumberNameMorning.AppearanceCaption.Options.UseForeColor = true;
            this.groupControl_NumberNameMorning.Controls.Add(this.textEdit_NumberMorning);
            this.groupControl_NumberNameMorning.Controls.Add(this.textEdit_NameMorning);
            this.groupControl_NumberNameMorning.Controls.Add(this.notePanel_NumberMorning);
            this.groupControl_NumberNameMorning.Controls.Add(this.notePanel_NameMorning);
            this.groupControl_NumberNameMorning.Dock = System.Windows.Forms.DockStyle.Bottom;
            this.groupControl_NumberNameMorning.Location = new System.Drawing.Point(2, 70);
            this.groupControl_NumberNameMorning.Name = "groupControl_NumberNameMorning";
            this.groupControl_NumberNameMorning.Size = new System.Drawing.Size(235, 120);
            this.groupControl_NumberNameMorning.TabIndex = 21;
            this.groupControl_NumberNameMorning.Text = "指定搜索的学号和姓名";
            this.groupControl_NumberNameMorning.Visible = false;
            // 
            // textEdit_NumberMorning
            // 
            this.textEdit_NumberMorning.EditValue = "";
            this.textEdit_NumberMorning.Location = new System.Drawing.Point(104, 72);
            this.textEdit_NumberMorning.Name = "textEdit_NumberMorning";
            this.textEdit_NumberMorning.Size = new System.Drawing.Size(112, 20);
            this.textEdit_NumberMorning.TabIndex = 14;
            // 
            // textEdit_NameMorning
            // 
            this.textEdit_NameMorning.EditValue = "";
            this.textEdit_NameMorning.Location = new System.Drawing.Point(104, 32);
            this.textEdit_NameMorning.Name = "textEdit_NameMorning";
            this.textEdit_NameMorning.Size = new System.Drawing.Size(112, 20);
            this.textEdit_NameMorning.TabIndex = 13;
            // 
            // notePanel_NumberMorning
            // 
            this.notePanel_NumberMorning.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(224)))), ((int)(((byte)(224)))), ((int)(((byte)(224)))));
            this.notePanel_NumberMorning.BackColor2 = System.Drawing.Color.DarkGray;
            this.notePanel_NumberMorning.Font = new System.Drawing.Font("Tahoma", 8F);
            this.notePanel_NumberMorning.ForeColor = System.Drawing.Color.Black;
            this.notePanel_NumberMorning.GradientMode = System.Drawing.Drawing2D.LinearGradientMode.Vertical;
            this.notePanel_NumberMorning.Location = new System.Drawing.Point(16, 72);
            this.notePanel_NumberMorning.MaxRows = 5;
            this.notePanel_NumberMorning.Name = "notePanel_NumberMorning";
            this.notePanel_NumberMorning.ParentAutoHeight = true;
            this.notePanel_NumberMorning.Size = new System.Drawing.Size(80, 22);
            this.notePanel_NumberMorning.TabIndex = 10;
            this.notePanel_NumberMorning.TabStop = false;
            this.notePanel_NumberMorning.Text = "  学  号:";
            // 
            // notePanel_NameMorning
            // 
            this.notePanel_NameMorning.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(224)))), ((int)(((byte)(224)))), ((int)(((byte)(224)))));
            this.notePanel_NameMorning.BackColor2 = System.Drawing.Color.DarkGray;
            this.notePanel_NameMorning.Font = new System.Drawing.Font("Tahoma", 8F);
            this.notePanel_NameMorning.ForeColor = System.Drawing.Color.Black;
            this.notePanel_NameMorning.GradientMode = System.Drawing.Drawing2D.LinearGradientMode.Vertical;
            this.notePanel_NameMorning.Location = new System.Drawing.Point(16, 32);
            this.notePanel_NameMorning.MaxRows = 5;
            this.notePanel_NameMorning.Name = "notePanel_NameMorning";
            this.notePanel_NameMorning.ParentAutoHeight = true;
            this.notePanel_NameMorning.Size = new System.Drawing.Size(80, 22);
            this.notePanel_NameMorning.TabIndex = 9;
            this.notePanel_NameMorning.TabStop = false;
            this.notePanel_NameMorning.Text = "  姓  名:";
            // 
            // groupControl_GradeClassMorning
            // 
            this.groupControl_GradeClassMorning.AppearanceCaption.Font = new System.Drawing.Font("Tahoma", 9F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.groupControl_GradeClassMorning.AppearanceCaption.Options.UseFont = true;
            this.groupControl_GradeClassMorning.Controls.Add(this.comboBoxEdit_ClassMorning);
            this.groupControl_GradeClassMorning.Controls.Add(this.comboBoxEdit_GradeMorning);
            this.groupControl_GradeClassMorning.Controls.Add(this.notePanel1_GradeMorning);
            this.groupControl_GradeClassMorning.Controls.Add(this.notePanel1_ClassMorning);
            this.groupControl_GradeClassMorning.Dock = System.Windows.Forms.DockStyle.Bottom;
            this.groupControl_GradeClassMorning.Location = new System.Drawing.Point(2, 190);
            this.groupControl_GradeClassMorning.Name = "groupControl_GradeClassMorning";
            this.groupControl_GradeClassMorning.Size = new System.Drawing.Size(235, 120);
            this.groupControl_GradeClassMorning.TabIndex = 20;
            this.groupControl_GradeClassMorning.Text = "指定搜索的年级和班级";
            this.groupControl_GradeClassMorning.Visible = false;
            // 
            // comboBoxEdit_ClassMorning
            // 
            this.comboBoxEdit_ClassMorning.EditValue = "全部";
            this.comboBoxEdit_ClassMorning.Location = new System.Drawing.Point(104, 72);
            this.comboBoxEdit_ClassMorning.Name = "comboBoxEdit_ClassMorning";
            this.comboBoxEdit_ClassMorning.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
            new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
            this.comboBoxEdit_ClassMorning.Properties.Items.AddRange(new object[] {
            "全部"});
            this.comboBoxEdit_ClassMorning.Properties.TextEditStyle = DevExpress.XtraEditors.Controls.TextEditStyles.DisableTextEditor;
            this.comboBoxEdit_ClassMorning.Size = new System.Drawing.Size(112, 20);
            this.comboBoxEdit_ClassMorning.TabIndex = 18;
            this.comboBoxEdit_ClassMorning.SelectedIndexChanged += new System.EventHandler(this.comboBoxEdit_ClassMorning_SelectedIndexChanged);
            // 
            // comboBoxEdit_GradeMorning
            // 
            this.comboBoxEdit_GradeMorning.EditValue = "全部";
            this.comboBoxEdit_GradeMorning.Location = new System.Drawing.Point(104, 32);
            this.comboBoxEdit_GradeMorning.Name = "comboBoxEdit_GradeMorning";
            this.comboBoxEdit_GradeMorning.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
            new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
            this.comboBoxEdit_GradeMorning.Properties.Items.AddRange(new object[] {
            "全部"});
            this.comboBoxEdit_GradeMorning.Properties.TextEditStyle = DevExpress.XtraEditors.Controls.TextEditStyles.DisableTextEditor;
            this.comboBoxEdit_GradeMorning.Size = new System.Drawing.Size(112, 20);
            this.comboBoxEdit_GradeMorning.TabIndex = 17;
            this.comboBoxEdit_GradeMorning.SelectedIndexChanged += new System.EventHandler(this.comboBoxEdit_GradeMorning_SelectedIndexChanged);
            // 
            // notePanel1_GradeMorning
            // 
            this.notePanel1_GradeMorning.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(224)))), ((int)(((byte)(224)))), ((int)(((byte)(224)))));
            this.notePanel1_GradeMorning.BackColor2 = System.Drawing.Color.DarkGray;
            this.notePanel1_GradeMorning.Font = new System.Drawing.Font("Tahoma", 8F);
            this.notePanel1_GradeMorning.ForeColor = System.Drawing.Color.Black;
            this.notePanel1_GradeMorning.GradientMode = System.Drawing.Drawing2D.LinearGradientMode.Vertical;
            this.notePanel1_GradeMorning.Location = new System.Drawing.Point(16, 32);
            this.notePanel1_GradeMorning.MaxRows = 5;
            this.notePanel1_GradeMorning.Name = "notePanel1_GradeMorning";
            this.notePanel1_GradeMorning.ParentAutoHeight = true;
            this.notePanel1_GradeMorning.Size = new System.Drawing.Size(80, 22);
            this.notePanel1_GradeMorning.TabIndex = 4;
            this.notePanel1_GradeMorning.TabStop = false;
            this.notePanel1_GradeMorning.Text = "  年  级:";
            // 
            // notePanel1_ClassMorning
            // 
            this.notePanel1_ClassMorning.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(224)))), ((int)(((byte)(224)))), ((int)(((byte)(224)))));
            this.notePanel1_ClassMorning.BackColor2 = System.Drawing.Color.DarkGray;
            this.notePanel1_ClassMorning.Font = new System.Drawing.Font("Tahoma", 8F);
            this.notePanel1_ClassMorning.ForeColor = System.Drawing.Color.Black;
            this.notePanel1_ClassMorning.GradientMode = System.Drawing.Drawing2D.LinearGradientMode.Vertical;
            this.notePanel1_ClassMorning.Location = new System.Drawing.Point(16, 72);
            this.notePanel1_ClassMorning.MaxRows = 5;
            this.notePanel1_ClassMorning.Name = "notePanel1_ClassMorning";
            this.notePanel1_ClassMorning.ParentAutoHeight = true;
            this.notePanel1_ClassMorning.Size = new System.Drawing.Size(80, 22);
            this.notePanel1_ClassMorning.TabIndex = 16;
            this.notePanel1_ClassMorning.TabStop = false;
            this.notePanel1_ClassMorning.Text = "  班  级:";
            // 
            // notePanel_GradeClassMorning
            // 
            this.notePanel_GradeClassMorning.BackColor = System.Drawing.Color.LawnGreen;
            this.notePanel_GradeClassMorning.BackColor2 = System.Drawing.Color.DarkGray;
            this.notePanel_GradeClassMorning.Font = new System.Drawing.Font("Tahoma", 8F);
            this.notePanel_GradeClassMorning.ForeColor = System.Drawing.Color.Black;
            this.notePanel_GradeClassMorning.GradientMode = System.Drawing.Drawing2D.LinearGradientMode.Vertical;
            this.notePanel_GradeClassMorning.Location = new System.Drawing.Point(16, 48);
            this.notePanel_GradeClassMorning.MaxRows = 5;
            this.notePanel_GradeClassMorning.Name = "notePanel_GradeClassMorning";
            this.notePanel_GradeClassMorning.ParentAutoHeight = true;
            this.notePanel_GradeClassMorning.Size = new System.Drawing.Size(200, 22);
            this.notePanel_GradeClassMorning.TabIndex = 19;
            this.notePanel_GradeClassMorning.TabStop = false;
            this.notePanel_GradeClassMorning.Text = "年级和班级:";
            this.notePanel_GradeClassMorning.Click += new System.EventHandler(this.notePanel_GradeClass_Click_1);
            // 
            // notePanel_TimeStatusMorning
            // 
            this.notePanel_TimeStatusMorning.BackColor = System.Drawing.Color.LawnGreen;
            this.notePanel_TimeStatusMorning.BackColor2 = System.Drawing.Color.DarkGray;
            this.notePanel_TimeStatusMorning.Font = new System.Drawing.Font("Tahoma", 8F);
            this.notePanel_TimeStatusMorning.ForeColor = System.Drawing.Color.Black;
            this.notePanel_TimeStatusMorning.GradientMode = System.Drawing.Drawing2D.LinearGradientMode.Vertical;
            this.notePanel_TimeStatusMorning.Location = new System.Drawing.Point(16, 98);
            this.notePanel_TimeStatusMorning.MaxRows = 5;
            this.notePanel_TimeStatusMorning.Name = "notePanel_TimeStatusMorning";
            this.notePanel_TimeStatusMorning.ParentAutoHeight = true;
            this.notePanel_TimeStatusMorning.Size = new System.Drawing.Size(200, 22);
            this.notePanel_TimeStatusMorning.TabIndex = 18;
            this.notePanel_TimeStatusMorning.TabStop = false;
            this.notePanel_TimeStatusMorning.Text = "时间和状态:";
            this.notePanel_TimeStatusMorning.Click += new System.EventHandler(this.notePanel_TimeStatus_Click_1);
            // 
            // notePanel_NumberNameMorning
            // 
            this.notePanel_NumberNameMorning.BackColor = System.Drawing.Color.LawnGreen;
            this.notePanel_NumberNameMorning.BackColor2 = System.Drawing.Color.DarkGray;
            this.notePanel_NumberNameMorning.Font = new System.Drawing.Font("Tahoma", 8F);
            this.notePanel_NumberNameMorning.ForeColor = System.Drawing.Color.Black;
            this.notePanel_NumberNameMorning.GradientMode = System.Drawing.Drawing2D.LinearGradientMode.Vertical;
            this.notePanel_NumberNameMorning.Location = new System.Drawing.Point(16, 74);
            this.notePanel_NumberNameMorning.MaxRows = 5;
            this.notePanel_NumberNameMorning.Name = "notePanel_NumberNameMorning";
            this.notePanel_NumberNameMorning.ParentAutoHeight = true;
            this.notePanel_NumberNameMorning.Size = new System.Drawing.Size(200, 22);
            this.notePanel_NumberNameMorning.TabIndex = 17;
            this.notePanel_NumberNameMorning.TabStop = false;
            this.notePanel_NumberNameMorning.Text = "学号和姓名:";
            this.notePanel_NumberNameMorning.Click += new System.EventHandler(this.notePanel_NumberName_Click_1);
            // 
            // notePanel1_SerCondMorning
            // 
            this.notePanel1_SerCondMorning.BackColor = System.Drawing.Color.LightGoldenrodYellow;
            this.notePanel1_SerCondMorning.Dock = System.Windows.Forms.DockStyle.Top;
            this.notePanel1_SerCondMorning.Font = new System.Drawing.Font("Tahoma", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.notePanel1_SerCondMorning.ForeColor = System.Drawing.Color.OrangeRed;
            this.notePanel1_SerCondMorning.GradientMode = System.Drawing.Drawing2D.LinearGradientMode.Vertical;
            this.notePanel1_SerCondMorning.Location = new System.Drawing.Point(2, 22);
            this.notePanel1_SerCondMorning.MaxRows = 5;
            this.notePanel1_SerCondMorning.Name = "notePanel1_SerCondMorning";
            this.notePanel1_SerCondMorning.ParentAutoHeight = true;
            this.notePanel1_SerCondMorning.Size = new System.Drawing.Size(235, 23);
            this.notePanel1_SerCondMorning.TabIndex = 5;
            this.notePanel1_SerCondMorning.TabStop = false;
            this.notePanel1_SerCondMorning.Text = "您要搜索的条件?";
            // 
            // gridControl_MorningInfo
            // 
            this.gridControl_MorningInfo.Dock = System.Windows.Forms.DockStyle.Fill;
            this.gridControl_MorningInfo.Location = new System.Drawing.Point(0, 40);
            this.gridControl_MorningInfo.MainView = this.gridView1;
            this.gridControl_MorningInfo.Name = "gridControl_MorningInfo";
            this.gridControl_MorningInfo.RepositoryItems.AddRange(new DevExpress.XtraEditors.Repository.RepositoryItem[] {
            this.repositoryItemComboBox_Status});
            this.gridControl_MorningInfo.Size = new System.Drawing.Size(522, 471);
            this.gridControl_MorningInfo.TabIndex = 7;
            this.gridControl_MorningInfo.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.gridView1.GridControl = this.gridControl_MorningInfo;
            this.gridView1.GroupFooterShowMode = DevExpress.XtraGrid.Views.Grid.GroupFooterShowMode.VisibleAlways;
            this.gridView1.Name = "gridView1";
            this.gridView1.OptionsCustomization.AllowFilter = false;
            this.gridView1.OptionsView.ShowFilterPanelMode = DevExpress.XtraGrid.Views.Base.ShowFilterPanelMode.Never;
            this.gridView1.OptionsView.ShowGroupPanel = false;
            this.gridView1.RowCellStyle += new DevExpress.XtraGrid.Views.Grid.RowCellStyleEventHandler(this.gridView1_RowCellStyle);
            this.gridView1.FocusedRowChanged += new DevExpress.XtraGrid.Views.Base.FocusedRowChangedEventHandler(this.gridView1_FocusedRowChanged);
            this.gridView1.CellValueChanged += new DevExpress.XtraGrid.Views.Base.CellValueChangedEventHandler(this.gridView1_CellValueChanged);
            // 
            // 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.DisplayFormat.FormatType = DevExpress.Utils.FormatType.Numeric;
            this.gridColumn1.FieldName = "info_stuOrderNumber";
            this.gridColumn1.Name = "gridColumn1";
            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.AllowMove = false;
            this.gridColumn1.OptionsColumn.AllowSort = DevExpress.Utils.DefaultBoolean.True;
            this.gridColumn1.OptionsColumn.FixedWidth = true;
            this.gridColumn1.OptionsColumn.ReadOnly = true;
            this.gridColumn1.OptionsColumn.ShowInCustomizationForm = false;
            this.gridColumn1.OptionsFilter.AllowAutoFilter = false;
            this.gridColumn1.OptionsFilter.AllowFilter = false;
            this.gridColumn1.OptionsFilter.ImmediateUpdateAutoFilter = false;
            this.gridColumn1.SortMode = DevExpress.XtraGrid.ColumnSortMode.Value;
            this.gridColumn1.Visible = true;
            this.gridColumn1.VisibleIndex = 0;
            this.gridColumn1.Width = 76;
            // 
            // 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_className";
            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.AllowMove = false;
            this.gridColumn2.OptionsColumn.AllowSort = DevExpress.Utils.DefaultBoolean.True;
            this.gridColumn2.OptionsColumn.FixedWidth = true;
            this.gridColumn2.OptionsColumn.ReadOnly = true;
            this.gridColumn2.OptionsColumn.ShowInCustomizationForm = false;
            this.gridColumn2.OptionsFilter.AllowAutoFilter = false;
            this.gridColumn2.OptionsFilter.ImmediateUpdateAutoFilter = false;
            this.gridColumn2.Visible = true;
            this.gridColumn2.VisibleIndex = 1;
            this.gridColumn2.Width = 65;
            // 
            // 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_stuNumber";
            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.AllowMove = false;
            this.gridColumn3.OptionsColumn.AllowSort = DevExpress.Utils.DefaultBoolean.True;
            this.gridColumn3.OptionsColumn.FixedWidth = true;
            this.gridColumn3.OptionsColumn.ReadOnly = true;
            this.gridColumn3.OptionsColumn.ShowInCustomizationForm = false;
            this.gridColumn3.OptionsFilter.AllowAutoFilter = false;
            this.gridColumn3.OptionsFilter.ImmediateUpdateAutoFilter = false;
            this.gridColumn3.Visible = true;
            this.gridColumn3.VisibleIndex = 2;
            this.gridColumn3.Width = 65;
            // 
            // 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_stuName";
            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.AllowMove = false;
            this.gridColumn4.OptionsColumn.AllowSort = DevExpress.Utils.DefaultBoolean.True;
            this.gridColumn4.OptionsColumn.FixedWidth = true;
            this.gridColumn4.OptionsColumn.ReadOnly = true;
            this.gridColumn4.OptionsColumn.ShowInCustomizationForm = false;
            this.gridColumn4.OptionsFilter.AllowAutoFilter = false;
            this.gridColumn4.OptionsFilter.ImmediateUpdateAutoFilter = false;
            this.gridColumn4.Visible = true;
            this.gridColumn4.VisibleIndex = 3;
            this.gridColumn4.Width = 66;
            // 
            // 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.DisplayFormat.FormatString = "yyyy-MM-dd HH:mm:ss";
            this.gridColumn5.DisplayFormat.FormatType = DevExpress.Utils.FormatType.DateTime;
            this.gridColumn5.FieldName = "flow_stuFlowEnterDate";
            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.AllowMove = false;
            this.gridColumn5.OptionsColumn.AllowSort = DevExpress.Utils.DefaultBoolean.True;
            this.gridColumn5.OptionsColumn.FixedWidth = true;
            this.gridColumn5.OptionsColumn.ReadOnly = true;
            this.gridColumn5.OptionsColumn.ShowInCustomizationForm = false;
            this.gridColumn5.OptionsFilter.AllowAutoFilter = false;
            this.gridColumn5.OptionsFilter.ImmediateUpdateAutoFilter = false;
            this.gridColumn5.Visible = true;
            this.gridColumn5.VisibleIndex = 4;
            this.gridColumn5.Width = 162;
            // 
            // 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.ColumnEdit = this.repositoryItemComboBox_Status;
            this.gridColumn6.FieldName = "state_flowStateName";
            this.gridColumn6.Name = "gridColumn6";
            this.gridColumn6.OptionsColumn.AllowGroup = DevExpress.Utils.DefaultBoolean.False;
            this.gridColumn6.OptionsColumn.AllowSort = DevExpress.Utils.DefaultBoolean.True;
            this.gridColumn6.OptionsColumn.FixedWidth = true;
            this.gridColumn6.OptionsColumn.ShowInCustomizationForm = false;
            this.gridColumn6.OptionsFilter.AllowAutoFilter = false;
            this.gridColumn6.OptionsFilter.ImmediateUpdateAutoFilter = false;
            this.gridColumn6.Visible = true;
            this.gridColumn6.VisibleIndex = 5;
            // 
            // repositoryItemComboBox_Status
            // 
            this.repositoryItemComboBox_Status.AutoHeight = false;
            this.repositoryItemComboBox_Status.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
            new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
            this.repositoryItemComboBox_Status.Items.AddRange(new object[] {
            "健康",
            "服药",
            "观察",
            "缺席"});
            this.repositoryItemComboBox_Status.Name = "repositoryItemComboBox_Status";
            this.repositoryItemComboBox_Status.TextEditStyle = DevExpress.XtraEditors.Controls.TextEditStyles.DisableTextEditor;
            // 
            // panelControl1
            // 
            this.panelControl1.Controls.Add(this.simpleButton_PrintMorning);
            this.panelControl1.Controls.Add(this.simpleButton_SearchMorning);
            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(522, 40);
            this.panelControl1.TabIndex = 6;
            // 
            // simpleButton_PrintMorning
            // 
            this.simpleButton_PrintMorning.Appearance.Font = new System.Drawing.Font("Tahoma", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.simpleButton_PrintMorning.Appearance.ForeColor = System.Drawing.Color.DarkMagenta;
            this.simpleButton_PrintMorning.Appearance.Options.UseFont = true;
            this.simpleButton_PrintMorning.Appearance.Options.UseForeColor = true;
            this.simpleButton_PrintMorning.Image = ((System.Drawing.Image)(resources.GetObject("simpleButton_PrintMorning.Image")));
            this.simpleButton_PrintMorning.Location = new System.Drawing.Point(120, 8);
            this.simpleButton_PrintMorning.Name = "simpleButton_PrintMorning";
            this.simpleButton_PrintMorning.Size = new System.Drawing.Size(92, 26);
            this.simpleButton_PrintMorning.TabIndex = 5;
            this.simpleButton_PrintMorning.Tag = 4;
            this.simpleButton_PrintMorning.Text = "报  表";
            this.simpleButton_PrintMorning.Click += new System.EventHandler(this.simpleButton_PrintMorning_Click);
            // 
            // simpleButton_SearchMorning
            // 
            this.simpleButton_SearchMorning.Appearance.Font = new System.Drawing.Font("Tahoma", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.simpleButton_SearchMorning.Appearance.ForeColor = System.Drawing.Color.DarkMagenta;
            this.simpleButton_SearchMorning.Appearance.Options.UseFont = true;
            this.simpleButton_SearchMorning.Appearance.Options.UseForeColor = true;
            this.simpleButton_SearchMorning.Image = ((System.Drawing.Image)(resources.GetObject("simpleButton_SearchMorning.Image")));
            this.simpleButton_SearchMorning.Location = new System.Drawing.Point(16, 8);
            this.simpleButton_SearchMorning.Name = "simpleButton_SearchMorning";
            this.simpleButton_SearchMorning.Size = new System.Drawing.Size(92, 26);
            this.simpleButton_SearchMorning.TabIndex = 2;
            this.simpleButton_SearchMorning.Tag = 4;
            this.simpleButton_SearchMorning.Text = "搜  索";
            this.simpleButton_SearchMorning.Click += new System.EventHandler(this.simpleButton_SearchMorning_Click);
            // 
            // xtraTabPage_BackHomeCheck
            // 
            this.xtraTabPage_BackHomeCheck.Appearance.PageClient.BackColor = System.Drawing.Color.WhiteSmoke;
            this.xtraTabPage_BackHomeCheck.Appearance.PageClient.Options.UseBackColor = true;
            this.xtraTabPage_BackHomeCheck.Controls.Add(this.splitContainerControl2);
            this.xtraTabPage_BackHomeCheck.Name = "xtraTabPage_BackHomeCheck";
            this.xtraTabPage_BackHomeCheck.Size = new System.Drawing.Size(766, 511);
            this.xtraTabPage_BackHomeCheck.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);
            this.splitContainerControl2.Panel1.Controls.Add(this.groupControl_FastSerBack);
            this.splitContainerControl2.Panel1.Text = "splitContainerControl2_Panel1";
            this.splitContainerControl2.Panel2.Controls.Add(this.gridControl_BackInfo);
            this.splitContainerControl2.Panel2.Controls.Add(this.panelControl2);
            this.splitContainerControl2.Panel2.Text = "splitContainerControl2_Panel2";
            this.splitContainerControl2.Size = new System.Drawing.Size(766, 511);
            this.splitContainerControl2.SplitterPosition = 238;
            this.splitContainerControl2.TabIndex = 0;
            this.splitContainerControl2.Text = "splitContainerControl2";
            // 
            // groupControl1
            // 
            this.groupControl1.AppearanceCaption.Font = new System.Drawing.Font("Tahoma", 9F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.groupControl1.AppearanceCaption.Options.UseFont = true;
            this.groupControl1.Controls.Add(this.textEdit_ShouldGo);
            this.groupControl1.Controls.Add(this.notePanel_ShouldGo);
            this.groupControl1.Controls.Add(this.textEdit_HasnotGone);
            this.groupControl1.Controls.Add(this.notePanel_HasnotGone);
            this.groupControl1.Controls.Add(this.textEdit_HasGone);
            this.groupControl1.Controls.Add(this.notePanel_HasGone);
            this.groupControl1.Dock = System.Windows.Forms.DockStyle.Top;
            this.groupControl1.Location = new System.Drawing.Point(0, 320);
            this.groupControl1.Name = "groupControl1";
            this.groupControl1.Size = new System.Drawing.Size(238, 136);
            this.groupControl1.TabIndex = 9;
            this.groupControl1.Text = "晚接信息统计";
            // 
            // textEdit_ShouldGo
            // 
            this.textEdit_ShouldGo.EditValue = "";
            this.textEdit_ShouldGo.Location = new System.Drawing.Point(104, 96);
            this.textEdit_ShouldGo.Name = "textEdit_ShouldGo";
            this.textEdit_ShouldGo.Properties.Appearance.ForeColor = System.Drawing.Color.Navy;
            this.textEdit_ShouldGo.Properties.Appearance.Options.UseForeColor = true;
            this.textEdit_ShouldGo.Size = new System.Drawing.Size(120, 20);
            this.textEdit_ShouldGo.TabIndex = 10;
            // 
            // notePanel_ShouldGo
            // 
            this.notePanel_ShouldGo.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(224)))), ((int)(((byte)(224)))), ((int)(((byte)(224)))));
            this.notePanel_ShouldGo.BackColor2 = System.Drawing.Color.DarkGray;
            this.notePanel_ShouldGo.Font = new System.Drawing.Font("Tahoma", 8F);
            this.notePanel_ShouldGo.ForeColor = System.Drawing.Color.Black;
            this.notePanel_ShouldGo.GradientMode = System.Drawing.Drawing2D.LinearGradientMode.Vertical;
            this.notePanel_ShouldGo.Location = new System.Drawing.Point(16, 96);
            this.notePanel_ShouldGo.MaxRows = 5;
            this.notePanel_ShouldGo.Name = "notePanel_ShouldGo";
            this.notePanel_ShouldGo.ParentAutoHeight = true;
            this.notePanel_ShouldGo.Size = new System.Drawing.Size(80, 22);
            this.notePanel_ShouldGo.TabIndex = 9;
            this.notePanel_ShouldGo.TabStop = false;
            this.notePanel_ShouldGo.Text = " 应接走:";
            // 
            // textEdit_HasnotGone
            // 
            this.textEdit_HasnotGone.EditValue = "";
            this.textEdit_HasnotGone.Location = new System.Drawing.Point(104, 64);
            this.textEdit_HasnotGone.Name = "textEdit_HasnotGone";
            this.textEdit_HasnotGone.Properties.Appearance.ForeColor = System.Drawing.Color.Navy;
            this.textEdit_HasnotGone.Properties.Appearance.Options.UseForeColor = true;
            this.textEdit_HasnotGone.Size = new System.Drawing.Size(120, 20);
            this.textEdit_HasnotGone.TabIndex = 8;
            // 
            // notePanel_HasnotGone
            // 
            this.notePanel_HasnotGone.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(224)))), ((int)(((byte)(224)))), ((int)(((byte)(224)))));
            this.notePanel_HasnotGone.BackColor2 = System.Drawing.Color.DarkGray;
            this.notePanel_HasnotGone.Font = new System.Drawing.Font("Tahoma", 8F);
            this.notePanel_HasnotGone.ForeColor = System.Drawing.Color.Black;
            this.notePanel_HasnotGone.GradientMode = System.Drawing.Drawing2D.LinearGradientMode.Vertical;
            this.notePanel_HasnotGone.Location = new System.Drawing.Point(16, 64);
            this.notePanel_HasnotGone.MaxRows = 5;
            this.notePanel_HasnotGone.Name = "notePanel_HasnotGone";
            this.notePanel_HasnotGone.ParentAutoHeight = true;
            this.notePanel_HasnotGone.Size = new System.Drawing.Size(80, 22);
            this.notePanel_HasnotGone.TabIndex = 7;
            this.notePanel_HasnotGone.TabStop = false;
            this.notePanel_HasnotGone.Text = " 未接走:";
            // 
            // textEdit_HasGone
            // 
            this.textEdit_HasGone.EditValue = "";
            this.textEdit_HasGone.Location = new System.Drawing.Point(104, 32);
            this.textEdit_HasGone.Name = "textEdit_HasGone";
            this.textEdit_HasGone.Properties.Appearance.ForeColor = System.Drawing.Color.Navy;
            this.textEdit_HasGone.Properties.Appearance.Options.UseForeColor = true;
            this.textEdit_HasGone.Size = new System.Drawing.Size(120, 20);
            this.textEdit_HasGone.TabIndex = 6;
            // 
            // notePanel_HasGone
            // 
            this.notePanel_HasGone.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(224)))), ((int)(((byte)(224)))), ((int)(((byte)(224)))));
            this.notePanel_HasGone.BackColor2 = System.Drawing.Color.DarkGray;
            this.notePanel_HasGone.Font = new System.Drawing.Font("Tahoma", 8F);
            this.notePanel_HasGone.ForeColor = System.Drawing.Color.Black;
            this.notePanel_HasGone.GradientMode = System.Drawing.Drawing2D.LinearGradientMode.Vertical;
            this.notePanel_HasGone.Location = new System.Drawing.Point(16, 32);
            this.notePanel_HasGone.MaxRows = 5;
            this.notePanel_HasGone.Name = "notePanel_HasGone";
            this.notePanel_HasGone.ParentAutoHeight = true;
            this.notePanel_HasGone.Size = new System.Drawing.Size(80, 22);
            this.notePanel_HasGone.TabIndex = 5;
            this.notePanel_HasGone.TabStop = false;
            this.notePanel_HasGone.Text = " 已接走:";
            // 
            // groupControl_FastSerBack
            // 
            this.groupControl_FastSerBack.AppearanceCaption.Font = new System.Drawing.Font("Tahoma", 9F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.groupControl_FastSerBack.AppearanceCaption.Options.UseFont = true;
            this.groupControl_FastSerBack.Controls.Add(this.groupControl_TimeCondBack);
            this.groupControl_FastSerBack.Controls.Add(this.groupControl_NumberNameBack);
            this.groupControl_FastSerBack.Controls.Add(this.groupControl_GradeClassBack);
            this.groupControl_FastSerBack.Controls.Add(this.notePanel_GradeClassBack);
            this.groupControl_FastSerBack.Controls.Add(this.notePanel_TimeConBack);
            this.groupControl_FastSerBack.Controls.Add(this.notePanel_NumberNameBack);
            this.groupControl_FastSerBack.Controls.Add(this.notePanel_SerCondBack);
            this.groupControl_FastSerBack.Dock = System.Windows.Forms.DockStyle.Top;
            this.groupControl_FastSerBack.Location = new System.Drawing.Point(0, 0);
            this.groupControl_FastSerBack.Name = "groupControl_FastSerBack";
            this.groupControl_FastSerBack.Size = new System.Drawing.Size(238, 320);
            this.groupControl_FastSerBack.TabIndex = 8;
            this.groupControl_FastSerBack.Text = "快速搜索";
            // 
            // groupControl_TimeCondBack
            // 
            this.groupControl_TimeCondBack.AppearanceCaption.Font = new System.Drawing.Font("Tahoma", 9F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.groupControl_TimeCondBack.AppearanceCaption.ForeColor = System.Drawing.Color.Black;
            this.groupControl_TimeCondBack.AppearanceCaption.Options.UseFont = true;
            this.groupControl_TimeCondBack.AppearanceCaption.Options.UseForeColor = true;
            this.groupControl_TimeCondBack.Controls.Add(this.dateEdit_SpecificDateBack);
            this.groupControl_TimeCondBack.Controls.Add(this.notePanel_SpecificDateBack);
            this.groupControl_TimeCondBack.Controls.Add(this.comboBoxEdit_TimeModeBack);
            this.groupControl_TimeCondBack.Controls.Add(this.notePanel_TimeModeBack);
            this.groupControl_TimeCondBack.Controls.Add(this.textEdit_EndTimeBack);
            this.groupControl_TimeCondBack.Controls.Add(this.textEdit_BegTimeBack);
            this.groupControl_TimeCondBack.Controls.Add(this.comboBoxEdit_BackCond);
            this.groupControl_TimeCondBack.Controls.Add(this.notePanel_BackCond);
            this.groupControl_TimeCondBack.Controls.Add(this.notePanel_BegTimeBack);
            this.groupControl_TimeCondBack.Controls.Add(this.notePanel_EndTimeBack);
            this.groupControl_TimeCondBack.Dock = System.Windows.Forms.DockStyle.Bottom;
            this.groupControl_TimeCondBack.Location = new System.Drawing.Point(2, -106);
            this.groupControl_TimeCondBack.Name = "groupControl_TimeCondBack";
            this.groupControl_TimeCondBack.Size = new System.Drawing.Size(234, 184);
            this.groupControl_TimeCondBack.TabIndex = 22;
            this.groupControl_TimeCondBack.Text = "指定搜索的时间和晚接情况";
            this.groupControl_TimeCondBack.Visible = false;
            // 
            // dateEdit_SpecificDateBack
            // 
            this.dateEdit_SpecificDateBack.EditValue = new System.DateTime(2005, 1, 31, 0, 0, 0, 0);
            this.dateEdit_SpecificDateBack.Location = new System.Drawing.Point(104, 24);
            this.dateEdit_SpecificDateBack.Name = "dateEdit_SpecificDateBack";
            this.dateEdit_SpecificDateBack.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
            new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
            this.dateEdit_SpecificDateBack.Properties.VistaTimeProperties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
            new DevExpress.XtraEditors.Controls.EditorButton()});
            this.dateEdit_SpecificDateBack.Size = new System.Drawing.Size(112, 20);
            this.dateEdit_SpecificDateBack.TabIndex = 24;
            // 
            // notePanel_SpecificDateBack
            // 
            this.notePanel_SpecificDateBack.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(224)))), ((int)(((byte)(224)))), ((int)(((byte)(224)))));
            this.notePanel_SpecificDateBack.BackColor2 = System.Drawing.Color.DarkGray;
            this.notePanel_SpecificDateBack.Font = new System.Drawing.Font("Tahoma", 8F);
            this.notePanel_SpecificDateBack.ForeColor = System.Drawing.Color.Black;
            this.notePanel_SpecificDateBack.GradientMode = System.Drawing.Drawing2D.LinearGradientMode.Vertical;
            this.notePanel_SpecificDateBack.Location = new System.Drawing.Point(16, 24);
            this.notePanel_SpecificDateBack.MaxRows = 5;
            this.notePanel_SpecificDateBack.Name = "notePanel_SpecificDateBack";
            this.notePanel_SpecificDateBack.ParentAutoHeight = true;
            this.notePanel_SpecificDateBack.Size = new System.Drawing.Size(80, 22);
            this.notePanel_SpecificDateBack.TabIndex = 23;
            this.notePanel_SpecificDateBack.TabStop = false;
            this.notePanel_SpecificDateBack.Text = "指定日期:";
            // 
            // comboBoxEdit_TimeModeBack
            // 
            this.comboBoxEdit_TimeModeBack.EditValue = "模糊时间";
            this.comboBoxEdit_TimeModeBack.Location = new System.Drawing.Point(104, 120);
            this.comboBoxEdit_TimeModeBack.Name = "comboBoxEdit_TimeModeBack";
            this.comboBoxEdit_TimeModeBack.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
            new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
            this.comboBoxEdit_TimeModeBack.Properties.Items.AddRange(new object[] {
            "模糊时间",
            "精确时间"});
            this.comboBoxEdit_TimeModeBack.Size = new System.Drawing.Size(112, 20);
            this.comboBoxEdit_TimeModeBack.TabIndex = 22;
            this.comboBoxEdit_TimeModeBack.SelectedIndexChanged += new System.EventHandler(this.comboBoxEdit_TimeModeBack_SelectedIndexChanged);
            // 
            // notePanel_TimeModeBack
            // 
            this.notePanel_TimeModeBack.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(224)))), ((int)(((byte)(224)))), ((int)(((byte)(224)))));
            this.notePanel_TimeModeBack.BackColor2 = System.Drawing.Color.DarkGray;
            this.notePanel_TimeModeBack.Font = new System.Drawing.Font("Tahoma", 8F);
            this.notePanel_TimeModeBack.ForeColor = System.Drawing.Color.Black;
            this.notePanel_TimeModeBack.GradientMode = System.Drawing.Drawing2D.LinearGradientMode.Vertical;
            this.notePanel_TimeModeBack.Location = new System.Drawing.Point(16, 120);
            this.notePanel_TimeModeBack.MaxRows = 5;
            this.notePanel_TimeModeBack.Name = "notePanel_TimeModeBack";
            this.notePanel_TimeModeBack.ParentAutoHeight = true;
            this.notePanel_TimeModeBack.Size = new System.Drawing.Size(80, 22);
            this.notePanel_TimeModeBack.TabIndex = 21;
            this.notePanel_TimeModeBack.TabStop = false;
            this.notePanel_TimeModeBack.Text = "时间模式";
            // 
            // textEdit_EndTimeBack
            // 
            this.textEdit_EndTimeBack.EditValue = "";
            this.textEdit_EndTimeBack.Location = new System.Drawing.Point(104, 88);
            this.textEdit_EndTimeBack.Name = "textEdit_EndTimeBack";
            this.textEdit_EndTimeBack.Properties.DisplayFormat.FormatString = "d";
            this.textEdit_EndTimeBack.Properties.DisplayFormat.FormatType = DevExpress.Utils.FormatType.DateTime;
            this.textEdit_EndTimeBack.Properties.EditValueChangedFiringMode = DevExpress.XtraEditors.Controls.EditValueChangedFiringMode.Buffered;
            this.textEdit_EndTimeBack.Properties.Mask.EditMask = "d";
            this.textEdit_EndTimeBack.Properties.Mask.MaskType = DevExpress.XtraEditors.Mask.MaskType.DateTime;
            this.textEdit_EndTimeBack.Size = new System.Drawing.Size(112, 20);
            this.textEdit_EndTimeBack.TabIndex = 20;
            // 
            // textEdit_BegTimeBack
            // 
            this.textEdit_BegTimeBack.EditValue = "";
            this.textEdit_BegTimeBack.Location = new System.Drawing.Point(104, 56);
            this.textEdit_BegTimeBack.Name = "textEdit_BegTimeBack";
            this.textEdit_BegTimeBack.Properties.DisplayFormat.FormatString = "d";
            this.textEdit_BegTimeBack.Properties.DisplayFormat.FormatType = DevExpress.Utils.FormatType.DateTime;
            this.textEdit_BegTimeBack.Properties.EditValueChangedFiringMode = DevExpress.XtraEditors.Controls.EditValueChangedFiringMode.Buffered;
            this.textEdit_BegTimeBack.Properties.Mask.EditMask = "d";
            this.textEdit_BegTimeBack.Properties.Mask.MaskType = DevExpress.XtraEditors.Mask.MaskType.DateTime;
            this.textEdit_BegTimeBack.Size = new System.Drawing.Size(112, 20);
            this.textEdit_BegTimeBack.TabIndex = 19;
            // 
            // comboBoxEdit_BackCond
            // 
            this.comboBoxEdit_BackCond.EditValue = "已接走";
            this.comboBoxEdit_BackCond.Location = new System.Drawing.Point(104, 152);
            this.comboBoxEdit_BackCond.Name = "comboBoxEdit_BackCond";
            this.comboBoxEdit_BackCond.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
            new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
            this.comboBoxEdit_BackCond.Properties.Items.AddRange(new object[] {
            "已接走",
            "未接走"});
            this.comboBoxEdit_BackCond.Properties.TextEditStyle = DevExpress.XtraEditors.Controls.TextEditStyles.DisableTextEditor;
            this.comboBoxEdit_BackCond.Size = new System.Drawing.Size(112, 20);
            this.comboBoxEdit_BackCond.TabIndex = 18;
            this.comboBoxEdit_BackCond.SelectedIndexChanged += new System.EventHandler(this.comboBoxEdit_BackCond_SelectedIndexChanged);
            // 
            // notePanel_BackCond
            // 
            this.notePanel_BackCond.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(224)))), ((int)(((byte)(224)))), ((int)(((byte)(224)))));
            this.notePanel_BackCond.BackColor2 = System.Drawing.Color.DarkGray;
            this.notePanel_BackCond.Font = new System.Drawing.Font("Tahoma", 8F);
            this.notePanel_BackCond.ForeColor = System.Drawing.Color.Black;
            this.notePanel_BackCond.GradientMode = System.Drawing.Drawing2D.LinearGradientMode.Vertical;
            this.notePanel_BackCond.Location = new System.Drawing.Point(16, 152);
            this.notePanel_BackCond.MaxRows = 5;
            this.notePanel_BackCond.Name = "notePanel_BackCond";
            this.notePanel_BackCond.ParentAutoHeight = true;
            this.notePanel_BackCond.Size = new System.Drawing.Size(80, 22);
            this.notePanel_BackCond.TabIndex = 17;
            this.notePanel_BackCond.TabStop = false;
            this.notePanel_BackCond.Text = "晚接情况:";
            // 
            // notePanel_BegTimeBack
            // 
            this.notePanel_BegTimeBack.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(224)))), ((int)(((byte)(224)))), ((int)(((byte)(224)))));
            this.notePanel_BegTimeBack.BackColor2 = System.Drawing.Color.DarkGray;
            this.notePanel_BegTimeBack.Font = new System.Drawing.Font("Tahoma", 8F);
            this.notePanel_BegTimeBack.ForeColor = System.Drawing.Color.Black;
            this.notePanel_BegTimeBack.GradientMode = System.Drawing.Drawing2D.LinearGradientMode.Vertical;
            this.notePanel_BegTimeBack.Location = new System.Drawing.Point(16, 56);
            this.notePanel_BegTimeBack.MaxRows = 5;
            this.notePanel_BegTimeBack.Name = "notePanel_BegTimeBack";
            this.notePanel_BegTimeBack.ParentAutoHeight = true;
            this.notePanel_BegTimeBack.Size = new System.Drawing.Size(80, 22);
            this.notePanel_BegTimeBack.TabIndex = 14;
            this.notePanel_BegTimeBack.TabStop = false;
            this.notePanel_BegTimeBack.Text = "起始时间";
            // 
            // notePanel_EndTimeBack
            // 
            this.notePanel_EndTimeBack.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(224)))), ((int)(((byte)(224)))), ((int)(((byte)(224)))));
            this.notePanel_EndTimeBack.BackColor2 = System.Drawing.Color.DarkGray;
            this.notePanel_EndTimeBack.Font = new System.Drawing.Font("Tahoma", 8F);
            this.notePanel_EndTimeBack.ForeColor = System.Drawing.Color.Black;
            this.notePanel_EndTimeBack.GradientMode = System.Drawing.Drawing2D.LinearGradientMode.Vertical;
            this.notePanel_EndTimeBack.Location = new System.Drawing.Point(16, 88);
            this.notePanel_EndTimeBack.MaxRows = 5;
            this.notePanel_EndTimeBack.Name = "notePanel_EndTimeBack";
            this.notePanel_EndTimeBack.ParentAutoHeight = true;
            this.notePanel_EndTimeBack.Size = new System.Drawing.Size(80, 22);
            this.notePanel_EndTimeBack.TabIndex = 13;
            this.notePanel_EndTimeBack.TabStop = false;
            this.notePanel_EndTimeBack.Text = "结束时间";
            // 
            // groupControl_NumberNameBack
            // 
            this.groupControl_NumberNameBack.AppearanceCaption.Font = new System.Drawing.Font("Tahoma", 9F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.groupControl_NumberNameBack.AppearanceCaption.ForeColor = System.Drawing.Color.Black;
            this.groupControl_NumberNameBack.AppearanceCaption.Options.UseFont = true;
            this.groupControl_NumberNameBack.AppearanceCaption.Options.UseForeColor = true;
            this.groupControl_NumberNameBack.Controls.Add(this.textEdit_NameBack);
            this.groupControl_NumberNameBack.Controls.Add(this.textEdit_NumberBack);
            this.groupControl_NumberNameBack.Controls.Add(this.notePanel_NumberBack);
            this.groupControl_NumberNameBack.Controls.Add(this.notePanel1_NameBack);
            this.groupControl_NumberNameBack.Dock = System.Windows.Forms.DockStyle.Bottom;
            this.groupControl_NumberNameBack.Location = new System.Drawing.Point(2, 78);
            this.groupControl_NumberNameBack.Name = "groupControl_NumberNameBack";
            this.groupControl_NumberNameBack.Size = new System.Drawing.Size(234, 120);
            this.groupControl_NumberNameBack.TabIndex = 21;
            this.groupControl_NumberNameBack.Text = "指定搜索的学号和姓名";
            this.groupControl_NumberNameBack.Visible = false;
            // 
            // textEdit_NameBack
            // 
            this.textEdit_NameBack.EditValue = "";
            this.textEdit_NameBack.Location = new System.Drawing.Point(104, 32);
            this.textEdit_NameBack.Name = "textEdit_NameBack";
            this.textEdit_NameBack.Size = new System.Drawing.Size(112, 20);
            this.textEdit_NameBack.TabIndex = 12;
            // 
            // textEdit_NumberBack
            // 
            this.textEdit_NumberBack.EditValue = "";
            this.textEdit_NumberBack.Location = new System.Drawing.Point(104, 72);
            this.textEdit_NumberBack.Name = "textEdit_NumberBack";
            this.textEdit_NumberBack.Size = new System.Drawing.Size(112, 20);
            this.textEdit_NumberBack.TabIndex = 11;
            // 
            // notePanel_NumberBack
            // 
            this.notePanel_NumberBack.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(224)))), ((int)(((byte)(224)))), ((int)(((byte)(224)))));
            this.notePanel_NumberBack.BackColor2 = System.Drawing.Color.DarkGray;
            this.notePanel_NumberBack.Font = new System.Drawing.Font("Tahoma", 8F);
            this.notePanel_NumberBack.ForeColor = System.Drawing.Color.Black;
            this.notePanel_NumberBack.GradientMode = System.Drawing.Drawing2D.LinearGradientMode.Vertical;
            this.notePanel_NumberBack.Location = new System.Drawing.Point(16, 72);
            this.notePanel_NumberBack.MaxRows = 5;
            this.notePanel_NumberBack.Name = "notePanel_NumberBack";
            this.notePanel_NumberBack.ParentAutoHeight = true;
            this.notePanel_NumberBack.Size = new System.Drawing.Size(80, 22);
            this.notePanel_NumberBack.TabIndex = 10;
            this.notePanel_NumberBack.TabStop = false;
            this.notePanel_NumberBack.Text = "  学  号:";
            // 
            // notePanel1_NameBack
            // 
            this.notePanel1_NameBack.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(224)))), ((int)(((byte)(224)))), ((int)(((byte)(224)))));
            this.notePanel1_NameBack.BackColor2 = System.Drawing.Color.DarkGray;
            this.notePanel1_NameBack.Font = new System.Drawing.Font("Tahoma", 8F);
            this.notePanel1_NameBack.ForeColor = System.Drawing.Color.Black;
            this.notePanel1_NameBack.GradientMode = System.Drawing.Drawing2D.LinearGradientMode.Vertical;
            this.notePanel1_NameBack.Location = new System.Drawing.Point(16, 32);
            this.notePanel1_NameBack.MaxRows = 5;
            this.notePanel1_NameBack.Name = "notePanel1_NameBack";
            this.notePanel1_NameBack.ParentAutoHeight = true;
            this.notePanel1_NameBack.Size = new System.Drawing.Size(80, 22);
            this.notePanel1_NameBack.TabIndex = 9;
            this.notePanel1_NameBack.TabStop = false;
            this.notePanel1_NameBack.Text = "  姓  名:";
            // 
            // groupControl_GradeClassBack
            // 
            this.groupControl_GradeClassBack.AppearanceCaption.Font = new System.Drawing.Font("Tahoma", 9F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.groupControl_GradeClassBack.AppearanceCaption.Options.UseFont = true;
            this.groupControl_GradeClassBack.Controls.Add(this.comboBoxEdit_ClassBack);
            this.groupControl_GradeClassBack.Controls.Add(this.comboBoxEdit_GradeBack);
            this.groupControl_GradeClassBack.Controls.Add(this.notePanel1_GradeBack);
            this.groupControl_GradeClassBack.Controls.Add(this.notePanel1_ClassBack);
            this.groupControl_GradeClassBack.Dock = System.Windows.Forms.DockStyle.Bottom;
            this.groupControl_GradeClassBack.Location = new System.Drawing.Point(2, 198);
            this.groupControl_GradeClassBack.Name = "groupControl_GradeClassBack";
            this.groupControl_GradeClassBack.Size = new System.Drawing.Size(234, 120);
            this.groupControl_GradeClassBack.TabIndex = 20;
            this.groupControl_GradeClassBack.Text = "指定搜索的年级和班级";
            this.groupControl_GradeClassBack.Visible = false;
            // 
            // comboBoxEdit_ClassBack
            // 
            this.comboBoxEdit_ClassBack.EditValue = "全部";
            this.comboBoxEdit_ClassBack.Location = new System.Drawing.Point(104, 72);
            this.comboBoxEdit_ClassBack.Name = "comboBoxEdit_ClassBack";
            this.comboBoxEdit_ClassBack.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
            new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
            this.comboBoxEdit_ClassBack.Properties.Items.AddRange(new object[] {
            "全部"});
            this.comboBoxEdit_ClassBack.Properties.TextEditStyle = DevExpress.XtraEditors.Controls.TextEditStyles.DisableTextEditor;
            this.comboBoxEdit_ClassBack.Size = new System.Drawing.Size(112, 20);
            this.comboBoxEdit_ClassBack.TabIndex = 18;
            this.comboBoxEdit_ClassBack.SelectedIndexChanged += new System.EventHandler(this.comboBoxEdit_ClassBack_SelectedIndexChanged);
            // 
            // comboBoxEdit_GradeBack
            // 
            this.comboBoxEdit_GradeBack.EditValue = "全部";
            this.comboBoxEdit_GradeBack.Location = new System.Drawing.Point(104, 32);
            this.comboBoxEdit_GradeBack.Name = "comboBoxEdit_GradeBack";
            this.comboBoxEdit_GradeBack.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
            new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
            this.comboBoxEdit_GradeBack.Properties.Items.AddRange(new object[] {
            "全部"});
            this.comboBoxEdit_GradeBack.Properties.TextEditStyle = DevExpress.XtraEditors.Controls.TextEditStyles.DisableTextEditor;
            this.comboBoxEdit_GradeBack.Size = new System.Drawing.Size(112, 20);
            this.comboBoxEdit_GradeBack.TabIndex = 17;
            this.comboBoxEdit_GradeBack.SelectedIndexChanged += new System.EventHandler(this.comboBoxEdit_GradeBack_SelectedIndexChanged);
            // 
            // notePanel1_GradeBack
            // 
            this.notePanel1_GradeBack.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(224)))), ((int)(((byte)(224)))), ((int)(((byte)(224)))));
            this.notePanel1_GradeBack.BackColor2 = System.Drawing.Color.DarkGray;
            this.notePanel1_GradeBack.Font = new System.Drawing.Font("Tahoma", 8F);
            this.notePanel1_GradeBack.ForeColor = System.Drawing.Color.Black;
            this.notePanel1_GradeBack.GradientMode = System.Drawing.Drawing2D.LinearGradientMode.Vertical;
            this.notePanel1_GradeBack.Location = new System.Drawing.Point(16, 32);
            this.notePanel1_GradeBack.MaxRows = 5;
            this.notePanel1_GradeBack.Name = "notePanel1_GradeBack";
            this.notePanel1_GradeBack.ParentAutoHeight = true;
            this.notePanel1_GradeBack.Size = new System.Drawing.Size(80, 22);
            this.notePanel1_GradeBack.TabIndex = 4;
            this.notePanel1_GradeBack.TabStop = false;
            this.notePanel1_GradeBack.Text = "  年  级:";
            // 
            // notePanel1_ClassBack
            // 
            this.notePanel1_ClassBack.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(224)))), ((int)(((byte)(224)))), ((int)(((byte)(224)))));
            this.notePanel1_ClassBack.BackColor2 = System.Drawing.Color.DarkGray;
            this.notePanel1_ClassBack.Font = new System.Drawing.Font("Tahoma", 8F);
            this.notePanel1_ClassBack.ForeColor = System.Drawing.Color.Black;
            this.notePanel1_ClassBack.GradientMode = System.Drawing.Drawing2D.LinearGradientMode.Vertical;
            this.notePanel1_ClassBack.Location = new System.Drawing.Point(16, 72);
            this.notePanel1_ClassBack.MaxRows = 5;
            this.notePanel1_ClassBack.Name = "notePanel1_ClassBack";
            this.notePanel1_ClassBack.ParentAutoHeight = true;
            this.notePanel1_ClassBack.Size = new System.Drawing.Size(80, 22);
            this.notePanel1_ClassBack.TabIndex = 16;
            this.notePanel1_ClassBack.TabStop = false;
            this.notePanel1_ClassBack.Text = "  班  级:";
            // 
            // notePanel_GradeClassBack
            // 
            this.notePanel_GradeClassBack.BackColor = System.Drawing.Color.Yellow;
            this.notePanel_GradeClassBack.BackColor2 = System.Drawing.Color.DarkGray;
            this.notePanel_GradeClassBack.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.notePanel_GradeClassBack.ForeColor = System.Drawing.Color.Black;
            this.notePanel_GradeClassBack.GradientMode = System.Drawing.Drawing2D.LinearGradientMode.Vertical;
            this.notePanel_GradeClassBack.Location = new System.Drawing.Point(16, 50);
            this.notePanel_GradeClassBack.MaxRows = 5;
            this.notePanel_GradeClassBack.Name = "notePanel_GradeClassBack";
            this.notePanel_GradeClassBack.ParentAutoHeight = true;
            this.notePanel_GradeClassBack.Size = new System.Drawing.Size(200, 22);
            this.notePanel_GradeClassBack.TabIndex = 19;
            this.notePanel_GradeClassBack.TabStop = false;
            this.notePanel_GradeClassBack.Text = "年级和班级:";
            this.notePanel_GradeClassBack.Click += new System.EventHandler(this.notePanel_GradeClassBack_Click);
            // 
            // notePanel_TimeConBack
            // 
            this.notePanel_TimeConBack.BackColor = System.Drawing.Color.Yellow;
            this.notePanel_TimeConBack.BackColor2 = System.Drawing.Color.DarkGray;
            this.notePanel_TimeConBack.Font = new System.Drawing.Font("Tahoma", 8F);
            this.notePanel_TimeConBack.ForeColor = System.Drawing.Color.Black;
            this.notePanel_TimeConBack.GradientMode = System.Drawing.Drawing2D.LinearGradientMode.Vertical;
            this.notePanel_TimeConBack.Location = new System.Drawing.Point(16, 98);
            this.notePanel_TimeConBack.MaxRows = 5;
            this.notePanel_TimeConBack.Name = "notePanel_TimeConBack";
            this.notePanel_TimeConBack.ParentAutoHeight = true;
            this.notePanel_TimeConBack.Size = new System.Drawing.Size(200, 22);
            this.notePanel_TimeConBack.TabIndex = 18;
            this.notePanel_TimeConBack.TabStop = false;
            this.notePanel_TimeConBack.Text = "时间和情况:";
            this.notePanel_TimeConBack.Click += new System.EventHandler(this.notePanel_TimeConBack_Click);
            // 
            // notePanel_NumberNameBack
            // 
            this.notePanel_NumberNameBack.BackColor = System.Drawing.Color.Yellow;
            this.notePanel_NumberNameBack.BackColor2 = System.Drawing.Color.DarkGray;
            this.notePanel_NumberNameBack.Font = new System.Drawing.Font("Tahoma", 8F);
            this.notePanel_NumberNameBack.ForeColor = System.Drawing.Color.Black;
            this.notePanel_NumberNameBack.GradientMode = System.Drawing.Drawing2D.LinearGradientMode.Vertical;
            this.notePanel_NumberNameBack.Location = new System.Drawing.Point(16, 74);
            this.notePanel_NumberNameBack.MaxRows = 5;
            this.notePanel_NumberNameBack.Name = "notePanel_NumberNameBack";
            this.notePanel_NumberNameBack.ParentAutoHeight = true;
            this.notePanel_NumberNameBack.Size = new System.Drawing.Size(200, 22);
            this.notePanel_NumberNameBack.TabIndex = 17;
            this.notePanel_NumberNameBack.TabStop = false;
            this.notePanel_NumberNameBack.Text = "学号和姓名:";
            this.notePanel_NumberNameBack.Click += new System.EventHandler(this.notePanel_NumberNameBack_Click);
            // 
            // notePanel_SerCondBack
            // 
            this.notePanel_SerCondBack.BackColor = System.Drawing.Color.LightGoldenrodYellow;
            this.notePanel_SerCondBack.Dock = System.Windows.Forms.DockStyle.Top;
            this.notePanel_SerCondBack.Font = new System.Drawing.Font("Tahoma", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.notePanel_SerCondBack.ForeColor = System.Drawing.Color.OrangeRed;
            this.notePanel_SerCondBack.GradientMode = System.Drawing.Drawing2D.LinearGradientMode.Vertical;
            this.notePanel_SerCondBack.Location = new System.Drawing.Point(2, 22);
            this.notePanel_SerCondBack.MaxRows = 5;
            this.notePanel_SerCondBack.Name = "notePanel_SerCondBack";
            this.notePanel_SerCondBack.ParentAutoHeight = true;
            this.notePanel_SerCondBack.Size = new System.Drawing.Size(234, 23);
            this.notePanel_SerCondBack.TabIndex = 5;
            this.notePanel_SerCondBack.TabStop = false;
            this.notePanel_SerCondBack.Text = "您要搜索的条件?";
            // 
            // gridControl_BackInfo
            // 
            this.gridControl_BackInfo.Dock = System.Windows.Forms.DockStyle.Fill;
            this.gridControl_BackInfo.Location = new System.Drawing.Point(0, 40);
            this.gridControl_BackInfo.MainView = this.gridView2;
            this.gridControl_BackInfo.Name = "gridControl_BackInfo";
            this.gridControl_BackInfo.Size = new System.Drawing.Size(523, 471);
            this.gridControl_BackInfo.TabIndex = 9;
            this.gridControl_BackInfo.ViewCollection.AddRange(new DevExpress.XtraGrid.Views.Base.BaseView[] {
            this.gridView2});
            // 
            // gridView2
            // 
            this.gridView2.Columns.AddRange(new DevExpress.XtraGrid.Columns.GridColumn[] {
            this.gridColumn7,
            this.gridColumn8,
            this.gridColumn9,
            this.gridColumn10,
            this.gridColumn11,
            this.gridColumn12,
            this.gridColumn13});
            this.gridView2.GridControl = this.gridControl_BackInfo;
            this.gridView2.Name = "gridView2";
            this.gridView2.OptionsCustomization.AllowFilter = false;
            this.gridView2.OptionsView.ShowFilterPanelMode = DevExpress.XtraGrid.Views.Base.ShowFilterPanelMode.Never;
            this.gridView2.OptionsView.ShowGroupPanel = false;
            // 
            // 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_stuOrderNumber";
            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.AllowMove = false;
            this.gridColumn7.OptionsColumn.AllowSort = DevExpress.Utils.DefaultBoolean.True;
            this.gridColumn7.OptionsColumn.FixedWidth = true;
            this.gridColumn7.OptionsColumn.ReadOnly = true;
            this.gridColumn7.OptionsColumn.ShowInCustomizationForm = false;
            this.gridColumn7.Visible = true;
            this.gridColumn7.VisibleIndex = 0;
            this.gridColumn7.Width = 62;
            // 
            // 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.AllowMove = false;
            this.gridColumn8.OptionsColumn.AllowSort = DevExpress.Utils.DefaultBoolean.True;
            this.gridColumn8.OptionsColumn.FixedWidth = true;
            this.gridColumn8.OptionsColumn.ReadOnly = true;
            this.gridColumn8.OptionsColumn.ShowInCustomizationForm = false;
            this.gridColumn8.Visible = true;
            this.gridColumn8.VisibleIndex = 1;
            this.gridColumn8.Width = 62;
            // 
            // 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_stuNumber";
            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.AllowMove = false;
            this.gridColumn9.OptionsColumn.AllowSort = DevExpress.Utils.DefaultBoolean.True;
            this.gridColumn9.OptionsColumn.FixedWidth = true;
            this.gridColumn9.OptionsColumn.ReadOnly = true;
            this.gridColumn9.OptionsColumn.ShowInCustomizationForm = false;
            this.gridColumn9.Visible = true;
            this.gridColumn9.VisibleIndex = 2;
            this.gridColumn9.Width = 57;
            // 
            // 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_stuName";
            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.AllowMove = false;
            this.gridColumn10.OptionsColumn.AllowSort = DevExpress.Utils.DefaultBoolean.True;
            this.gridColumn10.OptionsColumn.FixedWidth = true;
            this.gridColumn10.OptionsColumn.ReadOnly = true;
            this.gridColumn10.OptionsColumn.ShowInCustomizationForm = false;
            this.gridColumn10.Visible = true;
            this.gridColumn10.VisibleIndex = 3;
            this.gridColumn10.Width = 59;
            // 
            // 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.DisplayFormat.FormatString = "yyyy-MM-dd HH:mm:ss";
            this.gridColumn11.DisplayFormat.FormatType = DevExpress.Utils.FormatType.DateTime;
            this.gridColumn11.FieldName = "flow_stuFlowBackDate";
            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.AllowMove = false;
            this.gridColumn11.OptionsColumn.AllowSort = DevExpress.Utils.DefaultBoolean.True;
            this.gridColumn11.OptionsColumn.FixedWidth = true;
            this.gridColumn11.OptionsColumn.ReadOnly = true;
            this.gridColumn11.OptionsColumn.ShowInCustomizationForm = false;
            this.gridColumn11.Visible = true;
            this.gridColumn11.VisibleIndex = 4;
            this.gridColumn11.Width = 165;
            // 
            // 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 = "state_flowStateName";
            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.AllowMove = false;
            this.gridColumn12.OptionsColumn.AllowSort = DevExpress.Utils.DefaultBoolean.True;
            this.gridColumn12.OptionsColumn.FixedWidth = true;
            this.gridColumn12.OptionsColumn.ReadOnly = true;
            this.gridColumn12.OptionsColumn.ShowInCustomizationForm = false;
            this.gridColumn12.Visible = true;
            this.gridColumn12.VisibleIndex = 5;
            this.gridColumn12.Width = 81;
            // 
            // 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_stuCardHolder";
            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.FixedWidth = true;
            this.gridColumn13.OptionsColumn.ReadOnly = true;
            this.gridColumn13.OptionsColumn.ShowInCustomizationForm = false;
            this.gridColumn13.Visible = true;
            this.gridColumn13.VisibleIndex = 6;
            // 
            // panelControl2
            // 
            this.panelControl2.Controls.Add(this.simpleButton_PrintBack);
            this.panelControl2.Controls.Add(this.simpleButton_SearchBack);
            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(523, 40);
            this.panelControl2.TabIndex = 8;
            // 
            // simpleButton_PrintBack
            // 
            this.simpleButton_PrintBack.Appearance.Font = new System.Drawing.Font("Tahoma", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.simpleButton_PrintBack.Appearance.ForeColor = System.Drawing.Color.DarkMagenta;
            this.simpleButton_PrintBack.Appearance.Options.UseFont = true;
            this.simpleButton_PrintBack.Appearance.Options.UseForeColor = true;
            this.simpleButton_PrintBack.Image = ((System.Drawing.Image)(resources.GetObject("simpleButton_PrintBack.Image")));
            this.simpleButton_PrintBack.Location = new System.Drawing.Point(112, 8);
            this.simpleButton_PrintBack.Name = "simpleButton_PrintBack";
            this.simpleButton_PrintBack.Size = new System.Drawing.Size(92, 26);
            this.simpleButton_PrintBack.TabIndex = 8;
            this.simpleButton_PrintBack.Tag = 4;
            this.simpleButton_PrintBack.Text = "报  表";
            this.simpleButton_PrintBack.Click += new System.EventHandler(this.simpleButton_PrintBack_Click);
            // 
            // simpleButton_SearchBack
            // 
            this.simpleButton_SearchBack.Appearance.Font = new System.Drawing.Font("Tahoma", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.simpleButton_SearchBack.Appearance.ForeColor = System.Drawing.Color.DarkMagenta;
            this.simpleButton_SearchBack.Appearance.Options.UseFont = true;
            this.simpleButton_SearchBack.Appearance.Options.UseForeColor = true;
            this.simpleButton_SearchBack.Image = ((System.Drawing.Image)(resources.GetObject("simpleButton_SearchBack.Image")));
            this.simpleButton_SearchBack.Location = new System.Drawing.Point(8, 8);
            this.simpleButton_SearchBack.Name = "simpleButton_SearchBack";
            this.simpleButton_SearchBack.Size = new System.Drawing.Size(92, 26);
            this.simpleButton_SearchBack.TabIndex = 5;
            this.simpleButton_SearchBack.Tag = 4;
            this.simpleButton_SearchBack.Text = "搜  索";
            this.simpleButton_SearchBack.Click += new System.EventHandler(this.simpleButton_SearchBack_Click);
            // 
            // xtraTabPage_FreeDefinition
            // 
            this.xtraTabPage_FreeDefinition.Appearance.PageClient.BackColor = System.Drawing.Color.WhiteSmoke;
            this.xtraTabPage_FreeDefinition.Appearance.PageClient.Options.UseBackColor = true;
            this.xtraTabPage_FreeDefinition.Controls.Add(this.splitContainerControl3);
            this.xtraTabPage_FreeDefinition.Name = "xtraTabPage_FreeDefinition";
            this.xtraTabPage_FreeDefinition.Size = new System.Drawing.Size(766, 511);
            this.xtraTabPage_FreeDefinition.Text = "幼儿自定义信息查询";
            // 
            // splitContainerControl3
            // 
            this.splitContainerControl3.Dock = System.Windows.Forms.DockStyle.Fill;
            this.splitContainerControl3.Location = new System.Drawing.Point(0, 0);
            this.splitContainerControl3.Name = "splitContainerControl3";
            this.splitContainerControl3.Panel1.Controls.Add(this.groupControl_FastSerFreeDef);
            this.splitContainerControl3.Panel1.Text = "splitContainerControl3_Panel1";
            this.splitContainerControl3.Panel2.Controls.Add(this.gridControl_FreeDef);
            this.splitContainerControl3.Panel2.Controls.Add(this.panelControl3);
            this.splitContainerControl3.Panel2.Text = "splitContainerControl3_Panel2";
            this.splitContainerControl3.Size = new System.Drawing.Size(766, 511);
            this.splitContainerControl3.SplitterPosition = 253;
            this.splitContainerControl3.TabIndex = 0;
            this.splitContainerControl3.Text = "splitContainerControl3";
            // 
            // groupControl_FastSerFreeDef
            // 
            this.groupControl_FastSerFreeDef.AppearanceCaption.Font = new System.Drawing.Font("Tahoma", 9F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.groupControl_FastSerFreeDef.AppearanceCaption.Options.UseFont = true;
            this.groupControl_FastSerFreeDef.Controls.Add(this.groupControl_TimeStatusFreeDef);
            this.groupControl_FastSerFreeDef.Controls.Add(this.groupControl_NumberNameFreeDef);
            this.groupControl_FastSerFreeDef.Controls.Add(this.groupControl_GradeClassFreeDef);
            this.groupControl_FastSerFreeDef.Controls.Add(this.notePanel_GradeClassFreeDef);
            this.groupControl_FastSerFreeDef.Controls.Add(this.notePanel_TimeStatusFreeDef);
            this.groupControl_FastSerFreeDef.Controls.Add(this.notePanel_NumberNameFreeDef);
            this.groupControl_FastSerFreeDef.Controls.Add(this.notePanel1_SerCondFreeDef);
            this.groupControl_FastSerFreeDef.Dock = System.Windows.Forms.DockStyle.Top;
            this.groupControl_FastSerFreeDef.Location = new System.Drawing.Point(0, 0);
            this.groupControl_FastSerFreeDef.Name = "groupControl_FastSerFreeDef";
            this.groupControl_FastSerFreeDef.Size = new System.Drawing.Size(253, 336);
            this.groupControl_FastSerFreeDef.TabIndex = 9;
            this.groupControl_FastSerFreeDef.Text = "快速搜索";
            // 
            // groupControl_TimeStatusFreeDef
            // 
            this.groupControl_TimeStatusFreeDef.AppearanceCaption.Font = new System.Drawing.Font("Tahoma", 9F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.groupControl_TimeStatusFreeDef.AppearanceCaption.ForeColor = System.Drawing.Color.Black;
            this.groupControl_TimeStatusFreeDef.AppearanceCaption.Options.UseFont = true;
            this.groupControl_TimeStatusFreeDef.AppearanceCaption.Options.UseForeColor = true;
            this.groupControl_TimeStatusFreeDef.Controls.Add(this.dateEdit_SpecificDateFreeDef);
            this.groupControl_TimeStatusFreeDef.Controls.Add(this.notePanel_SpecificDateFreeDef);
            this.groupControl_TimeStatusFreeDef.Controls.Add(this.comboBoxEdit_TimeModeFreeDef);
            this.groupControl_TimeStatusFreeDef.Controls.Add(this.textEdit_EndTimeFreeDef);
            this.groupControl_TimeStatusFreeDef.Controls.Add(this.textEdit_BegTimeFreeDef);
            this.groupControl_TimeStatusFreeDef.Controls.Add(this.notePanel_TimeMode_FreeDef);
            this.groupControl_TimeStatusFreeDef.Controls.Add(this.comboBoxEdit_CustomStatusDef);
            this.groupControl_TimeStatusFreeDef.Controls.Add(this.notePanel_FreeDef);
            this.groupControl_TimeStatusFreeDef.Controls.Add(this.notePanel_BegTimeFreeDef);
            this.groupControl_TimeStatusFreeDef.Controls.Add(this.notePanel_EndTimeFreeDef);
            this.groupControl_TimeStatusFreeDef.Dock = System.Windows.Forms.DockStyle.Bottom;
            this.groupControl_TimeStatusFreeDef.Location = new System.Drawing.Point(2, -98);
            this.groupControl_TimeStatusFreeDef.Name = "groupControl_TimeStatusFreeDef";
            this.groupControl_TimeStatusFreeDef.Size = new System.Drawing.Size(249, 192);
            this.groupControl_TimeStatusFreeDef.TabIndex = 22;
            this.groupControl_TimeStatusFreeDef.Text = "指定搜索的时间和自定义状态";
            this.groupControl_TimeStatusFreeDef.Visible = false;
            // 
            // dateEdit_SpecificDateFreeDef
            // 
            this.dateEdit_SpecificDateFreeDef.EditValue = new System.DateTime(2005, 1, 31, 0, 0, 0, 0);
            this.dateEdit_SpecificDateFreeDef.Location = new System.Drawing.Point(104, 32);
            this.dateEdit_SpecificDateFreeDef.Name = "dateEdit_SpecificDateFreeDef";
            this.dateEdit_SpecificDateFreeDef.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
            new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
            this.dateEdit_SpecificDateFreeDef.Properties.VistaTimeProperties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
            new DevExpress.XtraEditors.Controls.EditorButton()});
            this.dateEdit_SpecificDateFreeDef.Size = new System.Drawing.Size(120, 20);
            this.dateEdit_SpecificDateFreeDef.TabIndex = 24;
            // 
            // notePanel_SpecificDateFreeDef
            // 
            this.notePanel_SpecificDateFreeDef.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(224)))), ((int)(((byte)(224)))), ((int)(((byte)(224)))));
            this.notePanel_SpecificDateFreeDef.BackColor2 = System.Drawing.Color.DarkGray;
            this.notePanel_SpecificDateFreeDef.Font = new System.Drawing.Font("Tahoma", 8F);
            this.notePanel_SpecificDateFreeDef.ForeColor = System.Drawing.Color.Black;
            this.notePanel_SpecificDateFreeDef.GradientMode = System.Drawing.Drawing2D.LinearGradientMode.Vertical;
            this.notePanel_SpecificDateFreeDef.Location = new System.Drawing.Point(16, 32);
            this.notePanel_SpecificDateFreeDef.MaxRows = 5;
            this.notePanel_SpecificDateFreeDef.Name = "notePanel_SpecificDateFreeDef";
            this.notePanel_SpecificDateFreeDef.ParentAutoHeight = true;
            this.notePanel_SpecificDateFreeDef.Size = new System.Drawing.Size(80, 22);
            this.notePanel_SpecificDateFreeDef.TabIndex = 23;
            this.notePanel_SpecificDateFreeDef.TabStop = false;
            this.notePanel_SpecificDateFreeDef.Text = "起始时间";
            // 
            // comboBoxEdit_TimeModeFreeDef
            // 
            this.comboBoxEdit_TimeModeFreeDef.EditValue = "模糊时间";
            this.comboBoxEdit_TimeModeFreeDef.Location = new System.Drawing.Point(104, 128);
            this.comboBoxEdit_TimeModeFreeDef.Name = "comboBoxEdit_TimeModeFreeDef";
            this.comboBoxEdit_TimeModeFreeDef.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
            new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
            this.comboBoxEdit_TimeModeFreeDef.Properties.Items.AddRange(new object[] {
            "模糊时间",
            "精确时间"});
            this.comboBoxEdit_TimeModeFreeDef.Size = new System.Drawing.Size(120, 20);
            this.comboBoxEdit_TimeModeFreeDef.TabIndex = 22;
            this.comboBoxEdit_TimeModeFreeDef.SelectedIndexChanged += new System.EventHandler(this.comboBoxEdit_TimeModeFreeDef_SelectedIndexChanged);
            // 
            // textEdit_EndTimeFreeDef
            // 
            this.textEdit_EndTimeFreeDef.EditValue = "";
            this.textEdit_EndTimeFreeDef.Location = new System.Drawing.Point(104, 96);
            this.textEdit_EndTimeFreeDef.Name = "textEdit_EndTimeFreeDef";
            this.textEdit_EndTimeFreeDef.Properties.DisplayFormat.FormatString = "d";
            this.textEdit_EndTimeFreeDef.Properties.DisplayFormat.FormatType = DevExpress.Utils.FormatType.DateTime;
            this.textEdit_EndTimeFreeDef.Properties.EditValueChangedFiringMode = DevExpress.XtraEditors.Controls.EditValueChangedFiringMode.Buffered;
            this.textEdit_EndTimeFreeDef.Properties.Mask.EditMask = "d";
            this.textEdit_EndTimeFreeDef.Properties.Mask.MaskType = DevExpress.XtraEditors.Mask.MaskType.DateTime;
            this.textEdit_EndTimeFreeDef.Size = new System.Drawing.Size(120, 20);
            this.textEdit_EndTimeFreeDef.TabIndex = 21;
            // 
            // textEdit_BegTimeFreeDef
            // 
            this.textEdit_BegTimeFreeDef.EditValue = "";
            this.textEdit_BegTimeFreeDef.Location = new System.Drawing.Point(104, 64);
            this.textEdit_BegTimeFreeDef.Name = "textEdit_BegTimeFreeDef";
            this.textEdit_BegTimeFreeDef.Properties.DisplayFormat.FormatString = "d";
            this.textEdit_BegTimeFreeDef.Properties.DisplayFormat.FormatType = DevExpress.Utils.FormatType.DateTime;
            this.textEdit_BegTimeFreeDef.Properties.EditValueChangedFiringMode = DevExpress.XtraEditors.Controls.EditValueChangedFiringMode.Buffered;
            this.textEdit_BegTimeFreeDef.Properties.Mask.EditMask = "d";
            this.textEdit_BegTimeFreeDef.Properties.Mask.MaskType = DevExpress.XtraEditors.Mask.MaskType.DateTime;
            this.textEdit_BegTimeFreeDef.Size = new System.Drawing.Size(120, 20);
            this.textEdit_BegTimeFreeDef.TabIndex = 20;
            // 
            // notePanel_TimeMode_FreeDef
            // 
            this.notePanel_TimeMode_FreeDef.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(224)))), ((int)(((byte)(224)))), ((int)(((byte)(224)))));
            this.notePanel_TimeMode_FreeDef.BackColor2 = System.Drawing.Color.DarkGray;
            this.notePanel_TimeMode_FreeDef.Font = new System.Drawing.Font("Tahoma", 8F);
            this.notePanel_TimeMode_FreeDef.ForeColor = System.Drawing.Color.Black;
            this.notePanel_TimeMode_FreeDef.GradientMode = System.Drawing.Drawing2D.LinearGradientMode.Vertical;
            this.notePanel_TimeMode_FreeDef.Location = new System.Drawing.Point(16, 128);
            this.notePanel_TimeMode_FreeDef.MaxRows = 5;
            this.notePanel_TimeMode_FreeDef.Name = "notePanel_TimeMode_FreeDef";
            this.notePanel_TimeMode_FreeDef.ParentAutoHeight = true;
            this.notePanel_TimeMode_FreeDef.Size = new System.Drawing.Size(80, 22);
            this.notePanel_TimeMode_FreeDef.TabIndex = 19;
            this.notePanel_TimeMode_FreeDef.TabStop = false;
            this.notePanel_TimeMode_FreeDef.Text = "结束时间";
            // 
            // comboBoxEdit_CustomStatusDef
            // 
            this.comboBoxEdit_CustomStatusDef.EditValue = "全部";
            this.comboBoxEdit_CustomStatusDef.Location = new System.Drawing.Point(104, 160);
            this.comboBoxEdit_CustomStatusDef.Name = "comboBoxEdit_CustomStatusDef";
            this.comboBoxEdit_CustomStatusDef.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
            new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
            this.comboBoxEdit_CustomStatusDef.Properties.Items.AddRange(new object[] {
            "全部"});
            this.comboBoxEdit_CustomStatusDef.Properties.TextEditStyle = DevExpress.XtraEditors.Controls.TextEditStyles.DisableTextEditor;
            this.comboBoxEdit_CustomStatusDef.Size = new System.Drawing.Size(120, 20);
            this.comboBoxEdit_CustomStatusDef.TabIndex = 18;
            this.comboBoxEdit_CustomStatusDef.SelectedIndexChanged += new System.EventHandler(this.comboBoxEdit_CustomStatusDef_SelectedIndexChanged);
            // 
            // notePanel_FreeDef
            // 
            this.notePanel_FreeDef.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(224)))), ((int)(((byte)(224)))), ((int)(((byte)(224)))));
            this.notePanel_FreeDef.BackColor2 = System.Drawing.Color.DarkGray;
            this.notePanel_FreeDef.Font = new System.Drawing.Font("Tahoma", 8F);
            this.notePanel_FreeDef.ForeColor = System.Drawing.Color.Black;
            this.notePanel_FreeDef.GradientMode = System.Drawing.Drawing2D.LinearGradientMode.Vertical;
            this.notePanel_FreeDef.Location = new System.Drawing.Point(16, 160);
            this.notePanel_FreeDef.MaxRows = 5;
            this.notePanel_FreeDef.Name = "notePanel_FreeDef";
            this.notePanel_FreeDef.ParentAutoHeight = true;
            this.notePanel_FreeDef.Size = new System.Drawing.Size(80, 22);
            this.notePanel_FreeDef.TabIndex = 17;
            this.notePanel_FreeDef.TabStop = false;
            this.notePanel_FreeDef.Text = "定义状态:";
            // 
            // notePanel_BegTimeFreeDef
            // 
            this.notePanel_BegTimeFreeDef.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(224)))), ((int)(((byte)(224)))), ((int)(((byte)(224)))));
            this.notePanel_BegTimeFreeDef.BackColor2 = System.Drawing.Color.DarkGray;
            this.notePanel_BegTimeFreeDef.Font = new System.Drawing.Font("Tahoma", 8F);
            this.notePanel_BegTimeFreeDef.ForeColor = System.Drawing.Color.Black;
            this.notePanel_BegTimeFreeDef.GradientMode = System.Drawing.Drawing2D.LinearGradientMode.Vertical;
            this.notePanel_BegTimeFreeDef.Location = new System.Drawing.Point(16, 64);
            this.notePanel_BegTimeFreeDef.MaxRows = 5;
            this.notePanel_BegTimeFreeDef.Name = "notePanel_BegTimeFreeDef";
            this.notePanel_BegTimeFreeDef.ParentAutoHeight = true;
            this.notePanel_BegTimeFreeDef.Size = new System.Drawing.Size(80, 22);
            this.notePanel_BegTimeFreeDef.TabIndex = 14;
            this.notePanel_BegTimeFreeDef.TabStop = false;
            this.notePanel_BegTimeFreeDef.Text = "起始时间";
            // 
            // notePanel_EndTimeFreeDef
            // 
            this.notePanel_EndTimeFreeDef.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(224)))), ((int)(((byte)(224)))), ((int)(((byte)(224)))));
            this.notePanel_EndTimeFreeDef.BackColor2 = System.Drawing.Color.DarkGray;
            this.notePanel_EndTimeFreeDef.Font = new System.Drawing.Font("Tahoma", 8F);
            this.notePanel_EndTimeFreeDef.ForeColor = System.Drawing.Color.Black;
            this.notePanel_EndTimeFreeDef.GradientMode = System.Drawing.Drawing2D.LinearGradientMode.Vertical;
            this.notePanel_EndTimeFreeDef.Location = new System.Drawing.Point(16, 96);
            this.notePanel_EndTimeFreeDef.MaxRows = 5;
            this.notePanel_EndTimeFreeDef.Name = "notePanel_EndTimeFreeDef";
            this.notePanel_EndTimeFreeDef.ParentAutoHeight = true;
            this.notePanel_EndTimeFreeDef.Size = new System.Drawing.Size(80, 22);
            this.notePanel_EndTimeFreeDef.TabIndex = 13;
            this.notePanel_EndTimeFreeDef.TabStop = false;
            this.notePanel_EndTimeFreeDef.Text = "结束时间";
            // 
            // groupControl_NumberNameFreeDef
            // 
            this.groupControl_NumberNameFreeDef.AppearanceCaption.Font = new System.Drawing.Font("Tahoma", 9F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.groupControl_NumberNameFreeDef.AppearanceCaption.ForeColor = System.Drawing.Color.Black;
            this.groupControl_NumberNameFreeDef.AppearanceCaption.Options.UseFont = true;
            this.groupControl_NumberNameFreeDef.AppearanceCaption.Options.UseForeColor = true;
            this.groupControl_NumberNameFreeDef.Controls.Add(this.textEdit_NameFreeDef);
            this.groupControl_NumberNameFreeDef.Controls.Add(this.textEdit_NumberFreeDef);
            this.groupControl_NumberNameFreeDef.Controls.Add(this.notePanel_NumberFreeDef);
            this.groupControl_NumberNameFreeDef.Controls.Add(this.notePanel_NameFreeDef);
            this.groupControl_NumberNameFreeDef.Dock = System.Windows.Forms.DockStyle.Bottom;
            this.groupControl_NumberNameFreeDef.Location = new System.Drawing.Point(2, 94);
            this.groupControl_NumberNameFreeDef.Name = "groupControl_NumberNameFreeDef";
            this.groupControl_NumberNameFreeDef.Size = new System.Drawing.Size(249, 120);
            this.groupControl_NumberNameFreeDef.TabIndex = 21;
            this.groupControl_NumberNameFreeDef.Text = "指定搜索的学号和姓名";
            this.groupControl_NumberNameFreeDef.Visible = false;
            // 
            // textEdit_NameFreeDef
            // 
            this.textEdit_NameFreeDef.EditValue = "";
            this.textEdit_NameFreeDef.Location = new System.Drawing.Point(104, 32);
            this.textEdit_NameFreeDef.Name = "textEdit_NameFreeDef";
            this.textEdit_NameFreeDef.Size = new System.Drawing.Size(120, 20);
            this.textEdit_NameFreeDef.TabIndex = 12;
            // 
            // textEdit_NumberFreeDef
            // 
            this.textEdit_NumberFreeDef.EditValue = "";
            this.textEdit_NumberFreeDef.Location = new System.Drawing.Point(104, 72);
            this.textEdit_NumberFreeDef.Name = "textEdit_NumberFreeDef";
            this.textEdit_NumberFreeDef.Size = new System.Drawing.Size(120, 20);
            this.textEdit_NumberFreeDef.TabIndex = 11;
            // 
            // notePanel_NumberFreeDef
            // 
            this.notePanel_NumberFreeDef.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(224)))), ((int)(((byte)(224)))), ((int)(((byte)(224)))));
            this.notePanel_NumberFreeDef.BackColor2 = System.Drawing.Color.DarkGray;
            this.notePanel_NumberFreeDef.Font = new System.Drawing.Font("Tahoma", 8F);
            this.notePanel_NumberFreeDef.ForeColor = System.Drawing.Color.Black;
            this.notePanel_NumberFreeDef.GradientMode = System.Drawing.Drawing2D.LinearGradientMode.Vertical;
            this.notePanel_NumberFreeDef.Location = new System.Drawing.Point(16, 72);
            this.notePanel_NumberFreeDef.MaxRows = 5;
            this.notePanel_NumberFreeDef.Name = "notePanel_NumberFreeDef";
            this.notePanel_NumberFreeDef.ParentAutoHeight = true;
            this.notePanel_NumberFreeDef.Size = new System.Drawing.Size(80, 22);
            this.notePanel_NumberFreeDef.TabIndex = 10;
            this.notePanel_NumberFreeDef.TabStop = false;
            this.notePanel_NumberFreeDef.Text = "  学  号:";
            // 
            // notePanel_NameFreeDef
            // 
            this.notePanel_NameFreeDef.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(224)))), ((int)(((byte)(224)))), ((int)(((byte)(224)))));
            this.notePanel_NameFreeDef.BackColor2 = System.Drawing.Color.DarkGray;
            this.notePanel_NameFreeDef.Font = new System.Drawing.Font("Tahoma", 8F);
            this.notePanel_NameFreeDef.ForeColor = System.Drawing.Color.Black;
            this.notePanel_NameFreeDef.GradientMode = System.Drawing.Drawing2D.LinearGradientMode.Vertical;
            this.notePanel_NameFreeDef.Location = new System.Drawing.Point(16, 32);
            this.notePanel_NameFreeDef.MaxRows = 5;
            this.notePanel_NameFreeDef.Name = "notePanel_NameFreeDef";
            this.notePanel_NameFreeDef.ParentAutoHeight = true;
            this.notePanel_NameFreeDef.Size = new System.Drawing.Size(80, 22);
            this.notePanel_NameFreeDef.TabIndex = 9;
            this.notePanel_NameFreeDef.TabStop = false;
            this.notePanel_NameFreeDef.Text = "  姓  名:";
            // 
            // groupControl_GradeClassFreeDef
            // 
            this.groupControl_GradeClassFreeDef.AppearanceCaption.Font = new System.Drawing.Font("Tahoma", 9F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.groupControl_GradeClassFreeDef.AppearanceCaption.Options.UseFont = true;
            this.groupControl_GradeClassFreeDef.Controls.Add(this.comboBoxEdit_ClassFreeDef);
            this.groupControl_GradeClassFreeDef.Controls.Add(this.comboBoxEdit_GradeFreeDef);
            this.groupControl_GradeClassFreeDef.Controls.Add(this.notePanel_GradeFreeDef);
            this.groupControl_GradeClassFreeDef.Controls.Add(this.notePanel_ClassFreeDef);
            this.groupControl_GradeClassFreeDef.Dock = System.Windows.Forms.DockStyle.Bottom;
            this.groupControl_GradeClassFreeDef.Location = new System.Drawing.Point(2, 214);
            this.groupControl_GradeClassFreeDef.Name = "groupControl_GradeClassFreeDef";
            this.groupControl_GradeClassFreeDef.Size = new System.Drawing.Size(249, 120);
            this.groupControl_GradeClassFreeDef.TabIndex = 20;
            this.groupControl_GradeClassFreeDef.Text = "指定搜索的年级和班级";
            this.groupControl_GradeClassFreeDef.Visible = false;
            // 
            // comboBoxEdit_ClassFreeDef
            // 
            this.comboBoxEdit_ClassFreeDef.EditValue = "全部";
            this.comboBoxEdit_ClassFreeDef.Location = new System.Drawing.Point(104, 72);
            this.comboBoxEdit_ClassFreeDef.Name = "comboBoxEdit_ClassFreeDef";
            this.comboBoxEdit_ClassFreeDef.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
            new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
            this.comboBoxEdit_ClassFreeDef.Properties.Items.AddRange(new object[] {
            "全部"});
            this.comboBoxEdit_ClassFreeDef.Properties.TextEditStyle = DevExpress.XtraEditors.Controls.TextEditStyles.DisableTextEditor;
            this.comboBoxEdit_ClassFreeDef.Size = new System.Drawing.Size(120, 20);
            this.comboBoxEdit_ClassFreeDef.TabIndex = 18;
            this.comboBoxEdit_ClassFreeDef.SelectedIndexChanged += new System.EventHandler(this.comboBoxEdit_ClassFreeDef_SelectedIndexChanged);
            // 
            // comboBoxEdit_GradeFreeDef
            // 
            this.comboBoxEdit_GradeFreeDef.EditValue = "全部";
            this.comboBoxEdit_GradeFreeDef.Location = new System.Drawing.Point(104, 32);
            this.comboBoxEdit_GradeFreeDef.Name = "comboBoxEdit_GradeFreeDef";
            this.comboBoxEdit_GradeFreeDef.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
            new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
            this.comboBoxEdit_GradeFreeDef.Properties.Items.AddRange(new object[] {
            "全部"});
            this.comboBoxEdit_GradeFreeDef.Properties.TextEditStyle = DevExpress.XtraEditors.Controls.TextEditStyles.DisableTextEditor;
            this.comboBoxEdit_GradeFreeDef.Size = new System.Drawing.Size(120, 20);
            this.comboBoxEdit_GradeFreeDef.TabIndex = 17;
            this.comboBoxEdit_GradeFreeDef.SelectedIndexChanged += new System.EventHandler(this.comboBoxEdit_GradeFreeDef_SelectedIndexChanged);
            // 
            // notePanel_GradeFreeDef
            // 
            this.notePanel_GradeFreeDef.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(224)))), ((int)(((byte)(224)))), ((int)(((byte)(224)))));
            this.notePanel_GradeFreeDef.BackColor2 = System.Drawing.Color.DarkGray;
            this.notePanel_GradeFreeDef.Font = new System.Drawing.Font("Tahoma", 8F);
            this.notePanel_GradeFreeDef.ForeColor = System.Drawing.Color.Black;
            this.notePanel_GradeFreeDef.GradientMode = System.Drawing.Drawing2D.LinearGradientMode.Vertical;
            this.notePanel_GradeFreeDef.Location = new System.Drawing.Point(16, 32);
            this.notePanel_GradeFreeDef.MaxRows = 5;
            this.notePanel_GradeFreeDef.Name = "notePanel_GradeFreeDef";
            this.notePanel_GradeFreeDef.ParentAutoHeight = true;
            this.notePanel_GradeFreeDef.Size = new System.Drawing.Size(80, 22);
            this.notePanel_GradeFreeDef.TabIndex = 4;
            this.notePanel_GradeFreeDef.TabStop = false;
            this.notePanel_GradeFreeDef.Text = "  年  级:";
            // 
            // notePanel_ClassFreeDef
            // 
            this.notePanel_ClassFreeDef.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(224)))), ((int)(((byte)(224)))), ((int)(((byte)(224)))));
            this.notePanel_ClassFreeDef.BackColor2 = System.Drawing.Color.DarkGray;
            this.notePanel_ClassFreeDef.Font = new System.Drawing.Font("Tahoma", 8F);
            this.notePanel_ClassFreeDef.ForeColor = System.Drawing.Color.Black;
            this.notePanel_ClassFreeDef.GradientMode = System.Drawing.Drawing2D.LinearGradientMode.Vertical;
            this.notePanel_ClassFreeDef.Location = new System.Drawing.Point(16, 72);
            this.notePanel_ClassFreeDef.MaxRows = 5;
            this.notePanel_ClassFreeDef.Name = "notePanel_ClassFreeDef";
            this.notePanel_ClassFreeDef.ParentAutoHeight = true;
            this.notePanel_ClassFreeDef.Size = new System.Drawing.Size(80, 22);
            this.notePanel_ClassFreeDef.TabIndex = 16;
            this.notePanel_ClassFreeDef.TabStop = false;
            this.notePanel_ClassFreeDef.Text = "  班  级:";
            // 
            // notePanel_GradeClassFreeDef
            // 
            this.notePanel_GradeClassFreeDef.BackColor = System.Drawing.Color.LightGray;
            this.notePanel_GradeClassFreeDef.BackColor2 = System.Drawing.Color.DarkGray;
            this.notePanel_GradeClassFreeDef.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.notePanel_GradeClassFreeDef.ForeColor = System.Drawing.Color.Black;
            this.notePanel_GradeClassFreeDef.GradientMode = System.Drawing.Drawing2D.LinearGradientMode.Vertical;
            this.notePanel_GradeClassFreeDef.Location = new System.Drawing.Point(16, 50);
            this.notePanel_GradeClassFreeDef.MaxRows = 5;
            this.notePanel_GradeClassFreeDef.Name = "notePanel_GradeClassFreeDef";
            this.notePanel_GradeClassFreeDef.ParentAutoHeight = true;
            this.notePanel_GradeClassFreeDef.Size = new System.Drawing.Size(208, 22);
            this.notePanel_GradeClassFreeDef.TabIndex = 19;
            this.notePanel_GradeClassFreeDef.TabStop = false;
            this.notePanel_GradeClassFreeDef.Text = "年级和班级:";
            this.notePanel_GradeClassFreeDef.Click += new System.EventHandler(this.notePanel_GradeClassFreeDef_Click);
            // 
            // notePanel_TimeStatusFreeDef
            // 
            this.notePanel_TimeStatusFreeDef.BackColor = System.Drawing.Color.LightGray;
            this.notePanel_TimeStatusFreeDef.BackColor2 = System.Drawing.Color.DarkGray;
            this.notePanel_TimeStatusFreeDef.Font = new System.Drawing.Font("Tahoma", 8F);
            this.notePanel_TimeStatusFreeDef.ForeColor = System.Drawing.Color.Black;
            this.notePanel_TimeStatusFreeDef.GradientMode = System.Drawing.Drawing2D.LinearGradientMode.Vertical;
            this.notePanel_TimeStatusFreeDef.Location = new System.Drawing.Point(16, 98);
            this.notePanel_TimeStatusFreeDef.MaxRows = 5;
            this.notePanel_TimeStatusFreeDef.Name = "notePanel_TimeStatusFreeDef";
            this.notePanel_TimeStatusFreeDef.ParentAutoHeight = true;
            this.notePanel_TimeStatusFreeDef.Size = new System.Drawing.Size(208, 22);
            this.notePanel_TimeStatusFreeDef.TabIndex = 18;
            this.notePanel_TimeStatusFreeDef.TabStop = false;
            this.notePanel_TimeStatusFreeDef.Text = "时间和状态:";
            this.notePanel_TimeStatusFreeDef.Click += new System.EventHandler(this.notePanel_TimeStatusFreeDef_Click);
            // 
            // notePanel_NumberNameFreeDef
            // 
            this.notePanel_NumberNameFreeDef.BackColor = System.Drawing.Color.LightGray;
            this.notePanel_NumberNameFreeDef.BackColor2 = System.Drawing.Color.DarkGray;
            this.notePanel_NumberNameFreeDef.Font = new System.Drawing.Font("Tahoma", 8F);
            this.notePanel_NumberNameFreeDef.ForeColor = System.Drawing.Color.Black;
            this.notePanel_NumberNameFreeDef.GradientMode = System.Drawing.Drawing2D.LinearGradientMode.Vertical;
            this.notePanel_NumberNameFreeDef.Location = new System.Drawing.Point(16, 74);
            this.notePanel_NumberNameFreeDef.MaxRows = 5;
            this.notePanel_NumberNameFreeDef.Name = "notePanel_NumberNameFreeDef";
            this.notePanel_NumberNameFreeDef.ParentAutoHeight = true;
            this.notePanel_NumberNameFreeDef.Size = new System.Drawing.Size(208, 22);
            this.notePanel_NumberNameFreeDef.TabIndex = 17;
            this.notePanel_NumberNameFreeDef.TabStop = false;
            this.notePanel_NumberNameFreeDef.Text = "学号和姓名:";
            this.notePanel_NumberNameFreeDef.Click += new System.EventHandler(this.notePanel_NumberNameFreeDef_Click);
            // 
            // notePanel1_SerCondFreeDef
            // 
            this.notePanel1_SerCondFreeDef.BackColor = System.Drawing.Color.LightGoldenrodYellow;
            this.notePanel1_SerCondFreeDef.Dock = System.Windows.Forms.DockStyle.Top;
            this.notePanel1_SerCondFreeDef.Font = new System.Drawing.Font("Tahoma", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.notePanel1_SerCondFreeDef.ForeColor = System.Drawing.Color.OrangeRed;
            this.notePanel1_SerCondFreeDef.GradientMode = System.Drawing.Drawing2D.LinearGradientMode.Vertical;
            this.notePanel1_SerCondFreeDef.Location = new System.Drawing.Point(2, 22);
            this.notePanel1_SerCondFreeDef.MaxRows = 5;
            this.notePanel1_SerCondFreeDef.Name = "notePanel1_SerCondFreeDef";
            this.notePanel1_SerCondFreeDef.ParentAutoHeight = true;
            this.notePanel1_SerCondFreeDef.Size = new System.Drawing.Size(249, 23);
            this.notePanel1_SerCondFreeDef.TabIndex = 5;
            this.notePanel1_SerCondFreeDef.TabStop = false;
            this.notePanel1_SerCondFreeDef.Text = "您要搜索的条件?";
            // 
            // gridControl_FreeDef
            // 
            this.gridControl_FreeDef.Dock = System.Windows.Forms.DockStyle.Fill;
            this.gridControl_FreeDef.Location = new System.Drawing.Point(0, 40);
            this.gridControl_FreeDef.MainView = this.gridView3;
            this.gridControl_FreeDef.Name = "gridControl_FreeDef";
            this.gridControl_FreeDef.RepositoryItems.AddRange(new DevExpress.XtraEditors.Repository.RepositoryItem[] {
            this.repositoryItemComboBox_CustomState,
            this.repositoryItemComboBox1});
            this.gridControl_FreeDef.Size = new System.Drawing.Size(508, 471);
            this.gridControl_FreeDef.TabIndex = 12;
            this.gridControl_FreeDef.ViewCollection.AddRange(new DevExpress.XtraGrid.Views.Base.BaseView[] {
            this.gridView3});
            // 
            // gridView3
            // 
            this.gridView3.Columns.AddRange(new DevExpress.XtraGrid.Columns.GridColumn[] {
            this.gridColumn14,
            this.gridColumn15,
            this.gridColumn16,
            this.gridColumn17,
            this.gridColumn18,
            this.gridColumn19});
            this.gridView3.GridControl = this.gridControl_FreeDef;
            this.gridView3.Name = "gridView3";
            this.gridView3.OptionsCustomization.AllowFilter = false;
            this.gridView3.OptionsView.ShowFilterPanelMode = DevExpress.XtraGrid.Views.Base.ShowFilterPanelMode.Never;
            this.gridView3.OptionsView.ShowGroupPanel = false;
            this.gridView3.RowCellStyle += new DevExpress.XtraGrid.Views.Grid.RowCellStyleEventHandler(this.gridView3_RowCellStyle);
            this.gridView3.FocusedRowChanged += new DevExpress.XtraGrid.Views.Base.FocusedRowChangedEventHandler(this.gridView3_FocusedRowChanged);
            this.gridView3.CellValueChanged += new DevExpress.XtraGrid.Views.Base.CellValueChangedEventHandler(this.gridView3_CellValueChanged);
            // 
            // gridColumn14
            // 
            this.gridColumn14.AppearanceCell.Options.UseTextOptions = true;
            this.gridColumn14.AppearanceCell.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
            this.gridColumn14.AppearanceHeader.Options.UseTextOptions = true;
            this.gridColumn14.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
            this.gridColumn14.Caption = "序号";
            this.gridColumn14.FieldName = "info_stuOrderNumber";
            this.gridColumn14.Name = "gridColumn14";
            this.gridColumn14.OptionsColumn.AllowEdit = false;
            this.gridColumn14.OptionsColumn.AllowFocus = false;
            this.gridColumn14.OptionsColumn.AllowGroup = DevExpress.Utils.DefaultBoolean.False;
            this.gridColumn14.OptionsColumn.AllowIncrementalSearch = false;
            this.gridColumn14.OptionsColumn.AllowMerge = DevExpress.Utils.DefaultBoolean.False;
            this.gridColumn14.OptionsColumn.AllowMove = false;
            this.gridColumn14.OptionsColumn.AllowSort = DevExpress.Utils.DefaultBoolean.True;
            this.gridColumn14.OptionsColumn.FixedWidth = true;
            this.gridColumn14.OptionsColumn.ReadOnly = true;
            this.gridColumn14.OptionsColumn.ShowInCustomizationForm = false;
            this.gridColumn14.Visible = true;
            this.gridColumn14.VisibleIndex = 0;
            this.gridColumn14.Width = 63;
            // 
            // gridColumn15
            // 
            this.gridColumn15.AppearanceCell.Options.UseTextOptions = true;
            this.gridColumn15.AppearanceCell.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
            this.gridColumn15.AppearanceHeader.Options.UseTextOptions = true;
            this.gridColumn15.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
            this.gridColumn15.Caption = "班级";
            this.gridColumn15.FieldName = "info_className";
            this.gridColumn15.Name = "gridColumn15";
            this.gridColumn15.OptionsColumn.AllowEdit = false;
            this.gridColumn15.OptionsColumn.AllowFocus = false;
            this.gridColumn15.OptionsColumn.AllowGroup = DevExpress.Utils.DefaultBoolean.False;
            this.gridColumn15.OptionsColumn.AllowIncrementalSearch = false;
            this.gridColumn15.OptionsColumn.AllowMerge = DevExpress.Utils.DefaultBoolean.False;
            this.gridColumn15.OptionsColumn.AllowMove = false;
            this.gridColumn15.OptionsColumn.AllowSort = DevExpress.Utils.DefaultBoolean.True;
            this.gridColumn15.OptionsColumn.FixedWidth = true;
            this.gridColumn15.OptionsColumn.ReadOnly = true;
            this.gridColumn15.OptionsColumn.ShowInCustomizationForm = false;
            this.gridColumn15.Visible = true;
            this.gridColumn15.VisibleIndex = 1;
            this.gridColumn15.Width = 64;
            // 
            // gridColumn16
            // 
            this.gridColumn16.AppearanceCell.Options.UseTextOptions = true;
            this.gridColumn16.AppearanceCell.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
            this.gridColumn16.AppearanceHeader.Options.UseTextOptions = true;
            this.gridColumn16.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
            this.gridColumn16.Caption = "学号";
            this.gridColumn16.FieldName = "info_stuNumber";
            this.gridColumn16.Name = "gridColumn16";
            this.gridColumn16.OptionsColumn.AllowEdit = false;
            this.gridColumn16.OptionsColumn.AllowFocus = false;
            this.gridColumn16.OptionsColumn.AllowGroup = DevExpress.Utils.DefaultBoolean.False;
            this.gridColumn16.OptionsColumn.AllowIncrementalSearch = false;
            this.gridColumn16.OptionsColumn.AllowMerge = DevExpress.Utils.DefaultBoolean.False;
            this.gridColumn16.OptionsColumn.AllowMove = false;
            this.gridColumn16.OptionsColumn.AllowSort = DevExpress.Utils.DefaultBoolean.True;
            this.gridColumn16.OptionsColumn.FixedWidth = true;
            this.gridColumn16.OptionsColumn.ReadOnly = true;
            this.gridColumn16.OptionsColumn.ShowInCustomizationForm = false;
            this.gridColumn16.Visible = true;
            this.gridColumn16.VisibleIndex = 2;
            this.gridColumn16.Width = 63;
            // 
            // gridColumn17
            // 
            this.gridColumn17.AppearanceCell.Options.UseTextOptions = true;
            this.gridColumn17.AppearanceCell.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
            this.gridColumn17.AppearanceHeader.Options.UseTextOptions = true;
            this.gridColumn17.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
            this.gridColumn17.Caption = "姓名";
            this.gridColumn17.FieldName = "info_stuName";
            this.gridColumn17.Name = "gridColumn17";
            this.gridColumn17.OptionsColumn.AllowEdit = false;
            this.gridColumn17.OptionsColumn.AllowFocus = false;
            this.gridColumn17.OptionsColumn.AllowGroup = DevExpress.Utils.DefaultBoolean.False;
            this.gridColumn17.OptionsColumn.AllowIncrementalSearch = false;
            this.gridColumn17.OptionsColumn.AllowMerge = DevExpress.Utils.DefaultBoolean.False;
            this.gridColumn17.OptionsColumn.AllowMove = false;
            this.gridColumn17.OptionsColumn.AllowSort = DevExpress.Utils.DefaultBoolean.True;
            this.gridColumn17.OptionsColumn.FixedWidth = true;
            this.gridColumn17.OptionsColumn.ReadOnly = true;
            this.gridColumn17.OptionsColumn.ShowInCustomizationForm = false;
            this.gridColumn17.Visible = true;
            this.gridColumn17.VisibleIndex = 3;
            this.gridColumn17.Width = 58;
            // 
            // gridColumn18
            // 
            this.gridColumn18.AppearanceCell.Options.UseTextOptions = true;
            this.gridColumn18.AppearanceCell.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
            this.gridColumn18.AppearanceHeader.Options.UseTextOptions = true;
            this.gridColumn18.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
            this.gridColumn18.Caption = "状态记录时间";
            this.gridColumn18.DisplayFormat.FormatString = "yyyy-MM-dd HH:mm:ss";
            this.gridColumn18.DisplayFormat.FormatType = DevExpress.Utils.FormatType.DateTime;
            this.gridColumn18.FieldName = "flow_stuFlowEnterDate";
            this.gridColumn18.Name = "gridColumn18";
            this.gridColumn18.OptionsColumn.AllowEdit = false;
            this.gridColumn18.OptionsColumn.AllowFocus = false;
            this.gridColumn18.OptionsColumn.AllowGroup = DevExpress.Utils.DefaultBoolean.False;
            this.gridColumn18.OptionsColumn.AllowIncrementalSearch = false;
            this.gridColumn18.OptionsColumn.AllowMerge = DevExpress.Utils.DefaultBoolean.False;
            this.gridColumn18.OptionsColumn.AllowMove = false;
            this.gridColumn18.OptionsColumn.AllowSort = DevExpress.Utils.DefaultBoolean.True;
            this.gridColumn18.OptionsColumn.FixedWidth = true;
            this.gridColumn18.OptionsColumn.ReadOnly = true;
            this.gridColumn18.OptionsColumn.ShowInCustomizationForm = false;
            this.gridColumn18.Visible = true;
            this.gridColumn18.VisibleIndex = 4;
            this.gridColumn18.Width = 117;
            // 
            // gridColumn19
            // 
            this.gridColumn19.AppearanceCell.Options.UseTextOptions = true;
            this.gridColumn19.AppearanceCell.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
            this.gridColumn19.AppearanceHeader.Options.UseTextOptions = true;
            this.gridColumn19.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
            this.gridColumn19.Caption = "自定义状态";
            this.gridColumn19.ColumnEdit = this.repositoryItemComboBox_CustomState;
            this.gridColumn19.FieldName = "state_flowStateName";
            this.gridColumn19.Name = "gridColumn19";
            this.gridColumn19.OptionsColumn.AllowGroup = DevExpress.Utils.DefaultBoolean.True;
            this.gridColumn19.OptionsColumn.AllowIncrementalSearch = false;
            this.gridColumn19.OptionsColumn.AllowMove = false;
            this.gridColumn19.OptionsColumn.AllowSort = DevExpress.Utils.DefaultBoolean.True;
            this.gridColumn19.OptionsColumn.FixedWidth = true;
            this.gridColumn19.OptionsColumn.ShowInCustomizationForm = false;
            this.gridColumn19.Visible = true;
            this.gridColumn19.VisibleIndex = 5;
            // 
            // repositoryItemComboBox_CustomState
            // 
            this.repositoryItemComboBox_CustomState.AutoHeight = false;
            this.repositoryItemComboBox_CustomState.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
            new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
            this.repositoryItemComboBox_CustomState.Name = "repositoryItemComboBox_CustomState";
            // 
            // repositoryItemComboBox1
            // 
            this.repositoryItemComboBox1.AutoHeight = false;
            this.repositoryItemComboBox1.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
            new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
            this.repositoryItemComboBox1.Name = "repositoryItemComboBox1";
            // 
            // panelControl3
            // 
            this.panelControl3.Controls.Add(this.simpleButton_SearchFreeDef);
            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(508, 40);
            this.panelControl3.TabIndex = 11;
            // 
            // simpleButton_SearchFreeDef
            // 
            this.simpleButton_SearchFreeDef.Appearance.Font = new System.Drawing.Font("Tahoma", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.simpleButton_SearchFreeDef.Appearance.ForeColor = System.Drawing.Color.DarkMagenta;
            this.simpleButton_SearchFreeDef.Appearance.Options.UseFont = true;
            this.simpleButton_SearchFreeDef.Appearance.Options.UseForeColor = true;
            this.simpleButton_SearchFreeDef.Image = ((System.Drawing.Image)(resources.GetObject("simpleButton_SearchFreeDef.Image")));
            this.simpleButton_SearchFreeDef.Location = new System.Drawing.Point(16, 8);
            this.simpleButton_SearchFreeDef.Name = "simpleButton_SearchFreeDef";
            this.simpleButton_SearchFreeDef.Size = new System.Drawing.Size(92, 26);
            this.simpleButton_SearchFreeDef.TabIndex = 8;
            this.simpleButton_SearchFreeDef.Tag = 4;
            this.simpleButton_SearchFreeDef.Text = "搜  索";
            this.simpleButton_SearchFreeDef.Click += new System.EventHandler(this.simpleButton_SearchFreeDef_Click);
            // 
            // xtraTabPage_MoreReport
            // 
            this.xtraTabPage_MoreReport.Appearance.PageClient.BackColor = System.Drawing.Color.WhiteSmoke;
            this.xtraTabPage_MoreReport.Appearance.PageClient.Options.UseBackColor = true;
            this.xtraTabPage_MoreReport.Controls.Add(this.splitContainerControl4);
            this.xtraTabPage_MoreReport.Name = "xtraTabPage_MoreReport";
            this.xtraTabPage_MoreReport.Size = new System.Drawing.Size(766, 511);
            this.xtraTabPage_MoreReport.Text = "晨检信息综合统计报表";
            // 
            // splitContainerControl4
            // 
            this.splitContainerControl4.Dock = System.Windows.Forms.DockStyle.Fill;
            this.splitContainerControl4.Location = new System.Drawing.Point(0, 0);
            this.splitContainerControl4.Name = "splitContainerControl4";
            this.splitContainerControl4.Panel1.Controls.Add(this.groupControl_FastSerReport);
            this.splitContainerControl4.Panel1.Text = "splitContainerControl4_Panel1";
            this.splitContainerControl4.Panel2.Controls.Add(this.groupControl_PreviewReport);
            this.splitContainerControl4.Panel2.Controls.Add(this.panelControl4);
            this.splitContainerControl4.Panel2.Text = "splitContainerControl4_Panel2";
            this.splitContainerControl4.Size = new System.Drawing.Size(766, 511);
            this.splitContainerControl4.SplitterPosition = 233;
            this.splitContainerControl4.TabIndex = 0;
            this.splitContainerControl4.Text = "splitContainerControl4";
            // 
            // groupControl_FastSerReport
            // 
            this.groupControl_FastSerReport.AppearanceCaption.Font = new System.Drawing.Font("Tahoma", 9F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.groupControl_FastSerReport.AppearanceCaption.Options.UseFont = true;
            this.groupControl_FastSerReport.Controls.Add(this.textEdit_EndDateReport);
            this.groupControl_FastSerReport.Controls.Add(this.textEdit_BegDateReport);
            this.groupControl_FastSerReport.Controls.Add(this.textEdit_NumberReport);
            this.groupControl_FastSerReport.Controls.Add(this.textEdit_NameReport);
            this.groupControl_FastSerReport.Controls.Add(this.notePanel_NumberReport);
            this.groupControl_FastSerReport.Controls.Add(this.notePanel_NameReport);
            this.groupControl_FastSerReport.Controls.Add(this.comboBoxEdit_PrintType);
            this.groupControl_FastSerReport.Controls.Add(this.notePanel_PrintType);
            this.groupControl_FastSerReport.Controls.Add(this.notePanel_EndDateReport);
            this.groupControl_FastSerReport.Controls.Add(this.notePanel_BegDateReport);
            this.groupControl_FastSerReport.Controls.Add(this.comboBoxEdit_ClassReport);
            this.groupControl_FastSerReport.Controls.Add(this.notePanel_ClassReport);
            this.groupControl_FastSerReport.Controls.Add(this.comboBoxEdit_GradeReport);
            this.groupControl_FastSerReport.Controls.Add(this.notePanel_GradeReport);
            this.groupControl_FastSerReport.Controls.Add(this.notePanel_SerCondReport);
            this.groupControl_FastSerReport.Dock = System.Windows.Forms.DockStyle.Top;
            this.groupControl_FastSerReport.Location = new System.Drawing.Point(0, 0);
            this.groupControl_FastSerReport.Name = "groupControl_FastSerReport";
            this.groupControl_FastSerReport.Size = new System.Drawing.Size(233, 304);
            this.groupControl_FastSerReport.TabIndex = 8;
            this.groupControl_FastSerReport.Text = "快速搜索";
            // 
            // textEdit_EndDateReport
            // 
            this.textEdit_EndDateReport.EditValue = "";
            this.textEdit_EndDateReport.Location = new System.Drawing.Point(104, 224);
            this.textEdit_EndDateReport.Name = "textEdit_EndDateReport";
            this.textEdit_EndDateReport.Properties.DisplayFormat.FormatString = "d";
            this.textEdit_EndDateReport.Properties.DisplayFormat.FormatType = DevExpress.Utils.FormatType.DateTime;
            this.textEdit_EndDateReport.Properties.Mask.EditMask = "yyyy-MM-dd";
            this.textEdit_EndDateReport.Properties.Mask.MaskType = DevExpress.XtraEditors.Mask.MaskType.DateTime;
            this.textEdit_EndDateReport.Size = new System.Drawing.Size(88, 20);
            this.textEdit_EndDateReport.TabIndex = 21;
            // 
            // textEdit_BegDateReport
            // 
            this.textEdit_BegDateReport.EditValue = "";
            this.textEdit_BegDateReport.Location = new System.Drawing.Point(104, 192);
            this.textEdit_BegDateReport.Name = "textEdit_BegDateReport";
            this.textEdit_BegDateReport.Properties.DisplayFormat.FormatString = "d";
            this.textEdit_BegDateReport.Properties.DisplayFormat.FormatType = DevExpress.Utils.FormatType.DateTime;
            this.textEdit_BegDateReport.Properties.EditValueChangedFiringMode = DevExpress.XtraEditors.Controls.EditValueChangedFiringMode.Buffered;
            this.textEdit_BegDateReport.Properties.Mask.EditMask = "yyyy-MM-dd";
            this.textEdit_BegDateReport.Properties.Mask.MaskType = DevExpress.XtraEditors.Mask.MaskType.DateTime;
            this.textEdit_BegDateReport.Size = new System.Drawing.Size(88, 20);
            this.textEdit_BegDateReport.TabIndex = 20;
            // 
            // textEdit_NumberReport
            // 
            this.textEdit_NumberReport.EditValue = "";
            this.textEdit_NumberReport.Location = new System.Drawing.Point(104, 160);
            this.textEdit_NumberReport.Name = "textEdit_NumberReport";
            this.textEdit_NumberReport.Size = new System.Drawing.Size(88, 20);
            this.textEdit_NumberReport.TabIndex = 19;
            // 
            // textEdit_NameReport
            // 
            this.textEdit_NameReport.EditValue = "";
            this.textEdit_NameReport.Location = new System.Drawing.Point(104, 128);
            this.textEdit_NameReport.Name = "textEdit_NameReport";
            this.textEdit_NameReport.Size = new System.Drawing.Size(88, 20);
            this.textEdit_NameReport.TabIndex = 18;
            // 
            // notePanel_NumberReport
            // 
            this.notePanel_NumberReport.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(224)))), ((int)(((byte)(224)))), ((int)(((byte)(224)))));
            this.notePanel_NumberReport.BackColor2 = System.Drawing.Color.DarkGray;
            this.notePanel_NumberReport.Font = new System.Drawing.Font("Tahoma", 8F);
            this.notePanel_NumberReport.ForeColor = System.Drawing.Color.Black;
            this.notePanel_NumberReport.GradientMode = System.Drawing.Drawing2D.LinearGradientMode.Vertical;
            this.notePanel_NumberReport.Location = new System.Drawing.Point(16, 160);
            this.notePanel_NumberReport.MaxRows = 5;
            this.notePanel_NumberReport.Name = "notePanel_NumberReport";
            this.notePanel_NumberReport.ParentAutoHeight = true;
            this.notePanel_NumberReport.Size = new System.Drawing.Size(80, 22);
            this.notePanel_NumberReport.TabIndex = 17;
            this.notePanel_NumberReport.TabStop = false;
            this.notePanel_NumberReport.Text = "  学  号:    ";
            // 
            // notePanel_NameReport
            // 
            this.notePanel_NameReport.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(224)))), ((int)(((byte)(224)))), ((int)(((byte)(224)))));
            this.notePanel_NameReport.BackColor2 = System.Drawing.Color.DarkGray;
            this.notePanel_NameReport.Font = new System.Drawing.Font("Tahoma", 8F);
            this.notePanel_NameReport.ForeColor = System.Drawing.Color.Black;
            this.notePanel_NameReport.GradientMode = System.Drawing.Drawing2D.LinearGradientMode.Vertical;
            this.notePanel_NameReport.Location = new System.Drawing.Point(16, 128);
            this.notePanel_NameReport.MaxRows = 5;
            this.notePanel_NameReport.Name = "notePanel_NameReport";
            this.notePanel_NameReport.ParentAutoHeight = true;
            this.notePanel_NameReport.Size = new System.Drawing.Size(80, 22);
            this.notePanel_NameReport.TabIndex = 16;
            this.notePanel_NameReport.TabStop = false;
            this.notePanel_NameReport.Text = "  姓  名:    ";
            // 
            // comboBoxEdit_PrintType
            // 
            this.comboBoxEdit_PrintType.EditValue = "年班统计表";
            this.comboBoxEdit_PrintType.Location = new System.Drawing.Point(104, 256);
            this.comboBoxEdit_PrintType.Name = "comboBoxEdit_PrintType";
            this.comboBoxEdit_PrintType.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
            new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
            this.comboBoxEdit_PrintType.Properties.Items.AddRange(new object[] {
            "年班统计表",
            "年班柱图表",
            "年班饼图表",
            "个人统计表",
            "个人详细表"});
            this.comboBoxEdit_PrintType.Size = new System.Drawing.Size(88, 20);
            this.comboBoxEdit_PrintType.TabIndex = 15;
            // 
            // notePanel_PrintType
            // 
            this.notePanel_PrintType.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(224)))), ((int)(((byte)(224)))), ((int)(((byte)(224)))));
            this.notePanel_PrintType.BackColor2 = System.Drawing.Color.DarkGray;
            this.notePanel_PrintType.Font = new System.Drawing.Font("Tahoma", 8F);
            this.notePanel_PrintType.ForeColor = System.Drawing.Color.Black;
            this.notePanel_PrintType.GradientMode = System.Drawing.Drawing2D.LinearGradientMode.Vertical;
            this.notePanel_PrintType.Location = new System.Drawing.Point(16, 256);
            this.notePanel_PrintType.MaxRows = 5;
            this.notePanel_PrintType.Name = "notePanel_PrintType";
            this.notePanel_PrintType.ParentAutoHeight = true;
            this.notePanel_PrintType.Size = new System.Drawing.Size(80, 22);
            this.notePanel_PrintType.TabIndex = 14;
            this.notePanel_PrintType.TabStop = false;
            this.notePanel_PrintType.Text = "报表类型:    ";
            // 
            // notePanel_EndDateReport
            // 
            this.notePanel_EndDateReport.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(224)))), ((int)(((byte)(224)))), ((int)(((byte)(224)))));
            this.notePanel_EndDateReport.BackColor2 = System.Drawing.Color.DarkGray;
            this.notePanel_EndDateReport.Font = new System.Drawing.Font("Tahoma", 8F);
            this.notePanel_EndDateReport.ForeColor = System.Drawing.Color.Black;
            this.notePanel_EndDateReport.GradientMode = System.Drawing.Drawing2D.LinearGradientMode.Vertical;
            this.notePanel_EndDateReport.Location = new System.Drawing.Point(16, 224);
            this.notePanel_EndDateReport.MaxRows = 5;
            this.notePanel_EndDateReport.Name = "notePanel_EndDateReport";
            this.notePanel_EndDateReport.ParentAutoHeight = true;
            this.notePanel_EndDateReport.Size = new System.Drawing.Size(80, 22);
            this.notePanel_EndDateReport.TabIndex = 11;
            this.notePanel_EndDateReport.TabStop = false;
            this.notePanel_EndDateReport.Text = "结束时间:    ";
            // 
            // notePanel_BegDateReport
            // 
            this.notePanel_BegDateReport.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(224)))), ((int)(((byte)(224)))), ((int)(((byte)(224)))));
            this.notePanel_BegDateReport.BackColor2 = System.Drawing.Color.DarkGray;
            this.notePanel_BegDateReport.Font = new System.Drawing.Font("Tahoma", 8F);
            this.notePanel_BegDateReport.ForeColor = System.Drawing.Color.Black;
            this.notePanel_BegDateReport.GradientMode = System.Drawing.Drawing2D.LinearGradientMode.Vertical;
            this.notePanel_BegDateReport.Location = new System.Drawing.Point(16, 192);
            this.notePanel_BegDateReport.MaxRows = 5;
            this.notePanel_BegDateReport.Name = "notePanel_BegDateReport";
            this.notePanel_BegDateReport.ParentAutoHeight = true;
            this.notePanel_BegDateReport.Size = new System.Drawing.Size(80, 22);
            this.notePanel_BegDateReport.TabIndex = 10;
            this.notePanel_BegDateReport.TabStop = false;
            this.notePanel_BegDateReport.Text = "开始时间:    ";
            // 
            // comboBoxEdit_ClassReport
            // 
            this.comboBoxEdit_ClassReport.EditValue = "全部";
            this.comboBoxEdit_ClassReport.Location = new System.Drawing.Point(104, 96);
            this.comboBoxEdit_ClassReport.Name = "comboBoxEdit_ClassReport";
            this.comboBoxEdit_ClassReport.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
            new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
            this.comboBoxEdit_ClassReport.Properties.Items.AddRange(new object[] {
            "全部"});
            this.comboBoxEdit_ClassReport.Size = new System.Drawing.Size(88, 20);
            this.comboBoxEdit_ClassReport.TabIndex = 9;
            this.comboBoxEdit_ClassReport.SelectedIndexChanged += new System.EventHandler(this.comboBoxEdit_ClassReport_SelectedIndexChanged);
            // 
            // notePanel_ClassReport
            // 
            this.notePanel_ClassReport.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(224)))), ((int)(((byte)(224)))), ((int)(((byte)(224)))));
            this.notePanel_ClassReport.BackColor2 = System.Drawing.Color.DarkGray;
            this.notePanel_ClassReport.Font = new System.Drawing.Font("Tahoma", 8F);
            this.notePanel_ClassReport.ForeColor = System.Drawing.Color.Black;
            this.notePanel_ClassReport.GradientMode = System.Drawing.Drawing2D.LinearGradientMode.Vertical;
            this.notePanel_ClassReport.Location = new System.Drawing.Point(16, 97);
            this.notePanel_ClassReport.MaxRows = 5;
            this.notePanel_ClassReport.Name = "notePanel_ClassReport";
            this.notePanel_ClassReport.ParentAutoHeight = true;
            this.notePanel_ClassReport.Size = new System.Drawing.Size(80, 22);
            this.notePanel_ClassReport.TabIndex = 8;
            this.notePanel_ClassReport.TabStop = false;
            this.notePanel_ClassReport.Text = "  班  级:    ";
            // 
            // comboBoxEdit_GradeReport
            // 
            this.comboBoxEdit_GradeReport.EditValue = "全部";
            this.comboBoxEdit_GradeReport.Location = new System.Drawing.Point(104, 64);
            this.comboBoxEdit_GradeReport.Name = "comboBoxEdit_GradeReport";
            this.comboBoxEdit_GradeReport.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
            new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
            this.comboBoxEdit_GradeReport.Properties.Items.AddRange(new object[] {
            "全部"});
            this.comboBoxEdit_GradeReport.Size = new System.Drawing.Size(88, 20);
            this.comboBoxEdit_GradeReport.TabIndex = 7;
            this.comboBoxEdit_GradeReport.SelectedIndexChanged += new System.EventHandler(this.comboBoxEdit_GradeReport_SelectedIndexChanged);
            // 
            // notePanel_GradeReport
            // 
            this.notePanel_GradeReport.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(224)))), ((int)(((byte)(224)))), ((int)(((byte)(224)))));
            this.notePanel_GradeReport.BackColor2 = System.Drawing.Color.DarkGray;
            this.notePanel_GradeReport.Font = new System.Drawing.Font("Tahoma", 8F);
            this.notePanel_GradeReport.ForeColor = System.Drawing.Color.Black;
            this.notePanel_GradeReport.GradientMode = System.Drawing.Drawing2D.LinearGradientMode.Vertical;
            this.notePanel_GradeReport.Location = new System.Drawing.Point(16, 64);
            this.notePanel_GradeReport.MaxRows = 5;
            this.notePanel_GradeReport.Name = "notePanel_GradeReport";
            this.notePanel_GradeReport.ParentAutoHeight = true;
            this.notePanel_GradeReport.Size = new System.Drawing.Size(80, 22);
            this.notePanel_GradeReport.TabIndex = 6;
            this.notePanel_GradeReport.TabStop = false;
            this.notePanel_GradeReport.Text = "  年  级:    ";
            // 
            // notePanel_SerCondReport
            // 
            this.notePanel_SerCondReport.BackColor = System.Drawing.Color.LightGoldenrodYellow;
            this.notePanel_SerCondReport.Dock = System.Windows.Forms.DockStyle.Top;
            this.notePanel_SerCondReport.Font = new System.Drawing.Font("Tahoma", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.notePanel_SerCondReport.ForeColor = System.Drawing.Color.OrangeRed;
            this.notePanel_SerCondReport.GradientMode = System.Drawing.Drawing2D.LinearGradientMode.Vertical;
            this.notePanel_SerCondReport.Location = new System.Drawing.Point(2, 22);
            this.notePanel_SerCondReport.MaxRows = 5;
            this.notePanel_SerCondReport.Name = "notePanel_SerCondReport";
            this.notePanel_SerCondReport.ParentAutoHeight = true;
            this.notePanel_SerCondReport.Size = new System.Drawing.Size(229, 23);
            this.notePanel_SerCondReport.TabIndex = 5;
            this.notePanel_SerCondReport.TabStop = false;
            this.notePanel_SerCondReport.Text = "您要搜索的条件?";
            // 
            // groupControl_PreviewReport
            // 
            this.groupControl_PreviewReport.Appearance.Font = new System.Drawing.Font("Tahoma", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.groupControl_PreviewReport.Appearance.Options.UseFont = true;
            this.groupControl_PreviewReport.AppearanceCaption.Font = new System.Drawing.Font("Tahoma", 9F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.groupControl_PreviewReport.AppearanceCaption.Options.UseFont = true;
            this.groupControl_PreviewReport.Dock = System.Windows.Forms.DockStyle.Fill;
            this.groupControl_PreviewReport.Location = new System.Drawing.Point(0, 48);
            this.groupControl_PreviewReport.Name = "groupControl_PreviewReport";
            this.groupControl_PreviewReport.Size = new System.Drawing.Size(528, 463);
            this.groupControl_PreviewReport.TabIndex = 1;
            this.groupControl_PreviewReport.Text = "图形报表预览";
            this.groupControl_PreviewReport.Resize += new System.EventHandler(this.groupControl_PreviewReport_Resize);
            // 
            // panelControl4
            // 
            this.panelControl4.Controls.Add(this.simpleButton_PrintReport);
            this.panelControl4.Controls.Add(this.simpleButton_PreviewReport);
            this.panelControl4.Dock = System.Windows.Forms.DockStyle.Top;
            this.panelControl4.Location = new System.Drawing.Point(0, 0);
            this.panelControl4.Name = "panelControl4";
            this.panelControl4.Size = new System.Drawing.Size(528, 48);
            this.panelControl4.TabIndex = 0;
            // 
            // simpleButton_PrintReport
            // 
            this.simpleButton_PrintReport.Appearance.Font = new System.Drawing.Font("Tahoma", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.simpleButton_PrintReport.Appearance.ForeColor = System.Drawing.Color.DarkMagenta;
            this.simpleButton_PrintReport.Appearance.Options.UseFont = true;
            this.simpleButton_PrintReport.Appearance.Options.UseForeColor = true;
            this.simpleButton_PrintReport.Image = ((System.Drawing.Image)(resources.GetObject("simpleButton_PrintReport.Image")));
            this.simpleButton_PrintReport.Location = new System.Drawing.Point(112, 8);
            this.simpleButton_PrintReport.Name = "simpleButton_PrintReport";
            this.simpleButton_PrintReport.Size = new System.Drawing.Size(120, 26);
            this.simpleButton_PrintReport.TabIndex = 4;
            this.simpleButton_PrintReport.Tag = 4;
            this.simpleButton_PrintReport.Text = "图形报表打印";
            this.simpleButton_PrintReport.Click += new System.EventHandler(this.simpleButton_PrintReport_Click);
            // 
            // simpleButton_PreviewReport
            // 
            this.simpleButton_PreviewReport.Appearance.Font = new System.Drawing.Font("Tahoma", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.simpleButton_PreviewReport.Appearance.ForeColor = System.Drawing.Color.DarkMagenta;
            this.simpleButton_PreviewReport.Appearance.Options.UseFont = true;
            this.simpleButton_PreviewReport.Appearance.Options.UseForeColor = true;
            this.simpleButton_PreviewReport.Image = ((System.Drawing.Image)(resources.GetObject("simpleButton_PreviewReport.Image")));
            this.simpleButton_PreviewReport.Location = new System.Drawing.Point(8, 8);
            this.simpleButton_PreviewReport.Name = "simpleButton_PreviewReport";
            this.simpleButton_PreviewReport.Size = new System.Drawing.Size(96, 26);
            this.simpleButton_PreviewReport.TabIndex = 3;
            this.simpleButton_PreviewReport.Tag = 4;
            this.simpleButton_PreviewReport.Text = "报表预览";
            this.simpleButton_PreviewReport.Click += new System.EventHandler(this.simpleButton_PreviewReport_Click);
            // 
            // xtraTabPage1
            // 
            this.xtraTabPage1.Controls.Add(this.panel1);
            this.xtraTabPage1.Name = "xtraTabPage1";
            this.xtraTabPage1.Size = new System.Drawing.Size(766, 511);
            this.xtraTabPage1.Text = "成长记录报表";
            // 
            // panel1
            // 
            this.panel1.Controls.Add(this.treeView1);
            this.panel1.Controls.Add(this.panel2);
            this.panel1.Dock = System.Windows.Forms.DockStyle.Fill;
            this.panel1.Location = new System.Drawing.Point(0, 0);
            this.panel1.Name = "panel1";
            this.panel1.Size = new System.Drawing.Size(766, 511);
            this.panel1.TabIndex = 0;
            // 
            // treeView1
            // 
            this.treeView1.Dock = System.Windows.Forms.DockStyle.Fill;
            this.treeView1.Location = new System.Drawing.Point(0, 31);
            this.treeView1.Name = "treeView1";
            this.treeView1.Size = new System.Drawing.Size(766, 480);
            this.treeView1.TabIndex = 1;
            this.treeView1.NodeMouseDoubleClick += new System.Windows.Forms.TreeNodeMouseClickEventHandler(this.treeView1_NodeMouseDoubleClick);
            // 
            // panel2
            // 
            this.panel2.Controls.Add(this.simpleButton1);
            this.panel2.Controls.Add(this.checkedComboBoxEdit1);
            this.panel2.Controls.Add(this.comboBox1);
            this.panel2.Controls.Add(this.label1);
            this.panel2.Controls.Add(this.progressBar1);
            this.panel2.Dock = System.Windows.Forms.DockStyle.Top;
            this.panel2.Location = new System.Drawing.Point(0, 0);
            this.panel2.Name = "panel2";
            this.panel2.Size = new System.Drawing.Size(766, 31);
            this.panel2.TabIndex = 0;
            // 
            // simpleButton1
            // 
            this.simpleButton1.Location = new System.Drawing.Point(547, 6);
            this.simpleButton1.Name = "simpleButton1";
            this.simpleButton1.Size = new System.Drawing.Size(75, 23);
            this.simpleButton1.TabIndex = 4;
            this.simpleButton1.Text = "生成报表";
            this.simpleButton1.Click += new System.EventHandler(this.simpleButton1_Click);
            // 
            // checkedComboBoxEdit1
            // 
            this.checkedComboBoxEdit1.EditValue = "";
            this.checkedComboBoxEdit1.Location = new System.Drawing.Point(470, 6);
            this.checkedComboBoxEdit1.Name = "checkedComboBoxEdit1";
            this.checkedComboBoxEdit1.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
            new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
            this.checkedComboBoxEdit1.Properties.Items.AddRange(new DevExpress.XtraEditors.Controls.CheckedListBoxItem[] {
            new DevExpress.XtraEditors.Controls.CheckedListBoxItem("1月"),
            new DevExpress.XtraEditors.Controls.CheckedListBoxItem("2月"),
            new DevExpress.XtraEditors.Controls.CheckedListBoxItem("3月"),
            new DevExpress.XtraEditors.Controls.CheckedListBoxItem("4月"),
            new DevExpress.XtraEditors.Controls.CheckedListBoxItem("5月"),
            new DevExpress.XtraEditors.Controls.CheckedListBoxItem("6月"),
            new DevExpress.XtraEditors.Controls.CheckedListBoxItem("7月"),
            new DevExpress.XtraEditors.Controls.CheckedListBoxItem("8月"),
            new DevExpress.XtraEditors.Controls.CheckedListBoxItem("9月"),
            new DevExpress.XtraEditors.Controls.CheckedListBoxItem("10月"),
            new DevExpress.XtraEditors.Controls.CheckedListBoxItem("11月"),
            new DevExpress.XtraEditors.Controls.CheckedListBoxItem("12月")});
            this.checkedComboBoxEdit1.Size = new System.Drawing.Size(71, 20);
            this.checkedComboBoxEdit1.TabIndex = 3;
            // 
            // comboBox1
            // 
            this.comboBox1.FormattingEnabled = true;
            this.comboBox1.Items.AddRange(new object[] {
            "2014年",
            "2015年",
            "2016年",
            "2017年",
            "2018年",
            "2019年",
            "2020年"});
            this.comboBox1.Location = new System.Drawing.Point(325, 6);
            this.comboBox1.Name = "comboBox1";
            this.comboBox1.Size = new System.Drawing.Size(139, 20);
            this.comboBox1.TabIndex = 2;
            // 
            // label1
            // 
            this.label1.AutoSize = true;
            this.label1.Location = new System.Drawing.Point(628, 16);
            this.label1.Name = "label1";
            this.label1.Size = new System.Drawing.Size(41, 12);
            this.label1.TabIndex = 1;
            this.label1.Text = "label1";
            // 
            // progressBar1
            // 
            this.progressBar1.Location = new System.Drawing.Point(3, 3);
            this.progressBar1.Name = "progressBar1";
            this.progressBar1.Size = new System.Drawing.Size(316, 23);
            this.progressBar1.TabIndex = 0;
            // 
            // StudentMorningCheckInfo
            // 
            this.BackColor = System.Drawing.Color.WhiteSmoke;
            this.Controls.Add(this.xtraTabControl_CheckInfo);
            this.Name = "StudentMorningCheckInfo";
            this.Size = new System.Drawing.Size(772, 540);
            this.Load += new System.EventHandler(this.StudentMorningCheckInfo_Load);
            ((System.ComponentModel.ISupportInitialize)(this.xtraTabControl_CheckInfo)).EndInit();
            this.xtraTabControl_CheckInfo.ResumeLayout(false);
            this.xtraTabPage_MorningCheck.ResumeLayout(false);
            ((System.ComponentModel.ISupportInitialize)(this.splitContainerControl1)).EndInit();
            this.splitContainerControl1.ResumeLayout(false);
            ((System.ComponentModel.ISupportInitialize)(this.groupControl_InfoStaticMornig)).EndInit();
            this.groupControl_InfoStaticMornig.ResumeLayout(false);
            ((System.ComponentModel.ISupportInitialize)(this.textEdit_HaveArr.Properties)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.textEdit_DayAmount.Properties)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.textEdit_ShouldArr.Properties)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.textEdit_Watch.Properties)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.textEdit_Ill.Properties)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.textEdit_Absence.Properties)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.textEdit_Health.Properties)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.textEdit_CurRecTimeBinding.Properties)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.textEdit_OrigStateBinding.Properties)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.groupControl_FastSerMorning)).EndInit();
            this.groupControl_FastSerMorning.ResumeLayout(false);
            ((System.ComponentModel.ISupportInitialize)(this.groupControl_TimeStatusMorning)).EndInit();
            this.groupControl_TimeStatusMorning.ResumeLayout(false);
            ((System.ComponentModel.ISupportInitialize)(this.dateEdit_SpecificDateMorning.Properties.VistaTimeProperties)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.dateEdit_SpecificDateMorning.Properties)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.textEdit_EndTimeMorning.Properties)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.textEdit_BegTimeMorning.Properties)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.comboBoxEdit_TimeModeMorning.Properties)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.comboBoxEdit_Status.Properties)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.groupControl_NumberNameMorning)).EndInit();
            this.groupControl_NumberNameMorning.ResumeLayout(false);
            ((System.ComponentModel.ISupportInitialize)(this.textEdit_NumberMorning.Properties)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.textEdit_NameMorning.Properties)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.groupControl_GradeClassMorning)).EndInit();
            this.groupControl_GradeClassMorning.ResumeLayout(false);
            ((System.ComponentModel.ISupportInitialize)(this.comboBoxEdit_ClassMorning.Properties)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.comboBoxEdit_GradeMorning.Properties)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.gridControl_MorningInfo)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.gridView1)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.repositoryItemComboBox_Status)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.panelControl1)).EndInit();
            this.panelControl1.ResumeLayout(false);
            this.xtraTabPage_BackHomeCheck.ResumeLayout(false);
            ((System.ComponentModel.ISupportInitialize)(this.splitContainerControl2)).EndInit();
            this.splitContainerControl2.ResumeLayout(false);
            ((System.ComponentModel.ISupportInitialize)(this.groupControl1)).EndInit();
            this.groupControl1.ResumeLayout(false);
            ((System.ComponentModel.ISupportInitialize)(this.textEdit_ShouldGo.Properties)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.textEdit_HasnotGone.Properties)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.textEdit_HasGone.Properties)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.groupControl_FastSerBack)).EndInit();
            this.groupControl_FastSerBack.ResumeLayout(false);
            ((System.ComponentModel.ISupportInitialize)(this.groupControl_TimeCondBack)).EndInit();
            this.groupControl_TimeCondBack.ResumeLayout(false);
            ((System.ComponentModel.ISupportInitialize)(this.dateEdit_SpecificDateBack.Properties.VistaTimeProperties)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.dateEdit_SpecificDateBack.Properties)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.comboBoxEdit_TimeModeBack.Properties)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.textEdit_EndTimeBack.Properties)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.textEdit_BegTimeBack.Properties)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.comboBoxEdit_BackCond.Properties)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.groupControl_NumberNameBack)).EndInit();
            this.groupControl_NumberNameBack.ResumeLayout(false);
            ((System.ComponentModel.ISupportInitialize)(this.textEdit_NameBack.Properties)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.textEdit_NumberBack.Properties)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.groupControl_GradeClassBack)).EndInit();
            this.groupControl_GradeClassBack.ResumeLayout(false);
            ((System.ComponentModel.ISupportInitialize)(this.comboBoxEdit_ClassBack.Properties)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.comboBoxEdit_GradeBack.Properties)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.gridControl_BackInfo)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.gridView2)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.panelControl2)).EndInit();
            this.panelControl2.ResumeLayout(false);
            this.xtraTabPage_FreeDefinition.ResumeLayout(false);
            ((System.ComponentModel.ISupportInitialize)(this.splitContainerControl3)).EndInit();
            this.splitContainerControl3.ResumeLayout(false);
            ((System.ComponentModel.ISupportInitialize)(this.groupControl_FastSerFreeDef)).EndInit();
            this.groupControl_FastSerFreeDef.ResumeLayout(false);
            ((System.ComponentModel.ISupportInitialize)(this.groupControl_TimeStatusFreeDef)).EndInit();
            this.groupControl_TimeStatusFreeDef.ResumeLayout(false);
            ((System.ComponentModel.ISupportInitialize)(this.dateEdit_SpecificDateFreeDef.Properties.VistaTimeProperties)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.dateEdit_SpecificDateFreeDef.Properties)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.comboBoxEdit_TimeModeFreeDef.Properties)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.textEdit_EndTimeFreeDef.Properties)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.textEdit_BegTimeFreeDef.Properties)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.comboBoxEdit_CustomStatusDef.Properties)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.groupControl_NumberNameFreeDef)).EndInit();
            this.groupControl_NumberNameFreeDef.ResumeLayout(false);
            ((System.ComponentModel.ISupportInitialize)(this.textEdit_NameFreeDef.Properties)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.textEdit_NumberFreeDef.Properties)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.groupControl_GradeClassFreeDef)).EndInit();
            this.groupControl_GradeClassFreeDef.ResumeLayout(false);
            ((System.ComponentModel.ISupportInitialize)(this.comboBoxEdit_ClassFreeDef.Properties)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.comboBoxEdit_GradeFreeDef.Properties)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.gridControl_FreeDef)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.gridView3)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.repositoryItemComboBox_CustomState)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.repositoryItemComboBox1)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.panelControl3)).EndInit();
            this.panelControl3.ResumeLayout(false);
            this.xtraTabPage_MoreReport.ResumeLayout(false);
            ((System.ComponentModel.ISupportInitialize)(this.splitContainerControl4)).EndInit();
            this.splitContainerControl4.ResumeLayout(false);
            ((System.ComponentModel.ISupportInitialize)(this.groupControl_FastSerReport)).EndInit();
            this.groupControl_FastSerReport.ResumeLayout(false);
            ((System.ComponentModel.ISupportInitialize)(this.textEdit_EndDateReport.Properties)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.textEdit_BegDateReport.Properties)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.textEdit_NumberReport.Properties)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.textEdit_NameReport.Properties)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.comboBoxEdit_PrintType.Properties)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.comboBoxEdit_ClassReport.Properties)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.comboBoxEdit_GradeReport.Properties)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.groupControl_PreviewReport)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.panelControl4)).EndInit();
            this.panelControl4.ResumeLayout(false);
            this.xtraTabPage1.ResumeLayout(false);
            this.panel1.ResumeLayout(false);
            this.panel2.ResumeLayout(false);
            this.panel2.PerformLayout();
            ((System.ComponentModel.ISupportInitialize)(this.checkedComboBoxEdit1.Properties)).EndInit();
            this.ResumeLayout(false);

		}
Example #51
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(Finan2Details));
			this.notePanel_FinanQuery = new DevExpress.Utils.Frames.NotePanel();
			this.notePanel1 = new DevExpress.Utils.Frames.NotePanel();
			this.txtTemplateName = new DevExpress.XtraEditors.TextEdit();
			this.gridControl1 = new DevExpress.XtraGrid.GridControl();
			this.gridView1 = new DevExpress.XtraGrid.Views.Grid.GridView();
			this.费用名 = new DevExpress.XtraGrid.Columns.GridColumn();
			this.fullDays = new DevExpress.XtraGrid.Columns.GridColumn();
			this.fullDaysSpend = new DevExpress.XtraGrid.Columns.GridColumn();
			this.halfDaysSpend = new DevExpress.XtraGrid.Columns.GridColumn();
			this.perDaySpend = new DevExpress.XtraGrid.Columns.GridColumn();
			this.noSpendMonth = new DevExpress.XtraGrid.Columns.GridColumn();
			this.halfSpendMonth = new DevExpress.XtraGrid.Columns.GridColumn();
			this.指定年级 = new DevExpress.XtraGrid.Columns.GridColumn();
			this.repositoryItemComboBox1 = new DevExpress.XtraEditors.Repository.RepositoryItemComboBox();
			this.指定班级 = new DevExpress.XtraGrid.Columns.GridColumn();
			this.repositoryItemComboBox2 = new DevExpress.XtraEditors.Repository.RepositoryItemComboBox();
			this.toolTipController1 = new DevExpress.Utils.ToolTipController(this.components);
			this.btnAdd = new DevExpress.XtraEditors.SimpleButton();
			this.btnSave = new DevExpress.XtraEditors.SimpleButton();
			this.btnDelete = new DevExpress.XtraEditors.SimpleButton();
			((System.ComponentModel.ISupportInitialize)(this.txtTemplateName.Properties)).BeginInit();
			((System.ComponentModel.ISupportInitialize)(this.gridControl1)).BeginInit();
			((System.ComponentModel.ISupportInitialize)(this.gridView1)).BeginInit();
			((System.ComponentModel.ISupportInitialize)(this.repositoryItemComboBox1)).BeginInit();
			((System.ComponentModel.ISupportInitialize)(this.repositoryItemComboBox2)).BeginInit();
			this.SuspendLayout();
			// 
			// notePanel_FinanQuery
			// 
			this.notePanel_FinanQuery.BackColor = System.Drawing.Color.LightGoldenrodYellow;
			this.notePanel_FinanQuery.Dock = System.Windows.Forms.DockStyle.Top;
			this.notePanel_FinanQuery.ForeColor = System.Drawing.Color.OrangeRed;
			this.notePanel_FinanQuery.GradientMode = System.Drawing.Drawing2D.LinearGradientMode.Vertical;
			this.notePanel_FinanQuery.Location = new System.Drawing.Point(0, 0);
			this.notePanel_FinanQuery.MaxRows = 5;
			this.notePanel_FinanQuery.Name = "notePanel_FinanQuery";
			this.notePanel_FinanQuery.ParentAutoHeight = true;
			this.notePanel_FinanQuery.Size = new System.Drawing.Size(632, 23);
			this.notePanel_FinanQuery.TabIndex = 47;
			this.notePanel_FinanQuery.TabStop = false;
			this.notePanel_FinanQuery.Text = "不用的项目请用\"-\"表示。\"排除月\"用于\"不来不交费\",有多个的话,请用\",\"隔开";
			// 
			// notePanel1
			// 
			this.notePanel1.BackColor = System.Drawing.Color.FromArgb(((System.Byte)(224)), ((System.Byte)(224)), ((System.Byte)(224)));
			this.notePanel1.BackColor2 = System.Drawing.Color.DarkGray;
			this.notePanel1.Font = new System.Drawing.Font("Tahoma", 8F);
			this.notePanel1.ForeColor = System.Drawing.Color.Black;
			this.notePanel1.GradientMode = System.Drawing.Drawing2D.LinearGradientMode.Vertical;
			this.notePanel1.Location = new System.Drawing.Point(24, 40);
			this.notePanel1.MaxRows = 5;
			this.notePanel1.Name = "notePanel1";
			this.notePanel1.ParentAutoHeight = true;
			this.notePanel1.Size = new System.Drawing.Size(80, 22);
			this.notePanel1.TabIndex = 48;
			this.notePanel1.TabStop = false;
			this.notePanel1.Text = "模板名称";
			// 
			// txtTemplateName
			// 
			this.txtTemplateName.EditValue = "";
			this.txtTemplateName.Location = new System.Drawing.Point(120, 40);
			this.txtTemplateName.Name = "txtTemplateName";
			this.txtTemplateName.Size = new System.Drawing.Size(152, 23);
			this.txtTemplateName.TabIndex = 49;
			// 
			// gridControl1
			// 
			// 
			// gridControl1.EmbeddedNavigator
			// 
			this.gridControl1.EmbeddedNavigator.Name = "";
			this.gridControl1.Location = new System.Drawing.Point(24, 112);
			this.gridControl1.MainView = this.gridView1;
			this.gridControl1.Name = "gridControl1";
			this.gridControl1.RepositoryItems.AddRange(new DevExpress.XtraEditors.Repository.RepositoryItem[] {
																												  this.repositoryItemComboBox1,
																												  this.repositoryItemComboBox2});
			this.gridControl1.Size = new System.Drawing.Size(560, 312);
			this.gridControl1.TabIndex = 50;
			this.gridControl1.ToolTipController = this.toolTipController1;
			this.gridControl1.ViewCollection.AddRange(new DevExpress.XtraGrid.Views.Base.BaseView[] {
																										this.gridView1});
			// 
			// gridView1
			// 
			this.gridView1.Columns.AddRange(new DevExpress.XtraGrid.Columns.GridColumn[] {
																							 this.费用名,
																							 this.fullDays,
																							 this.fullDaysSpend,
																							 this.halfDaysSpend,
																							 this.perDaySpend,
																							 this.noSpendMonth,
																							 this.halfSpendMonth,
																							 this.指定年级,
																							 this.指定班级});
			this.gridView1.GridControl = this.gridControl1;
			this.gridView1.Name = "gridView1";
			this.gridView1.OptionsCustomization.AllowFilter = false;
			this.gridView1.OptionsView.ShowFilterPanel = false;
			this.gridView1.OptionsView.ShowGroupPanel = false;
			// 
			// 费用名
			// 
			this.费用名.AppearanceCell.Options.UseTextOptions = true;
			this.费用名.AppearanceCell.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
			this.费用名.AppearanceCell.TextOptions.VAlignment = DevExpress.Utils.VertAlignment.Center;
			this.费用名.AppearanceHeader.Options.UseTextOptions = true;
			this.费用名.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
			this.费用名.AppearanceHeader.TextOptions.VAlignment = DevExpress.Utils.VertAlignment.Center;
			this.费用名.Caption = "费用名";
			this.费用名.FieldName = "费用名";
			this.费用名.Name = "费用名";
			this.费用名.OptionsColumn.AllowMerge = DevExpress.Utils.DefaultBoolean.True;
			this.费用名.OptionsColumn.AllowSort = DevExpress.Utils.DefaultBoolean.False;
			this.费用名.OptionsColumn.FixedWidth = true;
			this.费用名.Visible = true;
			this.费用名.VisibleIndex = 0;
			this.费用名.Width = 60;
			// 
			// fullDays
			// 
			this.fullDays.AppearanceCell.Options.UseTextOptions = true;
			this.fullDays.AppearanceCell.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
			this.fullDays.AppearanceCell.TextOptions.VAlignment = DevExpress.Utils.VertAlignment.Center;
			this.fullDays.AppearanceHeader.Options.UseTextOptions = true;
			this.fullDays.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
			this.fullDays.AppearanceHeader.TextOptions.VAlignment = DevExpress.Utils.VertAlignment.Center;
			this.fullDays.Caption = "全勤天数";
			this.fullDays.FieldName = "fullDays";
			this.fullDays.Name = "fullDays";
			this.fullDays.OptionsColumn.AllowMerge = DevExpress.Utils.DefaultBoolean.True;
			this.fullDays.OptionsColumn.AllowSort = DevExpress.Utils.DefaultBoolean.False;
			this.fullDays.OptionsColumn.FixedWidth = true;
			this.fullDays.Visible = true;
			this.fullDays.VisibleIndex = 1;
			this.fullDays.Width = 60;
			// 
			// fullDaysSpend
			// 
			this.fullDaysSpend.AppearanceCell.Options.UseTextOptions = true;
			this.fullDaysSpend.AppearanceCell.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
			this.fullDaysSpend.AppearanceCell.TextOptions.VAlignment = DevExpress.Utils.VertAlignment.Center;
			this.fullDaysSpend.AppearanceHeader.Options.UseTextOptions = true;
			this.fullDaysSpend.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
			this.fullDaysSpend.AppearanceHeader.TextOptions.VAlignment = DevExpress.Utils.VertAlignment.Center;
			this.fullDaysSpend.Caption = "全勤费用";
			this.fullDaysSpend.FieldName = "fullDaysSpend";
			this.fullDaysSpend.Name = "fullDaysSpend";
			this.fullDaysSpend.OptionsColumn.AllowMerge = DevExpress.Utils.DefaultBoolean.True;
			this.fullDaysSpend.OptionsColumn.AllowSort = DevExpress.Utils.DefaultBoolean.False;
			this.fullDaysSpend.OptionsColumn.FixedWidth = true;
			this.fullDaysSpend.Visible = true;
			this.fullDaysSpend.VisibleIndex = 2;
			this.fullDaysSpend.Width = 60;
			// 
			// halfDaysSpend
			// 
			this.halfDaysSpend.AppearanceCell.Options.UseTextOptions = true;
			this.halfDaysSpend.AppearanceCell.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
			this.halfDaysSpend.AppearanceCell.TextOptions.VAlignment = DevExpress.Utils.VertAlignment.Center;
			this.halfDaysSpend.AppearanceHeader.Options.UseTextOptions = true;
			this.halfDaysSpend.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
			this.halfDaysSpend.AppearanceHeader.TextOptions.VAlignment = DevExpress.Utils.VertAlignment.Center;
			this.halfDaysSpend.Caption = "半勤费用";
			this.halfDaysSpend.FieldName = "halfDaysSpend";
			this.halfDaysSpend.Name = "halfDaysSpend";
			this.halfDaysSpend.OptionsColumn.AllowMerge = DevExpress.Utils.DefaultBoolean.True;
			this.halfDaysSpend.OptionsColumn.AllowSort = DevExpress.Utils.DefaultBoolean.False;
			this.halfDaysSpend.OptionsColumn.FixedWidth = true;
			this.halfDaysSpend.Visible = true;
			this.halfDaysSpend.VisibleIndex = 3;
			this.halfDaysSpend.Width = 60;
			// 
			// perDaySpend
			// 
			this.perDaySpend.AppearanceCell.Options.UseTextOptions = true;
			this.perDaySpend.AppearanceCell.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
			this.perDaySpend.AppearanceCell.TextOptions.VAlignment = DevExpress.Utils.VertAlignment.Center;
			this.perDaySpend.AppearanceHeader.Options.UseTextOptions = true;
			this.perDaySpend.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
			this.perDaySpend.AppearanceHeader.TextOptions.VAlignment = DevExpress.Utils.VertAlignment.Center;
			this.perDaySpend.Caption = "出勤一次费用";
			this.perDaySpend.FieldName = "perDaySpend";
			this.perDaySpend.Name = "perDaySpend";
			this.perDaySpend.OptionsColumn.AllowMerge = DevExpress.Utils.DefaultBoolean.True;
			this.perDaySpend.OptionsColumn.AllowSort = DevExpress.Utils.DefaultBoolean.False;
			this.perDaySpend.OptionsColumn.FixedWidth = true;
			this.perDaySpend.Visible = true;
			this.perDaySpend.VisibleIndex = 4;
			this.perDaySpend.Width = 89;
			// 
			// noSpendMonth
			// 
			this.noSpendMonth.AppearanceCell.Options.UseTextOptions = true;
			this.noSpendMonth.AppearanceCell.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
			this.noSpendMonth.AppearanceCell.TextOptions.VAlignment = DevExpress.Utils.VertAlignment.Center;
			this.noSpendMonth.AppearanceHeader.Options.UseTextOptions = true;
			this.noSpendMonth.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
			this.noSpendMonth.AppearanceHeader.TextOptions.VAlignment = DevExpress.Utils.VertAlignment.Center;
			this.noSpendMonth.Caption = "排除月";
			this.noSpendMonth.FieldName = "noSpendMonth";
			this.noSpendMonth.Name = "noSpendMonth";
			this.noSpendMonth.OptionsColumn.AllowMerge = DevExpress.Utils.DefaultBoolean.True;
			this.noSpendMonth.OptionsColumn.AllowSort = DevExpress.Utils.DefaultBoolean.False;
			this.noSpendMonth.OptionsColumn.FixedWidth = true;
			this.noSpendMonth.Visible = true;
			this.noSpendMonth.VisibleIndex = 5;
			this.noSpendMonth.Width = 47;
			// 
			// halfSpendMonth
			// 
			this.halfSpendMonth.AppearanceCell.Options.UseTextOptions = true;
			this.halfSpendMonth.AppearanceCell.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
			this.halfSpendMonth.AppearanceCell.TextOptions.VAlignment = DevExpress.Utils.VertAlignment.Center;
			this.halfSpendMonth.AppearanceHeader.Options.UseTextOptions = true;
			this.halfSpendMonth.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
			this.halfSpendMonth.AppearanceHeader.TextOptions.VAlignment = DevExpress.Utils.VertAlignment.Center;
			this.halfSpendMonth.Caption = "半价月";
			this.halfSpendMonth.FieldName = "halfSpendMonth";
			this.halfSpendMonth.Name = "halfSpendMonth";
			this.halfSpendMonth.OptionsColumn.AllowMerge = DevExpress.Utils.DefaultBoolean.True;
			this.halfSpendMonth.OptionsColumn.AllowSort = DevExpress.Utils.DefaultBoolean.False;
			this.halfSpendMonth.OptionsColumn.FixedWidth = true;
			this.halfSpendMonth.Visible = true;
			this.halfSpendMonth.VisibleIndex = 6;
			this.halfSpendMonth.Width = 47;
			// 
			// 指定年级
			// 
			this.指定年级.Caption = "指定年级";
			this.指定年级.ColumnEdit = this.repositoryItemComboBox1;
			this.指定年级.FieldName = "指定年级";
			this.指定年级.Name = "指定年级";
			this.指定年级.OptionsColumn.AllowMerge = DevExpress.Utils.DefaultBoolean.True;
			this.指定年级.OptionsColumn.AllowSort = DevExpress.Utils.DefaultBoolean.False;
			this.指定年级.OptionsColumn.FixedWidth = true;
			this.指定年级.Visible = true;
			this.指定年级.VisibleIndex = 7;
			// 
			// repositoryItemComboBox1
			// 
			this.repositoryItemComboBox1.AutoHeight = false;
			this.repositoryItemComboBox1.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
																												 new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
			this.repositoryItemComboBox1.Items.AddRange(new object[] {
																		 "不选择"});
			this.repositoryItemComboBox1.Name = "repositoryItemComboBox1";
			this.repositoryItemComboBox1.TextEditStyle = DevExpress.XtraEditors.Controls.TextEditStyles.DisableTextEditor;
			this.repositoryItemComboBox1.SelectedIndexChanged += new System.EventHandler(this.repositoryItemComboBox1_SelectedIndexChanged);
			// 
			// 指定班级
			// 
			this.指定班级.Caption = "指定班级";
			this.指定班级.ColumnEdit = this.repositoryItemComboBox2;
			this.指定班级.FieldName = "指定班级";
			this.指定班级.Name = "指定班级";
			this.指定班级.OptionsColumn.AllowMerge = DevExpress.Utils.DefaultBoolean.True;
			this.指定班级.OptionsColumn.AllowSort = DevExpress.Utils.DefaultBoolean.False;
			this.指定班级.OptionsColumn.FixedWidth = true;
			this.指定班级.Visible = true;
			this.指定班级.VisibleIndex = 8;
			// 
			// repositoryItemComboBox2
			// 
			this.repositoryItemComboBox2.AutoHeight = false;
			this.repositoryItemComboBox2.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
																												 new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
			this.repositoryItemComboBox2.Items.AddRange(new object[] {
																		 "不选择"});
			this.repositoryItemComboBox2.Name = "repositoryItemComboBox2";
			this.repositoryItemComboBox2.TextEditStyle = DevExpress.XtraEditors.Controls.TextEditStyles.DisableTextEditor;
			// 
			// toolTipController1
			// 
			this.toolTipController1.GetActiveObjectInfo += new DevExpress.Utils.ToolTipControllerGetActiveObjectInfoEventHandler(this.toolTipController1_GetActiveObjectInfo);
			// 
			// btnAdd
			// 
			this.btnAdd.Location = new System.Drawing.Point(24, 80);
			this.btnAdd.Name = "btnAdd";
			this.btnAdd.Size = new System.Drawing.Size(64, 23);
			this.btnAdd.TabIndex = 51;
			this.btnAdd.Text = "添加一行";
			this.btnAdd.Click += new System.EventHandler(this.simpleButton1_Click);
			// 
			// btnSave
			// 
			this.btnSave.Location = new System.Drawing.Point(192, 80);
			this.btnSave.Name = "btnSave";
			this.btnSave.TabIndex = 52;
			this.btnSave.Text = "保存全部";
			this.btnSave.Click += new System.EventHandler(this.btnSave_Click);
			// 
			// btnDelete
			// 
			this.btnDelete.Location = new System.Drawing.Point(104, 80);
			this.btnDelete.Name = "btnDelete";
			this.btnDelete.TabIndex = 53;
			this.btnDelete.Text = "删除行";
			this.btnDelete.Click += new System.EventHandler(this.btnDelete_Click);
			// 
			// Finan2Details
			// 
			this.AutoScaleBaseSize = new System.Drawing.Size(6, 15);
			this.ClientSize = new System.Drawing.Size(632, 461);
			this.Controls.Add(this.btnDelete);
			this.Controls.Add(this.btnSave);
			this.Controls.Add(this.btnAdd);
			this.Controls.Add(this.gridControl1);
			this.Controls.Add(this.txtTemplateName);
			this.Controls.Add(this.notePanel1);
			this.Controls.Add(this.notePanel_FinanQuery);
			this.Icon = ((System.Drawing.Icon)(resources.GetObject("$this.Icon")));
			this.Name = "Finan2Details";
			this.Text = "收费细节";
			this.Load += new System.EventHandler(this.Finan2Details_Load);
			((System.ComponentModel.ISupportInitialize)(this.txtTemplateName.Properties)).EndInit();
			((System.ComponentModel.ISupportInitialize)(this.gridControl1)).EndInit();
			((System.ComponentModel.ISupportInitialize)(this.gridView1)).EndInit();
			((System.ComponentModel.ISupportInitialize)(this.repositoryItemComboBox1)).EndInit();
			((System.ComponentModel.ISupportInitialize)(this.repositoryItemComboBox2)).EndInit();
			this.ResumeLayout(false);

		}
Example #52
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(frmSalesTarget));
     this.grpSalesRank = new DevExpress.XtraEditors.GroupControl();
     this.groupBoxCommMSE = new System.Windows.Forms.GroupBox();
     this.groupBox2 = new System.Windows.Forms.GroupBox();
     this.label3 = new System.Windows.Forms.Label();
     this.combo_DuplicateYearTo = new System.Windows.Forms.ComboBox();
     this.label4 = new System.Windows.Forms.Label();
     this.combo_DuplicateBranchTo = new System.Windows.Forms.ComboBox();
     this.btn_Duplicate = new System.Windows.Forms.Button();
     this.groupBox1 = new System.Windows.Forms.GroupBox();
     this.label1 = new System.Windows.Forms.Label();
     this.combo_DuplicateYearFrom = new System.Windows.Forms.ComboBox();
     this.label2 = new System.Windows.Forms.Label();
     this.combo_DuplicateBranchFrom = new System.Windows.Forms.ComboBox();
     this.label31 = new System.Windows.Forms.Label();
     this.ddlSalesRank = new DevExpress.XtraEditors.ImageComboBoxEdit();
     this.grpCommPT = new DevExpress.XtraEditors.GroupControl();
     this.btn_AddPT = new DevExpress.XtraEditors.SimpleButton();
     this.imageList1 = new System.Windows.Forms.ImageList(this.components);
     this.btn_DelPT = new DevExpress.XtraEditors.SimpleButton();
     this.groupControl3 = new DevExpress.XtraEditors.GroupControl();
     this.gridControlMd_CommPT = new DevExpress.XtraGrid.GridControl();
     this.gridViewMd_CommPT = new DevExpress.XtraGrid.Views.Grid.GridView();
     this.gridColumnCommPT8 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.lk_BranchCode3 = new DevExpress.XtraEditors.Repository.RepositoryItemLookUpEdit();
     this.gridColumnCommPT9 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumnCommPT10 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.chk_Month3 = new DevExpress.XtraEditors.Repository.RepositoryItemComboBox();
     this.gridColumnCommPT1 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.lk_Position3 = new DevExpress.XtraEditors.Repository.RepositoryItemLookUpEdit();
     this.gridColumnCommPT2 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumnCommPT3 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumnCommPT4 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumnCommPT5 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumnCommPT6 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumnCommPT7 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumnCommPT11 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.repositoryItemLookUpEdit1 = new DevExpress.XtraEditors.Repository.RepositoryItemLookUpEdit();
     this.repositoryItemDateEdit1 = new DevExpress.XtraEditors.Repository.RepositoryItemDateEdit();
     this.repositoryItemDateEdit2 = new DevExpress.XtraEditors.Repository.RepositoryItemDateEdit();
     this.grpCommProductTherapist = new DevExpress.XtraEditors.GroupControl();
     this.btn_AddProductTherapist = new DevExpress.XtraEditors.SimpleButton();
     this.btn_DelProductTherapist = new DevExpress.XtraEditors.SimpleButton();
     this.groupControl5 = new DevExpress.XtraEditors.GroupControl();
     this.gridControlMd_CommProductTherapist = new DevExpress.XtraGrid.GridControl();
     this.gridViewMd_CommProductTherapist = new DevExpress.XtraGrid.Views.Grid.GridView();
     this.gridColumnPT2 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.lk_BranchCode2 = new DevExpress.XtraEditors.Repository.RepositoryItemLookUpEdit();
     this.gridColumnPT4 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumnPT3 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.chk_Month2 = new DevExpress.XtraEditors.Repository.RepositoryItemComboBox();
     this.gridColumnPT1 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.lk_Position2 = new DevExpress.XtraEditors.Repository.RepositoryItemLookUpEdit();
     this.gridColumnPT5 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumnPT6 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.lk_CreditCategoryID = new DevExpress.XtraEditors.Repository.RepositoryItemLookUpEdit();
     this.EffCCStartDate = new DevExpress.XtraEditors.Repository.RepositoryItemDateEdit();
     this.EffCCEndDate = new DevExpress.XtraEditors.Repository.RepositoryItemDateEdit();
     this.grpCommCST = new DevExpress.XtraEditors.GroupControl();
     this.btn_AddCST = new DevExpress.XtraEditors.SimpleButton();
     this.btn_DelCST = new DevExpress.XtraEditors.SimpleButton();
     this.groupControl6 = new DevExpress.XtraEditors.GroupControl();
     this.gridControlMd_CommCST = new DevExpress.XtraGrid.GridControl();
     this.gridViewMd_CommCST = new DevExpress.XtraGrid.Views.Grid.GridView();
     this.gridColumnCST3 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.lk_BranchCode4 = new DevExpress.XtraEditors.Repository.RepositoryItemLookUpEdit();
     this.gridColumnCST7 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumnCST8 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.chk_Month4 = new DevExpress.XtraEditors.Repository.RepositoryItemComboBox();
     this.gridColumnCST1 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.lk_Position4 = new DevExpress.XtraEditors.Repository.RepositoryItemLookUpEdit();
     this.gridColumnCST2 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumnCST4 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumnCST5 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumnCST6 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumnCST9 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.repositoryItemLookUpEdit2 = new DevExpress.XtraEditors.Repository.RepositoryItemLookUpEdit();
     this.repositoryItemDateEdit3 = new DevExpress.XtraEditors.Repository.RepositoryItemDateEdit();
     this.repositoryItemDateEdit4 = new DevExpress.XtraEditors.Repository.RepositoryItemDateEdit();
     this.grpCommMerge = new DevExpress.XtraEditors.GroupControl();
     this.btn_AddMerge = new DevExpress.XtraEditors.SimpleButton();
     this.btn_DelMerge = new DevExpress.XtraEditors.SimpleButton();
     this.groupControl7 = new DevExpress.XtraEditors.GroupControl();
     this.gridControlMd_CommMerge = new DevExpress.XtraGrid.GridControl();
     this.gridViewMd_CommMerge = new DevExpress.XtraGrid.Views.Grid.GridView();
     this.gridColumnM3 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.lk_BranchCode5 = new DevExpress.XtraEditors.Repository.RepositoryItemLookUpEdit();
     this.gridColumnM7 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumnM8 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.chk_Month5 = new DevExpress.XtraEditors.Repository.RepositoryItemComboBox();
     this.gridColumnM1 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.lk_Position5 = new DevExpress.XtraEditors.Repository.RepositoryItemLookUpEdit();
     this.gridColumnM2 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumnM4 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumnM5 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumnM6 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumnM9 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.repositoryItemLookUpEdit3 = new DevExpress.XtraEditors.Repository.RepositoryItemLookUpEdit();
     this.repositoryItemDateEdit5 = new DevExpress.XtraEditors.Repository.RepositoryItemDateEdit();
     this.repositoryItemDateEdit6 = new DevExpress.XtraEditors.Repository.RepositoryItemDateEdit();
     this.gridView1 = new DevExpress.XtraGrid.Views.Grid.GridView();
     this.grpCommMSE = new DevExpress.XtraEditors.GroupControl();
     this.btn_AddMSE = new DevExpress.XtraEditors.SimpleButton();
     this.btn_DelMSE = new DevExpress.XtraEditors.SimpleButton();
     this.groupControl1 = new DevExpress.XtraEditors.GroupControl();
     this.gridControlMd_SalesTarget = new DevExpress.XtraGrid.GridControl();
     this.gridViewMd_SalesTarget = new DevExpress.XtraGrid.Views.Grid.GridView();
     this.gridColumnPKG3 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.lk_BranchCode0 = new DevExpress.XtraEditors.Repository.RepositoryItemLookUpEdit();
     this.gridColumnPKG7 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.tedit_nYear = new DevExpress.XtraEditors.Repository.RepositoryItemTextEdit();
     this.gridColumnPKG8 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.chk_Month0 = new DevExpress.XtraEditors.Repository.RepositoryItemComboBox();
     this.gridColumnPKG1 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.lk_Position0 = new DevExpress.XtraEditors.Repository.RepositoryItemLookUpEdit();
     this.gridColumnPKG2 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.tedit_strDesc = new DevExpress.XtraEditors.Repository.RepositoryItemTextEdit();
     this.gridColumnPKG4 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.tedit_Commission = new DevExpress.XtraEditors.Repository.RepositoryItemTextEdit();
     this.gridColumnPKG5 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.tedit_mTargetFrom = new DevExpress.XtraEditors.Repository.RepositoryItemTextEdit();
     this.gridColumnPKG6 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.tedit_mTargetTo = new DevExpress.XtraEditors.Repository.RepositoryItemTextEdit();
     this.gridColumnPKG9 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.de_nYear = new DevExpress.XtraEditors.Repository.RepositoryItemDateEdit();
     this.strDesc = new DevExpress.XtraEditors.Repository.RepositoryItemDateEdit();
     this.lk_SalesRank = new DevExpress.XtraEditors.Repository.RepositoryItemLookUpEdit();
     this.tedit_strType = new DevExpress.XtraEditors.Repository.RepositoryItemTextEdit();
     this.tedit_strCommID = new DevExpress.XtraEditors.Repository.RepositoryItemTextEdit();
     this.tedit_strBranch = new DevExpress.XtraEditors.Repository.RepositoryItemTextEdit();
     this.de_nMonth = new DevExpress.XtraEditors.Repository.RepositoryItemDateEdit();
     this.tedit_nMonth = new DevExpress.XtraEditors.Repository.RepositoryItemTextEdit();
     this.cardView1 = new DevExpress.XtraGrid.Views.Card.CardView();
     this.grpCommSpaConsult = new DevExpress.XtraEditors.GroupControl();
     this.btn_AddSpaConsult = new DevExpress.XtraEditors.SimpleButton();
     this.btn_DelSpaConsult = new DevExpress.XtraEditors.SimpleButton();
     this.groupControl4 = new DevExpress.XtraEditors.GroupControl();
     this.gridControlMd_CommSpaConsult = new DevExpress.XtraGrid.GridControl();
     this.gridViewMd_CommSpaConsult = new DevExpress.XtraGrid.Views.Grid.GridView();
     this.gridColumnPG3 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.lk_BranchCode1 = new DevExpress.XtraEditors.Repository.RepositoryItemLookUpEdit();
     this.gridColumnPG7 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumnPG8 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.chk_Month1 = new DevExpress.XtraEditors.Repository.RepositoryItemComboBox();
     this.gridColumnPG1 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.lk_Position1 = new DevExpress.XtraEditors.Repository.RepositoryItemLookUpEdit();
     this.gridColumnPG2 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumnPG4 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumnPG9 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumnPG5 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumnPG6 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumnPG10 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.lk_pkGroupCatID = new DevExpress.XtraEditors.Repository.RepositoryItemLookUpEdit();
     this.tedit_SC_strCommID = new DevExpress.XtraEditors.Repository.RepositoryItemTextEdit();
     ((System.ComponentModel.ISupportInitialize)(this.grpSalesRank)).BeginInit();
     this.grpSalesRank.SuspendLayout();
     this.groupBoxCommMSE.SuspendLayout();
     this.groupBox2.SuspendLayout();
     this.groupBox1.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.ddlSalesRank.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.grpCommPT)).BeginInit();
     this.grpCommPT.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.groupControl3)).BeginInit();
     this.groupControl3.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.gridControlMd_CommPT)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridViewMd_CommPT)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.lk_BranchCode3)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.chk_Month3)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.lk_Position3)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemLookUpEdit1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemDateEdit1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemDateEdit1.VistaTimeProperties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemDateEdit2)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemDateEdit2.VistaTimeProperties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.grpCommProductTherapist)).BeginInit();
     this.grpCommProductTherapist.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.groupControl5)).BeginInit();
     this.groupControl5.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.gridControlMd_CommProductTherapist)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridViewMd_CommProductTherapist)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.lk_BranchCode2)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.chk_Month2)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.lk_Position2)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.lk_CreditCategoryID)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.EffCCStartDate)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.EffCCStartDate.VistaTimeProperties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.EffCCEndDate)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.EffCCEndDate.VistaTimeProperties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.grpCommCST)).BeginInit();
     this.grpCommCST.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.groupControl6)).BeginInit();
     this.groupControl6.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.gridControlMd_CommCST)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridViewMd_CommCST)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.lk_BranchCode4)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.chk_Month4)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.lk_Position4)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemLookUpEdit2)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemDateEdit3)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemDateEdit3.VistaTimeProperties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemDateEdit4)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemDateEdit4.VistaTimeProperties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.grpCommMerge)).BeginInit();
     this.grpCommMerge.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.groupControl7)).BeginInit();
     this.groupControl7.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.gridControlMd_CommMerge)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridViewMd_CommMerge)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.lk_BranchCode5)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.chk_Month5)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.lk_Position5)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemLookUpEdit3)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemDateEdit5)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemDateEdit5.VistaTimeProperties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemDateEdit6)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemDateEdit6.VistaTimeProperties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridView1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.grpCommMSE)).BeginInit();
     this.grpCommMSE.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.groupControl1)).BeginInit();
     this.groupControl1.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.gridControlMd_SalesTarget)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridViewMd_SalesTarget)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.lk_BranchCode0)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.tedit_nYear)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.chk_Month0)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.lk_Position0)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.tedit_strDesc)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.tedit_Commission)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.tedit_mTargetFrom)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.tedit_mTargetTo)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.de_nYear)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.de_nYear.VistaTimeProperties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.strDesc)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.strDesc.VistaTimeProperties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.lk_SalesRank)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.tedit_strType)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.tedit_strCommID)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.tedit_strBranch)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.de_nMonth)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.de_nMonth.VistaTimeProperties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.tedit_nMonth)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.cardView1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.grpCommSpaConsult)).BeginInit();
     this.grpCommSpaConsult.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.groupControl4)).BeginInit();
     this.groupControl4.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.gridControlMd_CommSpaConsult)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridViewMd_CommSpaConsult)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.lk_BranchCode1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.chk_Month1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.lk_Position1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.lk_pkGroupCatID)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.tedit_SC_strCommID)).BeginInit();
     this.SuspendLayout();
     //
     // grpSalesRank
     //
     this.grpSalesRank.Appearance.BackColor = System.Drawing.SystemColors.Control;
     this.grpSalesRank.Appearance.Options.UseBackColor = true;
     this.grpSalesRank.AppearanceCaption.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.grpSalesRank.AppearanceCaption.Options.UseFont = true;
     this.grpSalesRank.Controls.Add(this.groupBoxCommMSE);
     this.grpSalesRank.Controls.Add(this.label31);
     this.grpSalesRank.Controls.Add(this.ddlSalesRank);
     this.grpSalesRank.Controls.Add(this.grpCommPT);
     this.grpSalesRank.Controls.Add(this.grpCommProductTherapist);
     this.grpSalesRank.Controls.Add(this.grpCommCST);
     this.grpSalesRank.Controls.Add(this.grpCommMerge);
     this.grpSalesRank.Controls.Add(this.grpCommMSE);
     this.grpSalesRank.Controls.Add(this.grpCommSpaConsult);
     this.grpSalesRank.ImeMode = System.Windows.Forms.ImeMode.On;
     this.grpSalesRank.Location = new System.Drawing.Point(8, 2);
     this.grpSalesRank.LookAndFeel.Style = DevExpress.LookAndFeel.LookAndFeelStyle.Office2003;
     this.grpSalesRank.LookAndFeel.UseDefaultLookAndFeel = false;
     this.grpSalesRank.Name = "grpSalesRank";
     this.grpSalesRank.Size = new System.Drawing.Size(968, 455);
     this.grpSalesRank.TabIndex = 93;
     this.grpSalesRank.Text = "MASTER FILE";
     //
     // groupBoxCommMSE
     //
     this.groupBoxCommMSE.BackColor = System.Drawing.SystemColors.Control;
     this.groupBoxCommMSE.Controls.Add(this.groupBox2);
     this.groupBoxCommMSE.Controls.Add(this.btn_Duplicate);
     this.groupBoxCommMSE.Controls.Add(this.groupBox1);
     this.groupBoxCommMSE.Location = new System.Drawing.Point(248, 291);
     this.groupBoxCommMSE.Name = "groupBoxCommMSE";
     this.groupBoxCommMSE.Size = new System.Drawing.Size(444, 151);
     this.groupBoxCommMSE.TabIndex = 140;
     this.groupBoxCommMSE.TabStop = false;
     this.groupBoxCommMSE.Text = "Duplicate Records";
     //
     // groupBox2
     //
     this.groupBox2.Controls.Add(this.label3);
     this.groupBox2.Controls.Add(this.combo_DuplicateYearTo);
     this.groupBox2.Controls.Add(this.label4);
     this.groupBox2.Controls.Add(this.combo_DuplicateBranchTo);
     this.groupBox2.Location = new System.Drawing.Point(236, 21);
     this.groupBox2.Name = "groupBox2";
     this.groupBox2.Size = new System.Drawing.Size(192, 79);
     this.groupBox2.TabIndex = 5;
     this.groupBox2.TabStop = false;
     this.groupBox2.Text = "To";
     //
     // label3
     //
     this.label3.AutoSize = true;
     this.label3.Font = new System.Drawing.Font("Microsoft Sans Serif", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label3.Location = new System.Drawing.Point(6, 21);
     this.label3.Name = "label3";
     this.label3.Size = new System.Drawing.Size(52, 15);
     this.label3.TabIndex = 0;
     this.label3.Text = "Branch :";
     //
     // combo_DuplicateYearTo
     //
     this.combo_DuplicateYearTo.FormattingEnabled = true;
     this.combo_DuplicateYearTo.Location = new System.Drawing.Point(64, 47);
     this.combo_DuplicateYearTo.Name = "combo_DuplicateYearTo";
     this.combo_DuplicateYearTo.Size = new System.Drawing.Size(121, 21);
     this.combo_DuplicateYearTo.TabIndex = 3;
     //
     // label4
     //
     this.label4.AutoSize = true;
     this.label4.Font = new System.Drawing.Font("Microsoft Sans Serif", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label4.Location = new System.Drawing.Point(6, 51);
     this.label4.Name = "label4";
     this.label4.Size = new System.Drawing.Size(38, 15);
     this.label4.TabIndex = 1;
     this.label4.Text = "Year :";
     //
     // combo_DuplicateBranchTo
     //
     this.combo_DuplicateBranchTo.FormattingEnabled = true;
     this.combo_DuplicateBranchTo.Location = new System.Drawing.Point(65, 19);
     this.combo_DuplicateBranchTo.Name = "combo_DuplicateBranchTo";
     this.combo_DuplicateBranchTo.Size = new System.Drawing.Size(121, 21);
     this.combo_DuplicateBranchTo.TabIndex = 2;
     //
     // btn_Duplicate
     //
     this.btn_Duplicate.Location = new System.Drawing.Point(191, 112);
     this.btn_Duplicate.Name = "btn_Duplicate";
     this.btn_Duplicate.Size = new System.Drawing.Size(75, 23);
     this.btn_Duplicate.TabIndex = 6;
     this.btn_Duplicate.Text = "Duplicate";
     this.btn_Duplicate.UseVisualStyleBackColor = true;
     this.btn_Duplicate.Click += new System.EventHandler(this.btn_Duplicate_Click);
     //
     // groupBox1
     //
     this.groupBox1.Controls.Add(this.label1);
     this.groupBox1.Controls.Add(this.combo_DuplicateYearFrom);
     this.groupBox1.Controls.Add(this.label2);
     this.groupBox1.Controls.Add(this.combo_DuplicateBranchFrom);
     this.groupBox1.Location = new System.Drawing.Point(18, 21);
     this.groupBox1.Name = "groupBox1";
     this.groupBox1.Size = new System.Drawing.Size(192, 79);
     this.groupBox1.TabIndex = 4;
     this.groupBox1.TabStop = false;
     this.groupBox1.Text = "From";
     //
     // label1
     //
     this.label1.AutoSize = true;
     this.label1.Font = new System.Drawing.Font("Microsoft Sans Serif", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label1.Location = new System.Drawing.Point(6, 21);
     this.label1.Name = "label1";
     this.label1.Size = new System.Drawing.Size(52, 15);
     this.label1.TabIndex = 0;
     this.label1.Text = "Branch :";
     //
     // combo_DuplicateYearFrom
     //
     this.combo_DuplicateYearFrom.FormattingEnabled = true;
     this.combo_DuplicateYearFrom.Location = new System.Drawing.Point(64, 50);
     this.combo_DuplicateYearFrom.Name = "combo_DuplicateYearFrom";
     this.combo_DuplicateYearFrom.Size = new System.Drawing.Size(121, 21);
     this.combo_DuplicateYearFrom.TabIndex = 3;
     //
     // label2
     //
     this.label2.AutoSize = true;
     this.label2.Font = new System.Drawing.Font("Microsoft Sans Serif", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label2.Location = new System.Drawing.Point(6, 51);
     this.label2.Name = "label2";
     this.label2.Size = new System.Drawing.Size(38, 15);
     this.label2.TabIndex = 1;
     this.label2.Text = "Year :";
     //
     // combo_DuplicateBranchFrom
     //
     this.combo_DuplicateBranchFrom.FormattingEnabled = true;
     this.combo_DuplicateBranchFrom.Location = new System.Drawing.Point(64, 20);
     this.combo_DuplicateBranchFrom.Name = "combo_DuplicateBranchFrom";
     this.combo_DuplicateBranchFrom.Size = new System.Drawing.Size(121, 21);
     this.combo_DuplicateBranchFrom.TabIndex = 2;
     //
     // label31
     //
     this.label31.BackColor = System.Drawing.Color.Transparent;
     this.label31.Font = new System.Drawing.Font("Tahoma", 9.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label31.Location = new System.Drawing.Point(8, 24);
     this.label31.Name = "label31";
     this.label31.Size = new System.Drawing.Size(136, 16);
     this.label31.TabIndex = 116;
     this.label31.Text = "Sales Rank";
     this.label31.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
     //
     // ddlSalesRank
     //
     this.ddlSalesRank.EditValue = 0;
     this.ddlSalesRank.Location = new System.Drawing.Point(144, 24);
     this.ddlSalesRank.Name = "ddlSalesRank";
     this.ddlSalesRank.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.ddlSalesRank.Properties.Items.AddRange(new DevExpress.XtraEditors.Controls.ImageComboBoxItem[] {
     new DevExpress.XtraEditors.Controls.ImageComboBoxItem("Fitness Package/Product", 0, -1),
     new DevExpress.XtraEditors.Controls.ImageComboBoxItem("Spa Package/IPL Service", 1, -1),
     new DevExpress.XtraEditors.Controls.ImageComboBoxItem("Spa Product", 2, -1),
     new DevExpress.XtraEditors.Controls.ImageComboBoxItem("PT Service", 3, -1),
     new DevExpress.XtraEditors.Controls.ImageComboBoxItem("Cross Selling", 4, -1),
     new DevExpress.XtraEditors.Controls.ImageComboBoxItem("Merge", 5, -1)});
     this.ddlSalesRank.Properties.LookAndFeel.UseDefaultLookAndFeel = false;
     this.ddlSalesRank.Properties.SmallImages = "";
     this.ddlSalesRank.Size = new System.Drawing.Size(176, 20);
     this.ddlSalesRank.TabIndex = 19;
     this.ddlSalesRank.SelectedIndexChanged += new System.EventHandler(this.ddlSalesRank_SelectedIndexChanged);
     //
     // grpCommPT
     //
     this.grpCommPT.Controls.Add(this.btn_AddPT);
     this.grpCommPT.Controls.Add(this.btn_DelPT);
     this.grpCommPT.Controls.Add(this.groupControl3);
     this.grpCommPT.Location = new System.Drawing.Point(4, 48);
     this.grpCommPT.LookAndFeel.Style = DevExpress.LookAndFeel.LookAndFeelStyle.Office2003;
     this.grpCommPT.LookAndFeel.UseDefaultLookAndFeel = false;
     this.grpCommPT.Name = "grpCommPT";
     this.grpCommPT.Size = new System.Drawing.Size(960, 237);
     this.grpCommPT.TabIndex = 137;
     this.grpCommPT.Text = "Sales Target";
     this.grpCommPT.Visible = false;
     //
     // btn_AddPT
     //
     this.btn_AddPT.Appearance.Font = new System.Drawing.Font("Tahoma", 14.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.btn_AddPT.Appearance.Options.UseFont = true;
     this.btn_AddPT.Appearance.Options.UseTextOptions = true;
     this.btn_AddPT.Appearance.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.btn_AddPT.Appearance.TextOptions.VAlignment = DevExpress.Utils.VertAlignment.Top;
     this.btn_AddPT.Appearance.TextOptions.WordWrap = DevExpress.Utils.WordWrap.Wrap;
     this.btn_AddPT.ImageIndex = 0;
     this.btn_AddPT.ImageList = this.imageList1;
     this.btn_AddPT.ImeMode = System.Windows.Forms.ImeMode.On;
     this.btn_AddPT.Location = new System.Drawing.Point(8, 24);
     this.btn_AddPT.Name = "btn_AddPT";
     this.btn_AddPT.Size = new System.Drawing.Size(38, 16);
     this.btn_AddPT.TabIndex = 136;
     this.btn_AddPT.Click += new System.EventHandler(this.btn_AddPT_Click);
     //
     // imageList1
     //
     this.imageList1.ImageStream = ((System.Windows.Forms.ImageListStreamer)(resources.GetObject("imageList1.ImageStream")));
     this.imageList1.TransparentColor = System.Drawing.Color.Magenta;
     this.imageList1.Images.SetKeyName(0, "");
     this.imageList1.Images.SetKeyName(1, "");
     this.imageList1.Images.SetKeyName(2, "");
     this.imageList1.Images.SetKeyName(3, "");
     this.imageList1.Images.SetKeyName(4, "");
     this.imageList1.Images.SetKeyName(5, "");
     this.imageList1.Images.SetKeyName(6, "");
     //
     // btn_DelPT
     //
     this.btn_DelPT.Appearance.Font = new System.Drawing.Font("Tahoma", 14.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.btn_DelPT.Appearance.Options.UseFont = true;
     this.btn_DelPT.Appearance.Options.UseTextOptions = true;
     this.btn_DelPT.Appearance.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.btn_DelPT.Appearance.TextOptions.VAlignment = DevExpress.Utils.VertAlignment.Top;
     this.btn_DelPT.Appearance.TextOptions.WordWrap = DevExpress.Utils.WordWrap.Wrap;
     this.btn_DelPT.ImageIndex = 1;
     this.btn_DelPT.ImageList = this.imageList1;
     this.btn_DelPT.Location = new System.Drawing.Point(48, 24);
     this.btn_DelPT.Name = "btn_DelPT";
     this.btn_DelPT.Size = new System.Drawing.Size(38, 16);
     this.btn_DelPT.TabIndex = 135;
     this.btn_DelPT.Click += new System.EventHandler(this.btn_DelPT_Click);
     //
     // groupControl3
     //
     this.groupControl3.BorderStyle = DevExpress.XtraEditors.Controls.BorderStyles.NoBorder;
     this.groupControl3.Controls.Add(this.gridControlMd_CommPT);
     this.groupControl3.Location = new System.Drawing.Point(0, 40);
     this.groupControl3.Name = "groupControl3";
     this.groupControl3.Size = new System.Drawing.Size(952, 192);
     this.groupControl3.TabIndex = 2;
     this.groupControl3.Text = "groupControl3";
     //
     // gridControlMd_CommPT
     //
     this.gridControlMd_CommPT.Dock = System.Windows.Forms.DockStyle.Fill;
     this.gridControlMd_CommPT.Location = new System.Drawing.Point(0, 0);
     this.gridControlMd_CommPT.LookAndFeel.UseDefaultLookAndFeel = false;
     this.gridControlMd_CommPT.MainView = this.gridViewMd_CommPT;
     this.gridControlMd_CommPT.Name = "gridControlMd_CommPT";
     this.gridControlMd_CommPT.RepositoryItems.AddRange(new DevExpress.XtraEditors.Repository.RepositoryItem[] {
     this.repositoryItemLookUpEdit1,
     this.repositoryItemDateEdit1,
     this.repositoryItemDateEdit2,
     this.lk_Position3,
     this.lk_BranchCode3,
     this.chk_Month3});
     this.gridControlMd_CommPT.Size = new System.Drawing.Size(952, 192);
     this.gridControlMd_CommPT.TabIndex = 2;
     this.gridControlMd_CommPT.ViewCollection.AddRange(new DevExpress.XtraGrid.Views.Base.BaseView[] {
     this.gridViewMd_CommPT});
     //
     // gridViewMd_CommPT
     //
     this.gridViewMd_CommPT.Columns.AddRange(new DevExpress.XtraGrid.Columns.GridColumn[] {
     this.gridColumnCommPT8,
     this.gridColumnCommPT9,
     this.gridColumnCommPT10,
     this.gridColumnCommPT1,
     this.gridColumnCommPT2,
     this.gridColumnCommPT3,
     this.gridColumnCommPT4,
     this.gridColumnCommPT5,
     this.gridColumnCommPT6,
     this.gridColumnCommPT7,
     this.gridColumnCommPT11});
     this.gridViewMd_CommPT.GridControl = this.gridControlMd_CommPT;
     this.gridViewMd_CommPT.HorzScrollVisibility = DevExpress.XtraGrid.Views.Base.ScrollVisibility.Always;
     this.gridViewMd_CommPT.Name = "gridViewMd_CommPT";
     this.gridViewMd_CommPT.OptionsView.ColumnAutoWidth = false;
     this.gridViewMd_CommPT.OptionsView.HeaderFilterButtonShowMode = DevExpress.XtraEditors.Controls.FilterButtonShowMode.Button;
     this.gridViewMd_CommPT.OptionsView.ShowGroupPanel = false;
     this.gridViewMd_CommPT.VertScrollVisibility = DevExpress.XtraGrid.Views.Base.ScrollVisibility.Always;
     this.gridViewMd_CommPT.LostFocus += new System.EventHandler(this.gridViewMd_CommPT_LostFocus);
     //
     // gridColumnCommPT8
     //
     this.gridColumnCommPT8.Caption = "Branch";
     this.gridColumnCommPT8.ColumnEdit = this.lk_BranchCode3;
     this.gridColumnCommPT8.FieldName = "strBranchCode";
     this.gridColumnCommPT8.Name = "gridColumnCommPT8";
     this.gridColumnCommPT8.Visible = true;
     this.gridColumnCommPT8.VisibleIndex = 0;
     this.gridColumnCommPT8.Width = 90;
     //
     // lk_BranchCode3
     //
     this.lk_BranchCode3.AutoHeight = false;
     this.lk_BranchCode3.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.lk_BranchCode3.Name = "lk_BranchCode3";
     //
     // gridColumnCommPT9
     //
     this.gridColumnCommPT9.Caption = "Year";
     this.gridColumnCommPT9.FieldName = "nYear";
     this.gridColumnCommPT9.Name = "gridColumnCommPT9";
     this.gridColumnCommPT9.Visible = true;
     this.gridColumnCommPT9.VisibleIndex = 1;
     this.gridColumnCommPT9.Width = 90;
     //
     // gridColumnCommPT10
     //
     this.gridColumnCommPT10.Caption = "Month";
     this.gridColumnCommPT10.ColumnEdit = this.chk_Month3;
     this.gridColumnCommPT10.FieldName = "nMonth";
     this.gridColumnCommPT10.Name = "gridColumnCommPT10";
     this.gridColumnCommPT10.Visible = true;
     this.gridColumnCommPT10.VisibleIndex = 2;
     this.gridColumnCommPT10.Width = 90;
     //
     // chk_Month3
     //
     this.chk_Month3.AutoHeight = false;
     this.chk_Month3.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.chk_Month3.Items.AddRange(new object[] {
     "1",
     "2",
     "3",
     "4",
     "5",
     "6",
     "7",
     "8",
     "9",
     "10",
     "11",
     "12"});
     this.chk_Month3.Name = "chk_Month3";
     //
     // gridColumnCommPT1
     //
     this.gridColumnCommPT1.Caption = "Position";
     this.gridColumnCommPT1.ColumnEdit = this.lk_Position3;
     this.gridColumnCommPT1.FieldName = "strCommID";
     this.gridColumnCommPT1.Name = "gridColumnCommPT1";
     this.gridColumnCommPT1.Visible = true;
     this.gridColumnCommPT1.VisibleIndex = 3;
     this.gridColumnCommPT1.Width = 90;
     //
     // lk_Position3
     //
     this.lk_Position3.AutoHeight = false;
     this.lk_Position3.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.lk_Position3.Name = "lk_Position3";
     //
     // gridColumnCommPT2
     //
     this.gridColumnCommPT2.Caption = "Description";
     this.gridColumnCommPT2.FieldName = "strDesc";
     this.gridColumnCommPT2.Name = "gridColumnCommPT2";
     this.gridColumnCommPT2.OptionsFilter.AllowFilter = false;
     this.gridColumnCommPT2.Visible = true;
     this.gridColumnCommPT2.VisibleIndex = 4;
     this.gridColumnCommPT2.Width = 90;
     //
     // gridColumnCommPT3
     //
     this.gridColumnCommPT3.Caption = "PT Session From";
     this.gridColumnCommPT3.FieldName = "nPTSessionFrom";
     this.gridColumnCommPT3.Name = "gridColumnCommPT3";
     this.gridColumnCommPT3.OptionsFilter.AllowFilter = false;
     this.gridColumnCommPT3.Visible = true;
     this.gridColumnCommPT3.VisibleIndex = 5;
     this.gridColumnCommPT3.Width = 90;
     //
     // gridColumnCommPT4
     //
     this.gridColumnCommPT4.Caption = "PT Session To";
     this.gridColumnCommPT4.FieldName = "nPTSessionTo";
     this.gridColumnCommPT4.Name = "gridColumnCommPT4";
     this.gridColumnCommPT4.OptionsFilter.AllowFilter = false;
     this.gridColumnCommPT4.Visible = true;
     this.gridColumnCommPT4.VisibleIndex = 6;
     this.gridColumnCommPT4.Width = 90;
     //
     // gridColumnCommPT5
     //
     this.gridColumnCommPT5.Caption = "PT Comm";
     this.gridColumnCommPT5.FieldName = "nPTComm";
     this.gridColumnCommPT5.Name = "gridColumnCommPT5";
     this.gridColumnCommPT5.OptionsFilter.AllowFilter = false;
     this.gridColumnCommPT5.Visible = true;
     this.gridColumnCommPT5.VisibleIndex = 7;
     this.gridColumnCommPT5.Width = 90;
     //
     // gridColumnCommPT6
     //
     this.gridColumnCommPT6.Caption = "Target From";
     this.gridColumnCommPT6.FieldName = "mTargetFrom";
     this.gridColumnCommPT6.Name = "gridColumnCommPT6";
     this.gridColumnCommPT6.OptionsFilter.AllowFilter = false;
     this.gridColumnCommPT6.Visible = true;
     this.gridColumnCommPT6.VisibleIndex = 8;
     this.gridColumnCommPT6.Width = 90;
     //
     // gridColumnCommPT7
     //
     this.gridColumnCommPT7.Caption = "Target To";
     this.gridColumnCommPT7.FieldName = "mTargetTo";
     this.gridColumnCommPT7.Name = "gridColumnCommPT7";
     this.gridColumnCommPT7.OptionsFilter.AllowFilter = false;
     this.gridColumnCommPT7.Visible = true;
     this.gridColumnCommPT7.VisibleIndex = 9;
     this.gridColumnCommPT7.Width = 90;
     //
     // gridColumnCommPT11
     //
     this.gridColumnCommPT11.Caption = "CommPTID";
     this.gridColumnCommPT11.FieldName = "nCommPTID";
     this.gridColumnCommPT11.Name = "gridColumnCommPT11";
     this.gridColumnCommPT11.OptionsFilter.AllowFilter = false;
     this.gridColumnCommPT11.Width = 64;
     //
     // repositoryItemLookUpEdit1
     //
     this.repositoryItemLookUpEdit1.AutoHeight = false;
     this.repositoryItemLookUpEdit1.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.repositoryItemLookUpEdit1.Name = "repositoryItemLookUpEdit1";
     //
     // 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.Name = "repositoryItemDateEdit1";
     this.repositoryItemDateEdit1.VistaTimeProperties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton()});
     //
     // repositoryItemDateEdit2
     //
     this.repositoryItemDateEdit2.AutoHeight = false;
     this.repositoryItemDateEdit2.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.repositoryItemDateEdit2.Name = "repositoryItemDateEdit2";
     this.repositoryItemDateEdit2.VistaTimeProperties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton()});
     //
     // grpCommProductTherapist
     //
     this.grpCommProductTherapist.Controls.Add(this.btn_AddProductTherapist);
     this.grpCommProductTherapist.Controls.Add(this.btn_DelProductTherapist);
     this.grpCommProductTherapist.Controls.Add(this.groupControl5);
     this.grpCommProductTherapist.Location = new System.Drawing.Point(4, 48);
     this.grpCommProductTherapist.LookAndFeel.Style = DevExpress.LookAndFeel.LookAndFeelStyle.Office2003;
     this.grpCommProductTherapist.LookAndFeel.UseDefaultLookAndFeel = false;
     this.grpCommProductTherapist.Name = "grpCommProductTherapist";
     this.grpCommProductTherapist.Size = new System.Drawing.Size(960, 237);
     this.grpCommProductTherapist.TabIndex = 121;
     this.grpCommProductTherapist.Text = "Sales Target";
     this.grpCommProductTherapist.Visible = false;
     //
     // btn_AddProductTherapist
     //
     this.btn_AddProductTherapist.Appearance.Font = new System.Drawing.Font("Tahoma", 14.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.btn_AddProductTherapist.Appearance.Options.UseFont = true;
     this.btn_AddProductTherapist.Appearance.Options.UseTextOptions = true;
     this.btn_AddProductTherapist.Appearance.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.btn_AddProductTherapist.Appearance.TextOptions.VAlignment = DevExpress.Utils.VertAlignment.Top;
     this.btn_AddProductTherapist.Appearance.TextOptions.WordWrap = DevExpress.Utils.WordWrap.Wrap;
     this.btn_AddProductTherapist.ImageIndex = 0;
     this.btn_AddProductTherapist.ImageList = this.imageList1;
     this.btn_AddProductTherapist.ImeMode = System.Windows.Forms.ImeMode.On;
     this.btn_AddProductTherapist.Location = new System.Drawing.Point(8, 24);
     this.btn_AddProductTherapist.Name = "btn_AddProductTherapist";
     this.btn_AddProductTherapist.Size = new System.Drawing.Size(38, 16);
     this.btn_AddProductTherapist.TabIndex = 136;
     this.btn_AddProductTherapist.Click += new System.EventHandler(this.btn_AddProductTherapist_Click);
     //
     // btn_DelProductTherapist
     //
     this.btn_DelProductTherapist.Appearance.Font = new System.Drawing.Font("Tahoma", 14.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.btn_DelProductTherapist.Appearance.Options.UseFont = true;
     this.btn_DelProductTherapist.Appearance.Options.UseTextOptions = true;
     this.btn_DelProductTherapist.Appearance.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.btn_DelProductTherapist.Appearance.TextOptions.VAlignment = DevExpress.Utils.VertAlignment.Top;
     this.btn_DelProductTherapist.Appearance.TextOptions.WordWrap = DevExpress.Utils.WordWrap.Wrap;
     this.btn_DelProductTherapist.ImageIndex = 1;
     this.btn_DelProductTherapist.ImageList = this.imageList1;
     this.btn_DelProductTherapist.Location = new System.Drawing.Point(48, 24);
     this.btn_DelProductTherapist.Name = "btn_DelProductTherapist";
     this.btn_DelProductTherapist.Size = new System.Drawing.Size(38, 16);
     this.btn_DelProductTherapist.TabIndex = 135;
     this.btn_DelProductTherapist.Click += new System.EventHandler(this.btn_DelProductTherapist_Click);
     //
     // groupControl5
     //
     this.groupControl5.BorderStyle = DevExpress.XtraEditors.Controls.BorderStyles.NoBorder;
     this.groupControl5.Controls.Add(this.gridControlMd_CommProductTherapist);
     this.groupControl5.Location = new System.Drawing.Point(0, 40);
     this.groupControl5.Name = "groupControl5";
     this.groupControl5.Size = new System.Drawing.Size(952, 192);
     this.groupControl5.TabIndex = 2;
     this.groupControl5.Text = "groupControl5";
     //
     // gridControlMd_CommProductTherapist
     //
     this.gridControlMd_CommProductTherapist.Dock = System.Windows.Forms.DockStyle.Fill;
     this.gridControlMd_CommProductTherapist.Location = new System.Drawing.Point(0, 0);
     this.gridControlMd_CommProductTherapist.LookAndFeel.UseDefaultLookAndFeel = false;
     this.gridControlMd_CommProductTherapist.MainView = this.gridViewMd_CommProductTherapist;
     this.gridControlMd_CommProductTherapist.Name = "gridControlMd_CommProductTherapist";
     this.gridControlMd_CommProductTherapist.RepositoryItems.AddRange(new DevExpress.XtraEditors.Repository.RepositoryItem[] {
     this.lk_CreditCategoryID,
     this.EffCCStartDate,
     this.EffCCEndDate,
     this.lk_Position2,
     this.lk_BranchCode2,
     this.chk_Month2});
     this.gridControlMd_CommProductTherapist.Size = new System.Drawing.Size(952, 192);
     this.gridControlMd_CommProductTherapist.TabIndex = 2;
     this.gridControlMd_CommProductTherapist.ViewCollection.AddRange(new DevExpress.XtraGrid.Views.Base.BaseView[] {
     this.gridViewMd_CommProductTherapist});
     //
     // gridViewMd_CommProductTherapist
     //
     this.gridViewMd_CommProductTherapist.Columns.AddRange(new DevExpress.XtraGrid.Columns.GridColumn[] {
     this.gridColumnPT2,
     this.gridColumnPT4,
     this.gridColumnPT3,
     this.gridColumnPT1,
     this.gridColumnPT5,
     this.gridColumnPT6});
     this.gridViewMd_CommProductTherapist.GridControl = this.gridControlMd_CommProductTherapist;
     this.gridViewMd_CommProductTherapist.HorzScrollVisibility = DevExpress.XtraGrid.Views.Base.ScrollVisibility.Always;
     this.gridViewMd_CommProductTherapist.Name = "gridViewMd_CommProductTherapist";
     this.gridViewMd_CommProductTherapist.OptionsView.ColumnAutoWidth = false;
     this.gridViewMd_CommProductTherapist.OptionsView.HeaderFilterButtonShowMode = DevExpress.XtraEditors.Controls.FilterButtonShowMode.Button;
     this.gridViewMd_CommProductTherapist.OptionsView.ShowGroupPanel = false;
     this.gridViewMd_CommProductTherapist.VertScrollVisibility = DevExpress.XtraGrid.Views.Base.ScrollVisibility.Always;
     this.gridViewMd_CommProductTherapist.LostFocus += new System.EventHandler(this.gridViewMd_CommProductTherapist_LostFocus);
     //
     // gridColumnPT2
     //
     this.gridColumnPT2.Caption = "Branch";
     this.gridColumnPT2.ColumnEdit = this.lk_BranchCode2;
     this.gridColumnPT2.FieldName = "strBranchCode";
     this.gridColumnPT2.Name = "gridColumnPT2";
     this.gridColumnPT2.Visible = true;
     this.gridColumnPT2.VisibleIndex = 0;
     this.gridColumnPT2.Width = 90;
     //
     // lk_BranchCode2
     //
     this.lk_BranchCode2.AutoHeight = false;
     this.lk_BranchCode2.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.lk_BranchCode2.Name = "lk_BranchCode2";
     //
     // gridColumnPT4
     //
     this.gridColumnPT4.Caption = "Year";
     this.gridColumnPT4.FieldName = "nYear";
     this.gridColumnPT4.Name = "gridColumnPT4";
     this.gridColumnPT4.Visible = true;
     this.gridColumnPT4.VisibleIndex = 1;
     this.gridColumnPT4.Width = 90;
     //
     // gridColumnPT3
     //
     this.gridColumnPT3.Caption = "Month";
     this.gridColumnPT3.ColumnEdit = this.chk_Month2;
     this.gridColumnPT3.FieldName = "nMonth";
     this.gridColumnPT3.Name = "gridColumnPT3";
     this.gridColumnPT3.Visible = true;
     this.gridColumnPT3.VisibleIndex = 2;
     this.gridColumnPT3.Width = 90;
     //
     // chk_Month2
     //
     this.chk_Month2.AutoHeight = false;
     this.chk_Month2.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.chk_Month2.Items.AddRange(new object[] {
     "1",
     "2",
     "3",
     "4",
     "5",
     "6",
     "7",
     "8",
     "9",
     "10",
     "11",
     "12"});
     this.chk_Month2.Name = "chk_Month2";
     //
     // gridColumnPT1
     //
     this.gridColumnPT1.Caption = "Position";
     this.gridColumnPT1.ColumnEdit = this.lk_Position2;
     this.gridColumnPT1.FieldName = "strPosition";
     this.gridColumnPT1.Name = "gridColumnPT1";
     this.gridColumnPT1.Visible = true;
     this.gridColumnPT1.VisibleIndex = 3;
     this.gridColumnPT1.Width = 90;
     //
     // lk_Position2
     //
     this.lk_Position2.AutoHeight = false;
     this.lk_Position2.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.lk_Position2.Name = "lk_Position2";
     //
     // gridColumnPT5
     //
     this.gridColumnPT5.Caption = "Product Target";
     this.gridColumnPT5.FieldName = "mProductTarget";
     this.gridColumnPT5.Name = "gridColumnPT5";
     this.gridColumnPT5.OptionsFilter.AllowFilter = false;
     this.gridColumnPT5.Visible = true;
     this.gridColumnPT5.VisibleIndex = 4;
     this.gridColumnPT5.Width = 90;
     //
     // gridColumnPT6
     //
     this.gridColumnPT6.Caption = "Product Therapist ID";
     this.gridColumnPT6.FieldName = "nCommProductTherapistID";
     this.gridColumnPT6.Name = "gridColumnPT6";
     this.gridColumnPT6.OptionsFilter.AllowFilter = false;
     this.gridColumnPT6.Width = 111;
     //
     // lk_CreditCategoryID
     //
     this.lk_CreditCategoryID.AutoHeight = false;
     this.lk_CreditCategoryID.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.lk_CreditCategoryID.Name = "lk_CreditCategoryID";
     //
     // EffCCStartDate
     //
     this.EffCCStartDate.AutoHeight = false;
     this.EffCCStartDate.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.EffCCStartDate.Name = "EffCCStartDate";
     this.EffCCStartDate.VistaTimeProperties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton()});
     //
     // EffCCEndDate
     //
     this.EffCCEndDate.AutoHeight = false;
     this.EffCCEndDate.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.EffCCEndDate.Name = "EffCCEndDate";
     this.EffCCEndDate.VistaTimeProperties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton()});
     //
     // grpCommCST
     //
     this.grpCommCST.Controls.Add(this.btn_AddCST);
     this.grpCommCST.Controls.Add(this.btn_DelCST);
     this.grpCommCST.Controls.Add(this.groupControl6);
     this.grpCommCST.Location = new System.Drawing.Point(4, 48);
     this.grpCommCST.LookAndFeel.Style = DevExpress.LookAndFeel.LookAndFeelStyle.Office2003;
     this.grpCommCST.LookAndFeel.UseDefaultLookAndFeel = false;
     this.grpCommCST.Name = "grpCommCST";
     this.grpCommCST.Size = new System.Drawing.Size(960, 237);
     this.grpCommCST.TabIndex = 138;
     this.grpCommCST.Text = "Sales Target";
     this.grpCommCST.Visible = false;
     //
     // btn_AddCST
     //
     this.btn_AddCST.Appearance.Font = new System.Drawing.Font("Tahoma", 14.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.btn_AddCST.Appearance.Options.UseFont = true;
     this.btn_AddCST.Appearance.Options.UseTextOptions = true;
     this.btn_AddCST.Appearance.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.btn_AddCST.Appearance.TextOptions.VAlignment = DevExpress.Utils.VertAlignment.Top;
     this.btn_AddCST.Appearance.TextOptions.WordWrap = DevExpress.Utils.WordWrap.Wrap;
     this.btn_AddCST.ImageIndex = 0;
     this.btn_AddCST.ImageList = this.imageList1;
     this.btn_AddCST.ImeMode = System.Windows.Forms.ImeMode.On;
     this.btn_AddCST.Location = new System.Drawing.Point(8, 24);
     this.btn_AddCST.Name = "btn_AddCST";
     this.btn_AddCST.Size = new System.Drawing.Size(38, 16);
     this.btn_AddCST.TabIndex = 136;
     this.btn_AddCST.Click += new System.EventHandler(this.btn_AddCST_Click);
     //
     // btn_DelCST
     //
     this.btn_DelCST.Appearance.Font = new System.Drawing.Font("Tahoma", 14.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.btn_DelCST.Appearance.Options.UseFont = true;
     this.btn_DelCST.Appearance.Options.UseTextOptions = true;
     this.btn_DelCST.Appearance.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.btn_DelCST.Appearance.TextOptions.VAlignment = DevExpress.Utils.VertAlignment.Top;
     this.btn_DelCST.Appearance.TextOptions.WordWrap = DevExpress.Utils.WordWrap.Wrap;
     this.btn_DelCST.ImageIndex = 1;
     this.btn_DelCST.ImageList = this.imageList1;
     this.btn_DelCST.Location = new System.Drawing.Point(48, 24);
     this.btn_DelCST.Name = "btn_DelCST";
     this.btn_DelCST.Size = new System.Drawing.Size(38, 16);
     this.btn_DelCST.TabIndex = 135;
     this.btn_DelCST.Click += new System.EventHandler(this.btn_DelCST_Click);
     //
     // groupControl6
     //
     this.groupControl6.BorderStyle = DevExpress.XtraEditors.Controls.BorderStyles.NoBorder;
     this.groupControl6.Controls.Add(this.gridControlMd_CommCST);
     this.groupControl6.Location = new System.Drawing.Point(0, 40);
     this.groupControl6.Name = "groupControl6";
     this.groupControl6.Size = new System.Drawing.Size(952, 192);
     this.groupControl6.TabIndex = 2;
     this.groupControl6.Text = "groupControl6";
     //
     // gridControlMd_CommCST
     //
     this.gridControlMd_CommCST.Dock = System.Windows.Forms.DockStyle.Fill;
     this.gridControlMd_CommCST.Location = new System.Drawing.Point(0, 0);
     this.gridControlMd_CommCST.LookAndFeel.UseDefaultLookAndFeel = false;
     this.gridControlMd_CommCST.MainView = this.gridViewMd_CommCST;
     this.gridControlMd_CommCST.Name = "gridControlMd_CommCST";
     this.gridControlMd_CommCST.RepositoryItems.AddRange(new DevExpress.XtraEditors.Repository.RepositoryItem[] {
     this.repositoryItemLookUpEdit2,
     this.repositoryItemDateEdit3,
     this.repositoryItemDateEdit4,
     this.lk_Position4,
     this.lk_BranchCode4,
     this.chk_Month4});
     this.gridControlMd_CommCST.Size = new System.Drawing.Size(952, 192);
     this.gridControlMd_CommCST.TabIndex = 2;
     this.gridControlMd_CommCST.ViewCollection.AddRange(new DevExpress.XtraGrid.Views.Base.BaseView[] {
     this.gridViewMd_CommCST});
     //
     // gridViewMd_CommCST
     //
     this.gridViewMd_CommCST.Columns.AddRange(new DevExpress.XtraGrid.Columns.GridColumn[] {
     this.gridColumnCST3,
     this.gridColumnCST7,
     this.gridColumnCST8,
     this.gridColumnCST1,
     this.gridColumnCST2,
     this.gridColumnCST4,
     this.gridColumnCST5,
     this.gridColumnCST6,
     this.gridColumnCST9});
     this.gridViewMd_CommCST.GridControl = this.gridControlMd_CommCST;
     this.gridViewMd_CommCST.HorzScrollVisibility = DevExpress.XtraGrid.Views.Base.ScrollVisibility.Always;
     this.gridViewMd_CommCST.Name = "gridViewMd_CommCST";
     this.gridViewMd_CommCST.OptionsView.ColumnAutoWidth = false;
     this.gridViewMd_CommCST.OptionsView.HeaderFilterButtonShowMode = DevExpress.XtraEditors.Controls.FilterButtonShowMode.Button;
     this.gridViewMd_CommCST.OptionsView.ShowGroupPanel = false;
     this.gridViewMd_CommCST.VertScrollVisibility = DevExpress.XtraGrid.Views.Base.ScrollVisibility.Always;
     this.gridViewMd_CommCST.LostFocus += new System.EventHandler(this.gridViewMd_CommCST_LostFocus);
     //
     // gridColumnCST3
     //
     this.gridColumnCST3.Caption = "Branch";
     this.gridColumnCST3.ColumnEdit = this.lk_BranchCode4;
     this.gridColumnCST3.FieldName = "strBranch";
     this.gridColumnCST3.Name = "gridColumnCST3";
     this.gridColumnCST3.Visible = true;
     this.gridColumnCST3.VisibleIndex = 0;
     this.gridColumnCST3.Width = 90;
     //
     // lk_BranchCode4
     //
     this.lk_BranchCode4.AutoHeight = false;
     this.lk_BranchCode4.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.lk_BranchCode4.Name = "lk_BranchCode4";
     //
     // gridColumnCST7
     //
     this.gridColumnCST7.Caption = "Year";
     this.gridColumnCST7.FieldName = "nYear";
     this.gridColumnCST7.Name = "gridColumnCST7";
     this.gridColumnCST7.Visible = true;
     this.gridColumnCST7.VisibleIndex = 1;
     this.gridColumnCST7.Width = 90;
     //
     // gridColumnCST8
     //
     this.gridColumnCST8.Caption = "Month";
     this.gridColumnCST8.ColumnEdit = this.chk_Month4;
     this.gridColumnCST8.FieldName = "nMonth";
     this.gridColumnCST8.Name = "gridColumnCST8";
     this.gridColumnCST8.Visible = true;
     this.gridColumnCST8.VisibleIndex = 2;
     this.gridColumnCST8.Width = 90;
     //
     // chk_Month4
     //
     this.chk_Month4.AutoHeight = false;
     this.chk_Month4.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.chk_Month4.Items.AddRange(new object[] {
     "1",
     "2",
     "3",
     "4",
     "5",
     "6",
     "7",
     "8",
     "9",
     "10",
     "11",
     "12"});
     this.chk_Month4.Name = "chk_Month4";
     //
     // gridColumnCST1
     //
     this.gridColumnCST1.Caption = "Position";
     this.gridColumnCST1.ColumnEdit = this.lk_Position4;
     this.gridColumnCST1.FieldName = "strCommID";
     this.gridColumnCST1.Name = "gridColumnCST1";
     this.gridColumnCST1.Visible = true;
     this.gridColumnCST1.VisibleIndex = 3;
     this.gridColumnCST1.Width = 90;
     //
     // lk_Position4
     //
     this.lk_Position4.AutoHeight = false;
     this.lk_Position4.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.lk_Position4.Name = "lk_Position4";
     //
     // gridColumnCST2
     //
     this.gridColumnCST2.Caption = "Description";
     this.gridColumnCST2.FieldName = "strDesc";
     this.gridColumnCST2.Name = "gridColumnCST2";
     this.gridColumnCST2.OptionsFilter.AllowFilter = false;
     this.gridColumnCST2.Visible = true;
     this.gridColumnCST2.VisibleIndex = 4;
     this.gridColumnCST2.Width = 90;
     //
     // gridColumnCST4
     //
     this.gridColumnCST4.Caption = "Commission";
     this.gridColumnCST4.FieldName = "nCommision";
     this.gridColumnCST4.Name = "gridColumnCST4";
     this.gridColumnCST4.OptionsFilter.AllowFilter = false;
     this.gridColumnCST4.Visible = true;
     this.gridColumnCST4.VisibleIndex = 5;
     this.gridColumnCST4.Width = 90;
     //
     // gridColumnCST5
     //
     this.gridColumnCST5.Caption = "Target From";
     this.gridColumnCST5.FieldName = "mTargetFrom";
     this.gridColumnCST5.Name = "gridColumnCST5";
     this.gridColumnCST5.OptionsFilter.AllowFilter = false;
     this.gridColumnCST5.Visible = true;
     this.gridColumnCST5.VisibleIndex = 6;
     this.gridColumnCST5.Width = 90;
     //
     // gridColumnCST6
     //
     this.gridColumnCST6.Caption = "Target To";
     this.gridColumnCST6.FieldName = "mTargetTo";
     this.gridColumnCST6.Name = "gridColumnCST6";
     this.gridColumnCST6.OptionsFilter.AllowFilter = false;
     this.gridColumnCST6.Visible = true;
     this.gridColumnCST6.VisibleIndex = 7;
     this.gridColumnCST6.Width = 90;
     //
     // gridColumnCST9
     //
     this.gridColumnCST9.Caption = "CommCST";
     this.gridColumnCST9.FieldName = "nCommCST";
     this.gridColumnCST9.Name = "gridColumnCST9";
     this.gridColumnCST9.OptionsFilter.AllowFilter = false;
     this.gridColumnCST9.Width = 60;
     //
     // 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";
     //
     // repositoryItemDateEdit3
     //
     this.repositoryItemDateEdit3.AutoHeight = false;
     this.repositoryItemDateEdit3.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.repositoryItemDateEdit3.Name = "repositoryItemDateEdit3";
     this.repositoryItemDateEdit3.VistaTimeProperties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton()});
     //
     // repositoryItemDateEdit4
     //
     this.repositoryItemDateEdit4.AutoHeight = false;
     this.repositoryItemDateEdit4.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.repositoryItemDateEdit4.Name = "repositoryItemDateEdit4";
     this.repositoryItemDateEdit4.VistaTimeProperties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton()});
     //
     // grpCommMerge
     //
     this.grpCommMerge.Controls.Add(this.btn_AddMerge);
     this.grpCommMerge.Controls.Add(this.btn_DelMerge);
     this.grpCommMerge.Controls.Add(this.groupControl7);
     this.grpCommMerge.Location = new System.Drawing.Point(4, 48);
     this.grpCommMerge.LookAndFeel.Style = DevExpress.LookAndFeel.LookAndFeelStyle.Office2003;
     this.grpCommMerge.LookAndFeel.UseDefaultLookAndFeel = false;
     this.grpCommMerge.Name = "grpCommMerge";
     this.grpCommMerge.Size = new System.Drawing.Size(960, 237);
     this.grpCommMerge.TabIndex = 139;
     this.grpCommMerge.Text = "Sales Target";
     this.grpCommMerge.Visible = false;
     //
     // btn_AddMerge
     //
     this.btn_AddMerge.Appearance.Font = new System.Drawing.Font("Tahoma", 14.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.btn_AddMerge.Appearance.Options.UseFont = true;
     this.btn_AddMerge.Appearance.Options.UseTextOptions = true;
     this.btn_AddMerge.Appearance.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.btn_AddMerge.Appearance.TextOptions.VAlignment = DevExpress.Utils.VertAlignment.Top;
     this.btn_AddMerge.Appearance.TextOptions.WordWrap = DevExpress.Utils.WordWrap.Wrap;
     this.btn_AddMerge.ImageIndex = 0;
     this.btn_AddMerge.ImageList = this.imageList1;
     this.btn_AddMerge.ImeMode = System.Windows.Forms.ImeMode.On;
     this.btn_AddMerge.Location = new System.Drawing.Point(8, 24);
     this.btn_AddMerge.Name = "btn_AddMerge";
     this.btn_AddMerge.Size = new System.Drawing.Size(38, 16);
     this.btn_AddMerge.TabIndex = 136;
     this.btn_AddMerge.Click += new System.EventHandler(this.btn_AddMerge_Click);
     //
     // btn_DelMerge
     //
     this.btn_DelMerge.Appearance.Font = new System.Drawing.Font("Tahoma", 14.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.btn_DelMerge.Appearance.Options.UseFont = true;
     this.btn_DelMerge.Appearance.Options.UseTextOptions = true;
     this.btn_DelMerge.Appearance.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.btn_DelMerge.Appearance.TextOptions.VAlignment = DevExpress.Utils.VertAlignment.Top;
     this.btn_DelMerge.Appearance.TextOptions.WordWrap = DevExpress.Utils.WordWrap.Wrap;
     this.btn_DelMerge.ImageIndex = 1;
     this.btn_DelMerge.ImageList = this.imageList1;
     this.btn_DelMerge.Location = new System.Drawing.Point(48, 24);
     this.btn_DelMerge.Name = "btn_DelMerge";
     this.btn_DelMerge.Size = new System.Drawing.Size(38, 16);
     this.btn_DelMerge.TabIndex = 135;
     this.btn_DelMerge.Click += new System.EventHandler(this.btn_DelMerge_Click);
     //
     // groupControl7
     //
     this.groupControl7.BorderStyle = DevExpress.XtraEditors.Controls.BorderStyles.NoBorder;
     this.groupControl7.Controls.Add(this.gridControlMd_CommMerge);
     this.groupControl7.Location = new System.Drawing.Point(0, 40);
     this.groupControl7.Name = "groupControl7";
     this.groupControl7.Size = new System.Drawing.Size(952, 192);
     this.groupControl7.TabIndex = 2;
     this.groupControl7.Text = "groupControl7";
     //
     // gridControlMd_CommMerge
     //
     this.gridControlMd_CommMerge.Dock = System.Windows.Forms.DockStyle.Fill;
     this.gridControlMd_CommMerge.Location = new System.Drawing.Point(0, 0);
     this.gridControlMd_CommMerge.LookAndFeel.UseDefaultLookAndFeel = false;
     this.gridControlMd_CommMerge.MainView = this.gridViewMd_CommMerge;
     this.gridControlMd_CommMerge.Name = "gridControlMd_CommMerge";
     this.gridControlMd_CommMerge.RepositoryItems.AddRange(new DevExpress.XtraEditors.Repository.RepositoryItem[] {
     this.repositoryItemLookUpEdit3,
     this.repositoryItemDateEdit5,
     this.repositoryItemDateEdit6,
     this.lk_BranchCode5,
     this.lk_Position5,
     this.chk_Month5});
     this.gridControlMd_CommMerge.Size = new System.Drawing.Size(952, 192);
     this.gridControlMd_CommMerge.TabIndex = 2;
     this.gridControlMd_CommMerge.ViewCollection.AddRange(new DevExpress.XtraGrid.Views.Base.BaseView[] {
     this.gridViewMd_CommMerge,
     this.gridView1});
     //
     // gridViewMd_CommMerge
     //
     this.gridViewMd_CommMerge.Columns.AddRange(new DevExpress.XtraGrid.Columns.GridColumn[] {
     this.gridColumnM3,
     this.gridColumnM7,
     this.gridColumnM8,
     this.gridColumnM1,
     this.gridColumnM2,
     this.gridColumnM4,
     this.gridColumnM5,
     this.gridColumnM6,
     this.gridColumnM9});
     this.gridViewMd_CommMerge.GridControl = this.gridControlMd_CommMerge;
     this.gridViewMd_CommMerge.HorzScrollVisibility = DevExpress.XtraGrid.Views.Base.ScrollVisibility.Always;
     this.gridViewMd_CommMerge.Name = "gridViewMd_CommMerge";
     this.gridViewMd_CommMerge.OptionsView.ColumnAutoWidth = false;
     this.gridViewMd_CommMerge.OptionsView.HeaderFilterButtonShowMode = DevExpress.XtraEditors.Controls.FilterButtonShowMode.Button;
     this.gridViewMd_CommMerge.OptionsView.ShowGroupPanel = false;
     this.gridViewMd_CommMerge.VertScrollVisibility = DevExpress.XtraGrid.Views.Base.ScrollVisibility.Always;
     this.gridViewMd_CommMerge.LostFocus += new System.EventHandler(this.gridViewMd_CommMerge_LostFocus);
     //
     // gridColumnM3
     //
     this.gridColumnM3.Caption = "Branch";
     this.gridColumnM3.ColumnEdit = this.lk_BranchCode5;
     this.gridColumnM3.FieldName = "strBranch";
     this.gridColumnM3.Name = "gridColumnM3";
     this.gridColumnM3.Visible = true;
     this.gridColumnM3.VisibleIndex = 0;
     this.gridColumnM3.Width = 90;
     //
     // lk_BranchCode5
     //
     this.lk_BranchCode5.AutoHeight = false;
     this.lk_BranchCode5.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.lk_BranchCode5.Name = "lk_BranchCode5";
     //
     // gridColumnM7
     //
     this.gridColumnM7.Caption = "Year";
     this.gridColumnM7.FieldName = "nYear";
     this.gridColumnM7.Name = "gridColumnM7";
     this.gridColumnM7.Visible = true;
     this.gridColumnM7.VisibleIndex = 1;
     this.gridColumnM7.Width = 90;
     //
     // gridColumnM8
     //
     this.gridColumnM8.Caption = "Month";
     this.gridColumnM8.ColumnEdit = this.chk_Month5;
     this.gridColumnM8.FieldName = "nMonth";
     this.gridColumnM8.Name = "gridColumnM8";
     this.gridColumnM8.Visible = true;
     this.gridColumnM8.VisibleIndex = 2;
     this.gridColumnM8.Width = 90;
     //
     // chk_Month5
     //
     this.chk_Month5.AutoHeight = false;
     this.chk_Month5.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.chk_Month5.Items.AddRange(new object[] {
     "1",
     "2",
     "3",
     "4",
     "5",
     "6",
     "7",
     "8",
     "9",
     "10",
     "11",
     "12"});
     this.chk_Month5.Name = "chk_Month5";
     //
     // gridColumnM1
     //
     this.gridColumnM1.Caption = "Position";
     this.gridColumnM1.ColumnEdit = this.lk_Position5;
     this.gridColumnM1.FieldName = "strCommID";
     this.gridColumnM1.Name = "gridColumnM1";
     this.gridColumnM1.Visible = true;
     this.gridColumnM1.VisibleIndex = 3;
     this.gridColumnM1.Width = 90;
     //
     // lk_Position5
     //
     this.lk_Position5.AutoHeight = false;
     this.lk_Position5.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.lk_Position5.Name = "lk_Position5";
     //
     // gridColumnM2
     //
     this.gridColumnM2.Caption = "Description";
     this.gridColumnM2.FieldName = "strDesc";
     this.gridColumnM2.Name = "gridColumnM2";
     this.gridColumnM2.OptionsFilter.AllowFilter = false;
     this.gridColumnM2.Visible = true;
     this.gridColumnM2.VisibleIndex = 4;
     this.gridColumnM2.Width = 90;
     //
     // gridColumnM4
     //
     this.gridColumnM4.Caption = "Commission";
     this.gridColumnM4.FieldName = "nCommision";
     this.gridColumnM4.Name = "gridColumnM4";
     this.gridColumnM4.OptionsFilter.AllowFilter = false;
     this.gridColumnM4.Visible = true;
     this.gridColumnM4.VisibleIndex = 5;
     this.gridColumnM4.Width = 90;
     //
     // gridColumnM5
     //
     this.gridColumnM5.Caption = "Target From";
     this.gridColumnM5.DisplayFormat.FormatType = DevExpress.Utils.FormatType.Numeric;
     this.gridColumnM5.FieldName = "mTargetFrom";
     this.gridColumnM5.Name = "gridColumnM5";
     this.gridColumnM5.OptionsFilter.AllowFilter = false;
     this.gridColumnM5.Visible = true;
     this.gridColumnM5.VisibleIndex = 6;
     this.gridColumnM5.Width = 90;
     //
     // gridColumnM6
     //
     this.gridColumnM6.Caption = "Target To";
     this.gridColumnM6.FieldName = "mTargetTo";
     this.gridColumnM6.Name = "gridColumnM6";
     this.gridColumnM6.OptionsFilter.AllowFilter = false;
     this.gridColumnM6.Visible = true;
     this.gridColumnM6.VisibleIndex = 7;
     this.gridColumnM6.Width = 90;
     //
     // gridColumnM9
     //
     this.gridColumnM9.Caption = "CommMerge";
     this.gridColumnM9.FieldName = "nCommMerge";
     this.gridColumnM9.Name = "gridColumnM9";
     this.gridColumnM9.OptionsFilter.AllowFilter = false;
     this.gridColumnM9.Width = 71;
     //
     // repositoryItemLookUpEdit3
     //
     this.repositoryItemLookUpEdit3.AutoHeight = false;
     this.repositoryItemLookUpEdit3.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.repositoryItemLookUpEdit3.Name = "repositoryItemLookUpEdit3";
     //
     // repositoryItemDateEdit5
     //
     this.repositoryItemDateEdit5.AutoHeight = false;
     this.repositoryItemDateEdit5.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.repositoryItemDateEdit5.Name = "repositoryItemDateEdit5";
     this.repositoryItemDateEdit5.VistaTimeProperties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton()});
     //
     // repositoryItemDateEdit6
     //
     this.repositoryItemDateEdit6.AutoHeight = false;
     this.repositoryItemDateEdit6.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.repositoryItemDateEdit6.Name = "repositoryItemDateEdit6";
     this.repositoryItemDateEdit6.VistaTimeProperties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton()});
     //
     // gridView1
     //
     this.gridView1.GridControl = this.gridControlMd_CommMerge;
     this.gridView1.Name = "gridView1";
     //
     // grpCommMSE
     //
     this.grpCommMSE.Controls.Add(this.btn_AddMSE);
     this.grpCommMSE.Controls.Add(this.btn_DelMSE);
     this.grpCommMSE.Controls.Add(this.groupControl1);
     this.grpCommMSE.Location = new System.Drawing.Point(4, 48);
     this.grpCommMSE.LookAndFeel.Style = DevExpress.LookAndFeel.LookAndFeelStyle.Office2003;
     this.grpCommMSE.LookAndFeel.UseDefaultLookAndFeel = false;
     this.grpCommMSE.Name = "grpCommMSE";
     this.grpCommMSE.Size = new System.Drawing.Size(960, 237);
     this.grpCommMSE.TabIndex = 118;
     this.grpCommMSE.Text = "Sales Target";
     this.grpCommMSE.Visible = false;
     //
     // btn_AddMSE
     //
     this.btn_AddMSE.Appearance.Font = new System.Drawing.Font("Tahoma", 14.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.btn_AddMSE.Appearance.Options.UseFont = true;
     this.btn_AddMSE.Appearance.Options.UseTextOptions = true;
     this.btn_AddMSE.Appearance.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.btn_AddMSE.Appearance.TextOptions.VAlignment = DevExpress.Utils.VertAlignment.Top;
     this.btn_AddMSE.Appearance.TextOptions.WordWrap = DevExpress.Utils.WordWrap.Wrap;
     this.btn_AddMSE.ImageIndex = 0;
     this.btn_AddMSE.ImageList = this.imageList1;
     this.btn_AddMSE.ImeMode = System.Windows.Forms.ImeMode.On;
     this.btn_AddMSE.Location = new System.Drawing.Point(8, 24);
     this.btn_AddMSE.Name = "btn_AddMSE";
     this.btn_AddMSE.Size = new System.Drawing.Size(38, 16);
     this.btn_AddMSE.TabIndex = 132;
     this.btn_AddMSE.Click += new System.EventHandler(this.btn_AddMSE_Click);
     //
     // btn_DelMSE
     //
     this.btn_DelMSE.Appearance.Font = new System.Drawing.Font("Tahoma", 14.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.btn_DelMSE.Appearance.Options.UseFont = true;
     this.btn_DelMSE.Appearance.Options.UseTextOptions = true;
     this.btn_DelMSE.Appearance.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.btn_DelMSE.Appearance.TextOptions.VAlignment = DevExpress.Utils.VertAlignment.Top;
     this.btn_DelMSE.Appearance.TextOptions.WordWrap = DevExpress.Utils.WordWrap.Wrap;
     this.btn_DelMSE.ImageIndex = 1;
     this.btn_DelMSE.ImageList = this.imageList1;
     this.btn_DelMSE.Location = new System.Drawing.Point(48, 24);
     this.btn_DelMSE.Name = "btn_DelMSE";
     this.btn_DelMSE.Size = new System.Drawing.Size(38, 16);
     this.btn_DelMSE.TabIndex = 131;
     this.btn_DelMSE.Click += new System.EventHandler(this.btn_DelMSE_Click);
     //
     // groupControl1
     //
     this.groupControl1.BorderStyle = DevExpress.XtraEditors.Controls.BorderStyles.NoBorder;
     this.groupControl1.Controls.Add(this.gridControlMd_SalesTarget);
     this.groupControl1.Location = new System.Drawing.Point(0, 40);
     this.groupControl1.Name = "groupControl1";
     this.groupControl1.Size = new System.Drawing.Size(952, 192);
     this.groupControl1.TabIndex = 121;
     //
     // gridControlMd_SalesTarget
     //
     this.gridControlMd_SalesTarget.Dock = System.Windows.Forms.DockStyle.Fill;
     this.gridControlMd_SalesTarget.Location = new System.Drawing.Point(0, 0);
     this.gridControlMd_SalesTarget.LookAndFeel.UseDefaultLookAndFeel = false;
     this.gridControlMd_SalesTarget.MainView = this.gridViewMd_SalesTarget;
     this.gridControlMd_SalesTarget.Name = "gridControlMd_SalesTarget";
     this.gridControlMd_SalesTarget.RepositoryItems.AddRange(new DevExpress.XtraEditors.Repository.RepositoryItem[] {
     this.de_nYear,
     this.strDesc,
     this.lk_SalesRank,
     this.tedit_Commission,
     this.tedit_strType,
     this.tedit_strCommID,
     this.tedit_strDesc,
     this.tedit_strBranch,
     this.tedit_mTargetFrom,
     this.tedit_mTargetTo,
     this.de_nMonth,
     this.tedit_nYear,
     this.tedit_nMonth,
     this.lk_BranchCode0,
     this.lk_Position0,
     this.chk_Month0});
     this.gridControlMd_SalesTarget.Size = new System.Drawing.Size(952, 192);
     this.gridControlMd_SalesTarget.TabIndex = 2;
     this.gridControlMd_SalesTarget.ViewCollection.AddRange(new DevExpress.XtraGrid.Views.Base.BaseView[] {
     this.gridViewMd_SalesTarget,
     this.cardView1});
     //
     // gridViewMd_SalesTarget
     //
     this.gridViewMd_SalesTarget.Appearance.ColumnFilterButton.BackColor = System.Drawing.Color.White;
     this.gridViewMd_SalesTarget.Appearance.ColumnFilterButton.BackColor2 = System.Drawing.Color.White;
     this.gridViewMd_SalesTarget.Appearance.ColumnFilterButton.BorderColor = System.Drawing.Color.White;
     this.gridViewMd_SalesTarget.Appearance.ColumnFilterButton.Options.UseBackColor = true;
     this.gridViewMd_SalesTarget.Appearance.ColumnFilterButton.Options.UseBorderColor = true;
     this.gridViewMd_SalesTarget.Columns.AddRange(new DevExpress.XtraGrid.Columns.GridColumn[] {
     this.gridColumnPKG3,
     this.gridColumnPKG7,
     this.gridColumnPKG8,
     this.gridColumnPKG1,
     this.gridColumnPKG2,
     this.gridColumnPKG4,
     this.gridColumnPKG5,
     this.gridColumnPKG6,
     this.gridColumnPKG9});
     this.gridViewMd_SalesTarget.GridControl = this.gridControlMd_SalesTarget;
     this.gridViewMd_SalesTarget.HorzScrollVisibility = DevExpress.XtraGrid.Views.Base.ScrollVisibility.Always;
     this.gridViewMd_SalesTarget.Name = "gridViewMd_SalesTarget";
     this.gridViewMd_SalesTarget.OptionsView.ColumnAutoWidth = false;
     this.gridViewMd_SalesTarget.OptionsView.HeaderFilterButtonShowMode = DevExpress.XtraEditors.Controls.FilterButtonShowMode.Button;
     this.gridViewMd_SalesTarget.OptionsView.ShowFilterPanelMode = DevExpress.XtraGrid.Views.Base.ShowFilterPanelMode.Never;
     this.gridViewMd_SalesTarget.OptionsView.ShowGroupPanel = false;
     this.gridViewMd_SalesTarget.VertScrollVisibility = DevExpress.XtraGrid.Views.Base.ScrollVisibility.Always;
     this.gridViewMd_SalesTarget.LostFocus += new System.EventHandler(this.gridViewMd_SalesTarget_LostFocus);
     //
     // gridColumnPKG3
     //
     this.gridColumnPKG3.Caption = "Branch";
     this.gridColumnPKG3.ColumnEdit = this.lk_BranchCode0;
     this.gridColumnPKG3.FieldName = "strBranch";
     this.gridColumnPKG3.Name = "gridColumnPKG3";
     this.gridColumnPKG3.OptionsColumn.AllowSort = DevExpress.Utils.DefaultBoolean.True;
     this.gridColumnPKG3.OptionsFilter.AutoFilterCondition = DevExpress.XtraGrid.Columns.AutoFilterCondition.Contains;
     this.gridColumnPKG3.OptionsFilter.FilterPopupMode = DevExpress.XtraGrid.Columns.FilterPopupMode.List;
     this.gridColumnPKG3.Visible = true;
     this.gridColumnPKG3.VisibleIndex = 0;
     this.gridColumnPKG3.Width = 90;
     //
     // lk_BranchCode0
     //
     this.lk_BranchCode0.AutoHeight = false;
     this.lk_BranchCode0.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.lk_BranchCode0.Name = "lk_BranchCode0";
     //
     // gridColumnPKG7
     //
     this.gridColumnPKG7.Caption = "Year";
     this.gridColumnPKG7.ColumnEdit = this.tedit_nYear;
     this.gridColumnPKG7.FieldName = "nYear";
     this.gridColumnPKG7.Name = "gridColumnPKG7";
     this.gridColumnPKG7.Visible = true;
     this.gridColumnPKG7.VisibleIndex = 1;
     this.gridColumnPKG7.Width = 90;
     //
     // tedit_nYear
     //
     this.tedit_nYear.AutoHeight = false;
     this.tedit_nYear.Name = "tedit_nYear";
     //
     // gridColumnPKG8
     //
     this.gridColumnPKG8.Caption = "Month";
     this.gridColumnPKG8.ColumnEdit = this.chk_Month0;
     this.gridColumnPKG8.FieldName = "nMonth";
     this.gridColumnPKG8.Name = "gridColumnPKG8";
     this.gridColumnPKG8.Visible = true;
     this.gridColumnPKG8.VisibleIndex = 2;
     this.gridColumnPKG8.Width = 90;
     //
     // chk_Month0
     //
     this.chk_Month0.AutoHeight = false;
     this.chk_Month0.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.chk_Month0.Items.AddRange(new object[] {
     "1",
     "2",
     "3",
     "4",
     "5",
     "6",
     "7",
     "8",
     "9",
     "10",
     "11",
     "12"});
     this.chk_Month0.Name = "chk_Month0";
     //
     // gridColumnPKG1
     //
     this.gridColumnPKG1.Caption = "Position";
     this.gridColumnPKG1.ColumnEdit = this.lk_Position0;
     this.gridColumnPKG1.FieldName = "strCommID";
     this.gridColumnPKG1.Name = "gridColumnPKG1";
     this.gridColumnPKG1.Visible = true;
     this.gridColumnPKG1.VisibleIndex = 3;
     this.gridColumnPKG1.Width = 90;
     //
     // lk_Position0
     //
     this.lk_Position0.AutoHeight = false;
     this.lk_Position0.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.lk_Position0.Name = "lk_Position0";
     //
     // gridColumnPKG2
     //
     this.gridColumnPKG2.Caption = "Description";
     this.gridColumnPKG2.ColumnEdit = this.tedit_strDesc;
     this.gridColumnPKG2.FieldName = "strDesc";
     this.gridColumnPKG2.Name = "gridColumnPKG2";
     this.gridColumnPKG2.OptionsFilter.AllowFilter = false;
     this.gridColumnPKG2.Visible = true;
     this.gridColumnPKG2.VisibleIndex = 4;
     this.gridColumnPKG2.Width = 90;
     //
     // tedit_strDesc
     //
     this.tedit_strDesc.AutoHeight = false;
     this.tedit_strDesc.Name = "tedit_strDesc";
     //
     // gridColumnPKG4
     //
     this.gridColumnPKG4.Caption = "Commission";
     this.gridColumnPKG4.ColumnEdit = this.tedit_Commission;
     this.gridColumnPKG4.FieldName = "nCommision";
     this.gridColumnPKG4.Name = "gridColumnPKG4";
     this.gridColumnPKG4.OptionsFilter.AllowFilter = false;
     this.gridColumnPKG4.Visible = true;
     this.gridColumnPKG4.VisibleIndex = 5;
     this.gridColumnPKG4.Width = 90;
     //
     // tedit_Commission
     //
     this.tedit_Commission.AutoHeight = false;
     this.tedit_Commission.MaxLength = 50;
     this.tedit_Commission.Name = "tedit_Commission";
     //
     // gridColumnPKG5
     //
     this.gridColumnPKG5.Caption = "Target From";
     this.gridColumnPKG5.ColumnEdit = this.tedit_mTargetFrom;
     this.gridColumnPKG5.FieldName = "mTargetFrom";
     this.gridColumnPKG5.Name = "gridColumnPKG5";
     this.gridColumnPKG5.OptionsFilter.AllowFilter = false;
     this.gridColumnPKG5.Visible = true;
     this.gridColumnPKG5.VisibleIndex = 6;
     this.gridColumnPKG5.Width = 90;
     //
     // tedit_mTargetFrom
     //
     this.tedit_mTargetFrom.AutoHeight = false;
     this.tedit_mTargetFrom.Name = "tedit_mTargetFrom";
     //
     // gridColumnPKG6
     //
     this.gridColumnPKG6.Caption = "Target To";
     this.gridColumnPKG6.ColumnEdit = this.tedit_mTargetTo;
     this.gridColumnPKG6.FieldName = "mTargetTo";
     this.gridColumnPKG6.Name = "gridColumnPKG6";
     this.gridColumnPKG6.OptionsFilter.AllowFilter = false;
     this.gridColumnPKG6.Visible = true;
     this.gridColumnPKG6.VisibleIndex = 7;
     this.gridColumnPKG6.Width = 90;
     //
     // tedit_mTargetTo
     //
     this.tedit_mTargetTo.AutoHeight = false;
     this.tedit_mTargetTo.Name = "tedit_mTargetTo";
     //
     // gridColumnPKG9
     //
     this.gridColumnPKG9.Caption = "CommMSEID";
     this.gridColumnPKG9.FieldName = "nCommMSEID";
     this.gridColumnPKG9.Name = "gridColumnPKG9";
     this.gridColumnPKG9.OptionsFilter.AllowFilter = false;
     this.gridColumnPKG9.Width = 72;
     //
     // de_nYear
     //
     this.de_nYear.AutoHeight = false;
     this.de_nYear.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.de_nYear.Name = "de_nYear";
     this.de_nYear.VistaTimeProperties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton()});
     //
     // strDesc
     //
     this.strDesc.AutoHeight = false;
     this.strDesc.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.strDesc.Name = "strDesc";
     this.strDesc.VistaTimeProperties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton()});
     //
     // lk_SalesRank
     //
     this.lk_SalesRank.AutoHeight = false;
     this.lk_SalesRank.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.lk_SalesRank.Name = "lk_SalesRank";
     //
     // tedit_strType
     //
     this.tedit_strType.AutoHeight = false;
     this.tedit_strType.MaxLength = 50;
     this.tedit_strType.Name = "tedit_strType";
     //
     // tedit_strCommID
     //
     this.tedit_strCommID.AutoHeight = false;
     this.tedit_strCommID.Name = "tedit_strCommID";
     //
     // tedit_strBranch
     //
     this.tedit_strBranch.AutoHeight = false;
     this.tedit_strBranch.Name = "tedit_strBranch";
     //
     // de_nMonth
     //
     this.de_nMonth.AutoHeight = false;
     this.de_nMonth.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.de_nMonth.Name = "de_nMonth";
     this.de_nMonth.VistaTimeProperties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton()});
     //
     // tedit_nMonth
     //
     this.tedit_nMonth.AutoHeight = false;
     this.tedit_nMonth.Name = "tedit_nMonth";
     //
     // cardView1
     //
     this.cardView1.FocusedCardTopFieldIndex = 0;
     this.cardView1.GridControl = this.gridControlMd_SalesTarget;
     this.cardView1.Name = "cardView1";
     //
     // grpCommSpaConsult
     //
     this.grpCommSpaConsult.Controls.Add(this.btn_AddSpaConsult);
     this.grpCommSpaConsult.Controls.Add(this.btn_DelSpaConsult);
     this.grpCommSpaConsult.Controls.Add(this.groupControl4);
     this.grpCommSpaConsult.Location = new System.Drawing.Point(4, 48);
     this.grpCommSpaConsult.LookAndFeel.Style = DevExpress.LookAndFeel.LookAndFeelStyle.Office2003;
     this.grpCommSpaConsult.LookAndFeel.UseDefaultLookAndFeel = false;
     this.grpCommSpaConsult.Name = "grpCommSpaConsult";
     this.grpCommSpaConsult.Size = new System.Drawing.Size(960, 237);
     this.grpCommSpaConsult.TabIndex = 119;
     this.grpCommSpaConsult.Text = "Sales Target";
     this.grpCommSpaConsult.Visible = false;
     //
     // btn_AddSpaConsult
     //
     this.btn_AddSpaConsult.Appearance.Font = new System.Drawing.Font("Tahoma", 14.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.btn_AddSpaConsult.Appearance.Options.UseFont = true;
     this.btn_AddSpaConsult.Appearance.Options.UseTextOptions = true;
     this.btn_AddSpaConsult.Appearance.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.btn_AddSpaConsult.Appearance.TextOptions.VAlignment = DevExpress.Utils.VertAlignment.Top;
     this.btn_AddSpaConsult.Appearance.TextOptions.WordWrap = DevExpress.Utils.WordWrap.Wrap;
     this.btn_AddSpaConsult.ImageIndex = 0;
     this.btn_AddSpaConsult.ImageList = this.imageList1;
     this.btn_AddSpaConsult.ImeMode = System.Windows.Forms.ImeMode.On;
     this.btn_AddSpaConsult.Location = new System.Drawing.Point(8, 24);
     this.btn_AddSpaConsult.Name = "btn_AddSpaConsult";
     this.btn_AddSpaConsult.Size = new System.Drawing.Size(38, 16);
     this.btn_AddSpaConsult.TabIndex = 134;
     this.btn_AddSpaConsult.Click += new System.EventHandler(this.btn_AddSpaConsult_Click);
     //
     // btn_DelSpaConsult
     //
     this.btn_DelSpaConsult.Appearance.Font = new System.Drawing.Font("Tahoma", 14.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.btn_DelSpaConsult.Appearance.Options.UseFont = true;
     this.btn_DelSpaConsult.Appearance.Options.UseTextOptions = true;
     this.btn_DelSpaConsult.Appearance.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.btn_DelSpaConsult.Appearance.TextOptions.VAlignment = DevExpress.Utils.VertAlignment.Top;
     this.btn_DelSpaConsult.Appearance.TextOptions.WordWrap = DevExpress.Utils.WordWrap.Wrap;
     this.btn_DelSpaConsult.ImageIndex = 1;
     this.btn_DelSpaConsult.ImageList = this.imageList1;
     this.btn_DelSpaConsult.Location = new System.Drawing.Point(48, 24);
     this.btn_DelSpaConsult.Name = "btn_DelSpaConsult";
     this.btn_DelSpaConsult.Size = new System.Drawing.Size(38, 16);
     this.btn_DelSpaConsult.TabIndex = 133;
     this.btn_DelSpaConsult.Click += new System.EventHandler(this.btn_DelSpaConsult_Click);
     //
     // groupControl4
     //
     this.groupControl4.BorderStyle = DevExpress.XtraEditors.Controls.BorderStyles.NoBorder;
     this.groupControl4.Controls.Add(this.gridControlMd_CommSpaConsult);
     this.groupControl4.Location = new System.Drawing.Point(0, 40);
     this.groupControl4.Name = "groupControl4";
     this.groupControl4.Size = new System.Drawing.Size(952, 192);
     this.groupControl4.TabIndex = 2;
     //
     // gridControlMd_CommSpaConsult
     //
     this.gridControlMd_CommSpaConsult.Dock = System.Windows.Forms.DockStyle.Fill;
     this.gridControlMd_CommSpaConsult.Location = new System.Drawing.Point(0, 0);
     this.gridControlMd_CommSpaConsult.LookAndFeel.UseDefaultLookAndFeel = false;
     this.gridControlMd_CommSpaConsult.MainView = this.gridViewMd_CommSpaConsult;
     this.gridControlMd_CommSpaConsult.Name = "gridControlMd_CommSpaConsult";
     this.gridControlMd_CommSpaConsult.RepositoryItems.AddRange(new DevExpress.XtraEditors.Repository.RepositoryItem[] {
     this.lk_pkGroupCatID,
     this.tedit_SC_strCommID,
     this.lk_Position1,
     this.lk_BranchCode1,
     this.chk_Month1});
     this.gridControlMd_CommSpaConsult.Size = new System.Drawing.Size(952, 192);
     this.gridControlMd_CommSpaConsult.TabIndex = 2;
     this.gridControlMd_CommSpaConsult.ViewCollection.AddRange(new DevExpress.XtraGrid.Views.Base.BaseView[] {
     this.gridViewMd_CommSpaConsult});
     //
     // gridViewMd_CommSpaConsult
     //
     this.gridViewMd_CommSpaConsult.Columns.AddRange(new DevExpress.XtraGrid.Columns.GridColumn[] {
     this.gridColumnPG3,
     this.gridColumnPG7,
     this.gridColumnPG8,
     this.gridColumnPG1,
     this.gridColumnPG2,
     this.gridColumnPG4,
     this.gridColumnPG9,
     this.gridColumnPG5,
     this.gridColumnPG6,
     this.gridColumnPG10});
     this.gridViewMd_CommSpaConsult.GridControl = this.gridControlMd_CommSpaConsult;
     this.gridViewMd_CommSpaConsult.HorzScrollVisibility = DevExpress.XtraGrid.Views.Base.ScrollVisibility.Always;
     this.gridViewMd_CommSpaConsult.Name = "gridViewMd_CommSpaConsult";
     this.gridViewMd_CommSpaConsult.OptionsView.ColumnAutoWidth = false;
     this.gridViewMd_CommSpaConsult.OptionsView.HeaderFilterButtonShowMode = DevExpress.XtraEditors.Controls.FilterButtonShowMode.Button;
     this.gridViewMd_CommSpaConsult.OptionsView.ShowGroupPanel = false;
     this.gridViewMd_CommSpaConsult.VertScrollVisibility = DevExpress.XtraGrid.Views.Base.ScrollVisibility.Always;
     this.gridViewMd_CommSpaConsult.LostFocus += new System.EventHandler(this.gridViewMd_CommSpaConsult_LostFocus);
     //
     // gridColumnPG3
     //
     this.gridColumnPG3.Caption = "Branch";
     this.gridColumnPG3.ColumnEdit = this.lk_BranchCode1;
     this.gridColumnPG3.FieldName = "strBranch";
     this.gridColumnPG3.Name = "gridColumnPG3";
     this.gridColumnPG3.Visible = true;
     this.gridColumnPG3.VisibleIndex = 0;
     this.gridColumnPG3.Width = 90;
     //
     // lk_BranchCode1
     //
     this.lk_BranchCode1.AutoHeight = false;
     this.lk_BranchCode1.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.lk_BranchCode1.Name = "lk_BranchCode1";
     //
     // gridColumnPG7
     //
     this.gridColumnPG7.Caption = "Year";
     this.gridColumnPG7.FieldName = "nYear";
     this.gridColumnPG7.Name = "gridColumnPG7";
     this.gridColumnPG7.Visible = true;
     this.gridColumnPG7.VisibleIndex = 1;
     this.gridColumnPG7.Width = 90;
     //
     // gridColumnPG8
     //
     this.gridColumnPG8.Caption = "Month";
     this.gridColumnPG8.ColumnEdit = this.chk_Month1;
     this.gridColumnPG8.FieldName = "nMonth";
     this.gridColumnPG8.Name = "gridColumnPG8";
     this.gridColumnPG8.Visible = true;
     this.gridColumnPG8.VisibleIndex = 2;
     this.gridColumnPG8.Width = 90;
     //
     // chk_Month1
     //
     this.chk_Month1.AutoHeight = false;
     this.chk_Month1.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.chk_Month1.Items.AddRange(new object[] {
     "1",
     "2",
     "3",
     "4",
     "5",
     "6",
     "7",
     "8",
     "9",
     "10",
     "11",
     "12"});
     this.chk_Month1.Name = "chk_Month1";
     //
     // gridColumnPG1
     //
     this.gridColumnPG1.Caption = "Position";
     this.gridColumnPG1.ColumnEdit = this.lk_Position1;
     this.gridColumnPG1.FieldName = "strCommID";
     this.gridColumnPG1.Name = "gridColumnPG1";
     this.gridColumnPG1.Visible = true;
     this.gridColumnPG1.VisibleIndex = 3;
     this.gridColumnPG1.Width = 90;
     //
     // lk_Position1
     //
     this.lk_Position1.AutoHeight = false;
     this.lk_Position1.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.lk_Position1.Name = "lk_Position1";
     //
     // gridColumnPG2
     //
     this.gridColumnPG2.Caption = "Description";
     this.gridColumnPG2.FieldName = "strDesc";
     this.gridColumnPG2.Name = "gridColumnPG2";
     this.gridColumnPG2.OptionsFilter.AllowFilter = false;
     this.gridColumnPG2.Visible = true;
     this.gridColumnPG2.VisibleIndex = 4;
     this.gridColumnPG2.Width = 90;
     //
     // gridColumnPG4
     //
     this.gridColumnPG4.Caption = "Product Comm";
     this.gridColumnPG4.FieldName = "nProductComm";
     this.gridColumnPG4.Name = "gridColumnPG4";
     this.gridColumnPG4.OptionsFilter.AllowFilter = false;
     this.gridColumnPG4.Visible = true;
     this.gridColumnPG4.VisibleIndex = 5;
     this.gridColumnPG4.Width = 90;
     //
     // gridColumnPG9
     //
     this.gridColumnPG9.Caption = "Target From";
     this.gridColumnPG9.FieldName = "mPackageTargetFrom";
     this.gridColumnPG9.Name = "gridColumnPG9";
     this.gridColumnPG9.OptionsFilter.AllowFilter = false;
     this.gridColumnPG9.Visible = true;
     this.gridColumnPG9.VisibleIndex = 6;
     this.gridColumnPG9.Width = 90;
     //
     // gridColumnPG5
     //
     this.gridColumnPG5.Caption = "Target To";
     this.gridColumnPG5.FieldName = "mPackageTargetTo";
     this.gridColumnPG5.Name = "gridColumnPG5";
     this.gridColumnPG5.OptionsFilter.AllowFilter = false;
     this.gridColumnPG5.Visible = true;
     this.gridColumnPG5.VisibleIndex = 7;
     this.gridColumnPG5.Width = 90;
     //
     // gridColumnPG6
     //
     this.gridColumnPG6.Caption = "Package Comm";
     this.gridColumnPG6.FieldName = "nPackageComm";
     this.gridColumnPG6.Name = "gridColumnPG6";
     this.gridColumnPG6.OptionsFilter.AllowFilter = false;
     this.gridColumnPG6.Visible = true;
     this.gridColumnPG6.VisibleIndex = 8;
     this.gridColumnPG6.Width = 90;
     //
     // gridColumnPG10
     //
     this.gridColumnPG10.Caption = "SpaConsultID";
     this.gridColumnPG10.FieldName = "nCommSpaConsultID";
     this.gridColumnPG10.Name = "gridColumnPG10";
     this.gridColumnPG10.OptionsFilter.AllowFilter = false;
     this.gridColumnPG10.Width = 77;
     //
     // lk_pkGroupCatID
     //
     this.lk_pkGroupCatID.AutoHeight = false;
     this.lk_pkGroupCatID.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.lk_pkGroupCatID.Name = "lk_pkGroupCatID";
     //
     // tedit_SC_strCommID
     //
     this.tedit_SC_strCommID.AutoHeight = false;
     this.tedit_SC_strCommID.Name = "tedit_SC_strCommID";
     //
     // frmSalesTarget
     //
     this.BackColor = System.Drawing.Color.White;
     this.ClientSize = new System.Drawing.Size(982, 635);
     this.Controls.Add(this.grpSalesRank);
     this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.None;
     this.Name = "frmSalesTarget";
     this.Text = "frmSalesTarget";
     ((System.ComponentModel.ISupportInitialize)(this.grpSalesRank)).EndInit();
     this.grpSalesRank.ResumeLayout(false);
     this.groupBoxCommMSE.ResumeLayout(false);
     this.groupBox2.ResumeLayout(false);
     this.groupBox2.PerformLayout();
     this.groupBox1.ResumeLayout(false);
     this.groupBox1.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(this.ddlSalesRank.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.grpCommPT)).EndInit();
     this.grpCommPT.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.groupControl3)).EndInit();
     this.groupControl3.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.gridControlMd_CommPT)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridViewMd_CommPT)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.lk_BranchCode3)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.chk_Month3)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.lk_Position3)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemLookUpEdit1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemDateEdit1.VistaTimeProperties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemDateEdit1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemDateEdit2.VistaTimeProperties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemDateEdit2)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.grpCommProductTherapist)).EndInit();
     this.grpCommProductTherapist.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.groupControl5)).EndInit();
     this.groupControl5.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.gridControlMd_CommProductTherapist)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridViewMd_CommProductTherapist)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.lk_BranchCode2)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.chk_Month2)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.lk_Position2)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.lk_CreditCategoryID)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.EffCCStartDate.VistaTimeProperties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.EffCCStartDate)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.EffCCEndDate.VistaTimeProperties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.EffCCEndDate)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.grpCommCST)).EndInit();
     this.grpCommCST.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.groupControl6)).EndInit();
     this.groupControl6.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.gridControlMd_CommCST)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridViewMd_CommCST)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.lk_BranchCode4)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.chk_Month4)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.lk_Position4)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemLookUpEdit2)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemDateEdit3.VistaTimeProperties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemDateEdit3)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemDateEdit4.VistaTimeProperties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemDateEdit4)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.grpCommMerge)).EndInit();
     this.grpCommMerge.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.groupControl7)).EndInit();
     this.groupControl7.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.gridControlMd_CommMerge)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridViewMd_CommMerge)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.lk_BranchCode5)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.chk_Month5)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.lk_Position5)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemLookUpEdit3)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemDateEdit5.VistaTimeProperties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemDateEdit5)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemDateEdit6.VistaTimeProperties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemDateEdit6)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridView1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.grpCommMSE)).EndInit();
     this.grpCommMSE.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.groupControl1)).EndInit();
     this.groupControl1.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.gridControlMd_SalesTarget)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridViewMd_SalesTarget)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.lk_BranchCode0)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.tedit_nYear)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.chk_Month0)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.lk_Position0)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.tedit_strDesc)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.tedit_Commission)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.tedit_mTargetFrom)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.tedit_mTargetTo)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.de_nYear.VistaTimeProperties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.de_nYear)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.strDesc.VistaTimeProperties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.strDesc)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.lk_SalesRank)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.tedit_strType)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.tedit_strCommID)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.tedit_strBranch)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.de_nMonth.VistaTimeProperties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.de_nMonth)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.tedit_nMonth)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.cardView1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.grpCommSpaConsult)).EndInit();
     this.grpCommSpaConsult.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.groupControl4)).EndInit();
     this.groupControl4.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.gridControlMd_CommSpaConsult)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridViewMd_CommSpaConsult)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.lk_BranchCode1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.chk_Month1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.lk_Position1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.lk_pkGroupCatID)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.tedit_SC_strCommID)).EndInit();
     this.ResumeLayout(false);
 }
 /// <summary>
 /// �����֧������ķ��� - ��Ҫ
 /// ʹ�ô���༭���޸Ĵ˷��������ݡ�
 /// </summary>
 private void InitializeComponent()
 {
     this.components = new System.ComponentModel.Container();
     System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(FormForecastAHTL));
     Dundas.Charting.WinControl.ChartArea chartArea1 = new Dundas.Charting.WinControl.ChartArea();
     Dundas.Charting.WinControl.Legend legend1 = new Dundas.Charting.WinControl.Legend();
     Dundas.Charting.WinControl.Series series1 = new Dundas.Charting.WinControl.Series();
     this.barManager1 = new DevExpress.XtraBars.BarManager();
     this.bar1 = new DevExpress.XtraBars.Bar();
     this.barSubItem1 = new DevExpress.XtraBars.BarSubItem();
     this.barButtonItem1 = new DevExpress.XtraBars.BarButtonItem();
     this.barButtonItem25 = new DevExpress.XtraBars.BarButtonItem();
     this.barButtonItem8 = new DevExpress.XtraBars.BarButtonItem();
     this.barButtonItem2 = new DevExpress.XtraBars.BarButtonItem();
     this.barButtonItem31 = new DevExpress.XtraBars.BarButtonItem();
     this.barButtonItem3 = new DevExpress.XtraBars.BarButtonItem();
     this.barButtonItem4 = new DevExpress.XtraBars.BarButtonItem();
     this.barButtonItem7 = new DevExpress.XtraBars.BarButtonItem();
     this.barButtonItem12 = new DevExpress.XtraBars.BarButtonItem();
     this.barButtonItem19 = new DevExpress.XtraBars.BarButtonItem();
     this.barButtonItem18 = new DevExpress.XtraBars.BarButtonItem();
     this.barButtonItem30 = new DevExpress.XtraBars.BarButtonItem();
     this.barButtonItem33 = new DevExpress.XtraBars.BarButtonItem();
     this.barButtonItem14 = new DevExpress.XtraBars.BarButtonItem();
     this.barSubItem4 = new DevExpress.XtraBars.BarSubItem();
     this.barButtonItem9 = new DevExpress.XtraBars.BarButtonItem();
     this.barButtonItem15 = new DevExpress.XtraBars.BarButtonItem();
     this.barButtonItem23 = new DevExpress.XtraBars.BarButtonItem();
     this.barButtonItem24 = new DevExpress.XtraBars.BarButtonItem();
     this.barSubItem3 = new DevExpress.XtraBars.BarSubItem();
     this.barButtonItem20 = new DevExpress.XtraBars.BarButtonItem();
     this.barButtonItem21 = new DevExpress.XtraBars.BarButtonItem();
     this.barSubItem5 = new DevExpress.XtraBars.BarSubItem();
     this.barCheckItem1 = new DevExpress.XtraBars.BarCheckItem();
     this.barCheckItem4 = new DevExpress.XtraBars.BarCheckItem();
     this.barCheckItem2 = new DevExpress.XtraBars.BarCheckItem();
     this.barCheckItem7 = new DevExpress.XtraBars.BarCheckItem();
     this.barCheckItem5 = new DevExpress.XtraBars.BarCheckItem();
     this.barCheckItem6 = new DevExpress.XtraBars.BarCheckItem();
     this.barCheckItem3 = new DevExpress.XtraBars.BarCheckItem();
     this.barEditItem1 = new DevExpress.XtraBars.BarEditItem();
     this.repositoryItemComboBox2 = new DevExpress.XtraEditors.Repository.RepositoryItemComboBox();
     this.barButtonItem28 = new DevExpress.XtraBars.BarButtonItem();
     this.barButtonItem27 = new DevExpress.XtraBars.BarButtonItem();
     this.barButtonItem17 = new DevExpress.XtraBars.BarButtonItem();
     this.barButtonItem26 = new DevExpress.XtraBars.BarButtonItem();
     this.barButtonItem22 = new DevExpress.XtraBars.BarButtonItem();
     this.barButtonItem29 = new DevExpress.XtraBars.BarButtonItem();
     this.barButtonItem32 = new DevExpress.XtraBars.BarButtonItem();
     this.barButtonItem6 = new DevExpress.XtraBars.BarButtonItem();
     this.bar2 = new DevExpress.XtraBars.Bar();
     this.barDockControlTop = new DevExpress.XtraBars.BarDockControl();
     this.barDockControlBottom = new DevExpress.XtraBars.BarDockControl();
     this.barDockControlLeft = new DevExpress.XtraBars.BarDockControl();
     this.barDockControlRight = new DevExpress.XtraBars.BarDockControl();
     this.imageList1 = new System.Windows.Forms.ImageList(this.components);
     this.barButtonItem5 = new DevExpress.XtraBars.BarButtonItem();
     this.barButtonItem10 = new DevExpress.XtraBars.BarButtonItem();
     this.barButtonItem11 = new DevExpress.XtraBars.BarButtonItem();
     this.barSubItem2 = new DevExpress.XtraBars.BarSubItem();
     this.barButtonItem16 = new DevExpress.XtraBars.BarButtonItem();
     this.barButtonItem13 = new DevExpress.XtraBars.BarButtonItem();
     this.repositoryItemComboBox1 = new DevExpress.XtraEditors.Repository.RepositoryItemComboBox();
     this.splitterControl1 = new DevExpress.XtraEditors.SplitterControl();
     this.chart1 = new Dundas.Charting.WinControl.Chart();
     this.treeList2 = new DevExpress.XtraTreeList.TreeList();
     this.splitContainerControl1 = new DevExpress.XtraEditors.SplitContainerControl();
     this.treeList1 = new DevExpress.XtraTreeList.TreeList();
     this.checkBox1 = new System.Windows.Forms.CheckBox();
     this.imageList2 = new System.Windows.Forms.ImageList(this.components);
     ((System.ComponentModel.ISupportInitialize)(this.barManager1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemComboBox2)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemComboBox1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.chart1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.treeList2)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.splitContainerControl1)).BeginInit();
     this.splitContainerControl1.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.treeList1)).BeginInit();
     this.SuspendLayout();
     //
     // barManager1
     //
     this.barManager1.AllowCustomization = false;
     this.barManager1.AllowQuickCustomization = false;
     this.barManager1.AllowShowToolbarsPopup = false;
     this.barManager1.Bars.AddRange(new DevExpress.XtraBars.Bar[] {
     this.bar1,
     this.bar2});
     this.barManager1.DockControls.Add(this.barDockControlTop);
     this.barManager1.DockControls.Add(this.barDockControlBottom);
     this.barManager1.DockControls.Add(this.barDockControlLeft);
     this.barManager1.DockControls.Add(this.barDockControlRight);
     this.barManager1.Form = this;
     this.barManager1.Images = this.imageList1;
     this.barManager1.Items.AddRange(new DevExpress.XtraBars.BarItem[] {
     this.barSubItem1,
     this.barButtonItem1,
     this.barButtonItem2,
     this.barButtonItem3,
     this.barButtonItem4,
     this.barButtonItem5,
     this.barButtonItem7,
     this.barButtonItem8,
     this.barButtonItem10,
     this.barButtonItem11,
     this.barButtonItem31,
     this.barSubItem2,
     this.barButtonItem12,
     this.barButtonItem14,
     this.barButtonItem16,
     this.barButtonItem17,
     this.barButtonItem18,
     this.barButtonItem19,
     this.barSubItem3,
     this.barButtonItem20,
     this.barButtonItem21,
     this.barButtonItem22,
     this.barButtonItem32,
     this.barButtonItem6,
     this.barButtonItem9,
     this.barButtonItem13,
     this.barButtonItem15,
     this.barSubItem4,
     this.barButtonItem23,
     this.barButtonItem24,
     this.barButtonItem25,
     this.barButtonItem26,
     this.barButtonItem27,
     this.barButtonItem28,
     this.barButtonItem29,
     this.barButtonItem30,
     this.barButtonItem33,
     this.barSubItem5,
     this.barCheckItem1,
     this.barCheckItem2,
     this.barCheckItem3,
     this.barCheckItem4,
     this.barCheckItem5,
     this.barCheckItem6,
     this.barCheckItem7,
     this.barEditItem1});
     this.barManager1.MaxItemId = 59;
     this.barManager1.RepositoryItems.AddRange(new DevExpress.XtraEditors.Repository.RepositoryItem[] {
     this.repositoryItemComboBox1,
     this.repositoryItemComboBox2});
     this.barManager1.StatusBar = this.bar2;
     //
     // bar1
     //
     this.bar1.BarName = "Custom 1";
     this.bar1.DockCol = 0;
     this.bar1.DockRow = 0;
     this.bar1.DockStyle = DevExpress.XtraBars.BarDockStyle.Top;
     this.bar1.LinksPersistInfo.AddRange(new DevExpress.XtraBars.LinkPersistInfo[] {
     new DevExpress.XtraBars.LinkPersistInfo(this.barSubItem1, true),
     new DevExpress.XtraBars.LinkPersistInfo(this.barButtonItem14, true),
     new DevExpress.XtraBars.LinkPersistInfo(this.barSubItem4, true),
     new DevExpress.XtraBars.LinkPersistInfo(this.barSubItem3, true),
     new DevExpress.XtraBars.LinkPersistInfo(DevExpress.XtraBars.BarLinkUserDefines.PaintStyle, this.barSubItem5, "", true, true, true, 0, null, DevExpress.XtraBars.BarItemPaintStyle.CaptionGlyph),
     new DevExpress.XtraBars.LinkPersistInfo(this.barButtonItem31, true),
     new DevExpress.XtraBars.LinkPersistInfo(this.barButtonItem28, true),
     new DevExpress.XtraBars.LinkPersistInfo(this.barButtonItem27, true),
     new DevExpress.XtraBars.LinkPersistInfo(this.barButtonItem17, true),
     new DevExpress.XtraBars.LinkPersistInfo(this.barButtonItem26, true),
     new DevExpress.XtraBars.LinkPersistInfo(this.barButtonItem22, true),
     new DevExpress.XtraBars.LinkPersistInfo(this.barButtonItem29, true),
     new DevExpress.XtraBars.LinkPersistInfo(this.barButtonItem32),
     new DevExpress.XtraBars.LinkPersistInfo(this.barButtonItem6, true)});
     this.bar1.OptionsBar.AllowQuickCustomization = false;
     this.bar1.OptionsBar.DrawDragBorder = false;
     this.bar1.OptionsBar.UseWholeRow = true;
     this.bar1.Text = "Custom 1";
     //
     // barSubItem1
     //
     this.barSubItem1.Caption = "Ԥ���㷨";
     this.barSubItem1.Id = 7;
     this.barSubItem1.ImageIndex = 10;
     this.barSubItem1.LinksPersistInfo.AddRange(new DevExpress.XtraBars.LinkPersistInfo[] {
     new DevExpress.XtraBars.LinkPersistInfo(this.barButtonItem1),
     new DevExpress.XtraBars.LinkPersistInfo(this.barButtonItem25),
     new DevExpress.XtraBars.LinkPersistInfo(this.barButtonItem8),
     new DevExpress.XtraBars.LinkPersistInfo(this.barButtonItem2),
     new DevExpress.XtraBars.LinkPersistInfo(this.barButtonItem31),
     new DevExpress.XtraBars.LinkPersistInfo(this.barButtonItem3),
     new DevExpress.XtraBars.LinkPersistInfo(this.barButtonItem4),
     new DevExpress.XtraBars.LinkPersistInfo(this.barButtonItem7),
     new DevExpress.XtraBars.LinkPersistInfo(this.barButtonItem12),
     new DevExpress.XtraBars.LinkPersistInfo(this.barButtonItem19),
     new DevExpress.XtraBars.LinkPersistInfo(this.barButtonItem18),
     new DevExpress.XtraBars.LinkPersistInfo(this.barButtonItem30),
     new DevExpress.XtraBars.LinkPersistInfo(this.barButtonItem33)});
     this.barSubItem1.Name = "barSubItem1";
     this.barSubItem1.PaintStyle = DevExpress.XtraBars.BarItemPaintStyle.CaptionGlyph;
     //
     // barButtonItem1
     //
     this.barButtonItem1.Caption = "�������ʷ�";
     this.barButtonItem1.Id = 8;
     this.barButtonItem1.Name = "barButtonItem1";
     this.barButtonItem1.ItemClick += new DevExpress.XtraBars.ItemClickEventHandler(this.barButtonItem1_ItemClick);
     //
     // barButtonItem25
     //
     this.barButtonItem25.Caption = "���Ʒ�";
     this.barButtonItem25.Id = 44;
     this.barButtonItem25.Name = "barButtonItem25";
     this.barButtonItem25.ItemClick += new DevExpress.XtraBars.ItemClickEventHandler(this.barButtonItem25_ItemClick);
     //
     // barButtonItem8
     //
     this.barButtonItem8.Caption = "ָ��ƽ����";
     this.barButtonItem8.Id = 14;
     this.barButtonItem8.Name = "barButtonItem8";
     this.barButtonItem8.ItemClick += new DevExpress.XtraBars.ItemClickEventHandler(this.barButtonItem8_ItemClick_1);
     //
     // barButtonItem2
     //
     this.barButtonItem2.Caption = "����ϵ����";
     this.barButtonItem2.Id = 9;
     this.barButtonItem2.Name = "barButtonItem2";
     this.barButtonItem2.ItemClick += new DevExpress.XtraBars.ItemClickEventHandler(this.barButtonItem2_ItemClick);
     //
     // barButtonItem31
     //
     this.barButtonItem31.Caption = "�����������";
     this.barButtonItem31.Id = 50;
     this.barButtonItem31.ImageIndex = 14;
     this.barButtonItem31.Name = "barButtonItem31";
     this.barButtonItem31.PaintStyle = DevExpress.XtraBars.BarItemPaintStyle.CaptionGlyph;
     this.barButtonItem31.Visibility = DevExpress.XtraBars.BarItemVisibility.Never;
     this.barButtonItem31.ItemClick += new DevExpress.XtraBars.ItemClickEventHandler(this.barButtonItem31_ItemClick);
     //
     // barButtonItem3
     //
     this.barButtonItem3.Caption = "��ط�";
     this.barButtonItem3.Id = 10;
     this.barButtonItem3.Name = "barButtonItem3";
     this.barButtonItem3.ItemClick += new DevExpress.XtraBars.ItemClickEventHandler(this.barButtonItem3_ItemClick);
     //
     // barButtonItem4
     //
     this.barButtonItem4.Caption = "��ɫģ�ͷ�";
     this.barButtonItem4.Id = 11;
     this.barButtonItem4.Name = "barButtonItem4";
     this.barButtonItem4.ItemClick += new DevExpress.XtraBars.ItemClickEventHandler(this.barButtonItem4_ItemClick);
     //
     // barButtonItem7
     //
     this.barButtonItem7.Caption = "ָ��������";
     this.barButtonItem7.Id = 13;
     this.barButtonItem7.Name = "barButtonItem7";
     this.barButtonItem7.Visibility = DevExpress.XtraBars.BarItemVisibility.Never;
     this.barButtonItem7.ItemClick += new DevExpress.XtraBars.ItemClickEventHandler(this.barButtonItem7_ItemClick);
     //
     // barButtonItem12
     //
     this.barButtonItem12.Caption = "�������Ʒ�";
     this.barButtonItem12.Id = 20;
     this.barButtonItem12.Name = "barButtonItem12";
     this.barButtonItem12.Visibility = DevExpress.XtraBars.BarItemVisibility.Never;
     this.barButtonItem12.ItemClick += new DevExpress.XtraBars.ItemClickEventHandler(this.barButtonItem12_ItemClick);
     //
     // barButtonItem19
     //
     this.barButtonItem19.Caption = "ר�Ҿ��߷�";
     this.barButtonItem19.Id = 28;
     this.barButtonItem19.Name = "barButtonItem19";
     this.barButtonItem19.ItemClick += new DevExpress.XtraBars.ItemClickEventHandler(this.barButtonItem19_ItemClick);
     //
     // barButtonItem18
     //
     this.barButtonItem18.Caption = "����Ƚ�";
     this.barButtonItem18.Id = 27;
     this.barButtonItem18.Name = "barButtonItem18";
     this.barButtonItem18.Visibility = DevExpress.XtraBars.BarItemVisibility.Never;
     //
     // barButtonItem30
     //
     this.barButtonItem30.Caption = "����������-���û�Ԥ�ⷨ";
     this.barButtonItem30.Id = 49;
     this.barButtonItem30.Name = "barButtonItem30";
     this.barButtonItem30.Visibility = DevExpress.XtraBars.BarItemVisibility.Never;
     this.barButtonItem30.ItemClick += new DevExpress.XtraBars.ItemClickEventHandler(this.barButtonItem30_ItemClick);
     //
     // barButtonItem33
     //
     this.barButtonItem33.Caption = "���Сʱ��";
     this.barButtonItem33.Id = 56;
     this.barButtonItem33.Name = "barButtonItem33";
     this.barButtonItem33.Visibility = DevExpress.XtraBars.BarItemVisibility.Never;
     this.barButtonItem33.ItemClick += new DevExpress.XtraBars.ItemClickEventHandler(this.barButtonItem33_ItemClick);
     //
     // barButtonItem14
     //
     this.barButtonItem14.Caption = "��������";
     this.barButtonItem14.Id = 22;
     this.barButtonItem14.ImageIndex = 0;
     this.barButtonItem14.Name = "barButtonItem14";
     this.barButtonItem14.PaintStyle = DevExpress.XtraBars.BarItemPaintStyle.CaptionGlyph;
     this.barButtonItem14.ItemClick += new DevExpress.XtraBars.ItemClickEventHandler(this.barButtonItem14_ItemClick);
     //
     // barSubItem4
     //
     this.barSubItem4.Caption = "�������";
     this.barSubItem4.Id = 41;
     this.barSubItem4.ImageIndex = 3;
     this.barSubItem4.LinksPersistInfo.AddRange(new DevExpress.XtraBars.LinkPersistInfo[] {
     new DevExpress.XtraBars.LinkPersistInfo(this.barButtonItem9),
     new DevExpress.XtraBars.LinkPersistInfo(this.barButtonItem15),
     new DevExpress.XtraBars.LinkPersistInfo(this.barButtonItem23),
     new DevExpress.XtraBars.LinkPersistInfo(this.barButtonItem24)});
     this.barSubItem4.Name = "barSubItem4";
     this.barSubItem4.PaintStyle = DevExpress.XtraBars.BarItemPaintStyle.CaptionGlyph;
     //
     // barButtonItem9
     //
     this.barButtonItem9.Caption = "��ӷ���";
     this.barButtonItem9.Id = 36;
     this.barButtonItem9.ImageIndex = 3;
     this.barButtonItem9.Name = "barButtonItem9";
     this.barButtonItem9.PaintStyle = DevExpress.XtraBars.BarItemPaintStyle.CaptionGlyph;
     this.barButtonItem9.ItemClick += new DevExpress.XtraBars.ItemClickEventHandler(this.barButtonItem9_ItemClick_1);
     //
     // barButtonItem15
     //
     this.barButtonItem15.Caption = "����ӷ���";
     this.barButtonItem15.Id = 38;
     this.barButtonItem15.ImageIndex = 3;
     this.barButtonItem15.Name = "barButtonItem15";
     this.barButtonItem15.PaintStyle = DevExpress.XtraBars.BarItemPaintStyle.CaptionGlyph;
     this.barButtonItem15.ItemClick += new DevExpress.XtraBars.ItemClickEventHandler(this.barButtonItem15_ItemClick_1);
     //
     // barButtonItem23
     //
     this.barButtonItem23.Caption = "�޸ķ���";
     this.barButtonItem23.Id = 42;
     this.barButtonItem23.ImageIndex = 1;
     this.barButtonItem23.Name = "barButtonItem23";
     this.barButtonItem23.ItemClick += new DevExpress.XtraBars.ItemClickEventHandler(this.barButtonItem23_ItemClick);
     //
     // barButtonItem24
     //
     this.barButtonItem24.Caption = "ɾ������";
     this.barButtonItem24.Id = 43;
     this.barButtonItem24.ImageIndex = 9;
     this.barButtonItem24.Name = "barButtonItem24";
     this.barButtonItem24.ItemClick += new DevExpress.XtraBars.ItemClickEventHandler(this.barButtonItem24_ItemClick);
     //
     // barSubItem3
     //
     this.barSubItem3.Caption = "����";
     this.barSubItem3.Id = 29;
     this.barSubItem3.ImageIndex = 14;
     this.barSubItem3.LinksPersistInfo.AddRange(new DevExpress.XtraBars.LinkPersistInfo[] {
     new DevExpress.XtraBars.LinkPersistInfo(this.barButtonItem20),
     new DevExpress.XtraBars.LinkPersistInfo(this.barButtonItem21)});
     this.barSubItem3.Name = "barSubItem3";
     this.barSubItem3.PaintStyle = DevExpress.XtraBars.BarItemPaintStyle.CaptionGlyph;
     //
     // barButtonItem20
     //
     this.barButtonItem20.Caption = "��������";
     this.barButtonItem20.Id = 30;
     this.barButtonItem20.ImageIndex = 14;
     this.barButtonItem20.Name = "barButtonItem20";
     this.barButtonItem20.PaintStyle = DevExpress.XtraBars.BarItemPaintStyle.CaptionGlyph;
     this.barButtonItem20.ItemClick += new DevExpress.XtraBars.ItemClickEventHandler(this.barButtonItem20_ItemClick);
     //
     // barButtonItem21
     //
     this.barButtonItem21.Caption = "����ͼ��";
     this.barButtonItem21.Id = 31;
     this.barButtonItem21.ImageIndex = 14;
     this.barButtonItem21.Name = "barButtonItem21";
     this.barButtonItem21.PaintStyle = DevExpress.XtraBars.BarItemPaintStyle.CaptionGlyph;
     this.barButtonItem21.ItemClick += new DevExpress.XtraBars.ItemClickEventHandler(this.barButtonItem21_ItemClick);
     //
     // barSubItem5
     //
     this.barSubItem5.Caption = "ͼ������";
     this.barSubItem5.Id = 69;
     this.barSubItem5.ImageIndex = 1;
     this.barSubItem5.LinksPersistInfo.AddRange(new DevExpress.XtraBars.LinkPersistInfo[] {
     new DevExpress.XtraBars.LinkPersistInfo(this.barCheckItem1),
     new DevExpress.XtraBars.LinkPersistInfo(this.barCheckItem4),
     new DevExpress.XtraBars.LinkPersistInfo(this.barCheckItem2),
     new DevExpress.XtraBars.LinkPersistInfo(this.barCheckItem7),
     new DevExpress.XtraBars.LinkPersistInfo(this.barCheckItem5),
     new DevExpress.XtraBars.LinkPersistInfo(this.barCheckItem6),
     new DevExpress.XtraBars.LinkPersistInfo(this.barCheckItem3),
     new DevExpress.XtraBars.LinkPersistInfo(this.barEditItem1)});
     this.barSubItem5.Name = "barSubItem5";
     //
     // barCheckItem1
     //
     this.barCheckItem1.Caption = "����ͼ";
     this.barCheckItem1.Checked = true;
     this.barCheckItem1.Id = 73;
     this.barCheckItem1.Name = "barCheckItem1";
     this.barCheckItem1.CheckedChanged += new DevExpress.XtraBars.ItemClickEventHandler(this.barCheckItem1_CheckedChanged);
     //
     // barCheckItem4
     //
     this.barCheckItem4.Caption = "��������";
     this.barCheckItem4.Id = 77;
     this.barCheckItem4.Name = "barCheckItem4";
     this.barCheckItem4.CheckedChanged += new DevExpress.XtraBars.ItemClickEventHandler(this.barCheckItem4_CheckedChanged);
     //
     // barCheckItem2
     //
     this.barCheckItem2.Caption = "ֱ��ͼ";
     this.barCheckItem2.Id = 75;
     this.barCheckItem2.Name = "barCheckItem2";
     this.barCheckItem2.CheckedChanged += new DevExpress.XtraBars.ItemClickEventHandler(this.barCheckItem2_CheckedChanged);
     //
     // barCheckItem7
     //
     this.barCheckItem7.Caption = "����ͼ";
     this.barCheckItem7.Id = 57;
     this.barCheckItem7.Name = "barCheckItem7";
     this.barCheckItem7.CheckedChanged += new DevExpress.XtraBars.ItemClickEventHandler(this.barCheckItem7_CheckedChanged);
     //
     // barCheckItem5
     //
     this.barCheckItem5.Caption = "�ѻ�����";
     this.barCheckItem5.Id = 78;
     this.barCheckItem5.Name = "barCheckItem5";
     this.barCheckItem5.CheckedChanged += new DevExpress.XtraBars.ItemClickEventHandler(this.barCheckItem5_CheckedChanged);
     //
     // barCheckItem6
     //
     this.barCheckItem6.Caption = "������Χ";
     this.barCheckItem6.Id = 79;
     this.barCheckItem6.Name = "barCheckItem6";
     this.barCheckItem6.CheckedChanged += new DevExpress.XtraBars.ItemClickEventHandler(this.barCheckItem6_CheckedChanged);
     //
     // barCheckItem3
     //
     this.barCheckItem3.Caption = "3D��";
     this.barCheckItem3.Id = 76;
     this.barCheckItem3.Name = "barCheckItem3";
     this.barCheckItem3.CheckedChanged += new DevExpress.XtraBars.ItemClickEventHandler(this.barCheckItem3_CheckedChanged);
     //
     // barEditItem1
     //
     this.barEditItem1.Caption = "ͼ�����";
     this.barEditItem1.Edit = this.repositoryItemComboBox2;
     this.barEditItem1.Id = 58;
     this.barEditItem1.Name = "barEditItem1";
     this.barEditItem1.EditValueChanged += new System.EventHandler(this.barEditItem1_EditValueChanged);
     //
     // repositoryItemComboBox2
     //
     this.repositoryItemComboBox2.AutoHeight = false;
     this.repositoryItemComboBox2.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.repositoryItemComboBox2.Name = "repositoryItemComboBox2";
     //
     // barButtonItem28
     //
     this.barButtonItem28.Caption = "���û�";
     this.barButtonItem28.Id = 47;
     this.barButtonItem28.ImageIndex = 10;
     this.barButtonItem28.Name = "barButtonItem28";
     this.barButtonItem28.PaintStyle = DevExpress.XtraBars.BarItemPaintStyle.CaptionGlyph;
     this.barButtonItem28.Visibility = DevExpress.XtraBars.BarItemVisibility.Never;
     this.barButtonItem28.ItemClick += new DevExpress.XtraBars.ItemClickEventHandler(this.barButtonItem28_ItemClick);
     //
     // barButtonItem27
     //
     this.barButtonItem27.Caption = "�����ݵ�";
     this.barButtonItem27.Id = 46;
     this.barButtonItem27.ImageIndex = 10;
     this.barButtonItem27.Name = "barButtonItem27";
     this.barButtonItem27.PaintStyle = DevExpress.XtraBars.BarItemPaintStyle.CaptionGlyph;
     this.barButtonItem27.ItemClick += new DevExpress.XtraBars.ItemClickEventHandler(this.barButtonItem27_ItemClick);
     //
     // barButtonItem17
     //
     this.barButtonItem17.Caption = "��Ȩ���ϵ��";
     this.barButtonItem17.Id = 26;
     this.barButtonItem17.ImageIndex = 18;
     this.barButtonItem17.Name = "barButtonItem17";
     this.barButtonItem17.PaintStyle = DevExpress.XtraBars.BarItemPaintStyle.CaptionGlyph;
     this.barButtonItem17.Visibility = DevExpress.XtraBars.BarItemVisibility.Never;
     this.barButtonItem17.ItemClick += new DevExpress.XtraBars.ItemClickEventHandler(this.barButtonItem17_ItemClick);
     //
     // barButtonItem26
     //
     this.barButtonItem26.Caption = "�����㷨";
     this.barButtonItem26.Id = 45;
     this.barButtonItem26.ImageIndex = 18;
     this.barButtonItem26.Name = "barButtonItem26";
     this.barButtonItem26.PaintStyle = DevExpress.XtraBars.BarItemPaintStyle.CaptionGlyph;
     this.barButtonItem26.ItemClick += new DevExpress.XtraBars.ItemClickEventHandler(this.barButtonItem26_ItemClick);
     //
     // barButtonItem22
     //
     this.barButtonItem22.Caption = "ͼ����ɫ";
     this.barButtonItem22.Id = 32;
     this.barButtonItem22.ImageIndex = 10;
     this.barButtonItem22.Name = "barButtonItem22";
     this.barButtonItem22.PaintStyle = DevExpress.XtraBars.BarItemPaintStyle.CaptionGlyph;
     this.barButtonItem22.ItemClick += new DevExpress.XtraBars.ItemClickEventHandler(this.barButtonItem22_ItemClick);
     //
     // barButtonItem29
     //
     this.barButtonItem29.Caption = "����Ƚ�";
     this.barButtonItem29.Id = 48;
     this.barButtonItem29.ImageIndex = 7;
     this.barButtonItem29.Name = "barButtonItem29";
     this.barButtonItem29.PaintStyle = DevExpress.XtraBars.BarItemPaintStyle.CaptionGlyph;
     this.barButtonItem29.ItemClick += new DevExpress.XtraBars.ItemClickEventHandler(this.barButtonItem29_ItemClick);
     //
     // barButtonItem32
     //
     this.barButtonItem32.Caption = "�¶ȵ���";
     this.barButtonItem32.Id = 55;
     this.barButtonItem32.ImageIndex = 10;
     this.barButtonItem32.Name = "barButtonItem32";
     this.barButtonItem32.PaintStyle = DevExpress.XtraBars.BarItemPaintStyle.CaptionGlyph;
     this.barButtonItem32.Visibility = DevExpress.XtraBars.BarItemVisibility.Never;
     this.barButtonItem32.ItemClick += new DevExpress.XtraBars.ItemClickEventHandler(this.barButtonItem32_ItemClick);
     //
     // barButtonItem6
     //
     this.barButtonItem6.Caption = "�ر�";
     this.barButtonItem6.Id = 35;
     this.barButtonItem6.ImageIndex = 12;
     this.barButtonItem6.Name = "barButtonItem6";
     this.barButtonItem6.PaintStyle = DevExpress.XtraBars.BarItemPaintStyle.CaptionGlyph;
     this.barButtonItem6.ItemClick += new DevExpress.XtraBars.ItemClickEventHandler(this.barButtonItem6_ItemClick);
     //
     // bar2
     //
     this.bar2.BarName = "Custom 2";
     this.bar2.CanDockStyle = DevExpress.XtraBars.BarCanDockStyle.Bottom;
     this.bar2.DockCol = 0;
     this.bar2.DockRow = 0;
     this.bar2.DockStyle = DevExpress.XtraBars.BarDockStyle.Bottom;
     this.bar2.OptionsBar.AllowQuickCustomization = false;
     this.bar2.OptionsBar.DrawDragBorder = false;
     this.bar2.OptionsBar.UseWholeRow = true;
     this.bar2.Text = "Custom 2";
     //
     // imageList1
     //
     this.imageList1.ImageStream = ((System.Windows.Forms.ImageListStreamer)(resources.GetObject("imageList1.ImageStream")));
     this.imageList1.TransparentColor = System.Drawing.Color.Transparent;
     this.imageList1.Images.SetKeyName(0, "����.ico");
     this.imageList1.Images.SetKeyName(1, "�޸�.ico");
     this.imageList1.Images.SetKeyName(2, "�½�.ico");
     this.imageList1.Images.SetKeyName(3, "����¼�.ico");
     this.imageList1.Images.SetKeyName(4, "���ͬ��.ico");
     this.imageList1.Images.SetKeyName(5, "ˢ��.ico");
     this.imageList1.Images.SetKeyName(6, "��Ȩ.ico");
     this.imageList1.Images.SetKeyName(7, "����.ico");
     this.imageList1.Images.SetKeyName(8, "���.ico");
     this.imageList1.Images.SetKeyName(9, "ɾ��.ico");
     this.imageList1.Images.SetKeyName(10, "���ȹ���1.ico");
     this.imageList1.Images.SetKeyName(11, "��ɫ.ico");
     this.imageList1.Images.SetKeyName(12, "�ر�.ico");
     this.imageList1.Images.SetKeyName(13, "�ر�1.ico");
     this.imageList1.Images.SetKeyName(14, "����.ico");
     this.imageList1.Images.SetKeyName(15, "��ӡ.ico");
     this.imageList1.Images.SetKeyName(16, "������±�.ico");
     this.imageList1.Images.SetKeyName(17, "��ѯ.ico");
     this.imageList1.Images.SetKeyName(18, "����.ico");
     this.imageList1.Images.SetKeyName(19, "����.ico");
     //
     // barButtonItem5
     //
     this.barButtonItem5.Caption = "���Իع鷨";
     this.barButtonItem5.Id = 12;
     this.barButtonItem5.Name = "barButtonItem5";
     this.barButtonItem5.Visibility = DevExpress.XtraBars.BarItemVisibility.Never;
     this.barButtonItem5.ItemClick += new DevExpress.XtraBars.ItemClickEventHandler(this.barButtonItem5_ItemClick);
     //
     // barButtonItem10
     //
     this.barButtonItem10.Caption = "����";
     this.barButtonItem10.Id = 17;
     this.barButtonItem10.ImageIndex = 0;
     this.barButtonItem10.Name = "barButtonItem10";
     this.barButtonItem10.PaintStyle = DevExpress.XtraBars.BarItemPaintStyle.CaptionGlyph;
     this.barButtonItem10.ItemClick += new DevExpress.XtraBars.ItemClickEventHandler(this.barButtonItem10_ItemClick);
     //
     // barButtonItem11
     //
     this.barButtonItem11.Caption = "�ر�";
     this.barButtonItem11.Id = 18;
     this.barButtonItem11.ImageIndex = 11;
     this.barButtonItem11.Name = "barButtonItem11";
     this.barButtonItem11.PaintStyle = DevExpress.XtraBars.BarItemPaintStyle.CaptionGlyph;
     this.barButtonItem11.ItemClick += new DevExpress.XtraBars.ItemClickEventHandler(this.barButtonItem11_ItemClick);
     //
     // barSubItem2
     //
     this.barSubItem2.Caption = "barSubItem2";
     this.barSubItem2.Id = 19;
     this.barSubItem2.Name = "barSubItem2";
     //
     // barButtonItem16
     //
     this.barButtonItem16.Caption = "ȫ���Ƚ�";
     this.barButtonItem16.Id = 25;
     this.barButtonItem16.Name = "barButtonItem16";
     this.barButtonItem16.Visibility = DevExpress.XtraBars.BarItemVisibility.Never;
     //
     // barButtonItem13
     //
     this.barButtonItem13.Caption = "����ӷ���";
     this.barButtonItem13.Id = 37;
     this.barButtonItem13.Name = "barButtonItem13";
     //
     // repositoryItemComboBox1
     //
     this.repositoryItemComboBox1.AutoHeight = false;
     this.repositoryItemComboBox1.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo),
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.repositoryItemComboBox1.Name = "repositoryItemComboBox1";
     //
     // splitterControl1
     //
     this.splitterControl1.Dock = System.Windows.Forms.DockStyle.Top;
     this.splitterControl1.Location = new System.Drawing.Point(0, 34);
     this.splitterControl1.Name = "splitterControl1";
     this.splitterControl1.Size = new System.Drawing.Size(1028, 4);
     this.splitterControl1.TabIndex = 5;
     this.splitterControl1.TabStop = false;
     //
     // chart1
     //
     chartArea1.BackColor = System.Drawing.Color.White;
     chartArea1.BorderColor = System.Drawing.Color.Empty;
     chartArea1.Name = "Default";
     this.chart1.ChartAreas.Add(chartArea1);
     this.chart1.Dock = System.Windows.Forms.DockStyle.Fill;
     legend1.AutoFitText = false;
     legend1.Font = new System.Drawing.Font("Microsoft Sans Serif", 3F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     legend1.Name = "Default";
     this.chart1.Legends.Add(legend1);
     this.chart1.Location = new System.Drawing.Point(0, 0);
     this.chart1.Name = "chart1";
     series1.BorderWidth = 2;
     series1.ChartType = "Spline";
     series1.MarkerBorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(64)))), ((int)(((byte)(64)))), ((int)(((byte)(64)))));
     series1.MarkerStyle = Dundas.Charting.WinControl.MarkerStyle.Circle;
     series1.Name = "Default";
     series1.ShadowOffset = 1;
     this.chart1.Series.Add(series1);
     this.chart1.Size = new System.Drawing.Size(1022, 183);
     this.chart1.TabIndex = 10;
     this.chart1.Text = "chart1";
     this.chart1.MouseDown += new System.Windows.Forms.MouseEventHandler(this.chart1_MouseDown);
     //
     // treeList2
     //
     this.treeList2.Location = new System.Drawing.Point(660, 443);
     this.treeList2.Name = "treeList2";
     this.treeList2.Size = new System.Drawing.Size(70, 12);
     this.treeList2.TabIndex = 7;
     //
     // splitContainerControl1
     //
     this.splitContainerControl1.Dock = System.Windows.Forms.DockStyle.Fill;
     this.splitContainerControl1.Horizontal = false;
     this.splitContainerControl1.Location = new System.Drawing.Point(0, 38);
     this.splitContainerControl1.Name = "splitContainerControl1";
     this.splitContainerControl1.Panel1.Controls.Add(this.treeList1);
     this.splitContainerControl1.Panel1.Text = "splitContainerControl1_Panel1";
     this.splitContainerControl1.Panel2.Controls.Add(this.checkBox1);
     this.splitContainerControl1.Panel2.Controls.Add(this.chart1);
     this.splitContainerControl1.Panel2.Text = "splitContainerControl1_Panel2";
     this.splitContainerControl1.Size = new System.Drawing.Size(1028, 399);
     this.splitContainerControl1.SplitterPosition = 206;
     this.splitContainerControl1.TabIndex = 8;
     this.splitContainerControl1.Text = "splitContainerControl1";
     //
     // treeList1
     //
     this.treeList1.Dock = System.Windows.Forms.DockStyle.Fill;
     this.treeList1.Location = new System.Drawing.Point(0, 0);
     this.treeList1.Name = "treeList1";
     this.treeList1.OptionsView.AutoWidth = false;
     this.treeList1.Size = new System.Drawing.Size(1022, 200);
     this.treeList1.TabIndex = 1;
     this.treeList1.CellValueChanged += new DevExpress.XtraTreeList.CellValueChangedEventHandler(this.treeList1_CellValueChanged);
     this.treeList1.ShowingEditor += new System.ComponentModel.CancelEventHandler(this.treeList1_ShowingEditor);
     //
     // checkBox1
     //
     this.checkBox1.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
     this.checkBox1.AutoSize = true;
     this.checkBox1.Checked = true;
     this.checkBox1.CheckState = System.Windows.Forms.CheckState.Checked;
     this.checkBox1.Location = new System.Drawing.Point(971, 3);
     this.checkBox1.Name = "checkBox1";
     this.checkBox1.Size = new System.Drawing.Size(48, 16);
     this.checkBox1.TabIndex = 12;
     this.checkBox1.Text = "ȫѡ";
     this.checkBox1.UseVisualStyleBackColor = true;
     this.checkBox1.CheckedChanged += new System.EventHandler(this.checkBox1_CheckedChanged_1);
     //
     // imageList2
     //
     this.imageList2.ImageStream = ((System.Windows.Forms.ImageListStreamer)(resources.GetObject("imageList2.ImageStream")));
     this.imageList2.TransparentColor = System.Drawing.Color.Transparent;
     this.imageList2.Images.SetKeyName(0, "1.ico");
     this.imageList2.Images.SetKeyName(1, "2.ico");
     this.imageList2.Images.SetKeyName(2, "3.ico");
     this.imageList2.Images.SetKeyName(3, "4.ico");
     this.imageList2.Images.SetKeyName(4, "5.ico");
     this.imageList2.Images.SetKeyName(5, "6.ico");
     this.imageList2.Images.SetKeyName(6, "7.ico");
     this.imageList2.Images.SetKeyName(7, "8.ico");
     this.imageList2.Images.SetKeyName(8, "9.ico");
     this.imageList2.Images.SetKeyName(9, "10.ico");
     //
     // FormForecastAHTL
     //
     this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 12F);
     this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
     this.ClientSize = new System.Drawing.Size(1028, 455);
     this.Controls.Add(this.splitContainerControl1);
     this.Controls.Add(this.splitterControl1);
     this.Controls.Add(this.treeList2);
     this.Controls.Add(this.barDockControlLeft);
     this.Controls.Add(this.barDockControlRight);
     this.Controls.Add(this.barDockControlBottom);
     this.Controls.Add(this.barDockControlTop);
     this.Name = "FormForecastAHTL";
     this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen;
     this.Text = "����Ԥ���";
     this.WindowState = System.Windows.Forms.FormWindowState.Maximized;
     this.Load += new System.EventHandler(this.Form8Forecast_Load);
     ((System.ComponentModel.ISupportInitialize)(this.barManager1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemComboBox2)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemComboBox1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.chart1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.treeList2)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.splitContainerControl1)).EndInit();
     this.splitContainerControl1.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.treeList1)).EndInit();
     this.ResumeLayout(false);
 }
 /// <summary>
 /// Required method for Designer support - do not modify
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     this.components = new System.ComponentModel.Container();
     System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(frmWebBrowser));
     this.barManager1 = new DevExpress.XtraBars.BarManager(this.components);
     this.bar1 = new DevExpress.XtraBars.Bar();
     this.iBack = new DevExpress.XtraBars.BarLargeButtonItem();
     this.iForward = new DevExpress.XtraBars.BarLargeButtonItem();
     this.iStop = new DevExpress.XtraBars.BarLargeButtonItem();
     this.iRefresh = new DevExpress.XtraBars.BarLargeButtonItem();
     this.iHome = new DevExpress.XtraBars.BarLargeButtonItem();
     this.iSearch = new DevExpress.XtraBars.BarLargeButtonItem();
     this.iFavorites = new DevExpress.XtraBars.BarLargeButtonItem();
     this.iHistory = new DevExpress.XtraBars.BarLargeButtonItem();
     this.iMail = new DevExpress.XtraBars.BarLargeButtonItem();
     this.iPrint = new DevExpress.XtraBars.BarLargeButtonItem();
     this.iEdit = new DevExpress.XtraBars.BarLargeButtonItem();
     this.bar2 = new DevExpress.XtraBars.Bar();
     this.siFile = new DevExpress.XtraBars.BarSubItem();
     this.iOpen = new DevExpress.XtraBars.BarButtonItem();
     this.iSave = new DevExpress.XtraBars.BarButtonItem();
     this.iExit = new DevExpress.XtraBars.BarButtonItem();
     this.siView = new DevExpress.XtraBars.BarSubItem();
     this.iToolBars = new DevExpress.XtraBars.BarToolbarsListItem();
     this.siFavorites = new DevExpress.XtraBars.BarSubItem();
     this.iAdd = new DevExpress.XtraBars.BarButtonItem();
     this.siHelp = new DevExpress.XtraBars.BarSubItem();
     this.iAbout = new DevExpress.XtraBars.BarButtonItem();
     this.bar3 = new DevExpress.XtraBars.Bar();
     this.eAddress = new DevExpress.XtraBars.BarEditItem();
     this.repositoryItemComboBox1 = new DevExpress.XtraEditors.Repository.RepositoryItemComboBox();
     this.iGo = new DevExpress.XtraBars.BarButtonItem();
     this.bar4 = new DevExpress.XtraBars.Bar();
     this.iText = new DevExpress.XtraBars.BarStaticItem();
     this.eProgress = new DevExpress.XtraBars.BarEditItem();
     this.repositoryItemProgressBar1 = new DevExpress.XtraEditors.Repository.RepositoryItemProgressBar();
     this.barAndDockingController1 = new DevExpress.XtraBars.BarAndDockingController(this.components);
     this.barDockControl1 = new DevExpress.XtraBars.BarDockControl();
     this.barDockControl2 = new DevExpress.XtraBars.BarDockControl();
     this.barDockControl3 = new DevExpress.XtraBars.BarDockControl();
     this.barDockControl4 = new DevExpress.XtraBars.BarDockControl();
     this.dockManager1 = new DevExpress.XtraBars.Docking.DockManager(this.components);
     this.dockPanel1 = new DevExpress.XtraBars.Docking.DockPanel();
     this.dockPanel1_Container = new DevExpress.XtraBars.Docking.ControlContainer();
     this.ctrlFavorites1 = new ctrlFavorites();
     this.imageList2 = new System.Windows.Forms.ImageList(this.components);
     this.iMedia = new DevExpress.XtraBars.BarLargeButtonItem();
     this.ipsWXP = new DevExpress.XtraBars.BarButtonItem();
     this.ipsOXP = new DevExpress.XtraBars.BarButtonItem();
     this.ipsO2K = new DevExpress.XtraBars.BarButtonItem();
     this.ipsO3 = new DevExpress.XtraBars.BarButtonItem();
     this.ipsDefault = new DevExpress.XtraBars.BarButtonItem();
     this.imageList1 = new System.Windows.Forms.ImageList(this.components);
     this._Browser = new System.Windows.Forms.WebBrowser();
     this.timer1 = new System.Windows.Forms.Timer(this.components);
     this.hideContainerLeft = new DevExpress.XtraBars.Docking.AutoHideContainer();
     ((System.ComponentModel.ISupportInitialize)(this.barManager1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemComboBox1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemProgressBar1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.barAndDockingController1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.dockManager1)).BeginInit();
     this.dockPanel1.SuspendLayout();
     this.dockPanel1_Container.SuspendLayout();
     this.hideContainerLeft.SuspendLayout();
     this.SuspendLayout();
     //
     // barManager1
     //
     this.barManager1.Bars.AddRange(new DevExpress.XtraBars.Bar[] {
     this.bar1,
     this.bar2,
     this.bar3,
     this.bar4});
     this.barManager1.Categories.AddRange(new DevExpress.XtraBars.BarManagerCategory[] {
     new DevExpress.XtraBars.BarManagerCategory("Built-in Menus", new System.Guid("4712321c-b9cd-461f-b453-4a7791063abb")),
     new DevExpress.XtraBars.BarManagerCategory("Standard", new System.Guid("8e707040-b093-4d7e-8f27-277ae2456d3b")),
     new DevExpress.XtraBars.BarManagerCategory("Address", new System.Guid("fb82a187-cdf0-4f39-a566-c00dbaba593d")),
     new DevExpress.XtraBars.BarManagerCategory("StatusBar", new System.Guid("2ca54f89-3af6-4cbb-93d8-4a4a9387f283")),
     new DevExpress.XtraBars.BarManagerCategory("Items", new System.Guid("b086ef9d-c758-46ba-a35f-058eada7ad13")),
     new DevExpress.XtraBars.BarManagerCategory("Favorites", new System.Guid("e1ba440c-33dc-4df6-b712-79cdc4dcd983"))});
     this.barManager1.Controller = this.barAndDockingController1;
     this.barManager1.DockControls.Add(this.barDockControl1);
     this.barManager1.DockControls.Add(this.barDockControl2);
     this.barManager1.DockControls.Add(this.barDockControl3);
     this.barManager1.DockControls.Add(this.barDockControl4);
     this.barManager1.DockManager = this.dockManager1;
     this.barManager1.Form = this;
     this.barManager1.Images = this.imageList2;
     this.barManager1.Items.AddRange(new DevExpress.XtraBars.BarItem[] {
     this.siFile,
     this.siView,
     this.siFavorites,
     this.siHelp,
     this.iBack,
     this.iForward,
     this.iStop,
     this.iRefresh,
     this.iHome,
     this.iSearch,
     this.iFavorites,
     this.iMedia,
     this.iHistory,
     this.iMail,
     this.iPrint,
     this.iEdit,
     this.iGo,
     this.eAddress,
     this.iText,
     this.eProgress,
     this.iToolBars,
     this.iAbout,
     this.iExit,
     this.iAdd,
     this.iOpen,
     this.iSave,
     this.ipsWXP,
     this.ipsOXP,
     this.ipsO2K,
     this.ipsO3,
     this.ipsDefault});
     this.barManager1.LargeImages = this.imageList1;
     this.barManager1.MainMenu = this.bar2;
     this.barManager1.MaxItemId = 38;
     this.barManager1.RepositoryItems.AddRange(new DevExpress.XtraEditors.Repository.RepositoryItem[] {
     this.repositoryItemComboBox1,
     this.repositoryItemProgressBar1});
     this.barManager1.StatusBar = this.bar4;
     //
     // bar1
     //
     this.bar1.BarName = "Standard Buttons";
     this.bar1.DockCol = 0;
     this.bar1.DockRow = 1;
     this.bar1.DockStyle = DevExpress.XtraBars.BarDockStyle.Top;
     this.bar1.FloatLocation = new System.Drawing.Point(48, 104);
     this.bar1.FloatSize = new System.Drawing.Size(20, 22);
     this.bar1.LinksPersistInfo.AddRange(new DevExpress.XtraBars.LinkPersistInfo[] {
     new DevExpress.XtraBars.LinkPersistInfo(this.iBack),
     new DevExpress.XtraBars.LinkPersistInfo(this.iForward),
     new DevExpress.XtraBars.LinkPersistInfo(this.iStop),
     new DevExpress.XtraBars.LinkPersistInfo(this.iRefresh),
     new DevExpress.XtraBars.LinkPersistInfo(this.iHome),
     new DevExpress.XtraBars.LinkPersistInfo(this.iSearch, true),
     new DevExpress.XtraBars.LinkPersistInfo(this.iFavorites),
     new DevExpress.XtraBars.LinkPersistInfo(this.iHistory),
     new DevExpress.XtraBars.LinkPersistInfo(this.iMail, true),
     new DevExpress.XtraBars.LinkPersistInfo(this.iPrint),
     new DevExpress.XtraBars.LinkPersistInfo(this.iEdit)});
     this.bar1.Text = "Standard Buttons";
     //
     // iBack
     //
     this.iBack.Caption = "Back";
     this.iBack.CaptionAlignment = DevExpress.XtraBars.BarItemCaptionAlignment.Right;
     this.iBack.CategoryGuid = new System.Guid("8e707040-b093-4d7e-8f27-277ae2456d3b");
     this.iBack.Enabled = false;
     this.iBack.Hint = "Back";
     this.iBack.Id = 6;
     this.iBack.LargeImageIndex = 0;
     this.iBack.LargeImageIndexDisabled = 12;
     this.iBack.Name = "iBack";
     this.iBack.ItemClick += new DevExpress.XtraBars.ItemClickEventHandler(this.iBack_ItemClick);
     //
     // iForward
     //
     this.iForward.Caption = "Forward";
     this.iForward.CategoryGuid = new System.Guid("8e707040-b093-4d7e-8f27-277ae2456d3b");
     this.iForward.Enabled = false;
     this.iForward.Hint = "Forward";
     this.iForward.Id = 8;
     this.iForward.LargeImageIndex = 3;
     this.iForward.LargeImageIndexDisabled = 13;
     this.iForward.Name = "iForward";
     this.iForward.ShowCaptionOnBar = false;
     this.iForward.ItemClick += new DevExpress.XtraBars.ItemClickEventHandler(this.iForward_ItemClick);
     //
     // iStop
     //
     this.iStop.Caption = "Stop";
     this.iStop.CategoryGuid = new System.Guid("8e707040-b093-4d7e-8f27-277ae2456d3b");
     this.iStop.Hint = "Stop";
     this.iStop.Id = 9;
     this.iStop.LargeImageIndex = 11;
     this.iStop.Name = "iStop";
     this.iStop.ShowCaptionOnBar = false;
     this.iStop.ItemClick += new DevExpress.XtraBars.ItemClickEventHandler(this.iStop_ItemClick);
     //
     // iRefresh
     //
     this.iRefresh.Caption = "Refresh";
     this.iRefresh.CategoryGuid = new System.Guid("8e707040-b093-4d7e-8f27-277ae2456d3b");
     this.iRefresh.Hint = "Refresh";
     this.iRefresh.Id = 10;
     this.iRefresh.LargeImageIndex = 9;
     this.iRefresh.Name = "iRefresh";
     this.iRefresh.ShowCaptionOnBar = false;
     this.iRefresh.ItemClick += new DevExpress.XtraBars.ItemClickEventHandler(this.iRefresh_ItemClick);
     //
     // iHome
     //
     this.iHome.Caption = "Home";
     this.iHome.CategoryGuid = new System.Guid("8e707040-b093-4d7e-8f27-277ae2456d3b");
     this.iHome.Hint = "Home";
     this.iHome.Id = 11;
     this.iHome.LargeImageIndex = 5;
     this.iHome.Name = "iHome";
     this.iHome.ShowCaptionOnBar = false;
     this.iHome.ItemClick += new DevExpress.XtraBars.ItemClickEventHandler(this.iHome_ItemClick);
     //
     // iSearch
     //
     this.iSearch.Caption = "Search";
     this.iSearch.CaptionAlignment = DevExpress.XtraBars.BarItemCaptionAlignment.Right;
     this.iSearch.CategoryGuid = new System.Guid("8e707040-b093-4d7e-8f27-277ae2456d3b");
     this.iSearch.Hint = "Search";
     this.iSearch.Id = 12;
     this.iSearch.LargeImageIndex = 10;
     this.iSearch.Name = "iSearch";
     this.iSearch.ItemClick += new DevExpress.XtraBars.ItemClickEventHandler(this.iSearch_ItemClick);
     //
     // iFavorites
     //
     this.iFavorites.ButtonStyle = DevExpress.XtraBars.BarButtonStyle.Check;
     this.iFavorites.Caption = "Favorites";
     this.iFavorites.CaptionAlignment = DevExpress.XtraBars.BarItemCaptionAlignment.Right;
     this.iFavorites.CategoryGuid = new System.Guid("8e707040-b093-4d7e-8f27-277ae2456d3b");
     this.iFavorites.Down = true;
     this.iFavorites.Hint = "Favorites";
     this.iFavorites.Id = 13;
     this.iFavorites.LargeImageIndex = 2;
     this.iFavorites.Name = "iFavorites";
     this.iFavorites.ItemClick += new DevExpress.XtraBars.ItemClickEventHandler(this.iFavorites_ItemClick);
     //
     // iHistory
     //
     this.iHistory.Caption = "History";
     this.iHistory.CategoryGuid = new System.Guid("8e707040-b093-4d7e-8f27-277ae2456d3b");
     this.iHistory.Enabled = false;
     this.iHistory.Hint = "History";
     this.iHistory.Id = 16;
     this.iHistory.LargeImageIndex = 4;
     this.iHistory.LargeImageIndexDisabled = 14;
     this.iHistory.Name = "iHistory";
     this.iHistory.ShowCaptionOnBar = false;
     //
     // iMail
     //
     this.iMail.ButtonStyle = DevExpress.XtraBars.BarButtonStyle.DropDown;
     this.iMail.Caption = "Mail";
     this.iMail.CategoryGuid = new System.Guid("8e707040-b093-4d7e-8f27-277ae2456d3b");
     this.iMail.Enabled = false;
     this.iMail.Hint = "Mail";
     this.iMail.Id = 17;
     this.iMail.LargeImageIndex = 6;
     this.iMail.LargeImageIndexDisabled = 15;
     this.iMail.Name = "iMail";
     this.iMail.ShowCaptionOnBar = false;
     //
     // iPrint
     //
     this.iPrint.Caption = "&Print...";
     this.iPrint.CategoryGuid = new System.Guid("8e707040-b093-4d7e-8f27-277ae2456d3b");
     this.iPrint.Hint = "Print";
     this.iPrint.Id = 18;
     this.iPrint.ItemShortcut = new DevExpress.XtraBars.BarShortcut((System.Windows.Forms.Keys.Control | System.Windows.Forms.Keys.P));
     this.iPrint.LargeImageIndex = 8;
     this.iPrint.Name = "iPrint";
     this.iPrint.ShowCaptionOnBar = false;
     this.iPrint.ItemClick += new DevExpress.XtraBars.ItemClickEventHandler(this.iPrint_ItemClick);
     //
     // iEdit
     //
     this.iEdit.Caption = "Edit";
     this.iEdit.CategoryGuid = new System.Guid("8e707040-b093-4d7e-8f27-277ae2456d3b");
     this.iEdit.Hint = "Open Notepad";
     this.iEdit.Id = 19;
     this.iEdit.LargeImageIndex = 1;
     this.iEdit.Name = "iEdit";
     this.iEdit.ShowCaptionOnBar = false;
     this.iEdit.ItemClick += new DevExpress.XtraBars.ItemClickEventHandler(this.iEdit_ItemClick);
     //
     // bar2
     //
     this.bar2.BarItemHorzIndent = 6;
     this.bar2.BarName = "MainMenu";
     this.bar2.DockCol = 0;
     this.bar2.DockRow = 0;
     this.bar2.DockStyle = DevExpress.XtraBars.BarDockStyle.Top;
     this.bar2.FloatLocation = new System.Drawing.Point(39, 106);
     this.bar2.FloatSize = new System.Drawing.Size(20, 22);
     this.bar2.LinksPersistInfo.AddRange(new DevExpress.XtraBars.LinkPersistInfo[] {
     new DevExpress.XtraBars.LinkPersistInfo(this.siFile),
     new DevExpress.XtraBars.LinkPersistInfo(this.siView),
     new DevExpress.XtraBars.LinkPersistInfo(this.siFavorites),
     new DevExpress.XtraBars.LinkPersistInfo(this.siHelp)});
     this.bar2.OptionsBar.AllowQuickCustomization = false;
     this.bar2.OptionsBar.DrawDragBorder = false;
     this.bar2.OptionsBar.MultiLine = true;
     this.bar2.OptionsBar.RotateWhenVertical = false;
     this.bar2.OptionsBar.UseWholeRow = true;
     this.bar2.Text = "MainMenu";
     //
     // siFile
     //
     this.siFile.Caption = "&File";
     this.siFile.CategoryGuid = new System.Guid("4712321c-b9cd-461f-b453-4a7791063abb");
     this.siFile.Id = 0;
     this.siFile.LinksPersistInfo.AddRange(new DevExpress.XtraBars.LinkPersistInfo[] {
     new DevExpress.XtraBars.LinkPersistInfo(this.iOpen),
     new DevExpress.XtraBars.LinkPersistInfo(this.iSave),
     new DevExpress.XtraBars.LinkPersistInfo(this.iPrint, true),
     new DevExpress.XtraBars.LinkPersistInfo(this.iExit, true)});
     this.siFile.Name = "siFile";
     //
     // iOpen
     //
     this.iOpen.Caption = "&Open...";
     this.iOpen.CategoryGuid = new System.Guid("b086ef9d-c758-46ba-a35f-058eada7ad13");
     this.iOpen.Id = 29;
     this.iOpen.ImageIndex = 0;
     this.iOpen.ItemShortcut = new DevExpress.XtraBars.BarShortcut((System.Windows.Forms.Keys.Control | System.Windows.Forms.Keys.O));
     this.iOpen.Name = "iOpen";
     this.iOpen.ItemClick += new DevExpress.XtraBars.ItemClickEventHandler(this.iOpen_ItemClick);
     //
     // iSave
     //
     this.iSave.Caption = "&Save";
     this.iSave.CategoryGuid = new System.Guid("b086ef9d-c758-46ba-a35f-058eada7ad13");
     this.iSave.Enabled = false;
     this.iSave.Id = 30;
     this.iSave.ImageIndex = 1;
     this.iSave.ItemShortcut = new DevExpress.XtraBars.BarShortcut((System.Windows.Forms.Keys.Control | System.Windows.Forms.Keys.S));
     this.iSave.Name = "iSave";
     //
     // iExit
     //
     this.iExit.Caption = "E&xit";
     this.iExit.CategoryGuid = new System.Guid("b086ef9d-c758-46ba-a35f-058eada7ad13");
     this.iExit.Id = 27;
     this.iExit.Name = "iExit";
     this.iExit.ItemClick += new DevExpress.XtraBars.ItemClickEventHandler(this.iExit_ItemClick);
     //
     // siView
     //
     this.siView.Caption = "&View";
     this.siView.CategoryGuid = new System.Guid("4712321c-b9cd-461f-b453-4a7791063abb");
     this.siView.Id = 2;
     this.siView.LinksPersistInfo.AddRange(new DevExpress.XtraBars.LinkPersistInfo[] {
     new DevExpress.XtraBars.LinkPersistInfo(this.iToolBars)});
     this.siView.Name = "siView";
     //
     // iToolBars
     //
     this.iToolBars.Caption = "ToolBarsList";
     this.iToolBars.CategoryGuid = new System.Guid("4712321c-b9cd-461f-b453-4a7791063abb");
     this.iToolBars.Id = 25;
     this.iToolBars.Name = "iToolBars";
     //
     // siFavorites
     //
     this.siFavorites.Caption = "F&avorites";
     this.siFavorites.CategoryGuid = new System.Guid("4712321c-b9cd-461f-b453-4a7791063abb");
     this.siFavorites.Id = 3;
     this.siFavorites.LinksPersistInfo.AddRange(new DevExpress.XtraBars.LinkPersistInfo[] {
     new DevExpress.XtraBars.LinkPersistInfo(this.iAdd)});
     this.siFavorites.Name = "siFavorites";
     //
     // iAdd
     //
     this.iAdd.Appearance.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold);
     this.iAdd.Appearance.Options.UseFont = true;
     this.iAdd.Caption = "Add to Favorites...";
     this.iAdd.CategoryGuid = new System.Guid("b086ef9d-c758-46ba-a35f-058eada7ad13");
     this.iAdd.Id = 28;
     this.iAdd.Name = "iAdd";
     this.iAdd.ItemClick += new DevExpress.XtraBars.ItemClickEventHandler(this.iAdd_ItemClick);
     //
     // siHelp
     //
     this.siHelp.Caption = "&Help";
     this.siHelp.CategoryGuid = new System.Guid("4712321c-b9cd-461f-b453-4a7791063abb");
     this.siHelp.Id = 4;
     this.siHelp.LinksPersistInfo.AddRange(new DevExpress.XtraBars.LinkPersistInfo[] {
     new DevExpress.XtraBars.LinkPersistInfo(this.iAbout)});
     this.siHelp.Name = "siHelp";
     //
     // iAbout
     //
     this.iAbout.Caption = "&About";
     this.iAbout.CategoryGuid = new System.Guid("b086ef9d-c758-46ba-a35f-058eada7ad13");
     this.iAbout.Id = 26;
     this.iAbout.Name = "iAbout";
     this.iAbout.ItemClick += new DevExpress.XtraBars.ItemClickEventHandler(this.iAbout_ItemClick);
     //
     // bar3
     //
     this.bar3.BarName = "Address Bar";
     this.bar3.DockCol = 0;
     this.bar3.DockRow = 2;
     this.bar3.DockStyle = DevExpress.XtraBars.BarDockStyle.Top;
     this.bar3.LinksPersistInfo.AddRange(new DevExpress.XtraBars.LinkPersistInfo[] {
     new DevExpress.XtraBars.LinkPersistInfo(this.eAddress),
     new DevExpress.XtraBars.LinkPersistInfo(this.iGo)});
     this.bar3.Text = "Address Bar";
     //
     // eAddress
     //
     this.eAddress.AutoFillWidth = true;
     this.eAddress.Caption = "Addresss";
     this.eAddress.CategoryGuid = new System.Guid("fb82a187-cdf0-4f39-a566-c00dbaba593d");
     this.eAddress.Edit = this.repositoryItemComboBox1;
     this.eAddress.Id = 21;
     this.eAddress.IEBehavior = true;
     this.eAddress.Name = "eAddress";
     this.eAddress.PaintStyle = DevExpress.XtraBars.BarItemPaintStyle.CaptionGlyph;
     this.eAddress.Width = 400;
     //
     // repositoryItemComboBox1
     //
     this.repositoryItemComboBox1.AllowFocused = false;
     this.repositoryItemComboBox1.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.repositoryItemComboBox1.CycleOnDblClick = false;
     this.repositoryItemComboBox1.Name = "repositoryItemComboBox1";
     this.repositoryItemComboBox1.KeyDown += new System.Windows.Forms.KeyEventHandler(this.repositoryItemComboBox1_KeyDown);
     this.repositoryItemComboBox1.CloseUp += new DevExpress.XtraEditors.Controls.CloseUpEventHandler(this.repositoryItemComboBox1_CloseUp);
     this.repositoryItemComboBox1.SelectedIndexChanged += new System.EventHandler(this.repositoryItemComboBox1_SelectedItemChanged);
     //
     // iGo
     //
     this.iGo.Caption = "Go";
     this.iGo.CategoryGuid = new System.Guid("fb82a187-cdf0-4f39-a566-c00dbaba593d");
     this.iGo.Glyph = ((System.Drawing.Image)(resources.GetObject("iGo.Glyph")));
     this.iGo.Hint = "Go to ...";
     this.iGo.Id = 20;
     this.iGo.Name = "iGo";
     this.iGo.PaintStyle = DevExpress.XtraBars.BarItemPaintStyle.CaptionGlyph;
     this.iGo.ItemClick += new DevExpress.XtraBars.ItemClickEventHandler(this.iGo_ItemClick);
     //
     // bar4
     //
     this.bar4.BarName = "Status Bar";
     this.bar4.CanDockStyle = DevExpress.XtraBars.BarCanDockStyle.Bottom;
     this.bar4.DockCol = 0;
     this.bar4.DockRow = 0;
     this.bar4.DockStyle = DevExpress.XtraBars.BarDockStyle.Bottom;
     this.bar4.FloatLocation = new System.Drawing.Point(30, 434);
     this.bar4.FloatSize = new System.Drawing.Size(20, 22);
     this.bar4.LinksPersistInfo.AddRange(new DevExpress.XtraBars.LinkPersistInfo[] {
     new DevExpress.XtraBars.LinkPersistInfo(this.iText),
     new DevExpress.XtraBars.LinkPersistInfo(this.eProgress)});
     this.bar4.OptionsBar.AllowQuickCustomization = false;
     this.bar4.OptionsBar.DrawDragBorder = false;
     this.bar4.OptionsBar.DrawSizeGrip = true;
     this.bar4.OptionsBar.RotateWhenVertical = false;
     this.bar4.OptionsBar.UseWholeRow = true;
     this.bar4.Text = "Status Bar";
     //
     // iText
     //
     this.iText.AutoSize = DevExpress.XtraBars.BarStaticItemSize.Spring;
     this.iText.CategoryGuid = new System.Guid("2ca54f89-3af6-4cbb-93d8-4a4a9387f283");
     this.iText.Id = 22;
     this.iText.Name = "iText";
     this.iText.RightIndent = 3;
     this.iText.TextAlignment = System.Drawing.StringAlignment.Near;
     this.iText.Width = 32;
     //
     // eProgress
     //
     this.eProgress.CanOpenEdit = false;
     this.eProgress.CategoryGuid = new System.Guid("2ca54f89-3af6-4cbb-93d8-4a4a9387f283");
     this.eProgress.Edit = this.repositoryItemProgressBar1;
     this.eProgress.EditHeight = 10;
     this.eProgress.Id = 24;
     this.eProgress.Name = "eProgress";
     this.eProgress.Width = 70;
     //
     // repositoryItemProgressBar1
     //
     this.repositoryItemProgressBar1.Appearance.BackColor = System.Drawing.SystemColors.Control;
     this.repositoryItemProgressBar1.BorderStyle = DevExpress.XtraEditors.Controls.BorderStyles.NoBorder;
     this.repositoryItemProgressBar1.Name = "repositoryItemProgressBar1";
     //
     // barAndDockingController1
     //
     this.barAndDockingController1.PaintStyleName = "Skin";
     this.barAndDockingController1.PropertiesBar.AllowLinkLighting = false;
     //
     // dockManager1
     //
     this.dockManager1.AutoHideContainers.AddRange(new DevExpress.XtraBars.Docking.AutoHideContainer[] {
     this.hideContainerLeft});
     this.dockManager1.Controller = this.barAndDockingController1;
     this.dockManager1.Form = this;
     this.dockManager1.TopZIndexControls.AddRange(new string[] {
     "DevExpress.XtraBars.BarDockControl",
     "System.Windows.Forms.StatusBar"});
     //
     // dockPanel1
     //
     this.dockPanel1.Controls.Add(this.dockPanel1_Container);
     this.dockPanel1.Dock = DevExpress.XtraBars.Docking.DockingStyle.Left;
     this.dockPanel1.ID = new System.Guid("1734463f-4924-485e-9b75-59ea0e8bfee3");
     this.dockPanel1.Location = new System.Drawing.Point(0, 0);
     this.dockPanel1.Name = "dockPanel1";
     this.dockPanel1.Options.ShowCloseButton = false;
     this.dockPanel1.OriginalSize = new System.Drawing.Size(200, 200);
     this.dockPanel1.SavedDock = DevExpress.XtraBars.Docking.DockingStyle.Left;
     this.dockPanel1.SavedIndex = 0;
     this.dockPanel1.Size = new System.Drawing.Size(200, 377);
     this.dockPanel1.Text = "Favorites";
     this.dockPanel1.Visibility = DevExpress.XtraBars.Docking.DockVisibility.AutoHide;
     this.dockPanel1.VisibilityChanged += new DevExpress.XtraBars.Docking.VisibilityChangedEventHandler(this.dockPanel1_VisibilityChanged);
     //
     // dockPanel1_Container
     //
     this.dockPanel1_Container.Controls.Add(this.ctrlFavorites1);
     this.dockPanel1_Container.Location = new System.Drawing.Point(3, 25);
     this.dockPanel1_Container.Name = "dockPanel1_Container";
     this.dockPanel1_Container.Size = new System.Drawing.Size(194, 349);
     this.dockPanel1_Container.TabIndex = 0;
     //
     // ctrlFavorites1
     //
     this.ctrlFavorites1.Dock = System.Windows.Forms.DockStyle.Fill;
     this.ctrlFavorites1.Location = new System.Drawing.Point(0, 0);
     this.ctrlFavorites1.Name = "ctrlFavorites1";
     this.ctrlFavorites1.Size = new System.Drawing.Size(194, 349);
     this.ctrlFavorites1.TabIndex = 0;
     this.ctrlFavorites1.AddNewFavorite += new System.EventHandler(this.ctrlFavorites1_AddNewFavorite);
     this.ctrlFavorites1.OpenFavorite += new System.EventHandler(this.ctrlFavorites1_OpenFavorite);
     this.ctrlFavorites1.EditFavorite += new System.EventHandler(this.ctrlFavorites1_EditFavorite);
     this.ctrlFavorites1.DeleteFavorite += new System.EventHandler(this.ctrlFavorites1_DeleteFavorite);
     //
     // imageList2
     //
     this.imageList2.ImageStream = ((System.Windows.Forms.ImageListStreamer)(resources.GetObject("imageList2.ImageStream")));
     this.imageList2.TransparentColor = System.Drawing.Color.Magenta;
     this.imageList2.Images.SetKeyName(0, "");
     this.imageList2.Images.SetKeyName(1, "");
     this.imageList2.Images.SetKeyName(2, "");
     this.imageList2.Images.SetKeyName(3, "");
     this.imageList2.Images.SetKeyName(4, "");
     this.imageList2.Images.SetKeyName(5, "");
     //
     // iMedia
     //
     this.iMedia.Caption = "Media";
     this.iMedia.CaptionAlignment = DevExpress.XtraBars.BarItemCaptionAlignment.Right;
     this.iMedia.CategoryGuid = new System.Guid("8e707040-b093-4d7e-8f27-277ae2456d3b");
     this.iMedia.Hint = "Media";
     this.iMedia.Id = 15;
     this.iMedia.LargeImageIndex = 7;
     this.iMedia.Name = "iMedia";
     //
     // ipsWXP
     //
     this.ipsWXP.Caption = "Windows XP";
     this.ipsWXP.CategoryGuid = new System.Guid("b086ef9d-c758-46ba-a35f-058eada7ad13");
     this.ipsWXP.Description = "WindowsXP";
     this.ipsWXP.Id = 32;
     this.ipsWXP.ImageIndex = 4;
     this.ipsWXP.Name = "ipsWXP";
     this.ipsWXP.ItemClick += new DevExpress.XtraBars.ItemClickEventHandler(this.ips_ItemClick);
     //
     // ipsOXP
     //
     this.ipsOXP.Caption = "Office XP";
     this.ipsOXP.CategoryGuid = new System.Guid("b086ef9d-c758-46ba-a35f-058eada7ad13");
     this.ipsOXP.Description = "OfficeXP";
     this.ipsOXP.Id = 33;
     this.ipsOXP.ImageIndex = 2;
     this.ipsOXP.Name = "ipsOXP";
     this.ipsOXP.ItemClick += new DevExpress.XtraBars.ItemClickEventHandler(this.ips_ItemClick);
     //
     // ipsO2K
     //
     this.ipsO2K.Caption = "Office 2000";
     this.ipsO2K.CategoryGuid = new System.Guid("b086ef9d-c758-46ba-a35f-058eada7ad13");
     this.ipsO2K.Description = "Office2000";
     this.ipsO2K.Id = 34;
     this.ipsO2K.ImageIndex = 3;
     this.ipsO2K.Name = "ipsO2K";
     this.ipsO2K.ItemClick += new DevExpress.XtraBars.ItemClickEventHandler(this.ips_ItemClick);
     //
     // ipsO3
     //
     this.ipsO3.Caption = "Office 2003";
     this.ipsO3.CategoryGuid = new System.Guid("b086ef9d-c758-46ba-a35f-058eada7ad13");
     this.ipsO3.Description = "Office2003";
     this.ipsO3.Id = 36;
     this.ipsO3.ImageIndex = 5;
     this.ipsO3.Name = "ipsO3";
     this.ipsO3.ItemClick += new DevExpress.XtraBars.ItemClickEventHandler(this.ips_ItemClick);
     //
     // ipsDefault
     //
     this.ipsDefault.Caption = "Default";
     this.ipsDefault.CategoryGuid = new System.Guid("b086ef9d-c758-46ba-a35f-058eada7ad13");
     this.ipsDefault.Description = "Default";
     this.ipsDefault.Id = 37;
     this.ipsDefault.Name = "ipsDefault";
     this.ipsDefault.ItemClick += new DevExpress.XtraBars.ItemClickEventHandler(this.ips_ItemClick);
     //
     // imageList1
     //
     this.imageList1.ImageStream = ((System.Windows.Forms.ImageListStreamer)(resources.GetObject("imageList1.ImageStream")));
     this.imageList1.TransparentColor = System.Drawing.Color.Magenta;
     this.imageList1.Images.SetKeyName(0, "");
     this.imageList1.Images.SetKeyName(1, "");
     this.imageList1.Images.SetKeyName(2, "");
     this.imageList1.Images.SetKeyName(3, "");
     this.imageList1.Images.SetKeyName(4, "");
     this.imageList1.Images.SetKeyName(5, "");
     this.imageList1.Images.SetKeyName(6, "");
     this.imageList1.Images.SetKeyName(7, "");
     this.imageList1.Images.SetKeyName(8, "");
     this.imageList1.Images.SetKeyName(9, "");
     this.imageList1.Images.SetKeyName(10, "");
     this.imageList1.Images.SetKeyName(11, "");
     this.imageList1.Images.SetKeyName(12, "");
     this.imageList1.Images.SetKeyName(13, "");
     this.imageList1.Images.SetKeyName(14, "");
     this.imageList1.Images.SetKeyName(15, "");
     //
     // webBrowser1
     //
     this._Browser.Dock = System.Windows.Forms.DockStyle.Fill;
     this._Browser.Location = new System.Drawing.Point(19, 90);
     this._Browser.Name = "webBrowser1";
     this._Browser.Size = new System.Drawing.Size(785, 377);
     this._Browser.TabIndex = 4;
     this._Browser.ProgressChanged += new System.Windows.Forms.WebBrowserProgressChangedEventHandler(this.webBrowser1_ProgressChanged);
     this._Browser.DocumentCompleted += new System.Windows.Forms.WebBrowserDocumentCompletedEventHandler(this.webBrowser1_DocumentCompleted);
     this._Browser.Navigated += new System.Windows.Forms.WebBrowserNavigatedEventHandler(this.webBrowser1_Navigated);
     //
     // timer1
     //
     this.timer1.Enabled = true;
     this.timer1.Interval = 200;
     this.timer1.Tick += new System.EventHandler(this.timer1_Tick);
     //
     // hideContainerLeft
     //
     this.hideContainerLeft.Controls.Add(this.dockPanel1);
     this.hideContainerLeft.Dock = System.Windows.Forms.DockStyle.Left;
     this.hideContainerLeft.Location = new System.Drawing.Point(0, 90);
     this.hideContainerLeft.Name = "hideContainerLeft";
     this.hideContainerLeft.Size = new System.Drawing.Size(19, 377);
     //
     // frmWebBrowser
     //
     this.AutoScaleBaseSize = new System.Drawing.Size(5, 14);
     this.ClientSize = new System.Drawing.Size(804, 490);
     this.Controls.Add(this._Browser);
     this.Controls.Add(this.hideContainerLeft);
     this.Controls.Add(this.barDockControl3);
     this.Controls.Add(this.barDockControl4);
     this.Controls.Add(this.barDockControl2);
     this.Controls.Add(this.barDockControl1);
     this.Icon = ((System.Drawing.Icon)(resources.GetObject("$this.Icon")));
     this.Name = "frmWebBrowser";
     this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen;
     this.Text = "Web Browser";
     this.Load += new System.EventHandler(this.frmMain_Load);
     this.Closing += new System.ComponentModel.CancelEventHandler(this.frmMain_Closing);
     ((System.ComponentModel.ISupportInitialize)(this.barManager1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemComboBox1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemProgressBar1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.barAndDockingController1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.dockManager1)).EndInit();
     this.dockPanel1.ResumeLayout(false);
     this.dockPanel1_Container.ResumeLayout(false);
     this.hideContainerLeft.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(frmFWFURLBrowser));
     this.barManager1 = new DevExpress.XtraBars.BarManager(this.components);
     this.bar1 = new DevExpress.XtraBars.Bar();
     this.iBack = new DevExpress.XtraBars.BarLargeButtonItem();
     this.iForward = new DevExpress.XtraBars.BarLargeButtonItem();
     this.iRefresh = new DevExpress.XtraBars.BarLargeButtonItem();
     this.iHome = new DevExpress.XtraBars.BarLargeButtonItem();
     this.iSearch = new DevExpress.XtraBars.BarLargeButtonItem();
     this.iFavorites = new DevExpress.XtraBars.BarLargeButtonItem();
     this.iEdit = new DevExpress.XtraBars.BarLargeButtonItem();
     this.bar2 = new DevExpress.XtraBars.Bar();
     this.siFavorites = new DevExpress.XtraBars.BarSubItem();
     this.iAdd = new DevExpress.XtraBars.BarButtonItem();
     this.siFile = new DevExpress.XtraBars.BarSubItem();
     this.bar3 = new DevExpress.XtraBars.Bar();
     this.eAddress = new DevExpress.XtraBars.BarEditItem();
     this.repositoryItemComboBox1 = new DevExpress.XtraEditors.Repository.RepositoryItemComboBox();
     this.iGo = new DevExpress.XtraBars.BarButtonItem();
     this.bar4 = new DevExpress.XtraBars.Bar();
     this.iText = new DevExpress.XtraBars.BarStaticItem();
     this.eProgress = new DevExpress.XtraBars.BarEditItem();
     this.repositoryItemProgressBar1 = new DevExpress.XtraEditors.Repository.RepositoryItemProgressBar();
     this.barAndDockingController1 = new DevExpress.XtraBars.BarAndDockingController(this.components);
     this.barDockControl1 = new DevExpress.XtraBars.BarDockControl();
     this.barDockControl2 = new DevExpress.XtraBars.BarDockControl();
     this.barDockControl3 = new DevExpress.XtraBars.BarDockControl();
     this.barDockControl4 = new DevExpress.XtraBars.BarDockControl();
     this.dockManager1 = new DevExpress.XtraBars.Docking.DockManager(this.components);
     this.dockPanel1 = new DevExpress.XtraBars.Docking.DockPanel();
     this.dockPanel1_Container = new DevExpress.XtraBars.Docking.ControlContainer();
     this.ctrlFavorites1 = new ctrlFURLFavorites();
     this.imageList2 = new System.Windows.Forms.ImageList(this.components);
     this.iMedia = new DevExpress.XtraBars.BarLargeButtonItem();
     this.iToolBars = new DevExpress.XtraBars.BarToolbarsListItem();
     this.iExit = new DevExpress.XtraBars.BarButtonItem();
     this.ipsWXP = new DevExpress.XtraBars.BarButtonItem();
     this.ipsOXP = new DevExpress.XtraBars.BarButtonItem();
     this.ipsO2K = new DevExpress.XtraBars.BarButtonItem();
     this.iPaintStyle = new DevExpress.XtraBars.BarSubItem();
     this.ipsDefault = new DevExpress.XtraBars.BarButtonItem();
     this.ipsO3 = new DevExpress.XtraBars.BarButtonItem();
     this.imageList1 = new System.Windows.Forms.ImageList(this.components);
     this.ctrMdiMain = new DevExpress.XtraTabbedMdi.XtraTabbedMdiManager(this.components);
     ((System.ComponentModel.ISupportInitialize)(this.barManager1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemComboBox1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemProgressBar1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.barAndDockingController1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.dockManager1)).BeginInit();
     this.dockPanel1.SuspendLayout();
     this.dockPanel1_Container.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.ctrMdiMain)).BeginInit();
     this.SuspendLayout();
     //
     // barManager1
     //
     this.barManager1.Bars.AddRange(new DevExpress.XtraBars.Bar[] {
     this.bar1,
     this.bar2,
     this.bar3,
     this.bar4});
     this.barManager1.Categories.AddRange(new DevExpress.XtraBars.BarManagerCategory[] {
     new DevExpress.XtraBars.BarManagerCategory("Built-in Menus", new System.Guid("4712321c-b9cd-461f-b453-4a7791063abb")),
     new DevExpress.XtraBars.BarManagerCategory("Standard", new System.Guid("8e707040-b093-4d7e-8f27-277ae2456d3b")),
     new DevExpress.XtraBars.BarManagerCategory("Address", new System.Guid("fb82a187-cdf0-4f39-a566-c00dbaba593d")),
     new DevExpress.XtraBars.BarManagerCategory("StatusBar", new System.Guid("2ca54f89-3af6-4cbb-93d8-4a4a9387f283")),
     new DevExpress.XtraBars.BarManagerCategory("Items", new System.Guid("b086ef9d-c758-46ba-a35f-058eada7ad13")),
     new DevExpress.XtraBars.BarManagerCategory("Favorites", new System.Guid("e1ba440c-33dc-4df6-b712-79cdc4dcd983"))});
     this.barManager1.Controller = this.barAndDockingController1;
     this.barManager1.DockControls.Add(this.barDockControl1);
     this.barManager1.DockControls.Add(this.barDockControl2);
     this.barManager1.DockControls.Add(this.barDockControl3);
     this.barManager1.DockControls.Add(this.barDockControl4);
     this.barManager1.DockManager = this.dockManager1;
     this.barManager1.Form = this;
     this.barManager1.Images = this.imageList2;
     this.barManager1.Items.AddRange(new DevExpress.XtraBars.BarItem[] {
     this.siFile,
     this.siFavorites,
     this.iBack,
     this.iForward,
     this.iRefresh,
     this.iHome,
     this.iSearch,
     this.iFavorites,
     this.iMedia,
     this.iEdit,
     this.iGo,
     this.eAddress,
     this.iText,
     this.eProgress,
     this.iToolBars,
     this.iExit,
     this.iAdd,
     this.ipsWXP,
     this.ipsOXP,
     this.ipsO2K,
     this.iPaintStyle,
     this.ipsO3,
     this.ipsDefault});
     this.barManager1.LargeImages = this.imageList1;
     this.barManager1.MainMenu = this.bar2;
     this.barManager1.MaxItemId = 39;
     this.barManager1.RepositoryItems.AddRange(new DevExpress.XtraEditors.Repository.RepositoryItem[] {
     this.repositoryItemComboBox1,
     this.repositoryItemProgressBar1});
     this.barManager1.StatusBar = this.bar4;
     //
     // bar1
     //
     this.bar1.BarName = "Standard Buttons";
     this.bar1.DockCol = 0;
     this.bar1.DockRow = 1;
     this.bar1.DockStyle = DevExpress.XtraBars.BarDockStyle.Top;
     this.bar1.FloatLocation = new System.Drawing.Point(48, 104);
     this.bar1.FloatSize = new System.Drawing.Size(20, 22);
     this.bar1.LinksPersistInfo.AddRange(new DevExpress.XtraBars.LinkPersistInfo[] {
     new DevExpress.XtraBars.LinkPersistInfo(this.iBack),
     new DevExpress.XtraBars.LinkPersistInfo(this.iForward),
     new DevExpress.XtraBars.LinkPersistInfo(this.iRefresh),
     new DevExpress.XtraBars.LinkPersistInfo(this.iHome),
     new DevExpress.XtraBars.LinkPersistInfo(this.iSearch, true),
     new DevExpress.XtraBars.LinkPersistInfo(this.iFavorites),
     new DevExpress.XtraBars.LinkPersistInfo(this.iEdit)});
     this.bar1.OptionsBar.AllowQuickCustomization = false;
     this.bar1.Text = "Standard Buttons";
     //
     // iBack
     //
     this.iBack.CaptionAlignment = DevExpress.XtraBars.BarItemCaptionAlignment.Right;
     this.iBack.CategoryGuid = new System.Guid("8e707040-b093-4d7e-8f27-277ae2456d3b");
     this.iBack.Enabled = false;
     this.iBack.Hint = "Back";
     this.iBack.Id = 6;
     this.iBack.LargeImageIndex = 0;
     this.iBack.LargeImageIndexDisabled = 12;
     this.iBack.Name = "iBack";
     this.iBack.ItemClick += new DevExpress.XtraBars.ItemClickEventHandler(this.iBack_ItemClick);
     //
     // iForward
     //
     this.iForward.CategoryGuid = new System.Guid("8e707040-b093-4d7e-8f27-277ae2456d3b");
     this.iForward.Enabled = false;
     this.iForward.Hint = "Forward";
     this.iForward.Id = 8;
     this.iForward.LargeImageIndex = 3;
     this.iForward.LargeImageIndexDisabled = 13;
     this.iForward.Name = "iForward";
     this.iForward.ShowCaptionOnBar = false;
     this.iForward.ItemClick += new DevExpress.XtraBars.ItemClickEventHandler(this.iForward_ItemClick);
     //
     // iRefresh
     //
     this.iRefresh.Caption = "Refresh";
     this.iRefresh.CategoryGuid = new System.Guid("8e707040-b093-4d7e-8f27-277ae2456d3b");
     this.iRefresh.Hint = "Refresh";
     this.iRefresh.Id = 10;
     this.iRefresh.LargeImageIndex = 9;
     this.iRefresh.Name = "iRefresh";
     this.iRefresh.ShowCaptionOnBar = false;
     this.iRefresh.Visibility = DevExpress.XtraBars.BarItemVisibility.OnlyInCustomizing;
     this.iRefresh.ItemClick += new DevExpress.XtraBars.ItemClickEventHandler(this.iRefresh_ItemClick);
     //
     // iHome
     //
     this.iHome.Caption = "Home";
     this.iHome.CategoryGuid = new System.Guid("8e707040-b093-4d7e-8f27-277ae2456d3b");
     this.iHome.Hint = "Home";
     this.iHome.Id = 11;
     this.iHome.LargeImageIndex = 5;
     this.iHome.Name = "iHome";
     this.iHome.ShowCaptionOnBar = false;
     this.iHome.Visibility = DevExpress.XtraBars.BarItemVisibility.OnlyInCustomizing;
     this.iHome.ItemClick += new DevExpress.XtraBars.ItemClickEventHandler(this.iHome_ItemClick);
     //
     // iSearch
     //
     this.iSearch.Caption = "Tìm FURL";
     this.iSearch.CaptionAlignment = DevExpress.XtraBars.BarItemCaptionAlignment.Right;
     this.iSearch.CategoryGuid = new System.Guid("8e707040-b093-4d7e-8f27-277ae2456d3b");
     this.iSearch.Hint = "Search";
     this.iSearch.Id = 12;
     this.iSearch.LargeImageIndex = 10;
     this.iSearch.Name = "iSearch";
     this.iSearch.ItemClick += new DevExpress.XtraBars.ItemClickEventHandler(this.iSearch_ItemClick);
     //
     // iFavorites
     //
     this.iFavorites.ButtonStyle = DevExpress.XtraBars.BarButtonStyle.Check;
     this.iFavorites.Caption = "Sổ địa chỉ";
     this.iFavorites.CaptionAlignment = DevExpress.XtraBars.BarItemCaptionAlignment.Right;
     this.iFavorites.CategoryGuid = new System.Guid("8e707040-b093-4d7e-8f27-277ae2456d3b");
     this.iFavorites.Down = true;
     this.iFavorites.Hint = "Favorites";
     this.iFavorites.Id = 13;
     this.iFavorites.LargeImageIndex = 2;
     this.iFavorites.Name = "iFavorites";
     this.iFavorites.ItemClick += new DevExpress.XtraBars.ItemClickEventHandler(this.iFavorites_ItemClick);
     //
     // iEdit
     //
     this.iEdit.Caption = "Edit";
     this.iEdit.CategoryGuid = new System.Guid("8e707040-b093-4d7e-8f27-277ae2456d3b");
     this.iEdit.Hint = "Open Notepad";
     this.iEdit.Id = 19;
     this.iEdit.LargeImageIndex = 1;
     this.iEdit.Name = "iEdit";
     this.iEdit.ShowCaptionOnBar = false;
     this.iEdit.Visibility = DevExpress.XtraBars.BarItemVisibility.Never;
     this.iEdit.ItemClick += new DevExpress.XtraBars.ItemClickEventHandler(this.iEdit_ItemClick);
     //
     // bar2
     //
     this.bar2.BarItemHorzIndent = 6;
     this.bar2.BarName = "MainMenu";
     this.bar2.DockCol = 0;
     this.bar2.DockRow = 0;
     this.bar2.DockStyle = DevExpress.XtraBars.BarDockStyle.Top;
     this.bar2.FloatLocation = new System.Drawing.Point(39, 106);
     this.bar2.FloatSize = new System.Drawing.Size(20, 22);
     this.bar2.LinksPersistInfo.AddRange(new DevExpress.XtraBars.LinkPersistInfo[] {
     new DevExpress.XtraBars.LinkPersistInfo(this.siFavorites),
     new DevExpress.XtraBars.LinkPersistInfo(this.siFile)});
     this.bar2.OptionsBar.AllowQuickCustomization = false;
     this.bar2.OptionsBar.DrawDragBorder = false;
     this.bar2.OptionsBar.MultiLine = true;
     this.bar2.OptionsBar.RotateWhenVertical = false;
     this.bar2.OptionsBar.UseWholeRow = true;
     this.bar2.Text = "MainMenu";
     //
     // siFavorites
     //
     this.siFavorites.Caption = "Sổ địa chỉ";
     this.siFavorites.CategoryGuid = new System.Guid("4712321c-b9cd-461f-b453-4a7791063abb");
     this.siFavorites.Id = 3;
     this.siFavorites.LinksPersistInfo.AddRange(new DevExpress.XtraBars.LinkPersistInfo[] {
     new DevExpress.XtraBars.LinkPersistInfo(this.iAdd)});
     this.siFavorites.Name = "siFavorites";
     //
     // iAdd
     //
     this.iAdd.Caption = "Thêm FURL vào sổ";
     this.iAdd.CategoryGuid = new System.Guid("b086ef9d-c758-46ba-a35f-058eada7ad13");
     this.iAdd.Id = 28;
     this.iAdd.Name = "iAdd";
     this.iAdd.OwnFont = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold);
     this.iAdd.UseOwnFont = true;
     this.iAdd.ItemClick += new DevExpress.XtraBars.ItemClickEventHandler(this.iAdd_ItemClick);
     //
     // siFile
     //
     this.siFile.Caption = "Đóng";
     this.siFile.CategoryGuid = new System.Guid("4712321c-b9cd-461f-b453-4a7791063abb");
     this.siFile.Id = 0;
     this.siFile.Name = "siFile";
     this.siFile.ItemClick += new DevExpress.XtraBars.ItemClickEventHandler(this.siFile_ItemClick);
     //
     // bar3
     //
     this.bar3.BarName = "Address Bar";
     this.bar3.DockCol = 1;
     this.bar3.DockRow = 1;
     this.bar3.DockStyle = DevExpress.XtraBars.BarDockStyle.Top;
     this.bar3.LinksPersistInfo.AddRange(new DevExpress.XtraBars.LinkPersistInfo[] {
     new DevExpress.XtraBars.LinkPersistInfo(this.eAddress),
     new DevExpress.XtraBars.LinkPersistInfo(this.iGo)});
     this.bar3.Offset = 401;
     this.bar3.OptionsBar.AllowQuickCustomization = false;
     this.bar3.Text = "Address Bar";
     //
     // eAddress
     //
     this.eAddress.AutoFillWidth = true;
     this.eAddress.Caption = "FURL";
     this.eAddress.CategoryGuid = new System.Guid("fb82a187-cdf0-4f39-a566-c00dbaba593d");
     this.eAddress.Edit = this.repositoryItemComboBox1;
     this.eAddress.Id = 21;
     this.eAddress.IEBehavior = true;
     this.eAddress.Name = "eAddress";
     this.eAddress.PaintStyle = DevExpress.XtraBars.BarItemPaintStyle.CaptionGlyph;
     this.eAddress.Width = 400;
     //
     // repositoryItemComboBox1
     //
     this.repositoryItemComboBox1.AllowFocused = false;
     this.repositoryItemComboBox1.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.repositoryItemComboBox1.CycleOnDblClick = false;
     this.repositoryItemComboBox1.Name = "repositoryItemComboBox1";
     this.repositoryItemComboBox1.KeyDown += new System.Windows.Forms.KeyEventHandler(this.repositoryItemComboBox1_KeyDown);
     this.repositoryItemComboBox1.SelectedIndexChanged += new System.EventHandler(this.repositoryItemComboBox1_SelectedItemChanged);
     //
     // iGo
     //
     this.iGo.Caption = "Truy cập";
     this.iGo.CategoryGuid = new System.Guid("fb82a187-cdf0-4f39-a566-c00dbaba593d");
     this.iGo.Glyph = ((System.Drawing.Image)(resources.GetObject("iGo.Glyph")));
     this.iGo.Hint = "Go to ...";
     this.iGo.Id = 20;
     this.iGo.Name = "iGo";
     this.iGo.PaintStyle = DevExpress.XtraBars.BarItemPaintStyle.CaptionGlyph;
     this.iGo.ItemClick += new DevExpress.XtraBars.ItemClickEventHandler(this.iGo_ItemClick);
     //
     // bar4
     //
     this.bar4.BarName = "Status Bar";
     this.bar4.CanDockStyle = DevExpress.XtraBars.BarCanDockStyle.Bottom;
     this.bar4.DockCol = 0;
     this.bar4.DockRow = 0;
     this.bar4.DockStyle = DevExpress.XtraBars.BarDockStyle.Bottom;
     this.bar4.FloatLocation = new System.Drawing.Point(30, 434);
     this.bar4.FloatSize = new System.Drawing.Size(20, 22);
     this.bar4.LinksPersistInfo.AddRange(new DevExpress.XtraBars.LinkPersistInfo[] {
     new DevExpress.XtraBars.LinkPersistInfo(this.iText),
     new DevExpress.XtraBars.LinkPersistInfo(this.eProgress)});
     this.bar4.OptionsBar.AllowQuickCustomization = false;
     this.bar4.OptionsBar.DrawDragBorder = false;
     this.bar4.OptionsBar.DrawSizeGrip = true;
     this.bar4.OptionsBar.RotateWhenVertical = false;
     this.bar4.OptionsBar.UseWholeRow = true;
     this.bar4.Text = "Status Bar";
     this.bar4.Visible = false;
     //
     // iText
     //
     this.iText.AutoSize = DevExpress.XtraBars.BarStaticItemSize.Spring;
     this.iText.CategoryGuid = new System.Guid("2ca54f89-3af6-4cbb-93d8-4a4a9387f283");
     this.iText.Id = 22;
     this.iText.Name = "iText";
     this.iText.RightIndent = 3;
     this.iText.TextAlignment = System.Drawing.StringAlignment.Near;
     this.iText.Width = 32;
     //
     // eProgress
     //
     this.eProgress.CanOpenEdit = false;
     this.eProgress.CategoryGuid = new System.Guid("2ca54f89-3af6-4cbb-93d8-4a4a9387f283");
     this.eProgress.Edit = this.repositoryItemProgressBar1;
     this.eProgress.EditHeight = 10;
     this.eProgress.Id = 24;
     this.eProgress.Name = "eProgress";
     this.eProgress.Width = 70;
     //
     // repositoryItemProgressBar1
     //
     this.repositoryItemProgressBar1.Appearance.BackColor = System.Drawing.SystemColors.Control;
     this.repositoryItemProgressBar1.Appearance.Options.UseBackColor = true;
     this.repositoryItemProgressBar1.BorderStyle = DevExpress.XtraEditors.Controls.BorderStyles.NoBorder;
     this.repositoryItemProgressBar1.Name = "repositoryItemProgressBar1";
     //
     // barAndDockingController1
     //
     this.barAndDockingController1.PaintStyleName = "Skin";
     this.barAndDockingController1.PropertiesBar.AllowLinkLighting = false;
     //
     // dockManager1
     //
     this.dockManager1.Controller = this.barAndDockingController1;
     this.dockManager1.Form = this;
     this.dockManager1.RootPanels.AddRange(new DevExpress.XtraBars.Docking.DockPanel[] {
     this.dockPanel1});
     this.dockManager1.TopZIndexControls.AddRange(new string[] {
     "DevExpress.XtraBars.BarDockControl",
     "System.Windows.Forms.StatusBar"});
     //
     // dockPanel1
     //
     this.dockPanel1.Controls.Add(this.dockPanel1_Container);
     this.dockPanel1.Dock = DevExpress.XtraBars.Docking.DockingStyle.Left;
     this.dockPanel1.ID = new System.Guid("1734463f-4924-485e-9b75-59ea0e8bfee3");
     this.dockPanel1.Location = new System.Drawing.Point(0, 60);
     this.dockPanel1.Name = "dockPanel1";
     this.dockPanel1.Options.AllowDockBottom = false;
     this.dockPanel1.Options.AllowDockFill = false;
     this.dockPanel1.Options.AllowDockRight = false;
     this.dockPanel1.Options.AllowDockTop = false;
     this.dockPanel1.Options.AllowFloating = false;
     this.dockPanel1.Options.FloatOnDblClick = false;
     this.dockPanel1.Options.ShowCloseButton = false;
     this.dockPanel1.Options.ShowMaximizeButton = false;
     this.dockPanel1.Size = new System.Drawing.Size(159, 404);
     this.dockPanel1.Text = "Sổ địa chỉ";
     this.dockPanel1.VisibilityChanged += new DevExpress.XtraBars.Docking.VisibilityChangedEventHandler(this.dockPanel1_VisibilityChanged);
     //
     // dockPanel1_Container
     //
     this.dockPanel1_Container.Controls.Add(this.ctrlFavorites1);
     this.dockPanel1_Container.Location = new System.Drawing.Point(3, 25);
     this.dockPanel1_Container.Name = "dockPanel1_Container";
     this.dockPanel1_Container.Size = new System.Drawing.Size(153, 376);
     this.dockPanel1_Container.TabIndex = 0;
     //
     // ctrlFavorites1
     //
     this.ctrlFavorites1.Dock = System.Windows.Forms.DockStyle.Fill;
     this.ctrlFavorites1.Location = new System.Drawing.Point(0, 0);
     this.ctrlFavorites1.Name = "ctrlFavorites1";
     this.ctrlFavorites1.Size = new System.Drawing.Size(153, 376);
     this.ctrlFavorites1.TabIndex = 0;
     this.ctrlFavorites1.AddNewFavorite += new System.EventHandler(this.ctrlFavorites1_AddNewFavorite);
     this.ctrlFavorites1.OpenFavorite += new System.EventHandler(this.ctrlFavorites1_OpenFavorite);
     this.ctrlFavorites1.EditFavorite += new System.EventHandler(this.ctrlFavorites1_EditFavorite);
     this.ctrlFavorites1.DeleteFavorite += new System.EventHandler(this.ctrlFavorites1_DeleteFavorite);
     //
     // imageList2
     //
     this.imageList2.ImageStream = ((System.Windows.Forms.ImageListStreamer)(resources.GetObject("imageList2.ImageStream")));
     this.imageList2.TransparentColor = System.Drawing.Color.Magenta;
     this.imageList2.Images.SetKeyName(0, "");
     this.imageList2.Images.SetKeyName(1, "");
     this.imageList2.Images.SetKeyName(2, "");
     this.imageList2.Images.SetKeyName(3, "");
     this.imageList2.Images.SetKeyName(4, "");
     this.imageList2.Images.SetKeyName(5, "");
     //
     // iMedia
     //
     this.iMedia.Caption = "Media";
     this.iMedia.CaptionAlignment = DevExpress.XtraBars.BarItemCaptionAlignment.Right;
     this.iMedia.CategoryGuid = new System.Guid("8e707040-b093-4d7e-8f27-277ae2456d3b");
     this.iMedia.Hint = "Media";
     this.iMedia.Id = 15;
     this.iMedia.LargeImageIndex = 7;
     this.iMedia.Name = "iMedia";
     //
     // iToolBars
     //
     this.iToolBars.Caption = "ToolBarsList";
     this.iToolBars.CategoryGuid = new System.Guid("4712321c-b9cd-461f-b453-4a7791063abb");
     this.iToolBars.Id = 25;
     this.iToolBars.Name = "iToolBars";
     //
     // iExit
     //
     this.iExit.Caption = "Đóng";
     this.iExit.CategoryGuid = new System.Guid("b086ef9d-c758-46ba-a35f-058eada7ad13");
     this.iExit.Id = 27;
     this.iExit.Name = "iExit";
     this.iExit.ItemClick += new DevExpress.XtraBars.ItemClickEventHandler(this.iExit_ItemClick);
     //
     // ipsWXP
     //
     this.ipsWXP.Caption = "Windows XP";
     this.ipsWXP.CategoryGuid = new System.Guid("b086ef9d-c758-46ba-a35f-058eada7ad13");
     this.ipsWXP.Description = "WindowsXP";
     this.ipsWXP.Id = 32;
     this.ipsWXP.ImageIndex = 4;
     this.ipsWXP.Name = "ipsWXP";
     this.ipsWXP.ItemClick += new DevExpress.XtraBars.ItemClickEventHandler(this.ips_ItemClick);
     //
     // ipsOXP
     //
     this.ipsOXP.Caption = "Office XP";
     this.ipsOXP.CategoryGuid = new System.Guid("b086ef9d-c758-46ba-a35f-058eada7ad13");
     this.ipsOXP.Description = "OfficeXP";
     this.ipsOXP.Id = 33;
     this.ipsOXP.ImageIndex = 2;
     this.ipsOXP.Name = "ipsOXP";
     this.ipsOXP.ItemClick += new DevExpress.XtraBars.ItemClickEventHandler(this.ips_ItemClick);
     //
     // ipsO2K
     //
     this.ipsO2K.Caption = "Office 2000";
     this.ipsO2K.CategoryGuid = new System.Guid("b086ef9d-c758-46ba-a35f-058eada7ad13");
     this.ipsO2K.Description = "Office2000";
     this.ipsO2K.Id = 34;
     this.ipsO2K.ImageIndex = 3;
     this.ipsO2K.Name = "ipsO2K";
     this.ipsO2K.ItemClick += new DevExpress.XtraBars.ItemClickEventHandler(this.ips_ItemClick);
     //
     // iPaintStyle
     //
     this.iPaintStyle.Caption = "Paint Style";
     this.iPaintStyle.CategoryGuid = new System.Guid("b086ef9d-c758-46ba-a35f-058eada7ad13");
     this.iPaintStyle.Id = 35;
     this.iPaintStyle.LinksPersistInfo.AddRange(new DevExpress.XtraBars.LinkPersistInfo[] {
     new DevExpress.XtraBars.LinkPersistInfo(this.ipsDefault),
     new DevExpress.XtraBars.LinkPersistInfo(this.ipsWXP),
     new DevExpress.XtraBars.LinkPersistInfo(this.ipsOXP),
     new DevExpress.XtraBars.LinkPersistInfo(this.ipsO2K),
     new DevExpress.XtraBars.LinkPersistInfo(this.ipsO3)});
     this.iPaintStyle.Name = "iPaintStyle";
     this.iPaintStyle.PaintStyle = DevExpress.XtraBars.BarItemPaintStyle.CaptionGlyph;
     //
     // ipsDefault
     //
     this.ipsDefault.Caption = "Default";
     this.ipsDefault.CategoryGuid = new System.Guid("b086ef9d-c758-46ba-a35f-058eada7ad13");
     this.ipsDefault.Description = "Default";
     this.ipsDefault.Id = 37;
     this.ipsDefault.Name = "ipsDefault";
     this.ipsDefault.ItemClick += new DevExpress.XtraBars.ItemClickEventHandler(this.ips_ItemClick);
     //
     // ipsO3
     //
     this.ipsO3.Caption = "Office 2003";
     this.ipsO3.CategoryGuid = new System.Guid("b086ef9d-c758-46ba-a35f-058eada7ad13");
     this.ipsO3.Description = "Office2003";
     this.ipsO3.Id = 36;
     this.ipsO3.ImageIndex = 5;
     this.ipsO3.Name = "ipsO3";
     this.ipsO3.ItemClick += new DevExpress.XtraBars.ItemClickEventHandler(this.ips_ItemClick);
     //
     // imageList1
     //
     this.imageList1.ImageStream = ((System.Windows.Forms.ImageListStreamer)(resources.GetObject("imageList1.ImageStream")));
     this.imageList1.TransparentColor = System.Drawing.Color.Magenta;
     this.imageList1.Images.SetKeyName(0, "");
     this.imageList1.Images.SetKeyName(1, "");
     this.imageList1.Images.SetKeyName(2, "");
     this.imageList1.Images.SetKeyName(3, "");
     this.imageList1.Images.SetKeyName(4, "");
     this.imageList1.Images.SetKeyName(5, "");
     this.imageList1.Images.SetKeyName(6, "");
     this.imageList1.Images.SetKeyName(7, "");
     this.imageList1.Images.SetKeyName(8, "");
     this.imageList1.Images.SetKeyName(9, "");
     this.imageList1.Images.SetKeyName(10, "");
     this.imageList1.Images.SetKeyName(11, "");
     this.imageList1.Images.SetKeyName(12, "");
     this.imageList1.Images.SetKeyName(13, "");
     this.imageList1.Images.SetKeyName(14, "");
     this.imageList1.Images.SetKeyName(15, "");
     //
     // ctrMdiMain
     //
     this.ctrMdiMain.Controller = this.barAndDockingController1;
     this.ctrMdiMain.MdiParent = this;
     this.ctrMdiMain.SelectedPageChanged += new System.EventHandler(this.ctrMdiMain_SelectedPageChanged);
     this.ctrMdiMain.PageRemoved += new DevExpress.XtraTabbedMdi.MdiTabPageEventHandler(this.ctrMdiMain_PageRemoved);
     //
     // frmBrowser
     //
     this.AutoScaleBaseSize = new System.Drawing.Size(5, 14);
     this.ClientSize = new System.Drawing.Size(668, 490);
     this.Controls.Add(this.dockPanel1);
     this.Controls.Add(this.barDockControl3);
     this.Controls.Add(this.barDockControl4);
     this.Controls.Add(this.barDockControl2);
     this.Controls.Add(this.barDockControl1);
     this.IsMdiContainer = true;
     this.Name = "frmBrowser";
     this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen;
     this.Text = "Trình duyệt FURL";
     this.WindowState = System.Windows.Forms.FormWindowState.Maximized;
     this.Closing += new System.ComponentModel.CancelEventHandler(this.frmMain_Closing);
     ((System.ComponentModel.ISupportInitialize)(this.barManager1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemComboBox1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemProgressBar1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.barAndDockingController1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.dockManager1)).EndInit();
     this.dockPanel1.ResumeLayout(false);
     this.dockPanel1_Container.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.ctrMdiMain)).EndInit();
     this.ResumeLayout(false);
 }
 /// <summary>
 /// Required method for Designer support - do not modify
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     this.components = new System.ComponentModel.Container();
     DevExpress.XtraGrid.GridLevelNode gridLevelNode1 = new DevExpress.XtraGrid.GridLevelNode();
     System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(FrmListarCotizaciones));
     this.gridViewOpciones = new DevExpress.XtraGrid.Views.Grid.GridView();
     this.Col_Numero = new DevExpress.XtraGrid.Columns.GridColumn();
     this.Col_Fecha_Inicio = new DevExpress.XtraGrid.Columns.GridColumn();
     this.repositoryItemDateEdit1 = new DevExpress.XtraEditors.Repository.RepositoryItemDateEdit();
     this.Col_Fecha_Termino = new DevExpress.XtraGrid.Columns.GridColumn();
     this.Col_Naviera = new DevExpress.XtraGrid.Columns.GridColumn();
     this.repositoryItemTextEdit1 = new DevExpress.XtraEditors.Repository.RepositoryItemTextEdit();
     this.Col_Fecha_Creacion = new DevExpress.XtraGrid.Columns.GridColumn();
     this.Col_Fecha_Estado = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridSLeads = new DevExpress.XtraGrid.GridControl();
     this.gridViewSLeads = new DevExpress.XtraGrid.Views.Grid.GridView();
     this.gridColumn3 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn7 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColContacto = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColCuenta = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn4 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn2 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.Checkbox = new DevExpress.XtraGrid.Columns.GridColumn();
     this.repositoryItemCheckEdit3 = new DevExpress.XtraEditors.Repository.RepositoryItemCheckEdit();
     this.GridColumnFollowup = new DevExpress.XtraGrid.Columns.GridColumn();
     this.repositoryItemImageComboBox1 = new DevExpress.XtraEditors.Repository.RepositoryItemImageComboBox();
     this.ImageCollection = new DevExpress.Utils.ImageCollection(this.components);
     this.gridColumn6 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.repositoryItemComboBox1 = new DevExpress.XtraEditors.Repository.RepositoryItemComboBox();
     this.repositoryItemCheckEdit4 = new DevExpress.XtraEditors.Repository.RepositoryItemCheckEdit();
     this.ctrldxError = new DevExpress.XtraEditors.DXErrorProvider.DXErrorProvider(this.components);
     this.MenuSalir = new System.Windows.Forms.ToolStripButton();
     this.toolStripSeparator4 = new System.Windows.Forms.ToolStripSeparator();
     this.MenuExcel = new System.Windows.Forms.ToolStripButton();
     this.toolStripSeparator3 = new System.Windows.Forms.ToolStripSeparator();
     this.toolStripBarraLlamada = new System.Windows.Forms.ToolStrip();
     this.toolStripSeparator2 = new System.Windows.Forms.ToolStripSeparator();
     this.toolStripButton2 = new System.Windows.Forms.ToolStripButton();
     this.MenuEnviarAlCliente = new System.Windows.Forms.ToolStripButton();
     this.MenuCopiar = new System.Windows.Forms.ToolStripButton();
     this.MenuActualizar = new System.Windows.Forms.ToolStripButton();
     this.MenuFollowup = new System.Windows.Forms.ToolStripButton();
     this.toolStripSeparator1 = new System.Windows.Forms.ToolStripSeparator();
     this.toolStripLabel1 = new System.Windows.Forms.ToolStripLabel();
     this.ListSemanas = new System.Windows.Forms.ToolStripComboBox();
     this.gridProspectos = new DevExpress.XtraEditors.GroupControl();
     this.groupBox1 = new System.Windows.Forms.GroupBox();
     this.cboEstado = new DevExpress.XtraEditors.ComboBoxEdit();
     this.txtComentario = new DevExpress.XtraEditors.MemoEdit();
     this.btnGuardarComentario = new System.Windows.Forms.Button();
     this.label2 = new System.Windows.Forms.Label();
     this.label1 = new System.Windows.Forms.Label();
     this.gridComentarios = new DevExpress.XtraGrid.GridControl();
     this.gridViewComentario = new DevExpress.XtraGrid.Views.Grid.GridView();
     this.gridColumn20 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn21 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn22 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn23 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.repositoryItemCheckEdit2 = new DevExpress.XtraEditors.Repository.RepositoryItemCheckEdit();
     this.repositoryItemComboBox2 = new DevExpress.XtraEditors.Repository.RepositoryItemComboBox();
     this.repositoryItemCheckEdit1 = new DevExpress.XtraEditors.Repository.RepositoryItemCheckEdit();
     this.repositoryItemTextEdit2 = new DevExpress.XtraEditors.Repository.RepositoryItemTextEdit();
     this.repositoryItemDateEdit2 = new DevExpress.XtraEditors.Repository.RepositoryItemDateEdit();
     this.gridView1 = new DevExpress.XtraGrid.Views.Grid.GridView();
     this.gridColumn1 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn5 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn15 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn16 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn17 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn18 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn19 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.pictureBox1 = new System.Windows.Forms.PictureBox();
     this.label3 = new System.Windows.Forms.Label();
     this.pictureBox2 = new System.Windows.Forms.PictureBox();
     this.label4 = new System.Windows.Forms.Label();
     this.pictureBox3 = new System.Windows.Forms.PictureBox();
     this.label5 = new System.Windows.Forms.Label();
     ((System.ComponentModel.ISupportInitialize)(this.gridViewOpciones)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemDateEdit1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemDateEdit1.VistaTimeProperties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemTextEdit1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridSLeads)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridViewSLeads)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemCheckEdit3)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemImageComboBox1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.ImageCollection)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemComboBox1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemCheckEdit4)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.ctrldxError)).BeginInit();
     this.toolStripBarraLlamada.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.gridProspectos)).BeginInit();
     this.gridProspectos.SuspendLayout();
     this.groupBox1.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.cboEstado.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtComentario.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridComentarios)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridViewComentario)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemCheckEdit2)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemComboBox2)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemCheckEdit1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemTextEdit2)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemDateEdit2)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemDateEdit2.VistaTimeProperties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridView1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.pictureBox1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.pictureBox2)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.pictureBox3)).BeginInit();
     this.SuspendLayout();
     //
     // gridViewOpciones
     //
     this.gridViewOpciones.Columns.AddRange(new DevExpress.XtraGrid.Columns.GridColumn[] {
     this.Col_Numero,
     this.Col_Fecha_Inicio,
     this.Col_Fecha_Termino,
     this.Col_Naviera,
     this.Col_Fecha_Creacion,
     this.Col_Fecha_Estado});
     this.gridViewOpciones.GridControl = this.gridSLeads;
     this.gridViewOpciones.Name = "gridViewOpciones";
     this.gridViewOpciones.OptionsBehavior.AutoSelectAllInEditor = false;
     this.gridViewOpciones.OptionsBehavior.KeepGroupExpandedOnSorting = false;
     this.gridViewOpciones.OptionsCustomization.AllowGroup = false;
     this.gridViewOpciones.OptionsDetail.EnableMasterViewMode = false;
     this.gridViewOpciones.OptionsSelection.EnableAppearanceFocusedCell = false;
     this.gridViewOpciones.OptionsSelection.EnableAppearanceHideSelection = false;
     this.gridViewOpciones.OptionsView.GroupDrawMode = DevExpress.XtraGrid.Views.Grid.GroupDrawMode.Office2003;
     this.gridViewOpciones.OptionsView.ShowChildrenInGroupPanel = true;
     this.gridViewOpciones.OptionsView.ShowGroupPanel = false;
     this.gridViewOpciones.ShowButtonMode = DevExpress.XtraGrid.Views.Base.ShowButtonModeEnum.Default;
     this.gridViewOpciones.ViewCaption = "Opciones";
     this.gridViewOpciones.FocusedRowChanged += new DevExpress.XtraGrid.Views.Base.FocusedRowChangedEventHandler(this.gridViewOpciones_FocusedRowChanged);
     this.gridViewOpciones.CellValueChanging += new DevExpress.XtraGrid.Views.Base.CellValueChangedEventHandler(this.GridViewOpcionesCellValueChanging);
     //
     // Col_Numero
     //
     this.Col_Numero.Caption = "Numero";
     this.Col_Numero.FieldName = "Numero";
     this.Col_Numero.Name = "Col_Numero";
     this.Col_Numero.OptionsColumn.AllowEdit = false;
     this.Col_Numero.OptionsColumn.ReadOnly = true;
     this.Col_Numero.Visible = true;
     this.Col_Numero.VisibleIndex = 0;
     //
     // Col_Fecha_Inicio
     //
     this.Col_Fecha_Inicio.Caption = "Fecha Validez Inicio";
     this.Col_Fecha_Inicio.ColumnEdit = this.repositoryItemDateEdit1;
     this.Col_Fecha_Inicio.FieldName = "FechaValidesInicio";
     this.Col_Fecha_Inicio.Name = "Col_Fecha_Inicio";
     this.Col_Fecha_Inicio.OptionsColumn.AllowEdit = false;
     this.Col_Fecha_Inicio.OptionsColumn.AllowFocus = false;
     this.Col_Fecha_Inicio.OptionsColumn.ReadOnly = true;
     this.Col_Fecha_Inicio.Visible = true;
     this.Col_Fecha_Inicio.VisibleIndex = 1;
     //
     // repositoryItemDateEdit1
     //
     this.repositoryItemDateEdit1.AllowFocused = false;
     this.repositoryItemDateEdit1.AutoHeight = false;
     this.repositoryItemDateEdit1.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.repositoryItemDateEdit1.Name = "repositoryItemDateEdit1";
     this.repositoryItemDateEdit1.ReadOnly = true;
     this.repositoryItemDateEdit1.ShowDropDown = DevExpress.XtraEditors.Controls.ShowDropDown.Never;
     this.repositoryItemDateEdit1.TextEditStyle = DevExpress.XtraEditors.Controls.TextEditStyles.DisableTextEditor;
     this.repositoryItemDateEdit1.VistaTimeProperties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton()});
     //
     // Col_Fecha_Termino
     //
     this.Col_Fecha_Termino.Caption = "Fecha Validez Fin";
     this.Col_Fecha_Termino.FieldName = "FechaValidesFin";
     this.Col_Fecha_Termino.Name = "Col_Fecha_Termino";
     this.Col_Fecha_Termino.OptionsColumn.AllowEdit = false;
     this.Col_Fecha_Termino.OptionsColumn.ReadOnly = true;
     this.Col_Fecha_Termino.Visible = true;
     this.Col_Fecha_Termino.VisibleIndex = 2;
     //
     // Col_Naviera
     //
     this.Col_Naviera.Caption = "Naviera";
     this.Col_Naviera.ColumnEdit = this.repositoryItemTextEdit1;
     this.Col_Naviera.FieldName = "Naviera";
     this.Col_Naviera.Name = "Col_Naviera";
     this.Col_Naviera.OptionsColumn.AllowEdit = false;
     this.Col_Naviera.OptionsColumn.ReadOnly = true;
     this.Col_Naviera.Visible = true;
     this.Col_Naviera.VisibleIndex = 3;
     //
     // repositoryItemTextEdit1
     //
     this.repositoryItemTextEdit1.AutoHeight = false;
     this.repositoryItemTextEdit1.Name = "repositoryItemTextEdit1";
     this.repositoryItemTextEdit1.ReadOnly = true;
     //
     // Col_Fecha_Creacion
     //
     this.Col_Fecha_Creacion.Caption = "Fecha de creacion";
     this.Col_Fecha_Creacion.FieldName = "FechaCreacion";
     this.Col_Fecha_Creacion.Name = "Col_Fecha_Creacion";
     this.Col_Fecha_Creacion.OptionsColumn.AllowEdit = false;
     this.Col_Fecha_Creacion.OptionsColumn.ReadOnly = true;
     this.Col_Fecha_Creacion.Visible = true;
     this.Col_Fecha_Creacion.VisibleIndex = 4;
     //
     // Col_Fecha_Estado
     //
     this.Col_Fecha_Estado.Caption = "Est";
     this.Col_Fecha_Estado.FieldName = "EstadoDescripcion";
     this.Col_Fecha_Estado.Name = "Col_Fecha_Estado";
     this.Col_Fecha_Estado.Visible = true;
     this.Col_Fecha_Estado.VisibleIndex = 5;
     //
     // gridSLeads
     //
     this.gridSLeads.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
                 | System.Windows.Forms.AnchorStyles.Right)));
     gridLevelNode1.LevelTemplate = this.gridViewOpciones;
     gridLevelNode1.RelationName = "lvlOpciones";
     this.gridSLeads.LevelTree.Nodes.AddRange(new DevExpress.XtraGrid.GridLevelNode[] {
     gridLevelNode1});
     this.gridSLeads.Location = new System.Drawing.Point(4, 23);
     this.gridSLeads.MainView = this.gridViewSLeads;
     this.gridSLeads.Name = "gridSLeads";
     this.gridSLeads.RepositoryItems.AddRange(new DevExpress.XtraEditors.Repository.RepositoryItem[] {
     this.repositoryItemCheckEdit3,
     this.repositoryItemComboBox1,
     this.repositoryItemCheckEdit4,
     this.repositoryItemTextEdit1,
     this.repositoryItemDateEdit1,
     this.repositoryItemImageComboBox1});
     this.gridSLeads.Size = new System.Drawing.Size(1215, 305);
     this.gridSLeads.TabIndex = 3;
     this.gridSLeads.ViewCollection.AddRange(new DevExpress.XtraGrid.Views.Base.BaseView[] {
     this.gridViewSLeads,
     this.gridViewOpciones});
     //
     // gridViewSLeads
     //
     this.gridViewSLeads.Columns.AddRange(new DevExpress.XtraGrid.Columns.GridColumn[] {
     this.gridColumn3,
     this.gridColumn7,
     this.gridColContacto,
     this.gridColCuenta,
     this.gridColumn4,
     this.gridColumn2,
     this.Checkbox,
     this.GridColumnFollowup,
     this.gridColumn6});
     this.gridViewSLeads.CustomizationFormBounds = new System.Drawing.Rectangle(1054, 496, 216, 178);
     this.gridViewSLeads.GridControl = this.gridSLeads;
     this.gridViewSLeads.Name = "gridViewSLeads";
     this.gridViewSLeads.OptionsBehavior.AutoSelectAllInEditor = false;
     this.gridViewSLeads.OptionsBehavior.KeepGroupExpandedOnSorting = false;
     this.gridViewSLeads.OptionsCustomization.AllowGroup = false;
     this.gridViewSLeads.OptionsSelection.EnableAppearanceFocusedCell = false;
     this.gridViewSLeads.OptionsSelection.EnableAppearanceHideSelection = false;
     this.gridViewSLeads.OptionsView.GroupDrawMode = DevExpress.XtraGrid.Views.Grid.GroupDrawMode.Office2003;
     this.gridViewSLeads.OptionsView.ShowChildrenInGroupPanel = true;
     this.gridViewSLeads.OptionsView.ShowGroupPanel = false;
     this.gridViewSLeads.ShowButtonMode = DevExpress.XtraGrid.Views.Base.ShowButtonModeEnum.Default;
     this.gridViewSLeads.FocusedRowChanged += new DevExpress.XtraGrid.Views.Base.FocusedRowChangedEventHandler(this.gridViewSLeads_FocusedRowChanged);
     this.gridViewSLeads.CellValueChanging += new DevExpress.XtraGrid.Views.Base.CellValueChangedEventHandler(this.GridViewSLeadsCellValueChanging);
     this.gridViewSLeads.MasterRowExpanded += new DevExpress.XtraGrid.Views.Grid.CustomMasterRowEventHandler(this.gridViewSLeads_MasterRowExpanded);
     this.gridViewSLeads.DoubleClick += new System.EventHandler(this.gridViewSLeads_DoubleClick);
     //
     // gridColumn3
     //
     this.gridColumn3.AppearanceCell.Options.UseTextOptions = true;
     this.gridColumn3.AppearanceCell.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Near;
     this.gridColumn3.AppearanceHeader.Options.UseTextOptions = true;
     this.gridColumn3.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.gridColumn3.Caption = "N° Cotización";
     this.gridColumn3.FieldName = "Numero";
     this.gridColumn3.Name = "gridColumn3";
     this.gridColumn3.OptionsColumn.AllowEdit = false;
     this.gridColumn3.OptionsColumn.ReadOnly = true;
     this.gridColumn3.Visible = true;
     this.gridColumn3.VisibleIndex = 0;
     this.gridColumn3.Width = 112;
     //
     // gridColumn7
     //
     this.gridColumn7.AppearanceCell.Options.UseTextOptions = true;
     this.gridColumn7.AppearanceCell.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Near;
     this.gridColumn7.AppearanceHeader.Options.UseTextOptions = true;
     this.gridColumn7.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.gridColumn7.Caption = "Cliente";
     this.gridColumn7.FieldName = "Cliente";
     this.gridColumn7.Name = "gridColumn7";
     this.gridColumn7.OptionsColumn.AllowEdit = false;
     this.gridColumn7.OptionsColumn.ReadOnly = true;
     this.gridColumn7.Visible = true;
     this.gridColumn7.VisibleIndex = 2;
     this.gridColumn7.Width = 312;
     //
     // gridColContacto
     //
     this.gridColContacto.Caption = "Fecha de Cotización";
     this.gridColContacto.FieldName = "FechaSolicitud";
     this.gridColContacto.Name = "gridColContacto";
     this.gridColContacto.OptionsColumn.AllowEdit = false;
     this.gridColContacto.OptionsColumn.ReadOnly = true;
     this.gridColContacto.Visible = true;
     this.gridColContacto.VisibleIndex = 1;
     this.gridColContacto.Width = 111;
     //
     // gridColCuenta
     //
     this.gridColCuenta.Caption = "Incoterms";
     this.gridColCuenta.FieldName = "IncoTerm.Codigo";
     this.gridColCuenta.Name = "gridColCuenta";
     this.gridColCuenta.OptionsColumn.AllowEdit = false;
     this.gridColCuenta.OptionsColumn.ReadOnly = true;
     this.gridColCuenta.Visible = true;
     this.gridColCuenta.VisibleIndex = 3;
     this.gridColCuenta.Width = 64;
     //
     // gridColumn4
     //
     this.gridColumn4.Caption = "Tipo";
     this.gridColumn4.FieldName = "Tipo";
     this.gridColumn4.Name = "gridColumn4";
     this.gridColumn4.OptionsColumn.AllowEdit = false;
     this.gridColumn4.OptionsColumn.ReadOnly = true;
     this.gridColumn4.Visible = true;
     this.gridColumn4.VisibleIndex = 4;
     this.gridColumn4.Width = 143;
     //
     // gridColumn2
     //
     this.gridColumn2.Caption = "Estado";
     this.gridColumn2.FieldName = "EstadoDescripcion";
     this.gridColumn2.Name = "gridColumn2";
     this.gridColumn2.OptionsColumn.AllowEdit = false;
     this.gridColumn2.OptionsColumn.ReadOnly = true;
     this.gridColumn2.Visible = true;
     this.gridColumn2.VisibleIndex = 5;
     this.gridColumn2.Width = 93;
     //
     // Checkbox
     //
     this.Checkbox.Caption = "Seleccionado";
     this.Checkbox.ColumnEdit = this.repositoryItemCheckEdit3;
     this.Checkbox.FieldName = "Seleccionado";
     this.Checkbox.Name = "Checkbox";
     this.Checkbox.UnboundType = DevExpress.Data.UnboundColumnType.Boolean;
     this.Checkbox.Visible = true;
     this.Checkbox.VisibleIndex = 8;
     this.Checkbox.Width = 95;
     //
     // repositoryItemCheckEdit3
     //
     this.repositoryItemCheckEdit3.AutoHeight = false;
     this.repositoryItemCheckEdit3.Name = "repositoryItemCheckEdit3";
     //
     // GridColumnFollowup
     //
     this.GridColumnFollowup.Caption = "Followup";
     this.GridColumnFollowup.ColumnEdit = this.repositoryItemImageComboBox1;
     this.GridColumnFollowup.FieldName = "FollowUpIcon";
     this.GridColumnFollowup.Name = "GridColumnFollowup";
     this.GridColumnFollowup.Visible = true;
     this.GridColumnFollowup.VisibleIndex = 6;
     this.GridColumnFollowup.Width = 58;
     //
     // repositoryItemImageComboBox1
     //
     this.repositoryItemImageComboBox1.AutoHeight = false;
     this.repositoryItemImageComboBox1.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.repositoryItemImageComboBox1.Items.AddRange(new DevExpress.XtraEditors.Controls.ImageComboBoxItem[] {
     new DevExpress.XtraEditors.Controls.ImageComboBoxItem("", 1, 1),
     new DevExpress.XtraEditors.Controls.ImageComboBoxItem("", 2, 2),
     new DevExpress.XtraEditors.Controls.ImageComboBoxItem("", 3, 0)});
     this.repositoryItemImageComboBox1.Name = "repositoryItemImageComboBox1";
     this.repositoryItemImageComboBox1.SmallImages = this.ImageCollection;
     //
     // ImageCollection
     //
     this.ImageCollection.ImageStream = ((DevExpress.Utils.ImageCollectionStreamer)(resources.GetObject("ImageCollection.ImageStream")));
     this.ImageCollection.Images.SetKeyName(0, "Baja Prioridad.png");
     this.ImageCollection.Images.SetKeyName(1, "Alta Prioridad.png");
     this.ImageCollection.Images.SetKeyName(2, "Media Prioridad.png");
     this.ImageCollection.Images.SetKeyName(3, "mail_get.png");
     this.ImageCollection.Images.SetKeyName(4, "mail_get.png");
     //
     // gridColumn6
     //
     this.gridColumn6.Caption = "Prox. FollowUp";
     this.gridColumn6.FieldName = "NextFollowup";
     this.gridColumn6.Name = "gridColumn6";
     this.gridColumn6.Visible = true;
     this.gridColumn6.VisibleIndex = 7;
     this.gridColumn6.Width = 206;
     //
     // repositoryItemComboBox1
     //
     this.repositoryItemComboBox1.AutoHeight = false;
     this.repositoryItemComboBox1.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.repositoryItemComboBox1.Name = "repositoryItemComboBox1";
     //
     // repositoryItemCheckEdit4
     //
     this.repositoryItemCheckEdit4.AutoHeight = false;
     this.repositoryItemCheckEdit4.Name = "repositoryItemCheckEdit4";
     //
     // ctrldxError
     //
     this.ctrldxError.ContainerControl = this;
     //
     // MenuSalir
     //
     this.MenuSalir.Image = ((System.Drawing.Image)(resources.GetObject("MenuSalir.Image")));
     this.MenuSalir.ImageTransparentColor = System.Drawing.Color.Magenta;
     this.MenuSalir.Name = "MenuSalir";
     this.MenuSalir.Size = new System.Drawing.Size(33, 35);
     this.MenuSalir.Text = "Salir";
     this.MenuSalir.TextImageRelation = System.Windows.Forms.TextImageRelation.ImageAboveText;
     this.MenuSalir.Click += new System.EventHandler(this.MenuSalir_Click_1);
     //
     // toolStripSeparator4
     //
     this.toolStripSeparator4.Name = "toolStripSeparator4";
     this.toolStripSeparator4.Size = new System.Drawing.Size(6, 38);
     //
     // MenuExcel
     //
     this.MenuExcel.Image = ((System.Drawing.Image)(resources.GetObject("MenuExcel.Image")));
     this.MenuExcel.ImageTransparentColor = System.Drawing.Color.Magenta;
     this.MenuExcel.Name = "MenuExcel";
     this.MenuExcel.Size = new System.Drawing.Size(37, 35);
     this.MenuExcel.Text = "Excel";
     this.MenuExcel.TextAlign = System.Drawing.ContentAlignment.BottomCenter;
     this.MenuExcel.TextImageRelation = System.Windows.Forms.TextImageRelation.ImageAboveText;
     this.MenuExcel.Click += new System.EventHandler(this.MenuExcel_Click);
     //
     // toolStripSeparator3
     //
     this.toolStripSeparator3.Name = "toolStripSeparator3";
     this.toolStripSeparator3.Size = new System.Drawing.Size(6, 38);
     //
     // toolStripBarraLlamada
     //
     this.toolStripBarraLlamada.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
     this.toolStripSeparator2,
     this.toolStripButton2,
     this.toolStripSeparator3,
     this.MenuEnviarAlCliente,
     this.MenuCopiar,
     this.MenuActualizar,
     this.MenuFollowup,
     this.toolStripSeparator4,
     this.MenuExcel,
     this.MenuSalir,
     this.toolStripSeparator1,
     this.toolStripLabel1,
     this.ListSemanas});
     this.toolStripBarraLlamada.Location = new System.Drawing.Point(0, 0);
     this.toolStripBarraLlamada.Name = "toolStripBarraLlamada";
     this.toolStripBarraLlamada.Size = new System.Drawing.Size(1228, 38);
     this.toolStripBarraLlamada.TabIndex = 85;
     this.toolStripBarraLlamada.Text = "toolStrip1";
     //
     // toolStripSeparator2
     //
     this.toolStripSeparator2.Name = "toolStripSeparator2";
     this.toolStripSeparator2.Size = new System.Drawing.Size(6, 38);
     //
     // toolStripButton2
     //
     this.toolStripButton2.Image = ((System.Drawing.Image)(resources.GetObject("toolStripButton2.Image")));
     this.toolStripButton2.ImageTransparentColor = System.Drawing.Color.Magenta;
     this.toolStripButton2.Name = "toolStripButton2";
     this.toolStripButton2.Size = new System.Drawing.Size(45, 35);
     this.toolStripButton2.Text = "Nueva";
     this.toolStripButton2.TextAlign = System.Drawing.ContentAlignment.BottomCenter;
     this.toolStripButton2.TextImageRelation = System.Windows.Forms.TextImageRelation.ImageAboveText;
     this.toolStripButton2.ToolTipText = "Tarifa Directa";
     this.toolStripButton2.Click += new System.EventHandler(this.toolStripButton2_Click_1);
     //
     // MenuEnviarAlCliente
     //
     this.MenuEnviarAlCliente.Image = ((System.Drawing.Image)(resources.GetObject("MenuEnviarAlCliente.Image")));
     this.MenuEnviarAlCliente.ImageTransparentColor = System.Drawing.Color.Magenta;
     this.MenuEnviarAlCliente.Name = "MenuEnviarAlCliente";
     this.MenuEnviarAlCliente.Size = new System.Drawing.Size(93, 35);
     this.MenuEnviarAlCliente.Text = "Enviar al cliente";
     this.MenuEnviarAlCliente.TextImageRelation = System.Windows.Forms.TextImageRelation.ImageAboveText;
     this.MenuEnviarAlCliente.Click += new System.EventHandler(this.MenuEnviarAlCliente_Click);
     //
     // MenuCopiar
     //
     this.MenuCopiar.Image = ((System.Drawing.Image)(resources.GetObject("MenuCopiar.Image")));
     this.MenuCopiar.ImageTransparentColor = System.Drawing.Color.Magenta;
     this.MenuCopiar.Name = "MenuCopiar";
     this.MenuCopiar.Size = new System.Drawing.Size(46, 35);
     this.MenuCopiar.Text = "Copiar";
     this.MenuCopiar.TextAlign = System.Drawing.ContentAlignment.BottomCenter;
     this.MenuCopiar.TextImageRelation = System.Windows.Forms.TextImageRelation.ImageAboveText;
     this.MenuCopiar.ToolTipText = "Copiar";
     this.MenuCopiar.Click += new System.EventHandler(this.MenuCopiar_Click);
     //
     // MenuActualizar
     //
     this.MenuActualizar.Image = ((System.Drawing.Image)(resources.GetObject("MenuActualizar.Image")));
     this.MenuActualizar.ImageTransparentColor = System.Drawing.Color.Magenta;
     this.MenuActualizar.Name = "MenuActualizar";
     this.MenuActualizar.Size = new System.Drawing.Size(63, 35);
     this.MenuActualizar.Text = "Actualizar";
     this.MenuActualizar.TextAlign = System.Drawing.ContentAlignment.BottomCenter;
     this.MenuActualizar.TextImageRelation = System.Windows.Forms.TextImageRelation.ImageAboveText;
     this.MenuActualizar.ToolTipText = "Actualizar";
     this.MenuActualizar.Click += new System.EventHandler(this.MenuActualizar_Click);
     //
     // MenuFollowup
     //
     this.MenuFollowup.Enabled = false;
     this.MenuFollowup.Image = ((System.Drawing.Image)(resources.GetObject("MenuFollowup.Image")));
     this.MenuFollowup.ImageTransparentColor = System.Drawing.Color.Magenta;
     this.MenuFollowup.Name = "MenuFollowup";
     this.MenuFollowup.Size = new System.Drawing.Size(61, 35);
     this.MenuFollowup.Text = "FollowUp";
     this.MenuFollowup.TextImageRelation = System.Windows.Forms.TextImageRelation.ImageAboveText;
     this.MenuFollowup.Click += new System.EventHandler(this.MenuFollowup_Click);
     //
     // toolStripSeparator1
     //
     this.toolStripSeparator1.Name = "toolStripSeparator1";
     this.toolStripSeparator1.Size = new System.Drawing.Size(6, 38);
     //
     // toolStripLabel1
     //
     this.toolStripLabel1.Name = "toolStripLabel1";
     this.toolStripLabel1.Size = new System.Drawing.Size(54, 35);
     this.toolStripLabel1.Text = "Semanas";
     //
     // ListSemanas
     //
     this.ListSemanas.IntegralHeight = false;
     this.ListSemanas.Name = "ListSemanas";
     this.ListSemanas.Size = new System.Drawing.Size(121, 38);
     //
     // gridProspectos
     //
     this.gridProspectos.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
                 | System.Windows.Forms.AnchorStyles.Right)));
     this.gridProspectos.AppearanceCaption.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold);
     this.gridProspectos.AppearanceCaption.ForeColor = System.Drawing.Color.DarkBlue;
     this.gridProspectos.AppearanceCaption.Options.UseFont = true;
     this.gridProspectos.AppearanceCaption.Options.UseForeColor = true;
     this.gridProspectos.Controls.Add(this.gridSLeads);
     this.gridProspectos.Location = new System.Drawing.Point(4, 46);
     this.gridProspectos.Name = "gridProspectos";
     this.gridProspectos.Size = new System.Drawing.Size(1224, 333);
     this.gridProspectos.TabIndex = 84;
     this.gridProspectos.Text = "Cotizaciones";
     //
     // groupBox1
     //
     this.groupBox1.Controls.Add(this.cboEstado);
     this.groupBox1.Controls.Add(this.txtComentario);
     this.groupBox1.Controls.Add(this.btnGuardarComentario);
     this.groupBox1.Controls.Add(this.label2);
     this.groupBox1.Controls.Add(this.label1);
     this.groupBox1.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.groupBox1.ForeColor = System.Drawing.Color.Black;
     this.groupBox1.Location = new System.Drawing.Point(4, 385);
     this.groupBox1.Name = "groupBox1";
     this.groupBox1.Size = new System.Drawing.Size(435, 201);
     this.groupBox1.TabIndex = 90;
     this.groupBox1.TabStop = false;
     this.groupBox1.Text = "Comentarios y Cambio de estado";
     //
     // cboEstado
     //
     this.cboEstado.Location = new System.Drawing.Point(96, 27);
     this.cboEstado.Name = "cboEstado";
     this.cboEstado.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.cboEstado.Properties.TextEditStyle = DevExpress.XtraEditors.Controls.TextEditStyles.DisableTextEditor;
     this.cboEstado.Size = new System.Drawing.Size(210, 20);
     this.cboEstado.TabIndex = 92;
     //
     // txtComentario
     //
     this.txtComentario.Location = new System.Drawing.Point(96, 53);
     this.txtComentario.Name = "txtComentario";
     this.txtComentario.Properties.Appearance.Font = new System.Drawing.Font("Tahoma", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.txtComentario.Properties.Appearance.ForeColor = System.Drawing.Color.Blue;
     this.txtComentario.Properties.Appearance.Options.UseFont = true;
     this.txtComentario.Properties.Appearance.Options.UseForeColor = true;
     this.txtComentario.Size = new System.Drawing.Size(325, 109);
     this.txtComentario.TabIndex = 91;
     //
     // btnGuardarComentario
     //
     this.btnGuardarComentario.Image = ((System.Drawing.Image)(resources.GetObject("btnGuardarComentario.Image")));
     this.btnGuardarComentario.Location = new System.Drawing.Point(96, 162);
     this.btnGuardarComentario.Name = "btnGuardarComentario";
     this.btnGuardarComentario.Size = new System.Drawing.Size(42, 33);
     this.btnGuardarComentario.TabIndex = 90;
     this.btnGuardarComentario.UseVisualStyleBackColor = true;
     this.btnGuardarComentario.Click += new System.EventHandler(this.btnGuardarComentario_Click);
     //
     // label2
     //
     this.label2.AutoSize = true;
     this.label2.Location = new System.Drawing.Point(18, 58);
     this.label2.Name = "label2";
     this.label2.Size = new System.Drawing.Size(60, 13);
     this.label2.TabIndex = 1;
     this.label2.Text = "Comentario";
     //
     // label1
     //
     this.label1.AutoSize = true;
     this.label1.Location = new System.Drawing.Point(18, 29);
     this.label1.Name = "label1";
     this.label1.Size = new System.Drawing.Size(40, 13);
     this.label1.TabIndex = 0;
     this.label1.Text = "Estado";
     //
     // gridComentarios
     //
     this.gridComentarios.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
                 | System.Windows.Forms.AnchorStyles.Right)));
     this.gridComentarios.Location = new System.Drawing.Point(445, 385);
     this.gridComentarios.MainView = this.gridViewComentario;
     this.gridComentarios.Name = "gridComentarios";
     this.gridComentarios.RepositoryItems.AddRange(new DevExpress.XtraEditors.Repository.RepositoryItem[] {
     this.repositoryItemCheckEdit2,
     this.repositoryItemComboBox2,
     this.repositoryItemCheckEdit1,
     this.repositoryItemTextEdit2,
     this.repositoryItemDateEdit2});
     this.gridComentarios.Size = new System.Drawing.Size(771, 201);
     this.gridComentarios.TabIndex = 4;
     this.gridComentarios.ViewCollection.AddRange(new DevExpress.XtraGrid.Views.Base.BaseView[] {
     this.gridViewComentario,
     this.gridView1});
     //
     // gridViewComentario
     //
     this.gridViewComentario.Columns.AddRange(new DevExpress.XtraGrid.Columns.GridColumn[] {
     this.gridColumn20,
     this.gridColumn21,
     this.gridColumn22,
     this.gridColumn23});
     this.gridViewComentario.CustomizationFormBounds = new System.Drawing.Rectangle(1054, 496, 216, 178);
     this.gridViewComentario.GridControl = this.gridComentarios;
     this.gridViewComentario.Name = "gridViewComentario";
     this.gridViewComentario.OptionsBehavior.AutoSelectAllInEditor = false;
     this.gridViewComentario.OptionsBehavior.Editable = false;
     this.gridViewComentario.OptionsBehavior.KeepGroupExpandedOnSorting = false;
     this.gridViewComentario.OptionsCustomization.AllowGroup = false;
     this.gridViewComentario.OptionsSelection.EnableAppearanceFocusedCell = false;
     this.gridViewComentario.OptionsSelection.EnableAppearanceHideSelection = false;
     this.gridViewComentario.OptionsView.GroupDrawMode = DevExpress.XtraGrid.Views.Grid.GroupDrawMode.Office2003;
     this.gridViewComentario.OptionsView.ShowChildrenInGroupPanel = true;
     this.gridViewComentario.OptionsView.ShowGroupPanel = false;
     this.gridViewComentario.ShowButtonMode = DevExpress.XtraGrid.Views.Base.ShowButtonModeEnum.Default;
     //
     // gridColumn20
     //
     this.gridColumn20.AppearanceCell.Options.UseTextOptions = true;
     this.gridColumn20.AppearanceCell.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Near;
     this.gridColumn20.AppearanceHeader.Options.UseTextOptions = true;
     this.gridColumn20.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.gridColumn20.Caption = "Usuario";
     this.gridColumn20.FieldName = "Usuario.NombreUsuario";
     this.gridColumn20.Name = "gridColumn20";
     this.gridColumn20.OptionsColumn.AllowEdit = false;
     this.gridColumn20.OptionsColumn.ReadOnly = true;
     this.gridColumn20.Visible = true;
     this.gridColumn20.VisibleIndex = 0;
     this.gridColumn20.Width = 111;
     //
     // gridColumn21
     //
     this.gridColumn21.AppearanceCell.Options.UseTextOptions = true;
     this.gridColumn21.AppearanceCell.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Near;
     this.gridColumn21.AppearanceHeader.Options.UseTextOptions = true;
     this.gridColumn21.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.gridColumn21.Caption = "Historial";
     this.gridColumn21.FieldName = "EsHistorial";
     this.gridColumn21.Name = "gridColumn21";
     this.gridColumn21.OptionsColumn.AllowEdit = false;
     this.gridColumn21.OptionsColumn.ReadOnly = true;
     this.gridColumn21.UnboundType = DevExpress.Data.UnboundColumnType.Boolean;
     this.gridColumn21.Width = 73;
     //
     // gridColumn22
     //
     this.gridColumn22.Caption = "Comentario";
     this.gridColumn22.FieldName = "Observacion";
     this.gridColumn22.Name = "gridColumn22";
     this.gridColumn22.OptionsColumn.AllowEdit = false;
     this.gridColumn22.OptionsColumn.ReadOnly = true;
     this.gridColumn22.Visible = true;
     this.gridColumn22.VisibleIndex = 1;
     this.gridColumn22.Width = 448;
     //
     // gridColumn23
     //
     this.gridColumn23.Caption = "Fecha";
     this.gridColumn23.DisplayFormat.FormatString = "d/M/yyyy HH:mm:ss";
     this.gridColumn23.DisplayFormat.FormatType = DevExpress.Utils.FormatType.DateTime;
     this.gridColumn23.FieldName = "Fecha";
     this.gridColumn23.Name = "gridColumn23";
     this.gridColumn23.OptionsColumn.AllowEdit = false;
     this.gridColumn23.OptionsColumn.ReadOnly = true;
     this.gridColumn23.UnboundType = DevExpress.Data.UnboundColumnType.DateTime;
     this.gridColumn23.Visible = true;
     this.gridColumn23.VisibleIndex = 2;
     this.gridColumn23.Width = 141;
     //
     // repositoryItemCheckEdit2
     //
     this.repositoryItemCheckEdit2.AutoHeight = false;
     this.repositoryItemCheckEdit2.Name = "repositoryItemCheckEdit2";
     //
     // repositoryItemComboBox2
     //
     this.repositoryItemComboBox2.AutoHeight = false;
     this.repositoryItemComboBox2.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.repositoryItemComboBox2.Name = "repositoryItemComboBox2";
     //
     // repositoryItemCheckEdit1
     //
     this.repositoryItemCheckEdit1.AutoHeight = false;
     this.repositoryItemCheckEdit1.Name = "repositoryItemCheckEdit1";
     //
     // repositoryItemTextEdit2
     //
     this.repositoryItemTextEdit2.AutoHeight = false;
     this.repositoryItemTextEdit2.Name = "repositoryItemTextEdit2";
     this.repositoryItemTextEdit2.ReadOnly = true;
     //
     // repositoryItemDateEdit2
     //
     this.repositoryItemDateEdit2.AllowFocused = false;
     this.repositoryItemDateEdit2.AutoHeight = false;
     this.repositoryItemDateEdit2.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.repositoryItemDateEdit2.Name = "repositoryItemDateEdit2";
     this.repositoryItemDateEdit2.ReadOnly = true;
     this.repositoryItemDateEdit2.ShowDropDown = DevExpress.XtraEditors.Controls.ShowDropDown.Never;
     this.repositoryItemDateEdit2.TextEditStyle = DevExpress.XtraEditors.Controls.TextEditStyles.DisableTextEditor;
     this.repositoryItemDateEdit2.VistaTimeProperties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton()});
     //
     // gridView1
     //
     this.gridView1.Columns.AddRange(new DevExpress.XtraGrid.Columns.GridColumn[] {
     this.gridColumn1,
     this.gridColumn5,
     this.gridColumn15,
     this.gridColumn16,
     this.gridColumn17,
     this.gridColumn18,
     this.gridColumn19});
     this.gridView1.GridControl = this.gridComentarios;
     this.gridView1.Name = "gridView1";
     this.gridView1.OptionsBehavior.Editable = false;
     this.gridView1.OptionsView.GroupDrawMode = DevExpress.XtraGrid.Views.Grid.GroupDrawMode.Office2003;
     this.gridView1.OptionsView.ShowGroupPanel = false;
     this.gridView1.ShowButtonMode = DevExpress.XtraGrid.Views.Base.ShowButtonModeEnum.ShowForFocusedRow;
     this.gridView1.ViewCaption = "Cotizaciones";
     //
     // gridColumn1
     //
     this.gridColumn1.Caption = "Numero";
     this.gridColumn1.FieldName = "Numero";
     this.gridColumn1.Name = "gridColumn1";
     this.gridColumn1.OptionsColumn.AllowEdit = false;
     this.gridColumn1.OptionsColumn.ReadOnly = true;
     this.gridColumn1.Visible = true;
     this.gridColumn1.VisibleIndex = 0;
     //
     // gridColumn5
     //
     this.gridColumn5.Caption = "Fecha Validez Inicio";
     this.gridColumn5.ColumnEdit = this.repositoryItemDateEdit2;
     this.gridColumn5.FieldName = "FechaValidesInicio";
     this.gridColumn5.Name = "gridColumn5";
     this.gridColumn5.OptionsColumn.AllowEdit = false;
     this.gridColumn5.OptionsColumn.AllowFocus = false;
     this.gridColumn5.OptionsColumn.ReadOnly = true;
     this.gridColumn5.Visible = true;
     this.gridColumn5.VisibleIndex = 1;
     //
     // gridColumn15
     //
     this.gridColumn15.Caption = "Fecha Validez Fin";
     this.gridColumn15.FieldName = "FechaValidesFin";
     this.gridColumn15.Name = "gridColumn15";
     this.gridColumn15.OptionsColumn.AllowEdit = false;
     this.gridColumn15.OptionsColumn.ReadOnly = true;
     this.gridColumn15.Visible = true;
     this.gridColumn15.VisibleIndex = 2;
     //
     // gridColumn16
     //
     this.gridColumn16.Caption = "Naviera";
     this.gridColumn16.ColumnEdit = this.repositoryItemTextEdit2;
     this.gridColumn16.FieldName = "Naviera";
     this.gridColumn16.Name = "gridColumn16";
     this.gridColumn16.OptionsColumn.AllowEdit = false;
     this.gridColumn16.OptionsColumn.ReadOnly = true;
     this.gridColumn16.Visible = true;
     this.gridColumn16.VisibleIndex = 3;
     //
     // gridColumn17
     //
     this.gridColumn17.Caption = "Fecha de creacion";
     this.gridColumn17.FieldName = "FechaCreacion";
     this.gridColumn17.Name = "gridColumn17";
     this.gridColumn17.OptionsColumn.AllowEdit = false;
     this.gridColumn17.OptionsColumn.ReadOnly = true;
     this.gridColumn17.Visible = true;
     this.gridColumn17.VisibleIndex = 4;
     //
     // gridColumn18
     //
     this.gridColumn18.Caption = "Estado";
     this.gridColumn18.FieldName = "Estado";
     this.gridColumn18.Name = "gridColumn18";
     this.gridColumn18.OptionsColumn.AllowEdit = false;
     this.gridColumn18.OptionsColumn.ReadOnly = true;
     this.gridColumn18.Visible = true;
     this.gridColumn18.VisibleIndex = 5;
     //
     // gridColumn19
     //
     this.gridColumn19.Caption = "Checkbox";
     this.gridColumn19.ColumnEdit = this.repositoryItemCheckEdit1;
     this.gridColumn19.FieldName = "Seleccionado";
     this.gridColumn19.Name = "gridColumn19";
     this.gridColumn19.UnboundType = DevExpress.Data.UnboundColumnType.Boolean;
     this.gridColumn19.Visible = true;
     this.gridColumn19.VisibleIndex = 6;
     //
     // pictureBox1
     //
     this.pictureBox1.Image = global::SCCMultimodal.Properties.Resources.Alta_Prioridad;
     this.pictureBox1.Location = new System.Drawing.Point(12, 592);
     this.pictureBox1.Name = "pictureBox1";
     this.pictureBox1.Size = new System.Drawing.Size(17, 16);
     this.pictureBox1.TabIndex = 91;
     this.pictureBox1.TabStop = false;
     //
     // label3
     //
     this.label3.AutoSize = true;
     this.label3.Location = new System.Drawing.Point(35, 592);
     this.label3.Name = "label3";
     this.label3.Size = new System.Drawing.Size(77, 13);
     this.label3.TabIndex = 92;
     this.label3.Text = "Menor a 5 dias";
     //
     // pictureBox2
     //
     this.pictureBox2.Image = global::SCCMultimodal.Properties.Resources.Media_Prioridad;
     this.pictureBox2.Location = new System.Drawing.Point(153, 592);
     this.pictureBox2.Name = "pictureBox2";
     this.pictureBox2.Size = new System.Drawing.Size(17, 16);
     this.pictureBox2.TabIndex = 93;
     this.pictureBox2.TabStop = false;
     //
     // label4
     //
     this.label4.AutoSize = true;
     this.label4.Location = new System.Drawing.Point(176, 592);
     this.label4.Name = "label4";
     this.label4.Size = new System.Drawing.Size(76, 13);
     this.label4.TabIndex = 94;
     this.label4.Text = "Mayor a 5 dias";
     //
     // pictureBox3
     //
     this.pictureBox3.Image = global::SCCMultimodal.Properties.Resources.Baja_Prioridad;
     this.pictureBox3.Location = new System.Drawing.Point(293, 592);
     this.pictureBox3.Name = "pictureBox3";
     this.pictureBox3.Size = new System.Drawing.Size(17, 16);
     this.pictureBox3.TabIndex = 95;
     this.pictureBox3.TabStop = false;
     //
     // label5
     //
     this.label5.AutoSize = true;
     this.label5.Location = new System.Drawing.Point(315, 592);
     this.label5.Name = "label5";
     this.label5.Size = new System.Drawing.Size(82, 13);
     this.label5.TabIndex = 96;
     this.label5.Text = "Mayor a 10 dias";
     //
     // FrmListarCotizaciones
     //
     this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
     this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
     this.ClientSize = new System.Drawing.Size(1228, 614);
     this.Controls.Add(this.label5);
     this.Controls.Add(this.pictureBox3);
     this.Controls.Add(this.label4);
     this.Controls.Add(this.pictureBox2);
     this.Controls.Add(this.label3);
     this.Controls.Add(this.pictureBox1);
     this.Controls.Add(this.gridComentarios);
     this.Controls.Add(this.gridProspectos);
     this.Controls.Add(this.toolStripBarraLlamada);
     this.Controls.Add(this.groupBox1);
     this.Icon = ((System.Drawing.Icon)(resources.GetObject("$this.Icon")));
     this.Name = "FrmListarCotizaciones";
     this.Text = "Mis Cotizaciones";
     this.Load += new System.EventHandler(this.FrmListarTarifas_Load);
     this.FormClosed += new System.Windows.Forms.FormClosedEventHandler(this.FrmListarCotizaciones_FormClosed);
     ((System.ComponentModel.ISupportInitialize)(this.gridViewOpciones)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemDateEdit1.VistaTimeProperties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemDateEdit1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemTextEdit1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridSLeads)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridViewSLeads)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemCheckEdit3)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemImageComboBox1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.ImageCollection)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemComboBox1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemCheckEdit4)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.ctrldxError)).EndInit();
     this.toolStripBarraLlamada.ResumeLayout(false);
     this.toolStripBarraLlamada.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(this.gridProspectos)).EndInit();
     this.gridProspectos.ResumeLayout(false);
     this.groupBox1.ResumeLayout(false);
     this.groupBox1.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(this.cboEstado.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtComentario.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridComentarios)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridViewComentario)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemCheckEdit2)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemComboBox2)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemCheckEdit1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemTextEdit2)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemDateEdit2.VistaTimeProperties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemDateEdit2)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridView1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.pictureBox1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.pictureBox2)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.pictureBox3)).EndInit();
     this.ResumeLayout(false);
     this.PerformLayout();
 }