Example #1
0
        /// <summary>
             /// 动态生成GridView的Columns
             /// </summary>
             /// <param name="gv"></param>
             /// <param name="dt"></param>
             /// <returns></returns>
        public static void DynamicGenerateColumns(DevExpress.XtraGrid.Views.Grid.GridView gridView,
                                                  List <FYYK.Model.GridControlHeader> gridControlHeaders)
        {
            // 把GridView的自动产生列设置为false,否则会出现重复列
            //gridView.AutoGenerateColumns = false;
            gridView.OptionsView.ShowGroupPanel = false;
            gridView.Columns.Clear();

            if (gridControlHeaders == null || gridControlHeaders.Count <= 0)
            {
                return;
            }
            foreach (var item in gridControlHeaders)
            {
                var col = new DevExpress.XtraGrid.Columns.GridColumn();
                if (string.Equals("True", item.CheckBox))
                {
                    //pDatatable.Columns.Add("选择",System.Type.GetType("System.Boolean"));
                    col.Width = 30;
                    col.OptionsColumn.ShowCaption = false;
                    col.ColumnEdit = new DevExpress.XtraEditors.Repository.RepositoryItemCheckEdit();
                }
                string strVisible = string.IsNullOrEmpty(item.Visible) ? "False" : item.Visible;
                col.Caption      = item.Caption.Trim();
                col.FieldName    = item.FieldName.Trim();
                col.Visible      = string.Equals(strVisible, "True") ? true : false;
                col.VisibleIndex = item.VisibleIndex;
                col.AppearanceHeader.TextOptions.HAlignment = HorzAlignment.Center;
                gridView.Columns.Add(col);
            }
            //return gridView;
        }
Example #2
0
        /// <summary>
        /// 重新绘制单元格的时候条件(首先判断是否修改)
        /// </summary>
        /// <param name="rowHandle"></param>
        /// <param name="column"></param>
        /// <param name="state"></param>
        /// <param name="appearance"></param>
        /// <returns></returns>
        protected override AppearanceObject RaiseGetRowCellStyle(int rowHandle, DevExpress.XtraGrid.Columns.GridColumn column, DevExpress.XtraGrid.Views.Base.GridRowCellState state, AppearanceObject appearance)
        {
            AppearanceObject ao = base.RaiseGetRowCellStyle(rowHandle, column, state, appearance);

            if (this.m_SchemeColor != null)
            {
                if (SetRowCellColorStyle != null)
                {
                    CellColorArgs args = new CellColorArgs();
                    args.Appearance  = ao;
                    args.RowObject   = this.GetRow(rowHandle);
                    args.SchemeColor = this.m_SchemeColor;
                    args.Column      = column;
                    //事件调用
                    this.OnSetRowCellColor(this, args);
                }
            }

            string str = string.Format("{0},{1}", rowHandle, column.ColumnHandle);

            if (this.EditedObject.Contains(str))
            {
                ao.Font = new Font(ao.Font.FontFamily, ao.Font.Size, FontStyle.Bold);
            }
            else
            {
                ao.Font = new Font(ao.Font.FontFamily, ao.Font.Size, ao.Font.Style);
            }

            return(ao);
        }
        /// <summary>
        /// 为GridView内增加行删除按钮
        /// </summary>
        /// <param name="gv">GridView</param>
        public static GridView AddRowDelButton(this GridView gv)
        {
            if (gv == null)
            {
                return(gv);
            }
            RepositoryItemButtonEdit btn = new RepositoryItemButtonEdit {
                TextEditStyle = DevExpress.XtraEditors.Controls.TextEditStyles.HideTextEditor
            };

            btn.Buttons.Clear();
            //下一行的AppContext.Directories.Images这个被改过
            //btn.Buttons.Add(new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Glyph, "", -1, true, true, false, DevExpress.XtraEditors.ImageLocation.MiddleCenter, new Bitmap(Path.Combine(AppContext.Directories.Images, "RowDelete-normal.png")), new DevExpress.Utils.KeyShortcut(System.Windows.Forms.Keys.None), new DevExpress.Utils.SerializableAppearanceObject(), "", null, null, true));
            btn.Buttons.Add(new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Glyph, "", -1, true, true, false, DevExpress.XtraEditors.ImageLocation.MiddleCenter, new Bitmap(Path.Combine("", "RowDelete-normal.png")), new DevExpress.Utils.KeyShortcut(System.Windows.Forms.Keys.None), new DevExpress.Utils.SerializableAppearanceObject(), "", null, null, true));
            gv.GridControl.RepositoryItems.Add(btn);
            GridColumn gc = new DevExpress.XtraGrid.Columns.GridColumn()
            {
                Caption = string.Empty, ColumnEdit = btn, Visible = true, Width = 20
            };

            gc.OptionsColumn.AllowMove = false;
            gc.OptionsColumn.AllowSize = false;
            gc.OptionsColumn.AllowSort = DevExpress.Utils.DefaultBoolean.False;
            gv.Columns.Add(gc);
            btn.ButtonClick += (sender, e) =>
            {
                (gv.DataSource as IList).Remove(gv.GetFocusedRow());
                gv.RefreshData();
            };
            return(gv);
        }
Example #4
0
        public void UpdateOnlineUsers(bool bAllLogin = false)
        {
            DataTable dtOnlineUsers = OPT.PCOCCenter.Client.Client.GetOnlineUsers(bAllLogin);

            if (dtOnlineUsers != null)
            {
                gridControl.DataSource            = dtOnlineUsers;
                gridView.OptionsBehavior.ReadOnly = true;
                DevExpress.XtraGrid.Columns.GridColumn colLoginTime = gridView.Columns["LoginTime"];
                colLoginTime.DisplayFormat.FormatString = "yyyy-MM-dd HH:mm:ss";
                DevExpress.XtraGrid.Columns.GridColumn colLogoutTime = gridView.Columns["LogoutTime"];
                colLogoutTime.DisplayFormat.FormatString = "yyyy-MM-dd HH:mm:ss";

                gridView.SortInfo.ClearSorting();
                gridView.SortInfo.AddRange(new DevExpress.XtraGrid.Columns.GridColumnSortInfo[] {
                    new DevExpress.XtraGrid.Columns.GridColumnSortInfo(colLoginTime, DevExpress.Data.ColumnSortOrder.Descending)
                });

                gridView.Columns["ID"].Caption            = "编号"; gridView.Columns["ID"].Visible = false;
                gridView.Columns["UserName"].Caption      = "用户名";
                gridView.Columns["UserIP"].Caption        = "用户IP";
                gridView.Columns["LoginTime"].Caption     = "登入时间";
                gridView.Columns["AppName"].Caption       = "模块名";
                gridView.Columns["ModuleName"].Caption    = "功能名"; gridView.Columns["ModuleName"].Visible = false;
                gridView.Columns["ModuleVersion"].Caption = "功能版本"; gridView.Columns["ModuleVersion"].Visible = false;
                gridView.Columns["LogoutTime"].Caption    = "登出时间";
                gridView.Columns["Status"].Caption        = "状态信息";
            }
        }
Example #5
0
 /// <summary>
 /// 创建列表数据列
 /// </summary>
 private void CreateGridControlColumns()
 {
     try
     {
         gridView1.Columns.Clear();
         columns = xmlWork.GetColumns(reportName);
         GridColumn gridColumn = null;
         for (int i = 0; i < columns.Count; i++)
         {
             gridColumn              = new DevExpress.XtraGrid.Columns.GridColumn();
             gridColumn.Caption      = columns[i].caption;
             gridColumn.FieldName    = columns[i].datafield;
             gridColumn.Width        = Convert.ToInt32(columns[i].width);
             gridColumn.Visible      = true;
             gridColumn.VisibleIndex = i;
             this.gridView1.Columns.Add(gridColumn);
             gridColumn.OptionsFilter.AllowAutoFilter           = false;
             gridColumn.OptionsFilter.AllowFilter               = false;
             gridColumn.OptionsFilter.ImmediateUpdateAutoFilter = false;
         }
         this.gridView1.BestFitColumns();
     }
     catch (Exception ex)
     {
         throw ex;
     }
 }
Example #6
0
        //添加年份后,新增一列
        private void AddColumn2(int year)
        {
            DevExpress.XtraGrid.Columns.GridColumn column = new DevExpress.XtraGrid.Columns.GridColumn();

            column.FieldName = "y" + year;
            column.Tag       = year;
            column.Caption   = year + "年";
            column.Name      = year.ToString();
            column.Width     = 100;
            column.OptionsColumn.AllowSort = DevExpress.Utils.DefaultBoolean.False;
            column.VisibleIndex            = year;//有两列隐藏列

            //
            // repositoryItemTextEdit1
            //
            RepositoryItemTextEdit repositoryItemTextEdit1 = new RepositoryItemTextEdit();

            repositoryItemTextEdit1.AutoHeight = false;
            repositoryItemTextEdit1.DisplayFormat.FormatString = "n2";
            repositoryItemTextEdit1.DisplayFormat.FormatType   = DevExpress.Utils.FormatType.Numeric;
            // repositoryItemTextEdit1.Mask.EditMask = "n2";
            repositoryItemTextEdit1.Mask.EditMask = "#####################0.00%";
            repositoryItemTextEdit1.Mask.MaskType = DevExpress.XtraEditors.Mask.MaskType.Numeric;

            column.ColumnEdit = repositoryItemTextEdit1;
            column.DisplayFormat.FormatString = "#####################0.##%";
            column.DisplayFormat.FormatType   = DevExpress.Utils.FormatType.Numeric;


            this.gridView1.Columns.AddRange(new DevExpress.XtraGrid.Columns.GridColumn[] {
                column
            });
        }
 private void SetGridColumWidth(string columnName, int width)
 {
     DevExpress.XtraGrid.Columns.GridColumn column = this.winGridViewPager1.gridView1.Columns.ColumnByFieldName(columnName);
     if (column != null)
     {
         column.Width = width;
     }
 }
Example #8
0
        protected override void CreateGridColumns()
        {
            this.colShelfNo = new DevExpress.XtraGrid.Columns.GridColumn();
            this.colRowNo   = new DevExpress.XtraGrid.Columns.GridColumn();
            this.colColNo   = new DevExpress.XtraGrid.Columns.GridColumn();
            this.colLevelNo = new DevExpress.XtraGrid.Columns.GridColumn();

            Columns = new DevExpress.XtraGrid.Columns.GridColumn[] {
                this.colShelfNo,
                this.colRowNo,
                this.colLevelNo,
                this.colColNo
            };

            //
            // colShelfNo
            //
            this.colShelfNo.Caption   = "Shelf#";// "货架号";
            this.colShelfNo.FieldName = "ShelfNo";
            this.colShelfNo.Name      = "colShelfNo";
            this.colShelfNo.Visible   = true;
            this.colShelfNo.Width     = 100;
            this.colShelfNo.OptionsColumn.AllowEdit = false;

            //
            // colRowNo
            //
            this.colRowNo.Caption     = "Row#";//"行号";
            this.colRowNo.FieldName   = "RowNo";
            this.colRowNo.Name        = "colRowNo";
            this.colRowNo.UnboundType = DevExpress.Data.UnboundColumnType.Integer;
            this.colRowNo.Visible     = true;
            this.colRowNo.Width       = 60;
            this.colRowNo.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
            this.colRowNo.AppearanceCell.TextOptions.HAlignment   = DevExpress.Utils.HorzAlignment.Center;
            //
            // colLevelNo
            //
            this.colLevelNo.Caption     = "Level#";//"层号";
            this.colLevelNo.FieldName   = "LevelNo";
            this.colLevelNo.Name        = "colLevelNo";
            this.colLevelNo.UnboundType = DevExpress.Data.UnboundColumnType.String;
            this.colLevelNo.Visible     = true;
            this.colLevelNo.Width       = 60;
            this.colLevelNo.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
            this.colLevelNo.AppearanceCell.TextOptions.HAlignment   = DevExpress.Utils.HorzAlignment.Center;
            //
            // colColNo
            //
            this.colColNo.Caption     = "Column#";// "列号";
            this.colColNo.FieldName   = "ColNo";
            this.colColNo.Name        = "colColNo";
            this.colColNo.UnboundType = DevExpress.Data.UnboundColumnType.Integer;
            this.colColNo.Visible     = true;
            this.colColNo.Width       = 60;
            this.colColNo.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
            this.colColNo.AppearanceCell.TextOptions.HAlignment   = DevExpress.Utils.HorzAlignment.Center;
        }
Example #9
0
        private void grvTroCapBHXH_ValidateRow(object sender, DevExpress.XtraGrid.Views.Base.ValidateRowEventArgs e)
        {
            grvTroCapBHXH.ClearColumnErrors();
            DevExpress.XtraGrid.Views.Grid.GridView View          = (DevExpress.XtraGrid.Views.Grid.GridView)sender;
            DevExpress.XtraGrid.Columns.GridColumn  ID_CN         = View.Columns["ID_CN"];
            DevExpress.XtraGrid.Columns.GridColumn  NGHI_TU_NGAY  = View.Columns["NGHI_TU_NGAY"];
            DevExpress.XtraGrid.Columns.GridColumn  NGHI_DEN_NGAY = View.Columns["NGHI_DEN_NGAY"];
            DevExpress.XtraGrid.Columns.GridColumn  ID_LDV        = View.Columns["ID_LDV"];
            DevExpress.XtraGrid.Columns.GridColumn  ID_HTNTC      = View.Columns["ID_HTNTC"];
            if (View.GetRowCellValue(e.RowHandle, ID_LDV).ToString() == "")
            {
                e.Valid = false;
                View.SetColumnError(ID_LDV, Commons.Modules.ObjLanguages.GetLanguage(Commons.Modules.ModuleName, this.Name, "MsgKiemtraLDVNULL", Commons.Modules.TypeLanguage)); return;
            }
            if (View.GetRowCellValue(e.RowHandle, ID_HTNTC).ToString() == "")
            {
                e.Valid = false;
                View.SetColumnError(ID_HTNTC, Commons.Modules.ObjLanguages.GetLanguage(Commons.Modules.ModuleName, this.Name, "MsgKiemtraHTNTCNULL", Commons.Modules.TypeLanguage)); return;
            }

            if (View.GetRowCellValue(e.RowHandle, NGHI_TU_NGAY).ToString() == "")
            {
                e.Valid = false;
                View.SetColumnError(NGHI_TU_NGAY, Commons.Modules.ObjLanguages.GetLanguage(Commons.Modules.ModuleName, this.Name, "MsgKiemtraTuNgayCNULL", Commons.Modules.TypeLanguage)); return;
            }
            if (View.GetRowCellValue(e.RowHandle, NGHI_DEN_NGAY).ToString() == "")
            {
                e.Valid = false;
                View.SetColumnError(NGHI_DEN_NGAY, Commons.Modules.ObjLanguages.GetLanguage(Commons.Modules.ModuleName, this.Name, "MsgKiemtraDenNgayNULL", Commons.Modules.TypeLanguage)); return;
            }

            //kiểm tra dữ liệu trùng
            DataTable tempt = Commons.Modules.ObjSystems.ConvertDatatable(grvTroCapBHXH);
            int       n     = 0;

            try
            {
                string sSql = "SELECT dbo.fuKiemTraTroCapBHXH(" + View.GetRowCellValue(e.RowHandle, ID_CN) + ",'" + Convert.ToDateTime(View.GetRowCellValue(e.RowHandle, NGHI_TU_NGAY)).ToString("MM/dd/yyyy") + "','" + Convert.ToDateTime(View.GetRowCellValue(e.RowHandle, NGHI_DEN_NGAY)).ToString("MM/dd/yyyy") + "'," + ThangdateEdit.DateTime.Month + "," + ThangdateEdit.DateTime.Year + ")";
                n = Convert.ToInt32(SqlHelper.ExecuteScalar(Commons.IConnections.CNStr, CommandType.Text, sSql));
            }
            catch
            { }
            if (n == 0)
            {
                //kiểm tra từ ngày dến ngày trên lưới
                DateTime tn = Convert.ToDateTime(View.GetRowCellValue(e.RowHandle, NGHI_TU_NGAY));
                DateTime dn = Convert.ToDateTime(View.GetRowCellValue(e.RowHandle, NGHI_DEN_NGAY));
                n = tempt.AsEnumerable().Count(x => x.Field <Int64>("ID_CN") == Convert.ToInt64(View.GetRowCellValue(e.RowHandle, ID_CN)) && x.Field <DateTime>("NGHI_TU_NGAY") > tn && x.Field <DateTime>("NGHI_DEN_NGAY") < dn);
                if (n == 1)
                {
                    e.Valid = false;
                    View.SetColumnError(ID_CN, Commons.Modules.ObjLanguages.GetLanguage(Commons.Modules.ModuleName, this.Name, "MsgTrungDuLieu", Commons.Modules.TypeLanguage));
                    View.SetColumnError(NGHI_TU_NGAY, Commons.Modules.ObjLanguages.GetLanguage(Commons.Modules.ModuleName, this.Name, "MsgTrungDuLieu", Commons.Modules.TypeLanguage));
                    val = false;
                    return;
                }
            }
        }
 /// <summary>
 /// 设置显示列的样式
 /// </summary>
 /// <param name="pColumn"></param>
 /// <param name="pColInfo"></param>
 public void SetColumn(DevExpress.XtraGrid.Columns.GridColumn gridColumn, DataColumn dataColumn) {
     gridColumn.Caption = dataColumn.Caption;
     gridColumn.FieldName = dataColumn.ColumnName;
     gridColumn.Name = "XtCol" + dataColumn.ColumnName;
     gridColumn.OptionsColumn.ReadOnly = true;
     gridColumn.OptionsColumn.AllowEdit = false;
     //pColumn.OptionsFilter.AllowFilter = false;
     gridColumn.Width = 80;
     gridColumn.VisibleIndex = gridColumn.AbsoluteIndex;// _OrderIndex ++;
 }
Example #11
0
        public static List <string> GridToCSV(DevExpress.XtraGrid.GridControl grid)
        {
            DevExpress.XtraGrid.Views.Grid.GridView view =
                (DevExpress.XtraGrid.Views.Grid.GridView)grid.DefaultView;
            Dictionary <int, string> Titles      = new Dictionary <int, string>();
            List <string>            CSV         = new List <string>();
            StringBuilder            sb          = new StringBuilder();
            Dictionary <int, int>    rowSequence = new Dictionary <int, int>();

            for (int i = 0; i < view.Columns.Count; i++)
            {
                if (view.Columns[i].Visible)
                {
                    int k = view.Columns[i].VisibleIndex;
                    rowSequence[k] = i;
                }
            }
            for (int key = 0; key < rowSequence.Count; key++)
            {
                int i = rowSequence[key];
                Titles.Add(i, view.Columns[i].Caption);
                sb.Append(string.Format("\"{0}\",", Titles[i]));
            }
            CSV.Add(RemoveComma(sb.ToString()));
            int dataRowCount = view.DataRowCount;

            for (int i = 0; i < dataRowCount; i++)
            {
                sb.Length = 0;
                for (int key = 0; key < rowSequence.Count; key++)
                {
                    int k = rowSequence[key];
                    DevExpress.XtraGrid.Columns.GridColumn col = view.Columns[k];
                    var cellValue = view.GetRowCellValue(i, col); //GetRowCellDisplayText(i, col,);
                    if (cellValue != null)
                    {
                        if (cellValue is DateTime)
                        {
                            DateTime dt = (DateTime)cellValue;
                            sb.Append(string.Format("\"{0}\",", dt.ToShortDateString()));
                        }
                        else
                        {
                            sb.Append(string.Format("\"{0}\",", cellValue.ToString()));
                        }
                    }
                    else
                    {
                        sb.Append(",");
                    }
                }
                CSV.Add(RemoveComma(sb.ToString()));
            }
            return(CSV);
        }
Example #12
0
 private void SetColumnHeight(DevExpress.XtraGrid.Columns.GridColumn column)
 {
     try
     {
         int col_height = GetColumnBestHeight(column);
         SetMaxColumnHeights();
     }
     catch (Exception ex)
     {
         MyLocalizer.XtraMessageBoxShow("В программе произошла ошибка. Описание: " + ex.Message, "Ошибка", MessageBoxButtons.OK, MessageBoxIcon.Error);
     }
 }
Example #13
0
        protected override void CreateGridColumns()
        {
            this.colTranboundID = new DevExpress.XtraGrid.Columns.GridColumn();
            this.colCreateTime  = new DevExpress.XtraGrid.Columns.GridColumn();
            this.colOperator    = new DevExpress.XtraGrid.Columns.GridColumn();
            this.colStatus      = new DevExpress.XtraGrid.Columns.GridColumn();

            Columns = new DevExpress.XtraGrid.Columns.GridColumn[] {
                this.colTranboundID,
                this.colCreateTime,
                this.colOperator,
                this.colStatus
            };

            //
            // colTranboundID
            //
            this.colTranboundID.Caption     = "倒库单编号";
            this.colTranboundID.FieldName   = "TranboundID";
            this.colTranboundID.Name        = "colTranboundID";
            this.colTranboundID.UnboundType = DevExpress.Data.UnboundColumnType.String;
            this.colTranboundID.Visible     = false;
            this.colTranboundID.Width       = 100;
            //
            // colCreateTime
            //
            this.colCreateTime.Caption     = "Date";//"倒库日期";
            this.colCreateTime.FieldName   = "CreateTime";
            this.colCreateTime.Name        = "colCreateTime";
            this.colCreateTime.UnboundType = DevExpress.Data.UnboundColumnType.String;
            this.colCreateTime.Visible     = true;
            this.colCreateTime.Width       = 100;
            //
            // colOperator
            //
            this.colOperator.Caption     = "Operator";//"操作人员";
            this.colOperator.FieldName   = "Operator";
            this.colOperator.Name        = "colOperator";
            this.colOperator.UnboundType = DevExpress.Data.UnboundColumnType.String;
            this.colOperator.Visible     = true;
            this.colOperator.Width       = 100;

            //
            // colStatus
            //
            this.colStatus.Caption     = "Status";//"完成状态";
            this.colStatus.FieldName   = "Status";
            this.colStatus.Name        = "colStatus";
            this.colStatus.UnboundType = DevExpress.Data.UnboundColumnType.String;
            this.colStatus.Visible     = true;
            this.colStatus.Width       = 100;
        }
Example #14
0
        protected override void CreateGridColumns()
        {
            this.colUserCode = new DevExpress.XtraGrid.Columns.GridColumn();
            this.colUserName = new DevExpress.XtraGrid.Columns.GridColumn();
            this.colUserPsw  = new DevExpress.XtraGrid.Columns.GridColumn();
            this.colUserKind = new DevExpress.XtraGrid.Columns.GridColumn();
            Columns          = new DevExpress.XtraGrid.Columns.GridColumn[] {
                this.colUserCode,
                this.colUserName,
                this.colUserPsw,
                this.colUserKind
            };

            //
            // colUserCode
            //
            this.colUserCode.Caption     = "LoginCode";
            this.colUserCode.FieldName   = "UserCode";
            this.colUserCode.Name        = "colUserCode";
            this.colUserCode.UnboundType = DevExpress.Data.UnboundColumnType.String;
            this.colUserCode.Visible     = false;
            this.colUserCode.Width       = 0;
            //
            // colUserName
            //
            this.colUserName.Caption     = "Name";
            this.colUserName.FieldName   = "UserName";
            this.colUserName.Name        = "colUserName";
            this.colUserName.UnboundType = DevExpress.Data.UnboundColumnType.String;
            this.colUserName.Visible     = true;
            this.colUserName.Width       = 150;
            //
            // colUserKind
            //
            this.colUserKind.Caption     = "Role";
            this.colUserKind.FieldName   = "UserRight";
            this.colUserKind.Name        = "colUserKind";
            this.colUserKind.UnboundType = DevExpress.Data.UnboundColumnType.String;
            this.colUserKind.Visible     = true;
            this.colUserKind.Width       = 100;
            //
            // colUserPsw
            //
            this.colUserPsw.Caption     = "Password";
            this.colUserPsw.FieldName   = "UserPsw";
            this.colUserPsw.Name        = "colUserPsw";
            this.colUserPsw.UnboundType = DevExpress.Data.UnboundColumnType.String;
            this.colUserPsw.Visible     = true;
            this.colUserPsw.Width       = 100;

            CreateUserKindCombo();
        }
Example #15
0
        //添加固定列
        private void AddFixColumn()
        {
            DevExpress.XtraGrid.Columns.GridColumn column = new DevExpress.XtraGrid.Columns.GridColumn();
            column.FieldName    = "Title";
            column.Caption      = "分类名";
            column.VisibleIndex = 0;
            column.Width        = 180;
            this.gridView2.Columns.AddRange(new DevExpress.XtraGrid.Columns.GridColumn[] {
                column
            });

            column              = new DevExpress.XtraGrid.Columns.GridColumn();
            column.FieldName    = "Sort";
            column.VisibleIndex = -1;
            this.gridView2.Columns.AddRange(new DevExpress.XtraGrid.Columns.GridColumn[] {
                column
            });


            column              = new DevExpress.XtraGrid.Columns.GridColumn();
            column.FieldName    = "ForecastID";
            column.VisibleIndex = -1;
            this.gridView2.Columns.AddRange(new DevExpress.XtraGrid.Columns.GridColumn[] {
                column
            });


            column              = new DevExpress.XtraGrid.Columns.GridColumn();
            column.FieldName    = "Forecast";
            column.VisibleIndex = -1;
            this.gridView2.Columns.AddRange(new DevExpress.XtraGrid.Columns.GridColumn[] {
                column
            });


            column              = new DevExpress.XtraGrid.Columns.GridColumn();
            column.FieldName    = "ID";
            column.VisibleIndex = -1;
            this.gridView2.Columns.AddRange(new DevExpress.XtraGrid.Columns.GridColumn[] {
                column
            });


            column              = new DevExpress.XtraGrid.Columns.GridColumn();
            column.FieldName    = "ParentID";
            column.VisibleIndex = -1;

            this.gridView2.Columns.AddRange(new DevExpress.XtraGrid.Columns.GridColumn[] {
                column
            });
        }
        //设置汇总显示的信息
        public void SetGroupSummary(DevExpress.XtraGrid.Views.Grid.GridView gridView, Dictionary<string, MB.WinBase.Common.ColumnPropertyInfo> colPropertys) {
            ArrayList list = new ArrayList();

            foreach (DevExpress.XtraGrid.Columns.GridColumn dc in gridView.Columns) {
                int num;
                string name = string.Empty;
                if (!string.IsNullOrEmpty(colPropertys.Keys.FirstOrDefault(o => string.Compare(o, dc.FieldName, true) == 0))) {
                    name = dc.FieldName;
                }
                else {
                    name = interceptRightNumber(dc.FieldName, out num);
                }
                MB.WinBase.Common.ColumnPropertyInfo info = null;
                if (colPropertys.ContainsKey(name))
                    info = colPropertys[name];
                if (info != null && info.SummaryItem) {
                    //设置Total 汇总的信息
                    dc.SummaryItem.SummaryType = (DevExpress.Data.SummaryItemType)Enum.Parse(typeof(DevExpress.Data.SummaryItemType), info.SummaryItemType.ToString());
                    dc.SummaryItem.DisplayFormat = getSummmaryDisplayCaption(dc.SummaryItem.SummaryType) + "={0}";
                    //为了设置小计的显示而存储
                    list.Add(dc);
                }
                // 处理动态创建的列.
                if (info == null && dc.Tag != null) {
                    switch (dc.Tag.ToString()) {
                        case "System.Int32":
                        case "System.Decimal":
                            dc.SummaryItem.SummaryType = DevExpress.Data.SummaryItemType.Sum;
                            dc.SummaryItem.DisplayFormat = getSummmaryDisplayCaption(dc.SummaryItem.SummaryType) + "={0}";
                            list.Add(dc);
                            break;
                        default:
                            break;
                    }
                }
            }
            if (list.Count > 0) {
                List<DevExpress.XtraGrid.GridSummaryItem> summaryItems = new List<GridSummaryItem>();
                for (int i = 0; i < list.Count; i++) {
                    DevExpress.XtraGrid.Columns.GridColumn dc = list[i] as DevExpress.XtraGrid.Columns.GridColumn;
                    if (dc != null) {
                        var sumItem = new DevExpress.XtraGrid.GridGroupSummaryItem(dc.SummaryItem.SummaryType, dc.FieldName, dc, getSummmaryDisplayCaption(dc.SummaryItem.SummaryType) + "={0}");
                        var gsumItem = new DevExpress.XtraGrid.GridGroupSummaryItem(dc.SummaryItem.SummaryType, dc.FieldName, null, getSummmaryDisplayCaption(dc.SummaryItem.SummaryType) + "={0}");
                        summaryItems.Add(sumItem);
                        summaryItems.Add(gsumItem);
                    }
                }
                gridView.GroupSummary.AddRange(summaryItems.ToArray());
            }
        }
Example #17
0
        private void SetDataToGrid(DataTable dt, Dictionary <string, DataElementEntity> dataElementList)
        {
            gridView1.Columns.Clear();
            for (int i = 0; i < dt.Columns.Count; i++)
            {
                GridColumn gridColumn = new DevExpress.XtraGrid.Columns.GridColumn();

                gridColumn.FieldName = dt.Columns[i].ColumnName;
                gridColumn.OptionsFilter.AllowAutoFilter = false;
                gridColumn.OptionsFilter.AllowFilter     = false;
                gridColumn.OptionsColumn.AllowSort       = DefaultBoolean.False;
                gridColumn.Caption = dt.Columns[i].Caption;
                gridColumn.OptionsColumn.AllowEdit = false;
                gridColumn.AppearanceHeader.Options.UseTextOptions = true;
                gridColumn.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
                if (dt.Columns[i].ColumnName == "groupFlow")
                {
                    gridColumn.Visible = false;
                }
                else
                {
                    gridColumn.Visible      = true;
                    gridColumn.VisibleIndex = i;
                }
                if (dt.Columns[i].ColumnName == "jlsj" || dt.Columns[i].ColumnName == "xgsj")  //设置记录时间用的内容控件
                {
                    gridColumn.Width = 141;
                }
                if (dt.Columns[i].ColumnName == "jlr")
                {
                    gridColumn.Width = 100;
                }

                if (dataElementList.ContainsKey(dt.Columns[i].ColumnName))
                {
                    DataElementEntity dataElementEntity = dataElementList[dt.Columns[i].ColumnName];
                    if (dataElementEntity == null)
                    {
                        continue;
                    }
                    SetGridColumnWidth(gridColumn, dataElementEntity);
                }
                RepositoryItemMemoEdit repositoryItem = new RepositoryItemMemoEdit();
                repositoryItem.AutoHeight = true;
                gridColumn.ColumnEdit     = repositoryItem;

                gridView1.Columns.Add(gridColumn);
                gridView1.OptionsMenu.EnableColumnMenu = false;
            }
        }
Example #18
0
        /// <summary>
        /// Thêm trường STT cho gridview
        /// </summary>
        /// <param name="gridview1"></param>
        public static GridView AddRowNumber(this GridView gridview1, int minwidth = 45, int maxwidth = 55, bool fixedleft = false)
        {
            DevExpress.XtraGrid.Columns.GridColumn colSTT_nvn = new DevExpress.XtraGrid.Columns.GridColumn();
            colSTT_nvn.AppearanceHeader.Options.UseFont        = true;
            colSTT_nvn.AppearanceHeader.Options.UseTextOptions = true;
            colSTT_nvn.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
            colSTT_nvn.AppearanceCell.TextOptions.HAlignment   = DevExpress.Utils.HorzAlignment.Center;
            colSTT_nvn.AppearanceCell.Options.UseTextOptions   = true;
            colSTT_nvn.Caption = "STT";
            colSTT_nvn.AppearanceHeader.Font = new System.Drawing.Font(colSTT_nvn.AppearanceHeader.Font, System.Drawing.FontStyle.Bold);
            colSTT_nvn.Width    = minwidth;
            colSTT_nvn.MinWidth = minwidth;
            //colSTT_nvn.Width = 50;
            colSTT_nvn.MaxWidth = maxwidth;
            colSTT_nvn.OptionsColumn.AllowEdit = false;
            colSTT_nvn.VisibleIndex            = 0;
            Random rad = new Random();

            colSTT_nvn.Name = "colStt.123" + rad.Next(1000);

            foreach (DevExpress.XtraGrid.Columns.GridColumn c in gridview1.Columns.Where(p => p.VisibleIndex >= 0).OrderBy(p => p.VisibleIndex))
            {
                if (c.VisibleIndex >= 0)
                {
                    c.VisibleIndex = c.VisibleIndex + 1;
                }
            }

            gridview1.Columns.Add(colSTT_nvn);
            gridview1.CustomDrawCell += (s1, e1) =>
            {
                if (e1.Column == colSTT_nvn)
                {
                    if (e1.RowHandle >= 0)
                    {
                        e1.DisplayText = (e1.RowHandle + 1).ToString();
                    }
                    else
                    {
                        e1.DisplayText = "*";
                    }
                }
            };
            if (fixedleft)
            {
                colSTT_nvn.Fixed = DevExpress.XtraGrid.Columns.FixedStyle.Left;
            }
            colSTT_nvn.VisibleIndex = 0;
            return(gridview1);
        }
Example #19
0
        private void grvDCTroCapBHXH_ValidateRow(object sender, DevExpress.XtraGrid.Views.Base.ValidateRowEventArgs e)
        {
            DevExpress.XtraGrid.Views.Grid.GridView View          = (DevExpress.XtraGrid.Views.Grid.GridView)sender;
            DevExpress.XtraGrid.Columns.GridColumn  ID_CN         = View.Columns["ID_CN"];
            DevExpress.XtraGrid.Columns.GridColumn  NGHI_TU_NGAY  = View.Columns["NGHI_TU_NGAY"];
            DevExpress.XtraGrid.Columns.GridColumn  NGHI_DEN_NGAY = View.Columns["NGHI_DEN_NGAY"];
            DevExpress.XtraGrid.Columns.GridColumn  ID_LDV        = View.Columns["ID_LDV"];
            DevExpress.XtraGrid.Columns.GridColumn  ID_HTNTC      = View.Columns["ID_LDV"];
            if (View.GetRowCellValue(e.RowHandle, ID_LDV).ToString() == "")
            {
                e.Valid = false;
                View.SetColumnError(ID_LDV, Commons.Modules.ObjLanguages.GetLanguage(Commons.Modules.ModuleName, this.Name, "MsgKiemtraLDVNULL", Commons.Modules.TypeLanguage)); return;
            }
            if (View.GetRowCellValue(e.RowHandle, ID_HTNTC).ToString() == "")
            {
                e.Valid = false;
                View.SetColumnError(ID_HTNTC, Commons.Modules.ObjLanguages.GetLanguage(Commons.Modules.ModuleName, this.Name, "MsgKiemtraHTNTCNULL", Commons.Modules.TypeLanguage)); return;
            }

            if (View.GetRowCellValue(e.RowHandle, NGHI_TU_NGAY).ToString() == "")
            {
                e.Valid = false;
                View.SetColumnError(NGHI_TU_NGAY, Commons.Modules.ObjLanguages.GetLanguage(Commons.Modules.ModuleName, this.Name, "MsgKiemtraTuNgayCNULL", Commons.Modules.TypeLanguage)); return;
            }
            if (View.GetRowCellValue(e.RowHandle, NGHI_DEN_NGAY).ToString() == "")
            {
                e.Valid = false;
                View.SetColumnError(NGHI_DEN_NGAY, Commons.Modules.ObjLanguages.GetLanguage(Commons.Modules.ModuleName, this.Name, "MsgKiemtraDenNgayNULL", Commons.Modules.TypeLanguage)); return;
            }
            //kiểm tra dữ liệu trùng
            DataTable tempt = Commons.Modules.ObjSystems.ConvertDatatable(grvDCTroCapBHXH);
            int       n     = 0;

            //kiểm tra trùng trên view
            try
            {
                n = tempt.AsEnumerable().Count(x => x.Field <Int64>("ID_CN") == Convert.ToInt64(View.GetRowCellValue(e.RowHandle, ID_CN)) && x.Field <DateTime>("NGHI_TU_NGAY") == Convert.ToDateTime(View.GetRowCellValue(e.RowHandle, NGHI_TU_NGAY)));
            }
            catch (Exception ex)
            {
            }
            if (n > 1)
            {
                e.Valid = false;
                View.SetColumnError(ID_CN, Commons.Modules.ObjLanguages.GetLanguage(Commons.Modules.ModuleName, this.Name, "MsgTrungDuLieu", Commons.Modules.TypeLanguage));
                View.SetColumnError(NGHI_TU_NGAY, Commons.Modules.ObjLanguages.GetLanguage(Commons.Modules.ModuleName, this.Name, "MsgTrungDuLieu", Commons.Modules.TypeLanguage));
                val = false;
                return;
            }
        }
Example #20
0
 /// <summary>
 /// 列配色优先
 /// </summary>
 /// <param name="e"></param>
 /// <returns></returns>
 private bool RaiseColumnColor(DevExpress.XtraGrid.Columns.GridColumn column, AppearanceObject ao)
 {
     //if (!e.Column.AppearanceCell.BackColor.IsEmpty || e.Column.AppearanceCell.BackColor == Color.White) return ao;
     if (this.ColumnColor != null)
     {
         _CellStyle style = this.ColumnColor[this.ModelName][column.FieldName];
         if (style != null)
         {
             ao.BackColor = style.BColor;
             return(true);
         }
     }
     return(false);
 }
Example #21
0
 /// <summary>
 /// 动态创建SearchLookUpEdit自带GridView的列
 /// </summary>
 /// <param name="p_GridView">SearchLookUpEdit自带的GridView</param>
 /// <param name="p_ColWidth">列宽的一维数组</param>
 /// <param name="p_FieldName">列FieldName的一维数组</param>
 /// <param name="p_Caption">列Caption的一维数组</param>
 /// <param name="p_ColVisible">设置列是否可见的一维数组</param>
 public static void SLKCreateGrid(GridView p_GridView, int[] p_ColWidth, string[] p_FieldName, string[] p_Caption, bool[] p_ColVisible)
 {
     DevExpress.XtraGrid.Columns.GridColumn column = new DevExpress.XtraGrid.Columns.GridColumn();
     p_GridView.Columns.Clear();
     for (int i = 0; i < p_FieldName.Length; i++)
     {
         column.Caption      = p_Caption[i];
         column.FieldName    = p_FieldName[i];
         column.Width        = p_ColWidth[i];
         column.VisibleIndex = i + 1;
         column.Visible      = p_ColVisible[i];
         p_GridView.Columns.Add(column);
     }
 }
 /// <summary>
 /// 格式化动态创建列的样式。
 /// </summary>
 /// <param name="gridView"></param>
 /// <param name="previousCol">动态创建的字段在什么列之后。</param>
 /// <param name="activeLeftName"></param>
 /// <param name="canEdit"></param>
 public void FormatActiveColumns(DevExpress.XtraGrid.Views.Grid.GridView gridView, string previousCol, string activeLeftName, bool canEdit) {
     DevExpress.XtraGrid.Columns.GridColumn preCol = gridView.Columns[previousCol];
     int preIndex = preCol.VisibleIndex;
     foreach (DevExpress.XtraGrid.Columns.GridColumn aCol in gridView.Columns) {
         if (aCol.FieldName.IndexOf(activeLeftName) < 0) continue;
         aCol.VisibleIndex = ++preIndex;
         if (!canEdit) {
             aCol.OptionsColumn.ReadOnly = true;
             aCol.OptionsColumn.AllowFocus = false;
             aCol.AppearanceHeader.ForeColor = Color.Black;
             aCol.AppearanceCell.Font = new Font(aCol.AppearanceCell.Font, System.Drawing.FontStyle.Bold);
             aCol.AppearanceCell.BackColor = Color.WhiteSmoke;
         }
     }
 }
Example #23
0
 /// <summary>
 /// InitializationGridControl 初始化GridControl数据集表头
 /// </summary>
 /// <param name="grid"></param>
 /// <param name="gridControlHeaders"></param>
 public static void InitializationGridControlHeader(DevExpress.XtraGrid.GridControl grid,
                                                    List <FYYK.Model.GridControlHeader> gridControlHeaders)
 {
     /*
      * gridView1.OptionsView.ColumnAutoWidth = false;
      * for (int I = 0; I < gridView1.Columns.Count; I++)
      * {
      *  this.gridView1.BestFitColumns();
      *  this.gridView1.Columns[I].BestFit();//自动列宽
      * }*/
     try
     {
         if (gridControlHeaders == null || gridControlHeaders.Count <= 0)
         {
             return;
         }
         var gdv = new DevExpress.XtraGrid.Views.Grid.GridView();
         gdv.OptionsView.ShowGroupPanel = false;
         //gdv.BestFitColumns();
         //gdv.HorzScrollVisibility = DevExpress.XtraGrid.Views.Base.ScrollVisibility.Always;
         //gdv.OptionsView.ColumnAutoWidth = false;
         foreach (var item in gridControlHeaders)
         {
             var col = new DevExpress.XtraGrid.Columns.GridColumn();
             //columEdit
             if (string.Equals("True", item.CheckBox))
             {
                 //pDatatable.Columns.Add("选择",System.Type.GetType("System.Boolean"));
                 col.Width = 30;
                 col.OptionsColumn.ShowCaption = false;
                 col.ColumnEdit = new DevExpress.XtraEditors.Repository.RepositoryItemCheckEdit();
             }
             string strVisible = string.IsNullOrEmpty(item.Visible) ? "False" : item.Visible;
             col.Caption      = item.Caption.Trim();
             col.FieldName    = item.FieldName.Trim();
             col.Visible      = string.Equals(strVisible, "True") ? true : false;
             col.VisibleIndex = item.VisibleIndex;
             //col.AppearanceHeader.TextOptions.HAlignment = HorzAlignment.Center;
             //col.BestFit();
             gdv.Columns.Add(col);
         }
         grid.MainView = gdv;
     }
     catch (Exception ex)
     {
         string msg = ex.Message;
     }
 }
Example #24
0
        private int GetColumnBestHeight(DevExpress.XtraGrid.Columns.GridColumn column)
        {
            try
            {
                DevExpress.XtraGrid.Views.Grid.ViewInfo.GridViewInfo viewInfo = GridView.GetViewInfo() as GridViewInfo;

                GridColumnInfoArgs ex = null;
                viewInfo.GInfo.AddGraphics(null);
                ex = new GridColumnInfoArgs(viewInfo.GInfo.Cache, null);
                try
                {
                    ex.InnerElements.Add(new DrawElementInfo(new GlyphElementPainter(),
                                                             new GlyphElementInfoArgs(viewInfo.View.Images, 0, null),
                                                             StringAlignment.Near));
                    ex.SetAppearance(GridView.Appearance.HeaderPanel);
                    ex.Caption     = column.Caption;
                    ex.CaptionRect = new Rectangle(0, 0, (int)(column.VisibleWidth - 10 * DpiXRel), 1000);
                }
                finally
                {
                    viewInfo.GInfo.ReleaseGraphics();
                }

                GraphicsInfo grInfo = new GraphicsInfo();
                grInfo.AddGraphics(null);
                ex.Cache = grInfo.Cache;
                Size captionSize = CalcCaptionTextSize(grInfo.Cache, ex as HeaderObjectInfoArgs, column.Caption);
                bool canDrawMore = true;
                Size res         = ex.InnerElements.CalcMinSize(grInfo.Graphics, ref canDrawMore);

                res.Height = Math.Max(res.Height, captionSize.Height);
                res.Width += captionSize.Width;
                if (viewInfo.Painter != null)
                {
                    res = viewInfo.Painter.ElementsPainter.Column.CalcBoundsByClientRectangle(ex, new Rectangle(Point.Empty, res)).Size;
                    m_dictColumnHeight[column.Name] = res.Height;
                    return(res.Height);
                }
            }
            catch (Exception ex)
            {
                MyLocalizer.XtraMessageBoxShow("В программе произошла ошибка. Описание: " + ex.Message, "Ошибка", MessageBoxButtons.OK, MessageBoxIcon.Error);
            }
            return(-1);
        }
Example #25
0
        private void BuildupDataGrid(DevExpress.XtraGrid.Views.Grid.GridView view)
        {
            view.Columns.Clear();

            List <DevExpress.XtraGrid.Columns.GridColumn> aryAllColumns = new List <DevExpress.XtraGrid.Columns.GridColumn>();
            int nAllColumnCount = ConfigManager.Current.AllStructures.Length;

            for (int i = 0; i < nAllColumnCount; i++)
            {
                aryAllColumns.Add(new DevExpress.XtraGrid.Columns.GridColumn());
            }
            view.Columns.AddRange(aryAllColumns.ToArray());

            int nIndex = 0;

            // 설정값을 기준으로 Grid Column을 생성
            foreach (StructInfo info in ConfigManager.Current.AllStructures)
            {
                DevExpress.XtraGrid.Columns.GridColumn column = aryAllColumns[nIndex];
                column.FieldName = info.Name;
                column.Caption   = info.Caption;
                column.Name      = info.Name;
                column.OptionsColumn.AllowEdit = false;
                column.OptionsColumn.ReadOnly  = info.IsReadOnly;
                if (info.IsMultiEditor)
                {
                    DevExpress.XtraEditors.Repository.RepositoryItemMemoEdit memoEdit1 = new DevExpress.XtraEditors.Repository.RepositoryItemMemoEdit();
                    column.ColumnEdit              = memoEdit1;
                    memoEdit1.WordWrap             = true;
                    column.OptionsColumn.AllowEdit = true;
                }

                if (info.GridWidth > 0)
                {
                    column.Width = info.GridWidth;
                }

                aryAllColumns[nIndex].VisibleIndex = info.DisplayOrder;
                nIndex++;
            }

            ResizeLastColumn(view);
        }
 public void SetColumn(DevExpress.XtraGrid.Columns.GridColumn gridColumn, MB.WinBase.Common.ColumnPropertyInfo colPropertyInfo, string columnName) {
     gridColumn.Caption = colPropertyInfo.Description;
     if (columnName != null) {
         gridColumn.FieldName = columnName;
     }
     else {
         gridColumn.FieldName = colPropertyInfo.Name;
     }
     //SetColumnDisplayFormat(gridColumn, colPropertyInfo);
     gridColumn.Name = "XtCol" + colPropertyInfo.Name;
     gridColumn.Width = colPropertyInfo.VisibleWidth;
     if (colPropertyInfo.Visibled && colPropertyInfo.VisibleWidth > 0) {
         gridColumn.VisibleIndex = colPropertyInfo.OrderIndex;
     }
     else {
         gridColumn.VisibleIndex = -1;
     }
     //pColumn.OptionsFilter.AllowFilter = false;
     gridColumn.OptionsColumn.ReadOnly = string.Compare(colPropertyInfo.DataType, "System.Byte[]", true) == 0;
     gridColumn.OptionsColumn.AllowEdit = string.Compare(colPropertyInfo.DataType, "System.Byte[]", true) == 0;
 }
Example #27
0
        private void Form1Print_Load(object sender, EventArgs e)
        {
            gridControl1.DataSource = gridDataTable;
            //this.gridView1.GroupPanelText = this.Text;
            //this.gridView1.OptionsView.ColumnAutoWidth = false;
            if (!PrintRight)
            {
                barButtonItem1.Visibility = DevExpress.XtraBars.BarItemVisibility.Never;
            }
            DevExpress.XtraGrid.Columns.GridColumn gridColumn = this.gridView1.Columns.ColumnByFieldName("序号");
            gridColumn.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Near;
            gridColumn.Visible                  = true;
            gridColumn.ColumnEdit               = repositoryItemTextEdit1;
            repositoryItemTextEdit1.ReadOnly    = true;
            gridColumn.OptionsColumn.AllowMerge = DevExpress.Utils.DefaultBoolean.False;
            gridColumn.Width = 60;

            gridColumn = this.gridView1.Columns.ColumnByFieldName("项目");
            gridColumn.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
            gridColumn.Visible                  = true;
            gridColumn.ColumnEdit               = repositoryItemTextEdit1;
            repositoryItemTextEdit1.ReadOnly    = true;
            gridColumn.OptionsColumn.AllowMerge = DevExpress.Utils.DefaultBoolean.False;
            //gridColumn.Width = 10;
            foreach (DataColumn gd in gridDataTable.Columns)
            {
                if (gd.ColumnName.IndexOf("年") > 0)
                {
                    gridColumn = this.gridView1.Columns.ColumnByFieldName(gd.ColumnName);
                    gridColumn.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
                    gridColumn.Visible = true;
                    gridColumn.OptionsColumn.AllowMerge = DevExpress.Utils.DefaultBoolean.False;
                    gridColumn.ColumnEdit            = repositoryItemMemoEdit1;
                    repositoryItemMemoEdit1.ReadOnly = true;
                }
            }
        }
Example #28
0
        private void gridMaster_DoubleClick(object sender, EventArgs e)
        {
            DevExpress.XtraGrid.Views.Grid.ViewInfo.GridHitInfo hi =
                gridMasterView.CalcHitInfo((sender as System.Windows.Forms.Control).PointToClient(System.Windows.Forms.Control.MousePosition));
            DataRow FocusRow;

            if (hi.RowHandle >= 0)
            {
                int nCategory = 99;
                FocusRow = gridMasterView.GetDataRow(hi.RowHandle);
                if (FocusRow.ItemArray[0].ToString() == "Fitness Package")
                {
                    nCategory = 1;
                }
                else if (FocusRow.ItemArray[0].ToString() == "Spa Package")
                {
                    nCategory = 2;
                }
                else if (FocusRow.ItemArray[0].ToString() == "Fitness Product")
                {
                    nCategory = 3;
                }
                else if (FocusRow.ItemArray[0].ToString() == "Spa Product")
                {
                    nCategory = 4;
                }
                else if (FocusRow.ItemArray[0].ToString() == "PT Package")
                {
                    nCategory = 5;
                }
                ACMS.ACMSManager.Human_Resource.Reports.RPAllIncomeDetail frm = new ACMS.ACMSManager.Human_Resource.Reports.RPAllIncomeDetail(FocusRow.ItemArray[0].ToString(), nCategory, dtDateDay.SelectionStart, oUser.NEmployeeID());
                frm.Show();
                //ACMS.ACMSStaff.WorkFlow.MyCustomEditForm frm = new ACMS.ACMSStaff.WorkFlow.MyCustomEditForm((int)FocusRow.ItemArray[0], nDepartment);
                //frm.Show();
            }
        }
Example #29
0
        public static GridView AddDeleteRowButton(this GridView grv, EventHandler action_xoa)
        {
            RepositoryItemHyperLinkEdit rep_colXoa = new RepositoryItemHyperLinkEdit();

            rep_colXoa.AutoHeight = false;
            rep_colXoa.Name       = "rep_colXoa";
            rep_colXoa.NullText   = "Xóa";
            rep_colXoa.Click     += action_xoa;

            DevExpress.XtraGrid.Columns.GridColumn colXoa = new DevExpress.XtraGrid.Columns.GridColumn();
            colXoa.AppearanceCell.Options.UseTextOptions = true;
            colXoa.AppearanceCell.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
            colXoa.ColumnEdit   = rep_colXoa;
            colXoa.Fixed        = DevExpress.XtraGrid.Columns.FixedStyle.Right;
            colXoa.MaxWidth     = 35;
            colXoa.MinWidth     = 35;
            colXoa.Name         = "colXoa";
            colXoa.Visible      = true;
            colXoa.VisibleIndex = grv.Columns.Count;
            colXoa.Width        = 35;

            grv.Columns.Add(colXoa);
            return(grv);
        }
Example #30
0
 private void gridMaster_DoubleClick(object sender, EventArgs e)
 {
     DevExpress.XtraGrid.Views.Grid.ViewInfo.GridHitInfo hi =
     gridMasterView.CalcHitInfo((sender as System.Windows.Forms.Control).PointToClient(System.Windows.Forms.Control.MousePosition));
     DataRow FocusRow;
     if (hi.RowHandle >= 0)
     {
         int nCategory = 99;
         FocusRow = gridMasterView.GetDataRow(hi.RowHandle);
         if (FocusRow.ItemArray[0].ToString() == "Fitness Package")
             nCategory = 1;
         else if (FocusRow.ItemArray[0].ToString() == "Spa Package")
             nCategory = 2;
         else if (FocusRow.ItemArray[0].ToString() == "Fitness Product")
             nCategory = 3;
         else if (FocusRow.ItemArray[0].ToString() == "Spa Product")
             nCategory = 4;
         else if (FocusRow.ItemArray[0].ToString() == "PT Package")
             nCategory = 5;
         ACMS.ACMSManager.Human_Resource.Reports.RPAllIncomeDetail frm = new ACMS.ACMSManager.Human_Resource.Reports.RPAllIncomeDetail(FocusRow.ItemArray[0].ToString(), nCategory, dtDateDay.SelectionStart, oUser.NEmployeeID());
         frm.Show();
         //ACMS.ACMSStaff.WorkFlow.MyCustomEditForm frm = new ACMS.ACMSStaff.WorkFlow.MyCustomEditForm((int)FocusRow.ItemArray[0], nDepartment);
         //frm.Show();
     }
 }
Example #31
0
        private void BuildVisibleColumnsProc()
        {
            bool isContainPic = false;
            int iGroupIndexCount = -1;
            int i = 0;
            DevExpress.XtraGrid.Columns.GridColumn[] grdCol = new DevExpress.XtraGrid.Columns.GridColumn[m_dtTableData.Columns.Count];

            foreach (DataColumn dc in m_dtTableData.Columns)
            {

                DevExpress.XtraGrid.Columns.GridColumn colAdd = new DevExpress.XtraGrid.Columns.GridColumn() { FieldName = dc.Caption, Caption = dc.Caption, Name = dc.Caption };
                foreach (string readOnl in strColumnReadOnly)
                {
                    if (readOnl.ToLower().Equals(dc.Caption.ToLower()))
                    {
                        m_dtTableData.Columns[readOnl].ReadOnly = true;
                        break;
                    }
                }
                switch (dc.DataType.Name.ToLower())
                {
                    case "boolean":
                        DevExpress.XtraEditors.Repository.RepositoryItemCheckEdit colBool = new DevExpress.XtraEditors.Repository.RepositoryItemCheckEdit() { AllowFocused = false, BorderStyle = DevExpress.XtraEditors.Controls.BorderStyles.NoBorder, ValueChecked = true, ValueUnchecked = false };

                        isShowCheckAllBtn = true;
                        if (colAdd.Name.ToLower().Contains("modifed"))
                            isContainModifedColumn = true;
                        colAdd.ColumnEdit = colBool;
                        colAdd.VisibleIndex = i;

                        break;
                    case strDATETIME:
                        if (colAdd.Name.ToLower().Contains("time"))
                        {
                            colAdd.ColumnEdit = rpeDateTimeMask;
                        }
                        else
                        {
                            DevExpress.XtraEditors.Repository.RepositoryItemDateEdit colDate = new DevExpress.XtraEditors.Repository.RepositoryItemDateEdit();
                            colDate.Mask.EditMask = CommonConst.DATE_FORMAT_PATTEN;
                            colDate.Mask.UseMaskAsDisplayFormat = true;
                            colDate.AllowFocused = false;
                            colDate.BorderStyle = DevExpress.XtraEditors.Controls.BorderStyles.NoBorder;

                            colAdd.ColumnEdit = colDate;
                        }
                        colAdd.VisibleIndex = i;
                        break;
                    case strFLOAT:
                    case strREAL:
                        colAdd.DisplayFormat.FormatString = "f";
                        colAdd.DisplayFormat.FormatType = DevExpress.Utils.FormatType.Numeric;
                        colAdd.SummaryItem.DisplayFormat = "{0:#,##0;(#,##0);Zero}";
                        colAdd.SummaryItem.SummaryType = DevExpress.Data.SummaryItemType.Sum;
                        colAdd.VisibleIndex = i;
                        break;
                    case strBIGINT:
                    case strINT:
                    case strNUMERIC:
                    case strSMALLINT:
                    case strTINYINT:
                    case strDecimal:
                        colAdd.DisplayFormat.FormatString = "n0";
                        colAdd.DisplayFormat.FormatType = DevExpress.Utils.FormatType.Numeric;
                        colAdd.ColumnEdit = this.rpeNumberMask;
                        colAdd.SummaryItem.DisplayFormat = "{0:#,##0;(#,##0);Zero}";
                        colAdd.SummaryItem.SummaryType = DevExpress.Data.SummaryItemType.Sum;
                        colAdd.VisibleIndex = i;
                        break;
                    case strMONEY:
                    case strSMALLMONEY:
                        colAdd.DisplayFormat.FormatString = "n0";
                        colAdd.DisplayFormat.FormatType = DevExpress.Utils.FormatType.Numeric;
                        colAdd.ColumnEdit = this.rpeNumberMask;
                        colAdd.SummaryItem.DisplayFormat = "{0:#,##0;(#,##0);Zero}";
                        colAdd.SummaryItem.SummaryType = DevExpress.Data.SummaryItemType.Sum;
                        colAdd.VisibleIndex = i;
                        break;
                    case strIMAGE:
                    case "byte[]":
                        DevExpress.XtraEditors.Repository.RepositoryItemPictureEdit colPhoto = new DevExpress.XtraEditors.Repository.RepositoryItemPictureEdit();
                        colAdd.ColumnEdit = colPhoto;
                        colAdd.VisibleIndex = i;
                        isContainPic = true;
                        break;
                    default:

                        colAdd.VisibleIndex = i;
                        break;
                }
                if (colAdd.Name.ToLower().Equals(CommonConst.EmployeeID.ToLower()))
                {
                    //colAdd.DisplayFormat.FormatType = DevExpress.Utils.FormatType.Numeric;
                    colAdd.ColumnEdit = null;//this.rpeNumberMask;
                    colAdd.SummaryItem.DisplayFormat = "{0:#,##0;(#,##0);Zero}";
                    colAdd.SummaryItem.SummaryType = DevExpress.Data.SummaryItemType.Count;
                    colAdd.Fixed = FixedStyle.Left;

                }
                if (colAdd.Name.ToLower().Equals(CommonConst.FullName.ToLower()))
                {
                    //colAdd.DisplayFormat.FormatType = DevExpress.Utils.FormatType.Numeric;
                    colAdd.Fixed = FixedStyle.Left;
                }
                if (strColumnFormatFont != null && strColumnFormatFont.Length > 0 && strColumnFormatFont[0] != "")
                {
                    foreach (string strPairs in strColumnFormatFont)
                    {
                        if (colAdd.FieldName.Equals(strPairs.Split('#')[0]))
                        {
                            switch (strPairs.Split('#')[1].ToLower())
                            {
                                case "b":
                                    colAdd.AppearanceCell.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold);
                                    break;
                                case "i":
                                    colAdd.AppearanceCell.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Italic);
                                    break;
                                case "s":
                                    colAdd.AppearanceCell.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Strikeout);
                                    break;
                                case "u":
                                    colAdd.AppearanceCell.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Underline);
                                    break;
                            }
                        }
                    }
                }
                if (colAdd.Name.ToLower().Equals("month") || colAdd.Name.ToLower().Equals("year"))
                {
                    colAdd.DisplayFormat.FormatType = DevExpress.Utils.FormatType.None;
                    colAdd.ColumnEdit = null;
                    colAdd.SummaryItem.SummaryType = DevExpress.Data.SummaryItemType.None;
                }
                //Set list box columns
                DevExpress.XtraEditors.Repository.RepositoryItemLookUpEdit repCom = new DevExpress.XtraEditors.Repository.RepositoryItemLookUpEdit();
                //set combobox value data
                if (strColumnCombobox.Length > 0)
                {
                    foreach (string com in strColumnCombobox)
                    {
                        string[] comboCol = com.Split('&');
                        if (comboCol.Length < 2)
                            continue;
                        if (dc.Caption == comboCol[0])
                        {
                            DataTable dtCom = DBEngine.execReturnDataTable(comboCol[1]);
                            if (dtCom != null && dtCom.Rows.Count > 0)
                            {
                                repCom.DataSource = dtCom;
                                repCom.ValueMember = dtCom.Columns[0].Caption;
                                repCom.DisplayMember = dtCom.Columns[1].Caption;
                                repCom.NullText = string.Empty;
                                repCom.CloseUp += new DevExpress.XtraEditors.Controls.CloseUpEventHandler(repCom_CloseUp);
                                colAdd.ColumnEdit = repCom;
                                break;
                            }
                        }
                    }
                }
                if (strColumnHide != null && strColumnHide.Length > 0)
                {
                    foreach (string com in strColumnHide)
                    {
                        if (colAdd.Name.ToLower() == com.ToLower())
                        {
                            colAdd.VisibleIndex = -1;
                        }
                    }
                }
                if (strColumnFixed != null && strColumnFixed.Length > 0)
                {
                    foreach (string com in strColumnFixed)
                    {
                        if (colAdd.Name.ToLower() == com.ToLower())
                        {
                            colAdd.Fixed = FixedStyle.Left;
                        }
                    }
                }
                if (strColumnOrderBy != null && strColumnOrderBy.Length > 0)
                {
                    foreach (string com in strColumnOrderBy)
                    {
                        string[] comboCol = com.Split('&');
                        if (comboCol.Length < 2)
                            continue;
                        if (colAdd.Name.ToLower() == comboCol[0].ToLower())
                        {
                            colAdd.VisibleIndex = Convert.ToInt32(comboCol[1]);
                            break;
                        }
                    }
                }
                //int intWidth = Convert.ToInt16(dc.MaxLength) * 4;
                //colAdd.Width = (intWidth > 100 ? intWidth : 100);
                //colAdd.OptionsColumn.AllowEdit = !isReadOnly;
                grdCol[i++] = colAdd;
            }
            this.grvDynamic.Columns.Clear();
            this.grvDynamic.Columns.AddRange(grdCol);

            m_dtTableData.DefaultView.AllowEdit = !isReadOnly;
            //if (!isContainPic)
            //    grvDynamic.BestFitColumns();
            //else
            //    grvDynamic.RowHeight = 100;
            grvDynamic.BestFitColumns();
            if (strGroupColumns != null && strGroupColumns.Length > 0)
            {
                grvDynamic.OptionsView.ShowGroupPanel = false;
                foreach (string com in strGroupColumns)
                {
                    foreach (GridColumn colGroup in grvDynamic.Columns)
                        if (colGroup.Name.ToLower() == com.ToLower())
                        {
                            colGroup.GroupIndex = ++iGroupIndexCount;
                            grvDynamic.OptionsView.ShowGroupPanel = true;
                        }
                }
                grvDynamic.ExpandAllGroups();
            }
        }
        //- Cách sử dụng còn phức tạp có thể hỗ trợ nhiều hơn để việc khai
        //báo sử dụng de hon
        //- Giải pháp không hiệu quả lắm chỗ mảng DataTable
        /// <summary>
        /// Thay đổi đối tượng trên cột thứ nhất sẽ load tất cả giá trị liên quan đến đối tượng đó trên cột thứ 2 
        /// </summary>
        /// <param name="gridView">GridView chứa 2 cột đối tượng và giá trị tương ứng của đối tượng</param>
        /// <param name="colObject">Cột đối tượng</param>
        /// <param name="valueOfObj">Cột thay đổi giá trị khi đối tượng thay đổi</param>
        /// <param name="fieldNames">Lần lượt là fieldName của cột đối tượng và giá trị liên quan đến đối tượng</param>
        /// <param name="DisplayMember">Giá trị Field hiện lên trên cột giá trị của đối tượng</param>
        /// <param name="ValueMember">Giá trị cần lấy trên cột giá trị của đối tượng</param>
        /// <param name="srcObj">Có bao nhiêu đối tượng thì truyền vào bấy nhiều datasource cho nó</param>
        /// 
        public static void ObjectChange(GridView gridView, GridColumn colObject, GridColumn valueOfObj, string[] fieldNames, string fieldForeignKey, string tableNameObj, string IdField, string tableNameValObj, string DisplayMember, string ValueMember)
        {
            DataTable srcValueObj = HelpDB.getDatabase().LoadTable(tableNameValObj).Tables[0];
            DataTable srcObj = DABase.getDatabase().LoadTable(tableNameObj).Tables[0];
            DataTable srcNew = new DataTable();
            srcNew.Columns.Add(new DataColumn("OBJVALUE"));
            srcNew.Columns.Add(new DataColumn(ValueMember));
            srcNew.Columns.Add(new DataColumn(DisplayMember));
            RepositoryItemImageComboBox resCombo = (RepositoryItemImageComboBox)colObject.ColumnEdit;
            for (int i = 0; i < resCombo.Items.Count; i++)
            {
                string objId = resCombo.Items[i].Value.ToString();
                DataRow[] selRow = srcObj.Select(IdField + "=" + objId);
                string typeObj = "";
                if (selRow.Length > 0)
                    typeObj = selRow[0][fieldForeignKey].ToString();

                DataRow[] srcRowObj = srcValueObj.Select(fieldForeignKey + "=" + typeObj);

                foreach (DataRow dr in srcRowObj)
                {
                    DataRow newRow = srcNew.NewRow();
                    newRow["OBJVALUE"] = objId;
                    newRow[ValueMember] = dr[ValueMember];
                    newRow[DisplayMember] = dr[DisplayMember];
                    srcNew.Rows.Add(newRow);
                }

            }
            string cotAo = fieldNames[1] + "_PLV";
            // colObject.FieldName = fieldNames[0];
            //Tao cot ao trong GridView
            try
            {
                DataTable source = (DataTable)gridView.GridControl.DataSource;
                if (source != null)
                    source.Columns.Add(new DataColumn(cotAo));
                else
                {
                    gridView.GridControl.DataSourceChanged += delegate(object sender, EventArgs e)
                    {
                        // gridView.SetFocusedRowCellValue(valueOfObj, "");
                        DataTable src = (DataTable)(gridView.GridControl.DataSource);
                        if (!src.Columns.Contains(cotAo))
                            src.Columns.Add(new DataColumn(cotAo));
                        SetValueTable(ref src, srcNew, fieldNames, cotAo, DisplayMember, ValueMember);
                    };
                }
            }
            catch { }
            valueOfObj.FieldName = cotAo;

            //Tao datasource moi

            int isUpdateLookup = 0;
            //Khoi tao doi tuong GridControl va GridView
            DevExpress.XtraGrid.Views.Grid.GridView gridViewLookup = new GridView();
            DevExpress.XtraGrid.GridControl gridLookup = new DevExpress.XtraGrid.GridControl();

            //Thiet lap cac thuoc tinh cho doi tuong GridControl va GridView
            gridLookup.Dock = System.Windows.Forms.DockStyle.Fill;
            gridLookup.EmbeddedNavigator.Name = "";
            gridLookup.FormsUseDefaultLookAndFeel = false;
            gridLookup.Location = new System.Drawing.Point(0, 0);
            gridLookup.MainView = gridViewLookup;
            gridLookup.Name = "gridLookup";
            gridLookup.Size = new System.Drawing.Size(200, 100);
            gridLookup.TabIndex = 2;
            gridLookup.ViewCollection.AddRange(new DevExpress.XtraGrid.Views.Base.BaseView[] { gridViewLookup });
            gridLookup.MouseMove += delegate(object sender, MouseEventArgs e)
            {
                DevExpress.XtraGrid.Views.Grid.ViewInfo.GridHitInfo hi = gridViewLookup.CalcHitInfo(new System.Drawing.Point(e.X, e.Y));
                if (hi.RowHandle >= 0)
                    gridViewLookup.FocusedRowHandle = hi.RowHandle;
            };
            gridLookup.Click += delegate(object sender, EventArgs e)
            {
                isUpdateLookup = 1;
                gridView.Focus();
            };
            gridLookup.DataSource = srcNew;
            //Tao gridView

            gridViewLookup.BorderStyle = DevExpress.XtraEditors.Controls.BorderStyles.NoBorder;
            gridViewLookup.FocusRectStyle = DevExpress.XtraGrid.Views.Grid.DrawFocusRectStyle.RowFocus;
            gridViewLookup.GridControl = gridLookup;
            gridViewLookup.Name = "gridViewLookup";
            gridViewLookup.OptionsBehavior.Editable = false;
            gridViewLookup.OptionsSelection.EnableAppearanceFocusedCell = false;
            gridViewLookup.OptionsView.ShowColumnHeaders = false;
            gridViewLookup.OptionsView.ShowDetailButtons = false;
            gridViewLookup.OptionsView.ShowGroupPanel = false;
            gridViewLookup.OptionsView.ShowIndicator = false;
            DevExpress.XtraGrid.Columns.GridColumn gridColumnNameObject = new DevExpress.XtraGrid.Columns.GridColumn();
            gridColumnNameObject.Caption = "NAME";
            gridColumnNameObject.FieldName = "NAME";
            gridColumnNameObject.Name = "gridColumnNameObject";
            gridColumnNameObject.Visible = true;
            gridColumnNameObject.VisibleIndex = 0;
            gridViewLookup.Columns.Add(gridColumnNameObject);

            gridViewLookup.KeyDown += delegate(object sender, KeyEventArgs e)
            {
                if (e.KeyCode == Keys.Enter)
                {
                    isUpdateLookup = 1;
                    gridView.Focus();
                }
            };
            //Tao Grid Control

            DevExpress.XtraEditors.PopupContainerControl popupContainer = new DevExpress.XtraEditors.PopupContainerControl();
            popupContainer.AutoSizeMode = System.Windows.Forms.AutoSizeMode.GrowOnly;
            popupContainer.AutoSize = true;
            popupContainer.Controls.Add(gridLookup);
            popupContainer.Location = new System.Drawing.Point(617, 242);
            popupContainer.Name = "popupContainer";
            popupContainer.Size = new System.Drawing.Size(200, 100);
            popupContainer.TabIndex = 1;

            //
            //containEdit
            //
            DevExpress.XtraEditors.Repository.RepositoryItemPopupContainerEdit containEdit = new DevExpress.XtraEditors.Repository.RepositoryItemPopupContainerEdit();
            valueOfObj.ColumnEdit = containEdit;
            containEdit.AutoHeight = true;
            containEdit.Name = "containEdit";
            containEdit.PopupControl = popupContainer;
            containEdit.PopupSizeable = false;
            containEdit.ShowPopupCloseButton = false;
            containEdit.TextEditStyle = DevExpress.XtraEditors.Controls.TextEditStyles.Standard;
            containEdit.QueryResultValue += delegate(object sender, DevExpress.XtraEditors.Controls.QueryResultValueEventArgs e)
            {
                try
                {
                    if (isUpdateLookup == 1)
                    {
                        DataRow rowGridLookup = (gridLookup.MainView as GridView).GetDataRow((gridLookup.MainView as GridView).FocusedRowHandle);
                        DataRow rowGridView = gridView.GetDataRow(gridView.FocusedRowHandle);
                        rowGridView[cotAo] = rowGridLookup[DisplayMember];
                        e.Value = rowGridLookup[DisplayMember];
                        rowGridView[fieldNames[1]] = rowGridLookup[ValueMember];
                    }
                }
                catch { }
            };
            containEdit.Popup += delegate(object sender, EventArgs e)
            {
                if ((DataTable)gridView.GridControl.DataSource != null)
                {
                    DataTable dt = (DataTable)gridLookup.DataSource;
                    if (dt != null)
                    {
                        DataRow dr = gridView.GetDataRow(gridView.FocusedRowHandle);
                        if (dr != null)
                        {
                            string objName = dr[fieldNames[0]].ToString();
                            dt.DefaultView.RowFilter = "OBJVALUE='" + objName + "'";
                        }
                        else
                            dt.DefaultView.RowFilter = "OBJVALUE=''";
                    }
                }
            };

            if (colObject.ColumnEdit is DevExpress.XtraEditors.Repository.RepositoryItemImageComboBox)
            {
                DevExpress.XtraEditors.Repository.RepositoryItemImageComboBox imgComboBoxLoai = colObject.ColumnEdit as DevExpress.XtraEditors.Repository.RepositoryItemImageComboBox;
                imgComboBoxLoai.SelectedIndexChanged += delegate(object sender, EventArgs e)
                {
                    gridView.SetFocusedRowCellValue(valueOfObj, "");
                    DataTable dt = (DataTable)gridLookup.DataSource;
                    if (dt != null)
                    {
                        dt.DefaultView.RowFilter = "OBJVALUE='" + ((DevExpress.XtraEditors.ImageComboBoxEdit)sender).EditValue.ToString() + "'";
                    }
                };
            }
        }
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.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(Editor));
     DevExpress.Utils.SuperToolTip superToolTip1 = new DevExpress.Utils.SuperToolTip();
     DevExpress.Utils.ToolTipTitleItem toolTipTitleItem1 = new DevExpress.Utils.ToolTipTitleItem();
     DevExpress.Utils.ToolTipItem toolTipItem1 = new DevExpress.Utils.ToolTipItem();
     DevExpress.Utils.SuperToolTip superToolTip2 = new DevExpress.Utils.SuperToolTip();
     DevExpress.Utils.ToolTipTitleItem toolTipTitleItem2 = new DevExpress.Utils.ToolTipTitleItem();
     DevExpress.Utils.ToolTipItem toolTipItem2 = new DevExpress.Utils.ToolTipItem();
     DevExpress.Utils.SuperToolTip superToolTip3 = new DevExpress.Utils.SuperToolTip();
     DevExpress.Utils.ToolTipTitleItem toolTipTitleItem3 = new DevExpress.Utils.ToolTipTitleItem();
     DevExpress.Utils.ToolTipItem toolTipItem3 = new DevExpress.Utils.ToolTipItem();
     DevExpress.Utils.SuperToolTip superToolTip4 = new DevExpress.Utils.SuperToolTip();
     DevExpress.Utils.ToolTipTitleItem toolTipTitleItem4 = new DevExpress.Utils.ToolTipTitleItem();
     DevExpress.Utils.ToolTipItem toolTipItem4 = new DevExpress.Utils.ToolTipItem();
     DevExpress.Utils.SuperToolTip superToolTip5 = new DevExpress.Utils.SuperToolTip();
     DevExpress.Utils.ToolTipTitleItem toolTipTitleItem5 = new DevExpress.Utils.ToolTipTitleItem();
     DevExpress.Utils.ToolTipItem toolTipItem5 = new DevExpress.Utils.ToolTipItem();
     DevExpress.Utils.SuperToolTip superToolTip6 = new DevExpress.Utils.SuperToolTip();
     DevExpress.Utils.ToolTipTitleItem toolTipTitleItem6 = new DevExpress.Utils.ToolTipTitleItem();
     DevExpress.Utils.ToolTipItem toolTipItem6 = new DevExpress.Utils.ToolTipItem();
     DevExpress.Utils.SuperToolTip superToolTip7 = new DevExpress.Utils.SuperToolTip();
     DevExpress.Utils.ToolTipTitleItem toolTipTitleItem7 = new DevExpress.Utils.ToolTipTitleItem();
     DevExpress.Utils.ToolTipItem toolTipItem7 = new DevExpress.Utils.ToolTipItem();
     DevExpress.Utils.SuperToolTip superToolTip8 = new DevExpress.Utils.SuperToolTip();
     DevExpress.Utils.ToolTipTitleItem toolTipTitleItem8 = new DevExpress.Utils.ToolTipTitleItem();
     DevExpress.Utils.ToolTipItem toolTipItem8 = new DevExpress.Utils.ToolTipItem();
     DevExpress.Utils.SuperToolTip superToolTip9 = new DevExpress.Utils.SuperToolTip();
     DevExpress.Utils.ToolTipTitleItem toolTipTitleItem9 = new DevExpress.Utils.ToolTipTitleItem();
     DevExpress.Utils.ToolTipItem toolTipItem9 = new DevExpress.Utils.ToolTipItem();
     DevExpress.Utils.SuperToolTip superToolTip10 = new DevExpress.Utils.SuperToolTip();
     DevExpress.Utils.ToolTipTitleItem toolTipTitleItem10 = new DevExpress.Utils.ToolTipTitleItem();
     DevExpress.Utils.ToolTipItem toolTipItem10 = new DevExpress.Utils.ToolTipItem();
     DevExpress.Utils.SuperToolTip superToolTip11 = new DevExpress.Utils.SuperToolTip();
     DevExpress.Utils.ToolTipTitleItem toolTipTitleItem11 = new DevExpress.Utils.ToolTipTitleItem();
     DevExpress.Utils.ToolTipItem toolTipItem11 = new DevExpress.Utils.ToolTipItem();
     DevExpress.Utils.SuperToolTip superToolTip12 = new DevExpress.Utils.SuperToolTip();
     DevExpress.Utils.ToolTipTitleItem toolTipTitleItem12 = new DevExpress.Utils.ToolTipTitleItem();
     DevExpress.Utils.ToolTipItem toolTipItem12 = new DevExpress.Utils.ToolTipItem();
     DevExpress.Utils.SuperToolTip superToolTip13 = new DevExpress.Utils.SuperToolTip();
     DevExpress.Utils.ToolTipTitleItem toolTipTitleItem13 = new DevExpress.Utils.ToolTipTitleItem();
     DevExpress.Utils.ToolTipItem toolTipItem13 = new DevExpress.Utils.ToolTipItem();
     DevExpress.Utils.SuperToolTip superToolTip14 = new DevExpress.Utils.SuperToolTip();
     DevExpress.Utils.ToolTipTitleItem toolTipTitleItem14 = new DevExpress.Utils.ToolTipTitleItem();
     DevExpress.Utils.ToolTipItem toolTipItem14 = new DevExpress.Utils.ToolTipItem();
     DevExpress.Utils.SuperToolTip superToolTip15 = new DevExpress.Utils.SuperToolTip();
     DevExpress.Utils.ToolTipTitleItem toolTipTitleItem15 = new DevExpress.Utils.ToolTipTitleItem();
     DevExpress.Utils.ToolTipItem toolTipItem15 = new DevExpress.Utils.ToolTipItem();
     DevExpress.Utils.SuperToolTip superToolTip19 = new DevExpress.Utils.SuperToolTip();
     DevExpress.Utils.ToolTipTitleItem toolTipTitleItem19 = new DevExpress.Utils.ToolTipTitleItem();
     DevExpress.Utils.ToolTipItem toolTipItem19 = new DevExpress.Utils.ToolTipItem();
     DevExpress.Utils.SuperToolTip superToolTip16 = new DevExpress.Utils.SuperToolTip();
     DevExpress.Utils.ToolTipTitleItem toolTipTitleItem16 = new DevExpress.Utils.ToolTipTitleItem();
     DevExpress.Utils.ToolTipItem toolTipItem16 = new DevExpress.Utils.ToolTipItem();
     DevExpress.Utils.SuperToolTip superToolTip17 = new DevExpress.Utils.SuperToolTip();
     DevExpress.Utils.ToolTipTitleItem toolTipTitleItem17 = new DevExpress.Utils.ToolTipTitleItem();
     DevExpress.Utils.ToolTipItem toolTipItem17 = new DevExpress.Utils.ToolTipItem();
     DevExpress.Utils.SuperToolTip superToolTip18 = new DevExpress.Utils.SuperToolTip();
     DevExpress.Utils.ToolTipTitleItem toolTipTitleItem18 = new DevExpress.Utils.ToolTipTitleItem();
     DevExpress.Utils.ToolTipItem toolTipItem18 = new DevExpress.Utils.ToolTipItem();
     DevExpress.Utils.SuperToolTip superToolTip20 = new DevExpress.Utils.SuperToolTip();
     DevExpress.Utils.ToolTipTitleItem toolTipTitleItem20 = new DevExpress.Utils.ToolTipTitleItem();
     DevExpress.Utils.ToolTipItem toolTipItem20 = new DevExpress.Utils.ToolTipItem();
     DevExpress.Utils.SuperToolTip superToolTip21 = new DevExpress.Utils.SuperToolTip();
     DevExpress.Utils.ToolTipTitleItem toolTipTitleItem21 = new DevExpress.Utils.ToolTipTitleItem();
     DevExpress.Utils.ToolTipItem toolTipItem21 = new DevExpress.Utils.ToolTipItem();
     DevExpress.Utils.SuperToolTip superToolTip22 = new DevExpress.Utils.SuperToolTip();
     DevExpress.Utils.ToolTipTitleItem toolTipTitleItem22 = new DevExpress.Utils.ToolTipTitleItem();
     DevExpress.Utils.ToolTipItem toolTipItem22 = new DevExpress.Utils.ToolTipItem();
     DevExpress.Utils.SuperToolTip superToolTip23 = new DevExpress.Utils.SuperToolTip();
     DevExpress.Utils.ToolTipTitleItem toolTipTitleItem23 = new DevExpress.Utils.ToolTipTitleItem();
     DevExpress.Utils.ToolTipItem toolTipItem23 = new DevExpress.Utils.ToolTipItem();
     DevExpress.Utils.SuperToolTip superToolTip24 = new DevExpress.Utils.SuperToolTip();
     DevExpress.Utils.ToolTipTitleItem toolTipTitleItem24 = new DevExpress.Utils.ToolTipTitleItem();
     DevExpress.Utils.ToolTipItem toolTipItem24 = new DevExpress.Utils.ToolTipItem();
     DevExpress.Utils.SuperToolTip superToolTip25 = new DevExpress.Utils.SuperToolTip();
     DevExpress.Utils.ToolTipTitleItem toolTipTitleItem25 = new DevExpress.Utils.ToolTipTitleItem();
     DevExpress.Utils.ToolTipItem toolTipItem25 = new DevExpress.Utils.ToolTipItem();
     DevExpress.Utils.SuperToolTip superToolTip26 = new DevExpress.Utils.SuperToolTip();
     DevExpress.Utils.ToolTipTitleItem toolTipTitleItem26 = new DevExpress.Utils.ToolTipTitleItem();
     DevExpress.Utils.ToolTipItem toolTipItem26 = new DevExpress.Utils.ToolTipItem();
     DevExpress.Utils.SuperToolTip superToolTip27 = new DevExpress.Utils.SuperToolTip();
     DevExpress.Utils.ToolTipTitleItem toolTipTitleItem27 = new DevExpress.Utils.ToolTipTitleItem();
     DevExpress.Utils.ToolTipItem toolTipItem27 = new DevExpress.Utils.ToolTipItem();
     DevExpress.Utils.SuperToolTip superToolTip36 = new DevExpress.Utils.SuperToolTip();
     DevExpress.Utils.ToolTipTitleItem toolTipTitleItem36 = new DevExpress.Utils.ToolTipTitleItem();
     DevExpress.Utils.ToolTipItem toolTipItem36 = new DevExpress.Utils.ToolTipItem();
     DevExpress.Utils.SuperToolTip superToolTip28 = new DevExpress.Utils.SuperToolTip();
     DevExpress.Utils.ToolTipTitleItem toolTipTitleItem28 = new DevExpress.Utils.ToolTipTitleItem();
     DevExpress.Utils.ToolTipItem toolTipItem28 = new DevExpress.Utils.ToolTipItem();
     DevExpress.Utils.SuperToolTip superToolTip29 = new DevExpress.Utils.SuperToolTip();
     DevExpress.Utils.ToolTipTitleItem toolTipTitleItem29 = new DevExpress.Utils.ToolTipTitleItem();
     DevExpress.Utils.ToolTipItem toolTipItem29 = new DevExpress.Utils.ToolTipItem();
     DevExpress.Utils.SuperToolTip superToolTip30 = new DevExpress.Utils.SuperToolTip();
     DevExpress.Utils.ToolTipTitleItem toolTipTitleItem30 = new DevExpress.Utils.ToolTipTitleItem();
     DevExpress.Utils.ToolTipItem toolTipItem30 = new DevExpress.Utils.ToolTipItem();
     DevExpress.Utils.SuperToolTip superToolTip31 = new DevExpress.Utils.SuperToolTip();
     DevExpress.Utils.ToolTipTitleItem toolTipTitleItem31 = new DevExpress.Utils.ToolTipTitleItem();
     DevExpress.Utils.ToolTipItem toolTipItem31 = new DevExpress.Utils.ToolTipItem();
     DevExpress.Utils.SuperToolTip superToolTip32 = new DevExpress.Utils.SuperToolTip();
     DevExpress.Utils.ToolTipTitleItem toolTipTitleItem32 = new DevExpress.Utils.ToolTipTitleItem();
     DevExpress.Utils.ToolTipItem toolTipItem32 = new DevExpress.Utils.ToolTipItem();
     DevExpress.Utils.SuperToolTip superToolTip33 = new DevExpress.Utils.SuperToolTip();
     DevExpress.Utils.ToolTipTitleItem toolTipTitleItem33 = new DevExpress.Utils.ToolTipTitleItem();
     DevExpress.Utils.ToolTipItem toolTipItem33 = new DevExpress.Utils.ToolTipItem();
     DevExpress.Utils.SuperToolTip superToolTip34 = new DevExpress.Utils.SuperToolTip();
     DevExpress.Utils.ToolTipTitleItem toolTipTitleItem34 = new DevExpress.Utils.ToolTipTitleItem();
     DevExpress.Utils.ToolTipItem toolTipItem34 = new DevExpress.Utils.ToolTipItem();
     DevExpress.Utils.SuperToolTip superToolTip35 = new DevExpress.Utils.SuperToolTip();
     DevExpress.Utils.ToolTipTitleItem toolTipTitleItem35 = new DevExpress.Utils.ToolTipTitleItem();
     DevExpress.Utils.ToolTipItem toolTipItem35 = new DevExpress.Utils.ToolTipItem();
     DevExpress.Utils.SuperToolTip superToolTip37 = new DevExpress.Utils.SuperToolTip();
     DevExpress.Utils.ToolTipTitleItem toolTipTitleItem37 = new DevExpress.Utils.ToolTipTitleItem();
     DevExpress.Utils.ToolTipItem toolTipItem37 = new DevExpress.Utils.ToolTipItem();
     DevExpress.Utils.SuperToolTip superToolTip38 = new DevExpress.Utils.SuperToolTip();
     DevExpress.Utils.ToolTipTitleItem toolTipTitleItem38 = new DevExpress.Utils.ToolTipTitleItem();
     DevExpress.Utils.ToolTipItem toolTipItem38 = new DevExpress.Utils.ToolTipItem();
     DevExpress.Utils.SuperToolTip superToolTip39 = new DevExpress.Utils.SuperToolTip();
     DevExpress.Utils.ToolTipTitleItem toolTipTitleItem39 = new DevExpress.Utils.ToolTipTitleItem();
     DevExpress.Utils.ToolTipItem toolTipItem39 = new DevExpress.Utils.ToolTipItem();
     DevExpress.Utils.SuperToolTip superToolTip40 = new DevExpress.Utils.SuperToolTip();
     DevExpress.Utils.ToolTipTitleItem toolTipTitleItem40 = new DevExpress.Utils.ToolTipTitleItem();
     DevExpress.Utils.ToolTipItem toolTipItem40 = new DevExpress.Utils.ToolTipItem();
     DevExpress.Utils.SuperToolTip superToolTip41 = new DevExpress.Utils.SuperToolTip();
     DevExpress.Utils.ToolTipTitleItem toolTipTitleItem41 = new DevExpress.Utils.ToolTipTitleItem();
     DevExpress.Utils.ToolTipItem toolTipItem41 = new DevExpress.Utils.ToolTipItem();
     DevExpress.Utils.SuperToolTip superToolTip42 = new DevExpress.Utils.SuperToolTip();
     DevExpress.Utils.ToolTipTitleItem toolTipTitleItem42 = new DevExpress.Utils.ToolTipTitleItem();
     DevExpress.Utils.ToolTipItem toolTipItem42 = new DevExpress.Utils.ToolTipItem();
     DevExpress.Utils.SuperToolTip superToolTip43 = new DevExpress.Utils.SuperToolTip();
     DevExpress.Utils.ToolTipTitleItem toolTipTitleItem43 = new DevExpress.Utils.ToolTipTitleItem();
     DevExpress.Utils.ToolTipItem toolTipItem43 = new DevExpress.Utils.ToolTipItem();
     DevExpress.Utils.SuperToolTip superToolTip44 = new DevExpress.Utils.SuperToolTip();
     DevExpress.Utils.ToolTipTitleItem toolTipTitleItem44 = new DevExpress.Utils.ToolTipTitleItem();
     DevExpress.Utils.ToolTipItem toolTipItem44 = new DevExpress.Utils.ToolTipItem();
     DevExpress.Utils.SuperToolTip superToolTip45 = new DevExpress.Utils.SuperToolTip();
     DevExpress.Utils.ToolTipTitleItem toolTipTitleItem45 = new DevExpress.Utils.ToolTipTitleItem();
     DevExpress.Utils.ToolTipItem toolTipItem45 = new DevExpress.Utils.ToolTipItem();
     DevExpress.Utils.SuperToolTip superToolTip57 = new DevExpress.Utils.SuperToolTip();
     DevExpress.Utils.ToolTipTitleItem toolTipTitleItem57 = new DevExpress.Utils.ToolTipTitleItem();
     DevExpress.Utils.ToolTipItem toolTipItem57 = new DevExpress.Utils.ToolTipItem();
     DevExpress.Utils.SuperToolTip superToolTip46 = new DevExpress.Utils.SuperToolTip();
     DevExpress.Utils.ToolTipTitleItem toolTipTitleItem46 = new DevExpress.Utils.ToolTipTitleItem();
     DevExpress.Utils.ToolTipItem toolTipItem46 = new DevExpress.Utils.ToolTipItem();
     DevExpress.Utils.SuperToolTip superToolTip47 = new DevExpress.Utils.SuperToolTip();
     DevExpress.Utils.ToolTipTitleItem toolTipTitleItem47 = new DevExpress.Utils.ToolTipTitleItem();
     DevExpress.Utils.ToolTipItem toolTipItem47 = new DevExpress.Utils.ToolTipItem();
     DevExpress.Utils.SuperToolTip superToolTip48 = new DevExpress.Utils.SuperToolTip();
     DevExpress.Utils.ToolTipTitleItem toolTipTitleItem48 = new DevExpress.Utils.ToolTipTitleItem();
     DevExpress.Utils.ToolTipItem toolTipItem48 = new DevExpress.Utils.ToolTipItem();
     DevExpress.Utils.SuperToolTip superToolTip49 = new DevExpress.Utils.SuperToolTip();
     DevExpress.Utils.ToolTipTitleItem toolTipTitleItem49 = new DevExpress.Utils.ToolTipTitleItem();
     DevExpress.Utils.ToolTipItem toolTipItem49 = new DevExpress.Utils.ToolTipItem();
     DevExpress.Utils.SuperToolTip superToolTip50 = new DevExpress.Utils.SuperToolTip();
     DevExpress.Utils.ToolTipTitleItem toolTipTitleItem50 = new DevExpress.Utils.ToolTipTitleItem();
     DevExpress.Utils.ToolTipItem toolTipItem50 = new DevExpress.Utils.ToolTipItem();
     DevExpress.Utils.SuperToolTip superToolTip51 = new DevExpress.Utils.SuperToolTip();
     DevExpress.Utils.ToolTipTitleItem toolTipTitleItem51 = new DevExpress.Utils.ToolTipTitleItem();
     DevExpress.Utils.ToolTipItem toolTipItem51 = new DevExpress.Utils.ToolTipItem();
     DevExpress.Utils.SuperToolTip superToolTip52 = new DevExpress.Utils.SuperToolTip();
     DevExpress.Utils.ToolTipTitleItem toolTipTitleItem52 = new DevExpress.Utils.ToolTipTitleItem();
     DevExpress.Utils.ToolTipItem toolTipItem52 = new DevExpress.Utils.ToolTipItem();
     DevExpress.Utils.SuperToolTip superToolTip53 = new DevExpress.Utils.SuperToolTip();
     DevExpress.Utils.ToolTipTitleItem toolTipTitleItem53 = new DevExpress.Utils.ToolTipTitleItem();
     DevExpress.Utils.ToolTipItem toolTipItem53 = new DevExpress.Utils.ToolTipItem();
     DevExpress.Utils.SuperToolTip superToolTip54 = new DevExpress.Utils.SuperToolTip();
     DevExpress.Utils.ToolTipTitleItem toolTipTitleItem54 = new DevExpress.Utils.ToolTipTitleItem();
     DevExpress.Utils.ToolTipItem toolTipItem54 = new DevExpress.Utils.ToolTipItem();
     DevExpress.Utils.SuperToolTip superToolTip55 = new DevExpress.Utils.SuperToolTip();
     DevExpress.Utils.ToolTipTitleItem toolTipTitleItem55 = new DevExpress.Utils.ToolTipTitleItem();
     DevExpress.Utils.ToolTipItem toolTipItem55 = new DevExpress.Utils.ToolTipItem();
     DevExpress.Utils.SuperToolTip superToolTip56 = new DevExpress.Utils.SuperToolTip();
     DevExpress.Utils.ToolTipTitleItem toolTipTitleItem56 = new DevExpress.Utils.ToolTipTitleItem();
     DevExpress.Utils.ToolTipItem toolTipItem56 = new DevExpress.Utils.ToolTipItem();
     DevExpress.Utils.SuperToolTip superToolTip58 = new DevExpress.Utils.SuperToolTip();
     DevExpress.Utils.ToolTipTitleItem toolTipTitleItem58 = new DevExpress.Utils.ToolTipTitleItem();
     DevExpress.Utils.ToolTipItem toolTipItem58 = new DevExpress.Utils.ToolTipItem();
     DevExpress.Utils.SuperToolTip superToolTip59 = new DevExpress.Utils.SuperToolTip();
     DevExpress.Utils.ToolTipTitleItem toolTipTitleItem59 = new DevExpress.Utils.ToolTipTitleItem();
     DevExpress.Utils.ToolTipItem toolTipItem59 = new DevExpress.Utils.ToolTipItem();
     DevExpress.Utils.SuperToolTip superToolTip60 = new DevExpress.Utils.SuperToolTip();
     DevExpress.Utils.ToolTipTitleItem toolTipTitleItem60 = new DevExpress.Utils.ToolTipTitleItem();
     DevExpress.Utils.ToolTipItem toolTipItem60 = new DevExpress.Utils.ToolTipItem();
     DevExpress.Utils.SuperToolTip superToolTip65 = new DevExpress.Utils.SuperToolTip();
     DevExpress.Utils.ToolTipTitleItem toolTipTitleItem65 = new DevExpress.Utils.ToolTipTitleItem();
     DevExpress.Utils.ToolTipItem toolTipItem65 = new DevExpress.Utils.ToolTipItem();
     DevExpress.Utils.SuperToolTip superToolTip61 = new DevExpress.Utils.SuperToolTip();
     DevExpress.Utils.ToolTipTitleItem toolTipTitleItem61 = new DevExpress.Utils.ToolTipTitleItem();
     DevExpress.Utils.ToolTipItem toolTipItem61 = new DevExpress.Utils.ToolTipItem();
     DevExpress.Utils.SuperToolTip superToolTip62 = new DevExpress.Utils.SuperToolTip();
     DevExpress.Utils.ToolTipTitleItem toolTipTitleItem62 = new DevExpress.Utils.ToolTipTitleItem();
     DevExpress.Utils.ToolTipItem toolTipItem62 = new DevExpress.Utils.ToolTipItem();
     DevExpress.Utils.SuperToolTip superToolTip63 = new DevExpress.Utils.SuperToolTip();
     DevExpress.Utils.ToolTipTitleItem toolTipTitleItem63 = new DevExpress.Utils.ToolTipTitleItem();
     DevExpress.Utils.ToolTipItem toolTipItem63 = new DevExpress.Utils.ToolTipItem();
     DevExpress.Utils.SuperToolTip superToolTip64 = new DevExpress.Utils.SuperToolTip();
     DevExpress.Utils.ToolTipTitleItem toolTipTitleItem64 = new DevExpress.Utils.ToolTipTitleItem();
     DevExpress.Utils.ToolTipItem toolTipItem64 = new DevExpress.Utils.ToolTipItem();
     DevExpress.Utils.SuperToolTip superToolTip66 = new DevExpress.Utils.SuperToolTip();
     DevExpress.Utils.ToolTipTitleItem toolTipTitleItem66 = new DevExpress.Utils.ToolTipTitleItem();
     DevExpress.Utils.ToolTipItem toolTipItem66 = new DevExpress.Utils.ToolTipItem();
     DevExpress.Utils.SuperToolTip superToolTip71 = new DevExpress.Utils.SuperToolTip();
     DevExpress.Utils.ToolTipTitleItem toolTipTitleItem71 = new DevExpress.Utils.ToolTipTitleItem();
     DevExpress.Utils.ToolTipItem toolTipItem71 = new DevExpress.Utils.ToolTipItem();
     DevExpress.Utils.SuperToolTip superToolTip67 = new DevExpress.Utils.SuperToolTip();
     DevExpress.Utils.ToolTipTitleItem toolTipTitleItem67 = new DevExpress.Utils.ToolTipTitleItem();
     DevExpress.Utils.ToolTipItem toolTipItem67 = new DevExpress.Utils.ToolTipItem();
     DevExpress.Utils.SuperToolTip superToolTip68 = new DevExpress.Utils.SuperToolTip();
     DevExpress.Utils.ToolTipTitleItem toolTipTitleItem68 = new DevExpress.Utils.ToolTipTitleItem();
     DevExpress.Utils.ToolTipItem toolTipItem68 = new DevExpress.Utils.ToolTipItem();
     DevExpress.Utils.SuperToolTip superToolTip69 = new DevExpress.Utils.SuperToolTip();
     DevExpress.Utils.ToolTipTitleItem toolTipTitleItem69 = new DevExpress.Utils.ToolTipTitleItem();
     DevExpress.Utils.ToolTipItem toolTipItem69 = new DevExpress.Utils.ToolTipItem();
     DevExpress.Utils.SuperToolTip superToolTip70 = new DevExpress.Utils.SuperToolTip();
     DevExpress.Utils.ToolTipTitleItem toolTipTitleItem70 = new DevExpress.Utils.ToolTipTitleItem();
     DevExpress.Utils.ToolTipItem toolTipItem70 = new DevExpress.Utils.ToolTipItem();
     DevExpress.Utils.SuperToolTip superToolTip72 = new DevExpress.Utils.SuperToolTip();
     DevExpress.Utils.ToolTipTitleItem toolTipTitleItem72 = new DevExpress.Utils.ToolTipTitleItem();
     DevExpress.Utils.ToolTipItem toolTipItem72 = new DevExpress.Utils.ToolTipItem();
     DevExpress.Utils.SuperToolTip superToolTip73 = new DevExpress.Utils.SuperToolTip();
     DevExpress.Utils.ToolTipTitleItem toolTipTitleItem73 = new DevExpress.Utils.ToolTipTitleItem();
     DevExpress.Utils.ToolTipItem toolTipItem73 = new DevExpress.Utils.ToolTipItem();
     DevExpress.Utils.SuperToolTip superToolTip74 = new DevExpress.Utils.SuperToolTip();
     DevExpress.Utils.ToolTipTitleItem toolTipTitleItem74 = new DevExpress.Utils.ToolTipTitleItem();
     DevExpress.Utils.ToolTipItem toolTipItem74 = new DevExpress.Utils.ToolTipItem();
     DevExpress.Utils.SuperToolTip superToolTip75 = new DevExpress.Utils.SuperToolTip();
     DevExpress.Utils.ToolTipTitleItem toolTipTitleItem75 = new DevExpress.Utils.ToolTipTitleItem();
     DevExpress.Utils.ToolTipItem toolTipItem75 = new DevExpress.Utils.ToolTipItem();
     DevExpress.Utils.SuperToolTip superToolTip76 = new DevExpress.Utils.SuperToolTip();
     DevExpress.Utils.ToolTipTitleItem toolTipTitleItem76 = new DevExpress.Utils.ToolTipTitleItem();
     DevExpress.Utils.ToolTipItem toolTipItem76 = new DevExpress.Utils.ToolTipItem();
     DevExpress.Utils.SuperToolTip superToolTip77 = new DevExpress.Utils.SuperToolTip();
     DevExpress.Utils.ToolTipTitleItem toolTipTitleItem77 = new DevExpress.Utils.ToolTipTitleItem();
     DevExpress.Utils.ToolTipItem toolTipItem77 = new DevExpress.Utils.ToolTipItem();
     DevExpress.Utils.SuperToolTip superToolTip78 = new DevExpress.Utils.SuperToolTip();
     DevExpress.Utils.ToolTipTitleItem toolTipTitleItem78 = new DevExpress.Utils.ToolTipTitleItem();
     DevExpress.Utils.ToolTipItem toolTipItem78 = new DevExpress.Utils.ToolTipItem();
     DevExpress.Utils.SuperToolTip superToolTip79 = new DevExpress.Utils.SuperToolTip();
     DevExpress.Utils.ToolTipTitleItem toolTipTitleItem79 = new DevExpress.Utils.ToolTipTitleItem();
     DevExpress.Utils.ToolTipItem toolTipItem79 = new DevExpress.Utils.ToolTipItem();
     DevExpress.Utils.SuperToolTip superToolTip83 = new DevExpress.Utils.SuperToolTip();
     DevExpress.Utils.ToolTipTitleItem toolTipTitleItem83 = new DevExpress.Utils.ToolTipTitleItem();
     DevExpress.Utils.ToolTipItem toolTipItem83 = new DevExpress.Utils.ToolTipItem();
     DevExpress.Utils.SuperToolTip superToolTip80 = new DevExpress.Utils.SuperToolTip();
     DevExpress.Utils.ToolTipTitleItem toolTipTitleItem80 = new DevExpress.Utils.ToolTipTitleItem();
     DevExpress.Utils.ToolTipItem toolTipItem80 = new DevExpress.Utils.ToolTipItem();
     DevExpress.Utils.SuperToolTip superToolTip81 = new DevExpress.Utils.SuperToolTip();
     DevExpress.Utils.ToolTipTitleItem toolTipTitleItem81 = new DevExpress.Utils.ToolTipTitleItem();
     DevExpress.Utils.ToolTipItem toolTipItem81 = new DevExpress.Utils.ToolTipItem();
     DevExpress.Utils.SuperToolTip superToolTip82 = new DevExpress.Utils.SuperToolTip();
     DevExpress.Utils.ToolTipTitleItem toolTipTitleItem82 = new DevExpress.Utils.ToolTipTitleItem();
     DevExpress.Utils.ToolTipItem toolTipItem82 = new DevExpress.Utils.ToolTipItem();
     DevExpress.Utils.SuperToolTip superToolTip84 = new DevExpress.Utils.SuperToolTip();
     DevExpress.Utils.ToolTipTitleItem toolTipTitleItem84 = new DevExpress.Utils.ToolTipTitleItem();
     DevExpress.Utils.ToolTipItem toolTipItem84 = new DevExpress.Utils.ToolTipItem();
     DevExpress.Utils.SuperToolTip superToolTip85 = new DevExpress.Utils.SuperToolTip();
     DevExpress.Utils.ToolTipTitleItem toolTipTitleItem85 = new DevExpress.Utils.ToolTipTitleItem();
     DevExpress.Utils.ToolTipItem toolTipItem85 = new DevExpress.Utils.ToolTipItem();
     DevExpress.Utils.SuperToolTip superToolTip86 = new DevExpress.Utils.SuperToolTip();
     DevExpress.Utils.ToolTipTitleItem toolTipTitleItem86 = new DevExpress.Utils.ToolTipTitleItem();
     DevExpress.Utils.ToolTipItem toolTipItem86 = new DevExpress.Utils.ToolTipItem();
     DevExpress.Utils.SuperToolTip superToolTip87 = new DevExpress.Utils.SuperToolTip();
     DevExpress.Utils.ToolTipTitleItem toolTipTitleItem87 = new DevExpress.Utils.ToolTipTitleItem();
     DevExpress.Utils.ToolTipItem toolTipItem87 = new DevExpress.Utils.ToolTipItem();
     DevExpress.Utils.SuperToolTip superToolTip88 = new DevExpress.Utils.SuperToolTip();
     DevExpress.Utils.ToolTipTitleItem toolTipTitleItem88 = new DevExpress.Utils.ToolTipTitleItem();
     DevExpress.Utils.ToolTipItem toolTipItem88 = new DevExpress.Utils.ToolTipItem();
     DevExpress.Utils.SuperToolTip superToolTip89 = new DevExpress.Utils.SuperToolTip();
     DevExpress.Utils.ToolTipTitleItem toolTipTitleItem89 = new DevExpress.Utils.ToolTipTitleItem();
     DevExpress.Utils.ToolTipItem toolTipItem89 = new DevExpress.Utils.ToolTipItem();
     DevExpress.Utils.SuperToolTip superToolTip90 = new DevExpress.Utils.SuperToolTip();
     DevExpress.Utils.ToolTipTitleItem toolTipTitleItem90 = new DevExpress.Utils.ToolTipTitleItem();
     DevExpress.Utils.ToolTipItem toolTipItem90 = new DevExpress.Utils.ToolTipItem();
     DevExpress.Utils.SuperToolTip superToolTip91 = new DevExpress.Utils.SuperToolTip();
     DevExpress.Utils.ToolTipTitleItem toolTipTitleItem91 = new DevExpress.Utils.ToolTipTitleItem();
     DevExpress.Utils.ToolTipItem toolTipItem91 = new DevExpress.Utils.ToolTipItem();
     DevExpress.Utils.SuperToolTip superToolTip92 = new DevExpress.Utils.SuperToolTip();
     DevExpress.Utils.ToolTipTitleItem toolTipTitleItem92 = new DevExpress.Utils.ToolTipTitleItem();
     DevExpress.Utils.ToolTipItem toolTipItem92 = new DevExpress.Utils.ToolTipItem();
     DevExpress.Utils.SuperToolTip superToolTip93 = new DevExpress.Utils.SuperToolTip();
     DevExpress.Utils.ToolTipTitleItem toolTipTitleItem93 = new DevExpress.Utils.ToolTipTitleItem();
     DevExpress.Utils.ToolTipItem toolTipItem93 = new DevExpress.Utils.ToolTipItem();
     DevExpress.Utils.SuperToolTip superToolTip94 = new DevExpress.Utils.SuperToolTip();
     DevExpress.Utils.ToolTipTitleItem toolTipTitleItem94 = new DevExpress.Utils.ToolTipTitleItem();
     DevExpress.Utils.ToolTipItem toolTipItem94 = new DevExpress.Utils.ToolTipItem();
     DevExpress.Utils.SuperToolTip superToolTip95 = new DevExpress.Utils.SuperToolTip();
     DevExpress.Utils.ToolTipTitleItem toolTipTitleItem95 = new DevExpress.Utils.ToolTipTitleItem();
     DevExpress.Utils.ToolTipItem toolTipItem95 = new DevExpress.Utils.ToolTipItem();
     DevExpress.Utils.SuperToolTip superToolTip96 = new DevExpress.Utils.SuperToolTip();
     DevExpress.Utils.ToolTipTitleItem toolTipTitleItem96 = new DevExpress.Utils.ToolTipTitleItem();
     DevExpress.Utils.ToolTipItem toolTipItem96 = new DevExpress.Utils.ToolTipItem();
     DevExpress.Utils.SuperToolTip superToolTip97 = new DevExpress.Utils.SuperToolTip();
     DevExpress.Utils.ToolTipTitleItem toolTipTitleItem97 = new DevExpress.Utils.ToolTipTitleItem();
     DevExpress.Utils.ToolTipItem toolTipItem97 = new DevExpress.Utils.ToolTipItem();
     DevExpress.Utils.SuperToolTip superToolTip98 = new DevExpress.Utils.SuperToolTip();
     DevExpress.Utils.ToolTipTitleItem toolTipTitleItem98 = new DevExpress.Utils.ToolTipTitleItem();
     DevExpress.Utils.ToolTipItem toolTipItem98 = new DevExpress.Utils.ToolTipItem();
     DevExpress.Utils.SuperToolTip superToolTip99 = new DevExpress.Utils.SuperToolTip();
     DevExpress.Utils.ToolTipTitleItem toolTipTitleItem99 = new DevExpress.Utils.ToolTipTitleItem();
     DevExpress.Utils.ToolTipItem toolTipItem99 = new DevExpress.Utils.ToolTipItem();
     DevExpress.Utils.SuperToolTip superToolTip100 = new DevExpress.Utils.SuperToolTip();
     DevExpress.Utils.ToolTipTitleItem toolTipTitleItem100 = new DevExpress.Utils.ToolTipTitleItem();
     DevExpress.Utils.ToolTipItem toolTipItem100 = new DevExpress.Utils.ToolTipItem();
     DevExpress.Utils.SuperToolTip superToolTip101 = new DevExpress.Utils.SuperToolTip();
     DevExpress.Utils.ToolTipTitleItem toolTipTitleItem101 = new DevExpress.Utils.ToolTipTitleItem();
     DevExpress.Utils.ToolTipItem toolTipItem101 = new DevExpress.Utils.ToolTipItem();
     DevExpress.Utils.SuperToolTip superToolTip102 = new DevExpress.Utils.SuperToolTip();
     DevExpress.Utils.ToolTipTitleItem toolTipTitleItem102 = new DevExpress.Utils.ToolTipTitleItem();
     DevExpress.Utils.ToolTipItem toolTipItem102 = new DevExpress.Utils.ToolTipItem();
     DevExpress.Utils.SuperToolTip superToolTip103 = new DevExpress.Utils.SuperToolTip();
     DevExpress.Utils.ToolTipTitleItem toolTipTitleItem103 = new DevExpress.Utils.ToolTipTitleItem();
     DevExpress.Utils.ToolTipItem toolTipItem103 = new DevExpress.Utils.ToolTipItem();
     DevExpress.Utils.SuperToolTip superToolTip104 = new DevExpress.Utils.SuperToolTip();
     DevExpress.Utils.ToolTipTitleItem toolTipTitleItem104 = new DevExpress.Utils.ToolTipTitleItem();
     DevExpress.Utils.ToolTipItem toolTipItem104 = new DevExpress.Utils.ToolTipItem();
     DevExpress.Utils.SuperToolTip superToolTip105 = new DevExpress.Utils.SuperToolTip();
     DevExpress.Utils.ToolTipTitleItem toolTipTitleItem105 = new DevExpress.Utils.ToolTipTitleItem();
     DevExpress.Utils.ToolTipItem toolTipItem105 = new DevExpress.Utils.ToolTipItem();
     DevExpress.Utils.SuperToolTip superToolTip106 = new DevExpress.Utils.SuperToolTip();
     DevExpress.Utils.ToolTipTitleItem toolTipTitleItem106 = new DevExpress.Utils.ToolTipTitleItem();
     DevExpress.Utils.ToolTipItem toolTipItem106 = new DevExpress.Utils.ToolTipItem();
     DevExpress.Utils.SuperToolTip superToolTip107 = new DevExpress.Utils.SuperToolTip();
     DevExpress.Utils.ToolTipTitleItem toolTipTitleItem107 = new DevExpress.Utils.ToolTipTitleItem();
     DevExpress.Utils.ToolTipItem toolTipItem107 = new DevExpress.Utils.ToolTipItem();
     DevExpress.Utils.SuperToolTip superToolTip108 = new DevExpress.Utils.SuperToolTip();
     DevExpress.Utils.ToolTipTitleItem toolTipTitleItem108 = new DevExpress.Utils.ToolTipTitleItem();
     DevExpress.Utils.ToolTipItem toolTipItem108 = new DevExpress.Utils.ToolTipItem();
     DevExpress.Utils.SuperToolTip superToolTip109 = new DevExpress.Utils.SuperToolTip();
     DevExpress.Utils.ToolTipTitleItem toolTipTitleItem109 = new DevExpress.Utils.ToolTipTitleItem();
     DevExpress.Utils.ToolTipItem toolTipItem109 = new DevExpress.Utils.ToolTipItem();
     DevExpress.Utils.SuperToolTip superToolTip110 = new DevExpress.Utils.SuperToolTip();
     DevExpress.Utils.ToolTipTitleItem toolTipTitleItem110 = new DevExpress.Utils.ToolTipTitleItem();
     DevExpress.Utils.ToolTipItem toolTipItem110 = new DevExpress.Utils.ToolTipItem();
     DevExpress.Utils.SuperToolTip superToolTip115 = new DevExpress.Utils.SuperToolTip();
     DevExpress.Utils.ToolTipTitleItem toolTipTitleItem115 = new DevExpress.Utils.ToolTipTitleItem();
     DevExpress.Utils.ToolTipItem toolTipItem115 = new DevExpress.Utils.ToolTipItem();
     DevExpress.Utils.SuperToolTip superToolTip111 = new DevExpress.Utils.SuperToolTip();
     DevExpress.Utils.ToolTipTitleItem toolTipTitleItem111 = new DevExpress.Utils.ToolTipTitleItem();
     DevExpress.Utils.ToolTipItem toolTipItem111 = new DevExpress.Utils.ToolTipItem();
     DevExpress.Utils.SuperToolTip superToolTip112 = new DevExpress.Utils.SuperToolTip();
     DevExpress.Utils.ToolTipTitleItem toolTipTitleItem112 = new DevExpress.Utils.ToolTipTitleItem();
     DevExpress.Utils.ToolTipItem toolTipItem112 = new DevExpress.Utils.ToolTipItem();
     DevExpress.Utils.SuperToolTip superToolTip113 = new DevExpress.Utils.SuperToolTip();
     DevExpress.Utils.ToolTipTitleItem toolTipTitleItem113 = new DevExpress.Utils.ToolTipTitleItem();
     DevExpress.Utils.ToolTipItem toolTipItem113 = new DevExpress.Utils.ToolTipItem();
     DevExpress.Utils.SuperToolTip superToolTip114 = new DevExpress.Utils.SuperToolTip();
     DevExpress.Utils.ToolTipTitleItem toolTipTitleItem114 = new DevExpress.Utils.ToolTipTitleItem();
     DevExpress.Utils.ToolTipItem toolTipItem114 = new DevExpress.Utils.ToolTipItem();
     DevExpress.Utils.SuperToolTip superToolTip118 = new DevExpress.Utils.SuperToolTip();
     DevExpress.Utils.ToolTipTitleItem toolTipTitleItem118 = new DevExpress.Utils.ToolTipTitleItem();
     DevExpress.Utils.ToolTipItem toolTipItem118 = new DevExpress.Utils.ToolTipItem();
     DevExpress.Utils.SuperToolTip superToolTip116 = new DevExpress.Utils.SuperToolTip();
     DevExpress.Utils.ToolTipTitleItem toolTipTitleItem116 = new DevExpress.Utils.ToolTipTitleItem();
     DevExpress.Utils.ToolTipItem toolTipItem116 = new DevExpress.Utils.ToolTipItem();
     DevExpress.Utils.SuperToolTip superToolTip117 = new DevExpress.Utils.SuperToolTip();
     DevExpress.Utils.ToolTipTitleItem toolTipTitleItem117 = new DevExpress.Utils.ToolTipTitleItem();
     DevExpress.Utils.ToolTipItem toolTipItem117 = new DevExpress.Utils.ToolTipItem();
     DevExpress.Utils.SuperToolTip superToolTip119 = new DevExpress.Utils.SuperToolTip();
     DevExpress.Utils.ToolTipTitleItem toolTipTitleItem119 = new DevExpress.Utils.ToolTipTitleItem();
     DevExpress.Utils.ToolTipItem toolTipItem119 = new DevExpress.Utils.ToolTipItem();
     DevExpress.Utils.SuperToolTip superToolTip124 = new DevExpress.Utils.SuperToolTip();
     DevExpress.Utils.ToolTipTitleItem toolTipTitleItem124 = new DevExpress.Utils.ToolTipTitleItem();
     DevExpress.Utils.ToolTipItem toolTipItem124 = new DevExpress.Utils.ToolTipItem();
     DevExpress.Utils.SuperToolTip superToolTip120 = new DevExpress.Utils.SuperToolTip();
     DevExpress.Utils.ToolTipTitleItem toolTipTitleItem120 = new DevExpress.Utils.ToolTipTitleItem();
     DevExpress.Utils.ToolTipItem toolTipItem120 = new DevExpress.Utils.ToolTipItem();
     DevExpress.Utils.SuperToolTip superToolTip121 = new DevExpress.Utils.SuperToolTip();
     DevExpress.Utils.ToolTipTitleItem toolTipTitleItem121 = new DevExpress.Utils.ToolTipTitleItem();
     DevExpress.Utils.ToolTipItem toolTipItem121 = new DevExpress.Utils.ToolTipItem();
     DevExpress.Utils.SuperToolTip superToolTip122 = new DevExpress.Utils.SuperToolTip();
     DevExpress.Utils.ToolTipTitleItem toolTipTitleItem122 = new DevExpress.Utils.ToolTipTitleItem();
     DevExpress.Utils.ToolTipItem toolTipItem122 = new DevExpress.Utils.ToolTipItem();
     DevExpress.Utils.SuperToolTip superToolTip123 = new DevExpress.Utils.SuperToolTip();
     DevExpress.Utils.ToolTipTitleItem toolTipTitleItem123 = new DevExpress.Utils.ToolTipTitleItem();
     DevExpress.Utils.ToolTipItem toolTipItem123 = new DevExpress.Utils.ToolTipItem();
     DevExpress.Utils.SuperToolTip superToolTip130 = new DevExpress.Utils.SuperToolTip();
     DevExpress.Utils.ToolTipTitleItem toolTipTitleItem130 = new DevExpress.Utils.ToolTipTitleItem();
     DevExpress.Utils.ToolTipItem toolTipItem130 = new DevExpress.Utils.ToolTipItem();
     DevExpress.Utils.SuperToolTip superToolTip125 = new DevExpress.Utils.SuperToolTip();
     DevExpress.Utils.ToolTipTitleItem toolTipTitleItem125 = new DevExpress.Utils.ToolTipTitleItem();
     DevExpress.Utils.ToolTipItem toolTipItem125 = new DevExpress.Utils.ToolTipItem();
     DevExpress.Utils.SuperToolTip superToolTip126 = new DevExpress.Utils.SuperToolTip();
     DevExpress.Utils.ToolTipTitleItem toolTipTitleItem126 = new DevExpress.Utils.ToolTipTitleItem();
     DevExpress.Utils.ToolTipItem toolTipItem126 = new DevExpress.Utils.ToolTipItem();
     DevExpress.Utils.SuperToolTip superToolTip127 = new DevExpress.Utils.SuperToolTip();
     DevExpress.Utils.ToolTipTitleItem toolTipTitleItem127 = new DevExpress.Utils.ToolTipTitleItem();
     DevExpress.Utils.ToolTipItem toolTipItem127 = new DevExpress.Utils.ToolTipItem();
     DevExpress.Utils.SuperToolTip superToolTip128 = new DevExpress.Utils.SuperToolTip();
     DevExpress.Utils.ToolTipTitleItem toolTipTitleItem128 = new DevExpress.Utils.ToolTipTitleItem();
     DevExpress.Utils.ToolTipItem toolTipItem128 = new DevExpress.Utils.ToolTipItem();
     DevExpress.Utils.SuperToolTip superToolTip129 = new DevExpress.Utils.SuperToolTip();
     DevExpress.Utils.ToolTipTitleItem toolTipTitleItem129 = new DevExpress.Utils.ToolTipTitleItem();
     DevExpress.Utils.ToolTipItem toolTipItem129 = new DevExpress.Utils.ToolTipItem();
     DevExpress.Utils.SuperToolTip superToolTip137 = new DevExpress.Utils.SuperToolTip();
     DevExpress.Utils.ToolTipTitleItem toolTipTitleItem137 = new DevExpress.Utils.ToolTipTitleItem();
     DevExpress.Utils.ToolTipItem toolTipItem137 = new DevExpress.Utils.ToolTipItem();
     DevExpress.Utils.SuperToolTip superToolTip131 = new DevExpress.Utils.SuperToolTip();
     DevExpress.Utils.ToolTipTitleItem toolTipTitleItem131 = new DevExpress.Utils.ToolTipTitleItem();
     DevExpress.Utils.ToolTipItem toolTipItem131 = new DevExpress.Utils.ToolTipItem();
     DevExpress.Utils.SuperToolTip superToolTip132 = new DevExpress.Utils.SuperToolTip();
     DevExpress.Utils.ToolTipTitleItem toolTipTitleItem132 = new DevExpress.Utils.ToolTipTitleItem();
     DevExpress.Utils.ToolTipItem toolTipItem132 = new DevExpress.Utils.ToolTipItem();
     DevExpress.Utils.SuperToolTip superToolTip133 = new DevExpress.Utils.SuperToolTip();
     DevExpress.Utils.ToolTipTitleItem toolTipTitleItem133 = new DevExpress.Utils.ToolTipTitleItem();
     DevExpress.Utils.ToolTipItem toolTipItem133 = new DevExpress.Utils.ToolTipItem();
     DevExpress.Utils.SuperToolTip superToolTip134 = new DevExpress.Utils.SuperToolTip();
     DevExpress.Utils.ToolTipTitleItem toolTipTitleItem134 = new DevExpress.Utils.ToolTipTitleItem();
     DevExpress.Utils.ToolTipItem toolTipItem134 = new DevExpress.Utils.ToolTipItem();
     DevExpress.Utils.SuperToolTip superToolTip135 = new DevExpress.Utils.SuperToolTip();
     DevExpress.Utils.ToolTipTitleItem toolTipTitleItem135 = new DevExpress.Utils.ToolTipTitleItem();
     DevExpress.Utils.ToolTipItem toolTipItem135 = new DevExpress.Utils.ToolTipItem();
     DevExpress.Utils.SuperToolTip superToolTip136 = new DevExpress.Utils.SuperToolTip();
     DevExpress.Utils.ToolTipTitleItem toolTipTitleItem136 = new DevExpress.Utils.ToolTipTitleItem();
     DevExpress.Utils.ToolTipItem toolTipItem136 = new DevExpress.Utils.ToolTipItem();
     DevExpress.Utils.SuperToolTip superToolTip138 = new DevExpress.Utils.SuperToolTip();
     DevExpress.Utils.ToolTipTitleItem toolTipTitleItem138 = new DevExpress.Utils.ToolTipTitleItem();
     DevExpress.Utils.ToolTipItem toolTipItem138 = new DevExpress.Utils.ToolTipItem();
     DevExpress.Utils.SuperToolTip superToolTip139 = new DevExpress.Utils.SuperToolTip();
     DevExpress.Utils.ToolTipTitleItem toolTipTitleItem139 = new DevExpress.Utils.ToolTipTitleItem();
     DevExpress.Utils.ToolTipItem toolTipItem139 = new DevExpress.Utils.ToolTipItem();
     DevExpress.Utils.SuperToolTip superToolTip140 = new DevExpress.Utils.SuperToolTip();
     DevExpress.Utils.ToolTipTitleItem toolTipTitleItem140 = new DevExpress.Utils.ToolTipTitleItem();
     DevExpress.Utils.ToolTipItem toolTipItem140 = new DevExpress.Utils.ToolTipItem();
     DevExpress.Utils.SuperToolTip superToolTip141 = new DevExpress.Utils.SuperToolTip();
     DevExpress.Utils.ToolTipTitleItem toolTipTitleItem141 = new DevExpress.Utils.ToolTipTitleItem();
     DevExpress.Utils.ToolTipItem toolTipItem141 = new DevExpress.Utils.ToolTipItem();
     DevExpress.Utils.SuperToolTip superToolTip142 = new DevExpress.Utils.SuperToolTip();
     DevExpress.Utils.ToolTipTitleItem toolTipTitleItem142 = new DevExpress.Utils.ToolTipTitleItem();
     DevExpress.Utils.ToolTipItem toolTipItem142 = new DevExpress.Utils.ToolTipItem();
     this.barManager1 = new DevExpress.XtraBars.BarManager(this.components);
     this.bar3 = new DevExpress.XtraBars.Bar();
     this.commonBar1 = new DevExpress.XtraRichEdit.UI.CommonBar();
     this.insertPdfItem = new DevExpress.XtraBars.BarButtonItem();
     this.insertImage1 = new DevExpress.XtraBars.BarButtonItem();
     this.barButtonItem2 = 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.cutItem1 = new DevExpress.XtraRichEdit.UI.CutItem();
     this.copyItem1 = new DevExpress.XtraRichEdit.UI.CopyItem();
     this.pasteItem1 = new DevExpress.XtraRichEdit.UI.PasteItem();
     this.pasteSpecialItem1 = new DevExpress.XtraRichEdit.UI.PasteSpecialItem();
     this.changeFontNameItem1 = new DevExpress.XtraRichEdit.UI.ChangeFontNameItem();
     this.repositoryItemFontEdit1 = new DevExpress.XtraEditors.Repository.RepositoryItemFontEdit();
     this.changeFontSizeItem1 = new DevExpress.XtraRichEdit.UI.ChangeFontSizeItem();
     this.repositoryItemRichEditFontSizeEdit1 = new DevExpress.XtraRichEdit.Design.RepositoryItemRichEditFontSizeEdit();
     this.changeFontColorItem1 = new DevExpress.XtraRichEdit.UI.ChangeFontColorItem();
     this.changeFontBackColorItem1 = new DevExpress.XtraRichEdit.UI.ChangeFontBackColorItem();
     this.toggleFontBoldItem1 = new DevExpress.XtraRichEdit.UI.ToggleFontBoldItem();
     this.toggleFontItalicItem1 = new DevExpress.XtraRichEdit.UI.ToggleFontItalicItem();
     this.toggleFontUnderlineItem1 = new DevExpress.XtraRichEdit.UI.ToggleFontUnderlineItem();
     this.toggleFontDoubleUnderlineItem1 = new DevExpress.XtraRichEdit.UI.ToggleFontDoubleUnderlineItem();
     this.toggleFontStrikeoutItem1 = new DevExpress.XtraRichEdit.UI.ToggleFontStrikeoutItem();
     this.toggleFontDoubleStrikeoutItem1 = new DevExpress.XtraRichEdit.UI.ToggleFontDoubleStrikeoutItem();
     this.toggleFontSubscriptItem1 = new DevExpress.XtraRichEdit.UI.ToggleFontSubscriptItem();
     this.changeTextCaseItem1 = new DevExpress.XtraRichEdit.UI.ChangeTextCaseItem();
     this.makeTextUpperCaseItem1 = new DevExpress.XtraRichEdit.UI.MakeTextUpperCaseItem();
     this.makeTextLowerCaseItem1 = new DevExpress.XtraRichEdit.UI.MakeTextLowerCaseItem();
     this.toggleTextCaseItem1 = new DevExpress.XtraRichEdit.UI.ToggleTextCaseItem();
     this.fontSizeIncreaseItem1 = new DevExpress.XtraRichEdit.UI.FontSizeIncreaseItem();
     this.fontSizeDecreaseItem1 = new DevExpress.XtraRichEdit.UI.FontSizeDecreaseItem();
     this.clearFormattingItem1 = new DevExpress.XtraRichEdit.UI.ClearFormattingItem();
     this.showFontFormItem1 = new DevExpress.XtraRichEdit.UI.ShowFontFormItem();
     this.toggleParagraphAlignmentLeftItem1 = new DevExpress.XtraRichEdit.UI.ToggleParagraphAlignmentLeftItem();
     this.toggleParagraphAlignmentCenterItem1 = new DevExpress.XtraRichEdit.UI.ToggleParagraphAlignmentCenterItem();
     this.toggleParagraphAlignmentRightItem1 = new DevExpress.XtraRichEdit.UI.ToggleParagraphAlignmentRightItem();
     this.toggleParagraphAlignmentJustifyItem1 = new DevExpress.XtraRichEdit.UI.ToggleParagraphAlignmentJustifyItem();
     this.changeParagraphLineSpacingItem1 = new DevExpress.XtraRichEdit.UI.ChangeParagraphLineSpacingItem();
     this.setSingleParagraphSpacingItem1 = new DevExpress.XtraRichEdit.UI.SetSingleParagraphSpacingItem();
     this.setSesquialteralParagraphSpacingItem1 = new DevExpress.XtraRichEdit.UI.SetSesquialteralParagraphSpacingItem();
     this.setDoubleParagraphSpacingItem1 = new DevExpress.XtraRichEdit.UI.SetDoubleParagraphSpacingItem();
     this.showLineSpacingFormItem1 = new DevExpress.XtraRichEdit.UI.ShowLineSpacingFormItem();
     this.addSpacingBeforeParagraphItem1 = new DevExpress.XtraRichEdit.UI.AddSpacingBeforeParagraphItem();
     this.removeSpacingBeforeParagraphItem1 = new DevExpress.XtraRichEdit.UI.RemoveSpacingBeforeParagraphItem();
     this.addSpacingAfterParagraphItem1 = new DevExpress.XtraRichEdit.UI.AddSpacingAfterParagraphItem();
     this.removeSpacingAfterParagraphItem1 = new DevExpress.XtraRichEdit.UI.RemoveSpacingAfterParagraphItem();
     this.toggleNumberingListItem1 = new DevExpress.XtraRichEdit.UI.ToggleNumberingListItem();
     this.toggleMultiLevelListItem1 = new DevExpress.XtraRichEdit.UI.ToggleMultiLevelListItem();
     this.decreaseIndentItem1 = new DevExpress.XtraRichEdit.UI.DecreaseIndentItem();
     this.increaseIndentItem1 = new DevExpress.XtraRichEdit.UI.IncreaseIndentItem();
     this.toggleShowWhitespaceItem1 = new DevExpress.XtraRichEdit.UI.ToggleShowWhitespaceItem();
     this.showParagraphFormItem1 = new DevExpress.XtraRichEdit.UI.ShowParagraphFormItem();
     this.findItem1 = new DevExpress.XtraRichEdit.UI.FindItem();
     this.replaceItem1 = new DevExpress.XtraRichEdit.UI.ReplaceItem();
     this.changeTableCellsShadingItem1 = new DevExpress.XtraRichEdit.UI.ChangeTableCellsShadingItem();
     this.changeTableBordersItem1 = new DevExpress.XtraRichEdit.UI.ChangeTableBordersItem();
     this.toggleTableCellsBottomBorderItem1 = new DevExpress.XtraRichEdit.UI.ToggleTableCellsBottomBorderItem();
     this.toggleTableCellsTopBorderItem1 = new DevExpress.XtraRichEdit.UI.ToggleTableCellsTopBorderItem();
     this.toggleTableCellsLeftBorderItem1 = new DevExpress.XtraRichEdit.UI.ToggleTableCellsLeftBorderItem();
     this.toggleTableCellsRightBorderItem1 = new DevExpress.XtraRichEdit.UI.ToggleTableCellsRightBorderItem();
     this.resetTableCellsAllBordersItem1 = new DevExpress.XtraRichEdit.UI.ResetTableCellsAllBordersItem();
     this.toggleTableCellsAllBordersItem1 = new DevExpress.XtraRichEdit.UI.ToggleTableCellsAllBordersItem();
     this.toggleTableCellsOutsideBorderItem1 = new DevExpress.XtraRichEdit.UI.ToggleTableCellsOutsideBorderItem();
     this.toggleTableCellsInsideBorderItem1 = new DevExpress.XtraRichEdit.UI.ToggleTableCellsInsideBorderItem();
     this.toggleTableCellsInsideHorizontalBorderItem1 = new DevExpress.XtraRichEdit.UI.ToggleTableCellsInsideHorizontalBorderItem();
     this.toggleTableCellsInsideVerticalBorderItem1 = new DevExpress.XtraRichEdit.UI.ToggleTableCellsInsideVerticalBorderItem();
     this.toggleShowTableGridLinesItem1 = new DevExpress.XtraRichEdit.UI.ToggleShowTableGridLinesItem();
     this.changeTableBorderLineStyleItem1 = new DevExpress.XtraRichEdit.UI.ChangeTableBorderLineStyleItem();
     this.repositoryItemBorderLineStyle1 = new DevExpress.XtraRichEdit.Forms.Design.RepositoryItemBorderLineStyle();
     this.changeTableBorderLineWeightItem1 = new DevExpress.XtraRichEdit.UI.ChangeTableBorderLineWeightItem();
     this.repositoryItemBorderLineWeight1 = new DevExpress.XtraRichEdit.Forms.Design.RepositoryItemBorderLineWeight();
     this.changeTableBorderColorItem1 = new DevExpress.XtraRichEdit.UI.ChangeTableBorderColorItem();
     this.selectTableElementsItem1 = new DevExpress.XtraRichEdit.UI.SelectTableElementsItem();
     this.selectTableCellItem1 = new DevExpress.XtraRichEdit.UI.SelectTableCellItem();
     this.selectTableColumnItem1 = new DevExpress.XtraRichEdit.UI.SelectTableColumnItem();
     this.selectTableRowItem1 = new DevExpress.XtraRichEdit.UI.SelectTableRowItem();
     this.selectTableItem1 = new DevExpress.XtraRichEdit.UI.SelectTableItem();
     this.showTablePropertiesFormItem1 = new DevExpress.XtraRichEdit.UI.ShowTablePropertiesFormItem();
     this.deleteTableElementsItem1 = new DevExpress.XtraRichEdit.UI.DeleteTableElementsItem();
     this.showDeleteTableCellsFormItem1 = new DevExpress.XtraRichEdit.UI.ShowDeleteTableCellsFormItem();
     this.deleteTableColumnsItem1 = new DevExpress.XtraRichEdit.UI.DeleteTableColumnsItem();
     this.deleteTableRowsItem1 = new DevExpress.XtraRichEdit.UI.DeleteTableRowsItem();
     this.deleteTableItem1 = new DevExpress.XtraRichEdit.UI.DeleteTableItem();
     this.insertTableRowAboveItem1 = new DevExpress.XtraRichEdit.UI.InsertTableRowAboveItem();
     this.insertTableRowBelowItem1 = new DevExpress.XtraRichEdit.UI.InsertTableRowBelowItem();
     this.insertTableColumnToLeftItem1 = new DevExpress.XtraRichEdit.UI.InsertTableColumnToLeftItem();
     this.insertTableColumnToRightItem1 = new DevExpress.XtraRichEdit.UI.InsertTableColumnToRightItem();
     this.showInsertTableCellsFormItem1 = new DevExpress.XtraRichEdit.UI.ShowInsertTableCellsFormItem();
     this.mergeTableCellsItem1 = new DevExpress.XtraRichEdit.UI.MergeTableCellsItem();
     this.showSplitTableCellsForm1 = new DevExpress.XtraRichEdit.UI.ShowSplitTableCellsForm();
     this.splitTableItem1 = new DevExpress.XtraRichEdit.UI.SplitTableItem();
     this.toggleTableAutoFitItem1 = new DevExpress.XtraRichEdit.UI.ToggleTableAutoFitItem();
     this.toggleTableAutoFitContentsItem1 = new DevExpress.XtraRichEdit.UI.ToggleTableAutoFitContentsItem();
     this.toggleTableAutoFitWindowItem1 = new DevExpress.XtraRichEdit.UI.ToggleTableAutoFitWindowItem();
     this.toggleTableFixedColumnWidthItem1 = new DevExpress.XtraRichEdit.UI.ToggleTableFixedColumnWidthItem();
     this.toggleTableCellsTopLeftAlignmentItem1 = new DevExpress.XtraRichEdit.UI.ToggleTableCellsTopLeftAlignmentItem();
     this.toggleTableCellsTopCenterAlignmentItem1 = new DevExpress.XtraRichEdit.UI.ToggleTableCellsTopCenterAlignmentItem();
     this.toggleTableCellsTopRightAlignmentItem1 = new DevExpress.XtraRichEdit.UI.ToggleTableCellsTopRightAlignmentItem();
     this.toggleTableCellsMiddleLeftAlignmentItem1 = new DevExpress.XtraRichEdit.UI.ToggleTableCellsMiddleLeftAlignmentItem();
     this.toggleTableCellsMiddleCenterAlignmentItem1 = new DevExpress.XtraRichEdit.UI.ToggleTableCellsMiddleCenterAlignmentItem();
     this.toggleTableCellsMiddleRightAlignmentItem1 = new DevExpress.XtraRichEdit.UI.ToggleTableCellsMiddleRightAlignmentItem();
     this.toggleTableCellsBottomLeftAlignmentItem1 = new DevExpress.XtraRichEdit.UI.ToggleTableCellsBottomLeftAlignmentItem();
     this.toggleTableCellsBottomCenterAlignmentItem1 = new DevExpress.XtraRichEdit.UI.ToggleTableCellsBottomCenterAlignmentItem();
     this.toggleTableCellsBottomRightAlignmentItem1 = new DevExpress.XtraRichEdit.UI.ToggleTableCellsBottomRightAlignmentItem();
     this.switchToSimpleViewItem1 = new DevExpress.XtraRichEdit.UI.SwitchToSimpleViewItem();
     this.switchToDraftViewItem1 = new DevExpress.XtraRichEdit.UI.SwitchToDraftViewItem();
     this.switchToPrintLayoutViewItem1 = new DevExpress.XtraRichEdit.UI.SwitchToPrintLayoutViewItem();
     this.toggleShowHorizontalRulerItem1 = new DevExpress.XtraRichEdit.UI.ToggleShowHorizontalRulerItem();
     this.toggleShowVerticalRulerItem1 = new DevExpress.XtraRichEdit.UI.ToggleShowVerticalRulerItem();
     this.zoomOutItem1 = new DevExpress.XtraRichEdit.UI.ZoomOutItem();
     this.zoomInItem1 = new DevExpress.XtraRichEdit.UI.ZoomInItem();
     this.toggleBulletedListItem1 = new DevExpress.XtraRichEdit.UI.ToggleBulletedListItem();
     this.insertPageBreakItem1 = new DevExpress.XtraRichEdit.UI.InsertPageBreakItem();
     this.insertTableItem1 = new DevExpress.XtraRichEdit.UI.InsertTableItem();
     this.insertPictureItem1 = new DevExpress.XtraRichEdit.UI.InsertPictureItem();
     this.insertBookmarkItem1 = new DevExpress.XtraRichEdit.UI.InsertBookmarkItem();
     this.insertHyperlinkItem1 = new DevExpress.XtraRichEdit.UI.InsertHyperlinkItem();
     this.editPageHeaderItem1 = new DevExpress.XtraRichEdit.UI.EditPageHeaderItem();
     this.editPageFooterItem1 = new DevExpress.XtraRichEdit.UI.EditPageFooterItem();
     this.insertPageNumberItem1 = new DevExpress.XtraRichEdit.UI.InsertPageNumberItem();
     this.insertPageCountItem1 = new DevExpress.XtraRichEdit.UI.InsertPageCountItem();
     this.insertSymbolItem1 = new DevExpress.XtraRichEdit.UI.InsertSymbolItem();
     this.changeSectionPageMarginsItem1 = new DevExpress.XtraRichEdit.UI.ChangeSectionPageMarginsItem();
     this.setNormalSectionPageMarginsItem1 = new DevExpress.XtraRichEdit.UI.SetNormalSectionPageMarginsItem();
     this.setNarrowSectionPageMarginsItem1 = new DevExpress.XtraRichEdit.UI.SetNarrowSectionPageMarginsItem();
     this.setModerateSectionPageMarginsItem1 = new DevExpress.XtraRichEdit.UI.SetModerateSectionPageMarginsItem();
     this.setWideSectionPageMarginsItem1 = new DevExpress.XtraRichEdit.UI.SetWideSectionPageMarginsItem();
     this.changeSectionPageOrientationItem1 = new DevExpress.XtraRichEdit.UI.ChangeSectionPageOrientationItem();
     this.setPortraitPageOrientationItem1 = new DevExpress.XtraRichEdit.UI.SetPortraitPageOrientationItem();
     this.setLandscapePageOrientationItem1 = new DevExpress.XtraRichEdit.UI.SetLandscapePageOrientationItem();
     this.changeSectionPaperKindItem1 = new DevExpress.XtraRichEdit.UI.ChangeSectionPaperKindItem();
     this.changeSectionColumnsItem1 = new DevExpress.XtraRichEdit.UI.ChangeSectionColumnsItem();
     this.setSectionOneColumnItem1 = new DevExpress.XtraRichEdit.UI.SetSectionOneColumnItem();
     this.setSectionTwoColumnsItem1 = new DevExpress.XtraRichEdit.UI.SetSectionTwoColumnsItem();
     this.setSectionThreeColumnsItem1 = new DevExpress.XtraRichEdit.UI.SetSectionThreeColumnsItem();
     this.showColumnsSetupFormItem1 = new DevExpress.XtraRichEdit.UI.ShowColumnsSetupFormItem();
     this.insertBreakItem1 = new DevExpress.XtraRichEdit.UI.InsertBreakItem();
     this.insertPageBreakItem2 = new DevExpress.XtraRichEdit.UI.InsertPageBreakItem();
     this.insertColumnBreakItem1 = new DevExpress.XtraRichEdit.UI.InsertColumnBreakItem();
     this.insertSectionBreakNextPageItem1 = new DevExpress.XtraRichEdit.UI.InsertSectionBreakNextPageItem();
     this.insertSectionBreakEvenPageItem1 = new DevExpress.XtraRichEdit.UI.InsertSectionBreakEvenPageItem();
     this.insertSectionBreakOddPageItem1 = new DevExpress.XtraRichEdit.UI.InsertSectionBreakOddPageItem();
     this.changeSectionLineNumberingItem1 = new DevExpress.XtraRichEdit.UI.ChangeSectionLineNumberingItem();
     this.setSectionLineNumberingNoneItem1 = new DevExpress.XtraRichEdit.UI.SetSectionLineNumberingNoneItem();
     this.setSectionLineNumberingContinuousItem1 = new DevExpress.XtraRichEdit.UI.SetSectionLineNumberingContinuousItem();
     this.setSectionLineNumberingRestartNewPageItem1 = new DevExpress.XtraRichEdit.UI.SetSectionLineNumberingRestartNewPageItem();
     this.setSectionLineNumberingRestartNewSectionItem1 = new DevExpress.XtraRichEdit.UI.SetSectionLineNumberingRestartNewSectionItem();
     this.toggleParagraphSuppressLineNumbersItem1 = new DevExpress.XtraRichEdit.UI.ToggleParagraphSuppressLineNumbersItem();
     this.showLineNumberingFormItem1 = new DevExpress.XtraRichEdit.UI.ShowLineNumberingFormItem();
     this.checkSpellingItem1 = new DevExpress.XtraRichEdit.UI.CheckSpellingItem();
     this.protectDocumentItem1 = new DevExpress.XtraRichEdit.UI.ProtectDocumentItem();
     this.changeRangeEditingPermissionsItem1 = new DevExpress.XtraRichEdit.UI.ChangeRangeEditingPermissionsItem();
     this.unprotectDocumentItem1 = new DevExpress.XtraRichEdit.UI.UnprotectDocumentItem();
     this.barStaticItem1 = new DevExpress.XtraBars.BarStaticItem();
     this.cboTemplate = new DevExpress.XtraBars.BarEditItem();
     this.repositoryItemComboBox1 = new DevExpress.XtraEditors.Repository.RepositoryItemComboBox();
     this.barStaticItem2 = new DevExpress.XtraBars.BarStaticItem();
     this.barEditItem1 = new DevExpress.XtraBars.BarEditItem();
     this.repositoryItemPictureEdit2 = new DevExpress.XtraEditors.Repository.RepositoryItemPictureEdit();
     this.barButtonItem1 = new DevExpress.XtraBars.BarButtonItem();
     this.repositoryItemRichEditStyleEdit1 = new DevExpress.XtraRichEdit.Design.RepositoryItemRichEditStyleEdit();
     this.repositoryItemPictureEdit1 = new DevExpress.XtraEditors.Repository.RepositoryItemPictureEdit();
     this.repositoryItemTextEdit1 = new DevExpress.XtraEditors.Repository.RepositoryItemTextEdit();
     this.repositoryItemRichEditStyleEdit2 = new DevExpress.XtraRichEdit.Design.RepositoryItemRichEditStyleEdit();
     this.repositoryItemComboBox2 = new DevExpress.XtraEditors.Repository.RepositoryItemComboBox();
     this.repositoryItemComboBox4 = new DevExpress.XtraEditors.Repository.RepositoryItemComboBox();
     this.repositoryItemRichEditStyleEdit3 = new DevExpress.XtraRichEdit.Design.RepositoryItemRichEditStyleEdit();
     this.richEditBarController1 = new DevExpress.XtraRichEdit.UI.RichEditBarController();
     this.stylesBar2 = new DevExpress.XtraRichEdit.UI.StylesBar();
     this.grdContent = new DevExpress.XtraGrid.GridControl();
     this.gridView1 = new DevExpress.XtraGrid.Views.Grid.GridView();
     this.colTagCode = new DevExpress.XtraGrid.Columns.GridColumn();
     this.repositoryItemLookUpEdit1 = new DevExpress.XtraEditors.Repository.RepositoryItemLookUpEdit();
     this.colTagName = new DevExpress.XtraGrid.Columns.GridColumn();
     this.colNotes = new DevExpress.XtraGrid.Columns.GridColumn();
     this.repositoryItemMemoEdit2 = new DevExpress.XtraEditors.Repository.RepositoryItemMemoEdit();
     this.repositoryItemPictureEdit3 = new DevExpress.XtraEditors.Repository.RepositoryItemPictureEdit();
     this.CreateDate = new DevExpress.XtraGrid.Columns.GridColumn();
     this.colType = new DevExpress.XtraGrid.Columns.GridColumn();
     this.repositoryItemMemoEdit1 = new DevExpress.XtraEditors.Repository.RepositoryItemMemoEdit();
     this.repositoryItemRichTextEdit1 = new DevExpress.XtraEditors.Repository.RepositoryItemRichTextEdit();
     this.repositoryItemComboBox3 = new DevExpress.XtraEditors.Repository.RepositoryItemComboBox();
     this.repositoryItemGridLookUpEdit1 = new DevExpress.XtraEditors.Repository.RepositoryItemGridLookUpEdit();
     this.repositoryItemGridLookUpEdit1View = new DevExpress.XtraGrid.Views.Grid.GridView();
     this.repositoryItemRichTextEdit2 = new DevExpress.XtraEditors.Repository.RepositoryItemRichTextEdit();
     this.repositoryItemRichTextEdit3 = new DevExpress.XtraEditors.Repository.RepositoryItemRichTextEdit();
     this.repositoryItemTextEdit2 = new DevExpress.XtraEditors.Repository.RepositoryItemTextEdit();
     this.repositoryItemTextEdit3 = new DevExpress.XtraEditors.Repository.RepositoryItemTextEdit();
     this.cboTempl1 = new System.Windows.Forms.ComboBox();
     this.cboDisplay = new System.Windows.Forms.ComboBox();
     this.labelControl1 = new DevExpress.XtraEditors.LabelControl();
     this.insertBookmark = new DevExpress.XtraEditors.LabelControl();
     this.fileSaveItem2 = new DevExpress.XtraRichEdit.UI.FileSaveItem();
     this.commonBar2 = new DevExpress.XtraRichEdit.UI.CommonBar();
     this.commonBar3 = new DevExpress.XtraRichEdit.UI.CommonBar();
     this.commonBar4 = new DevExpress.XtraRichEdit.UI.CommonBar();
     this.imageList1 = new System.Windows.Forms.ImageList(this.components);
     this.imageCollection1 = new DevExpress.Utils.ImageCollection(this.components);
     this.dateEdit = new DevExpress.XtraEditors.DateEdit();
     ((System.ComponentModel.ISupportInitialize)(this.barManager1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemFontEdit1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemRichEditFontSizeEdit1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemBorderLineStyle1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemBorderLineWeight1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemComboBox1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemPictureEdit2)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemRichEditStyleEdit1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemPictureEdit1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemTextEdit1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemRichEditStyleEdit2)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemComboBox2)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemComboBox4)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemRichEditStyleEdit3)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.richEditBarController1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.grdContent)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridView1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemLookUpEdit1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemMemoEdit2)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemPictureEdit3)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemMemoEdit1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemRichTextEdit1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemComboBox3)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemGridLookUpEdit1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemGridLookUpEdit1View)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemRichTextEdit2)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemRichTextEdit3)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemTextEdit2)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemTextEdit3)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.imageCollection1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.dateEdit.Properties.VistaTimeProperties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.dateEdit.Properties)).BeginInit();
     this.SuspendLayout();
     //
     // barManager1
     //
     this.barManager1.Bars.AddRange(new DevExpress.XtraBars.Bar[] {
     this.bar3,
     this.commonBar1});
     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.cutItem1,
     this.copyItem1,
     this.pasteItem1,
     this.pasteSpecialItem1,
     this.changeFontNameItem1,
     this.changeFontSizeItem1,
     this.changeFontColorItem1,
     this.changeFontBackColorItem1,
     this.toggleFontBoldItem1,
     this.toggleFontItalicItem1,
     this.toggleFontUnderlineItem1,
     this.toggleFontDoubleUnderlineItem1,
     this.toggleFontStrikeoutItem1,
     this.toggleFontDoubleStrikeoutItem1,
     this.toggleFontSubscriptItem1,
     this.changeTextCaseItem1,
     this.makeTextUpperCaseItem1,
     this.makeTextLowerCaseItem1,
     this.toggleTextCaseItem1,
     this.fontSizeIncreaseItem1,
     this.fontSizeDecreaseItem1,
     this.clearFormattingItem1,
     this.showFontFormItem1,
     this.toggleParagraphAlignmentLeftItem1,
     this.toggleParagraphAlignmentCenterItem1,
     this.toggleParagraphAlignmentRightItem1,
     this.toggleParagraphAlignmentJustifyItem1,
     this.changeParagraphLineSpacingItem1,
     this.setSingleParagraphSpacingItem1,
     this.setSesquialteralParagraphSpacingItem1,
     this.setDoubleParagraphSpacingItem1,
     this.showLineSpacingFormItem1,
     this.addSpacingBeforeParagraphItem1,
     this.removeSpacingBeforeParagraphItem1,
     this.addSpacingAfterParagraphItem1,
     this.removeSpacingAfterParagraphItem1,
     this.toggleNumberingListItem1,
     this.toggleMultiLevelListItem1,
     this.decreaseIndentItem1,
     this.increaseIndentItem1,
     this.toggleShowWhitespaceItem1,
     this.showParagraphFormItem1,
     this.findItem1,
     this.replaceItem1,
     this.changeTableCellsShadingItem1,
     this.changeTableBordersItem1,
     this.toggleTableCellsBottomBorderItem1,
     this.toggleTableCellsTopBorderItem1,
     this.toggleTableCellsLeftBorderItem1,
     this.toggleTableCellsRightBorderItem1,
     this.resetTableCellsAllBordersItem1,
     this.toggleTableCellsAllBordersItem1,
     this.toggleTableCellsOutsideBorderItem1,
     this.toggleTableCellsInsideBorderItem1,
     this.toggleTableCellsInsideHorizontalBorderItem1,
     this.toggleTableCellsInsideVerticalBorderItem1,
     this.toggleShowTableGridLinesItem1,
     this.changeTableBorderLineStyleItem1,
     this.changeTableBorderLineWeightItem1,
     this.changeTableBorderColorItem1,
     this.selectTableElementsItem1,
     this.selectTableCellItem1,
     this.selectTableColumnItem1,
     this.selectTableRowItem1,
     this.selectTableItem1,
     this.showTablePropertiesFormItem1,
     this.deleteTableElementsItem1,
     this.showDeleteTableCellsFormItem1,
     this.deleteTableColumnsItem1,
     this.deleteTableRowsItem1,
     this.deleteTableItem1,
     this.insertTableRowAboveItem1,
     this.insertTableRowBelowItem1,
     this.insertTableColumnToLeftItem1,
     this.insertTableColumnToRightItem1,
     this.showInsertTableCellsFormItem1,
     this.mergeTableCellsItem1,
     this.showSplitTableCellsForm1,
     this.splitTableItem1,
     this.toggleTableAutoFitItem1,
     this.toggleTableAutoFitContentsItem1,
     this.toggleTableAutoFitWindowItem1,
     this.toggleTableFixedColumnWidthItem1,
     this.toggleTableCellsTopLeftAlignmentItem1,
     this.toggleTableCellsTopCenterAlignmentItem1,
     this.toggleTableCellsTopRightAlignmentItem1,
     this.toggleTableCellsMiddleLeftAlignmentItem1,
     this.toggleTableCellsMiddleCenterAlignmentItem1,
     this.toggleTableCellsMiddleRightAlignmentItem1,
     this.toggleTableCellsBottomLeftAlignmentItem1,
     this.toggleTableCellsBottomCenterAlignmentItem1,
     this.toggleTableCellsBottomRightAlignmentItem1,
     this.switchToSimpleViewItem1,
     this.switchToDraftViewItem1,
     this.switchToPrintLayoutViewItem1,
     this.toggleShowHorizontalRulerItem1,
     this.toggleShowVerticalRulerItem1,
     this.zoomOutItem1,
     this.zoomInItem1,
     this.toggleBulletedListItem1,
     this.insertPageBreakItem1,
     this.insertTableItem1,
     this.insertPictureItem1,
     this.insertBookmarkItem1,
     this.insertHyperlinkItem1,
     this.editPageHeaderItem1,
     this.editPageFooterItem1,
     this.insertPageNumberItem1,
     this.insertPageCountItem1,
     this.insertSymbolItem1,
     this.changeSectionPageMarginsItem1,
     this.setNormalSectionPageMarginsItem1,
     this.setNarrowSectionPageMarginsItem1,
     this.setModerateSectionPageMarginsItem1,
     this.setWideSectionPageMarginsItem1,
     this.changeSectionPageOrientationItem1,
     this.setPortraitPageOrientationItem1,
     this.setLandscapePageOrientationItem1,
     this.changeSectionPaperKindItem1,
     this.changeSectionColumnsItem1,
     this.setSectionOneColumnItem1,
     this.setSectionTwoColumnsItem1,
     this.setSectionThreeColumnsItem1,
     this.showColumnsSetupFormItem1,
     this.insertBreakItem1,
     this.insertPageBreakItem2,
     this.insertColumnBreakItem1,
     this.insertSectionBreakNextPageItem1,
     this.insertSectionBreakEvenPageItem1,
     this.insertSectionBreakOddPageItem1,
     this.changeSectionLineNumberingItem1,
     this.setSectionLineNumberingNoneItem1,
     this.setSectionLineNumberingContinuousItem1,
     this.setSectionLineNumberingRestartNewPageItem1,
     this.setSectionLineNumberingRestartNewSectionItem1,
     this.toggleParagraphSuppressLineNumbersItem1,
     this.showLineNumberingFormItem1,
     this.checkSpellingItem1,
     this.protectDocumentItem1,
     this.changeRangeEditingPermissionsItem1,
     this.unprotectDocumentItem1,
     this.barStaticItem1,
     this.cboTemplate,
     this.barStaticItem2,
     this.barEditItem1,
     this.insertPdfItem,
     this.barButtonItem1,
     this.insertImage1,
     this.barButtonItem2});
     this.barManager1.MaxItemId = 192;
     this.barManager1.RepositoryItems.AddRange(new DevExpress.XtraEditors.Repository.RepositoryItem[] {
     this.repositoryItemFontEdit1,
     this.repositoryItemRichEditFontSizeEdit1,
     this.repositoryItemRichEditStyleEdit1,
     this.repositoryItemBorderLineStyle1,
     this.repositoryItemBorderLineWeight1,
     this.repositoryItemPictureEdit1,
     this.repositoryItemComboBox1,
     this.repositoryItemTextEdit1,
     this.repositoryItemRichEditStyleEdit2,
     this.repositoryItemComboBox2,
     this.repositoryItemComboBox4,
     this.repositoryItemPictureEdit2,
     this.repositoryItemRichEditStyleEdit3});
     this.barManager1.StatusBar = this.bar3;
     //
     // bar3
     //
     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.OptionsBar.AllowQuickCustomization = false;
     this.bar3.OptionsBar.DrawDragBorder = false;
     this.bar3.OptionsBar.UseWholeRow = true;
     this.bar3.Text = "Status bar";
     //
     // commonBar1
     //
     this.commonBar1.BarName = "";
     this.commonBar1.DockCol = 0;
     this.commonBar1.DockRow = 0;
     this.commonBar1.DockStyle = DevExpress.XtraBars.BarDockStyle.Top;
     this.commonBar1.FloatLocation = new System.Drawing.Point(481, 151);
     this.commonBar1.LinksPersistInfo.AddRange(new DevExpress.XtraBars.LinkPersistInfo[] {
     new DevExpress.XtraBars.LinkPersistInfo(this.insertPdfItem),
     new DevExpress.XtraBars.LinkPersistInfo(this.insertImage1),
     new DevExpress.XtraBars.LinkPersistInfo(this.barButtonItem2)});
     this.commonBar1.Offset = 381;
     this.commonBar1.Text = "";
     //
     // insertPdfItem
     //
     this.insertPdfItem.Caption = "Pdf";
     this.insertPdfItem.Id = 188;
     this.insertPdfItem.Name = "insertPdfItem";
     this.insertPdfItem.ItemClick += new DevExpress.XtraBars.ItemClickEventHandler(this.insertPdfItem_ItemClick);
     //
     // insertImage1
     //
     this.insertImage1.Caption = "Img";
     this.insertImage1.Id = 190;
     this.insertImage1.Name = "insertImage1";
     this.insertImage1.ItemClick += new DevExpress.XtraBars.ItemClickEventHandler(this.insertImage1_ItemClick);
     //
     // barButtonItem2
     //
     this.barButtonItem2.Caption = "Bookmark";
     this.barButtonItem2.Id = 191;
     this.barButtonItem2.Name = "barButtonItem2";
     //
     // 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(728, 29);
     //
     // barDockControlBottom
     //
     this.barDockControlBottom.CausesValidation = false;
     this.barDockControlBottom.Dock = System.Windows.Forms.DockStyle.Bottom;
     this.barDockControlBottom.Location = new System.Drawing.Point(0, 491);
     this.barDockControlBottom.Size = new System.Drawing.Size(728, 23);
     //
     // barDockControlLeft
     //
     this.barDockControlLeft.CausesValidation = false;
     this.barDockControlLeft.Dock = System.Windows.Forms.DockStyle.Left;
     this.barDockControlLeft.Location = new System.Drawing.Point(0, 29);
     this.barDockControlLeft.Size = new System.Drawing.Size(0, 462);
     //
     // barDockControlRight
     //
     this.barDockControlRight.CausesValidation = false;
     this.barDockControlRight.Dock = System.Windows.Forms.DockStyle.Right;
     this.barDockControlRight.Location = new System.Drawing.Point(728, 29);
     this.barDockControlRight.Size = new System.Drawing.Size(0, 462);
     //
     // cutItem1
     //
     this.cutItem1.Caption = "Cut";
     this.cutItem1.Enabled = false;
     this.cutItem1.Glyph = ((System.Drawing.Image)(resources.GetObject("cutItem1.Glyph")));
     this.cutItem1.Id = 2;
     this.cutItem1.LargeGlyph = ((System.Drawing.Image)(resources.GetObject("cutItem1.LargeGlyph")));
     this.cutItem1.Name = "cutItem1";
     toolTipTitleItem1.Text = "Cut (Ctrl+X)";
     toolTipItem1.Text = "Cut the selection from the document and put it on the Clipboard.";
     superToolTip1.Items.Add(toolTipTitleItem1);
     superToolTip1.Items.Add(toolTipItem1);
     this.cutItem1.SuperTip = superToolTip1;
     //
     // copyItem1
     //
     this.copyItem1.Caption = "Copy";
     this.copyItem1.Enabled = false;
     this.copyItem1.Glyph = ((System.Drawing.Image)(resources.GetObject("copyItem1.Glyph")));
     this.copyItem1.Id = 3;
     this.copyItem1.LargeGlyph = ((System.Drawing.Image)(resources.GetObject("copyItem1.LargeGlyph")));
     this.copyItem1.Name = "copyItem1";
     toolTipTitleItem2.Text = "Copy (Ctrl+C)";
     toolTipItem2.Text = "Copy the selection and put it on the Clipboard.";
     superToolTip2.Items.Add(toolTipTitleItem2);
     superToolTip2.Items.Add(toolTipItem2);
     this.copyItem1.SuperTip = superToolTip2;
     //
     // pasteItem1
     //
     this.pasteItem1.Caption = "Paste";
     this.pasteItem1.Enabled = false;
     this.pasteItem1.Glyph = ((System.Drawing.Image)(resources.GetObject("pasteItem1.Glyph")));
     this.pasteItem1.Id = 4;
     this.pasteItem1.LargeGlyph = ((System.Drawing.Image)(resources.GetObject("pasteItem1.LargeGlyph")));
     this.pasteItem1.Name = "pasteItem1";
     toolTipTitleItem3.Text = "Paste (Ctrl+V)";
     toolTipItem3.Text = "Paste the contents of the Clipboard.";
     superToolTip3.Items.Add(toolTipTitleItem3);
     superToolTip3.Items.Add(toolTipItem3);
     this.pasteItem1.SuperTip = superToolTip3;
     //
     // pasteSpecialItem1
     //
     this.pasteSpecialItem1.Caption = "Paste Special";
     this.pasteSpecialItem1.Enabled = false;
     this.pasteSpecialItem1.Glyph = ((System.Drawing.Image)(resources.GetObject("pasteSpecialItem1.Glyph")));
     this.pasteSpecialItem1.Id = 5;
     this.pasteSpecialItem1.LargeGlyph = ((System.Drawing.Image)(resources.GetObject("pasteSpecialItem1.LargeGlyph")));
     this.pasteSpecialItem1.Name = "pasteSpecialItem1";
     toolTipTitleItem4.Text = "Paste Special (Ctrl+Alt+V)";
     toolTipItem4.Text = "Paste Special";
     superToolTip4.Items.Add(toolTipTitleItem4);
     superToolTip4.Items.Add(toolTipItem4);
     this.pasteSpecialItem1.SuperTip = superToolTip4;
     //
     // changeFontNameItem1
     //
     this.changeFontNameItem1.Caption = "Font";
     this.changeFontNameItem1.Edit = this.repositoryItemFontEdit1;
     this.changeFontNameItem1.Enabled = false;
     this.changeFontNameItem1.Id = 6;
     this.changeFontNameItem1.Name = "changeFontNameItem1";
     toolTipTitleItem5.Text = "Font";
     toolTipItem5.Text = "Change the font face.";
     superToolTip5.Items.Add(toolTipTitleItem5);
     superToolTip5.Items.Add(toolTipItem5);
     this.changeFontNameItem1.SuperTip = superToolTip5;
     //
     // repositoryItemFontEdit1
     //
     this.repositoryItemFontEdit1.AutoHeight = false;
     this.repositoryItemFontEdit1.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.repositoryItemFontEdit1.Name = "repositoryItemFontEdit1";
     //
     // changeFontSizeItem1
     //
     this.changeFontSizeItem1.Caption = "Font Size";
     this.changeFontSizeItem1.Edit = this.repositoryItemRichEditFontSizeEdit1;
     this.changeFontSizeItem1.Enabled = false;
     this.changeFontSizeItem1.Id = 7;
     this.changeFontSizeItem1.Name = "changeFontSizeItem1";
     toolTipTitleItem6.Text = "Font Size";
     toolTipItem6.Text = "Change the font size.";
     superToolTip6.Items.Add(toolTipTitleItem6);
     superToolTip6.Items.Add(toolTipItem6);
     this.changeFontSizeItem1.SuperTip = superToolTip6;
     //
     // repositoryItemRichEditFontSizeEdit1
     //
     this.repositoryItemRichEditFontSizeEdit1.AutoHeight = false;
     this.repositoryItemRichEditFontSizeEdit1.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.repositoryItemRichEditFontSizeEdit1.Control = null;
     this.repositoryItemRichEditFontSizeEdit1.Name = "repositoryItemRichEditFontSizeEdit1";
     //
     // changeFontColorItem1
     //
     this.changeFontColorItem1.Caption = "Font Color";
     this.changeFontColorItem1.Enabled = false;
     this.changeFontColorItem1.Glyph = ((System.Drawing.Image)(resources.GetObject("changeFontColorItem1.Glyph")));
     this.changeFontColorItem1.Id = 8;
     this.changeFontColorItem1.LargeGlyph = ((System.Drawing.Image)(resources.GetObject("changeFontColorItem1.LargeGlyph")));
     this.changeFontColorItem1.Name = "changeFontColorItem1";
     toolTipTitleItem7.Text = "Font Color";
     toolTipItem7.Text = "Change the font color.";
     superToolTip7.Items.Add(toolTipTitleItem7);
     superToolTip7.Items.Add(toolTipItem7);
     this.changeFontColorItem1.SuperTip = superToolTip7;
     //
     // changeFontBackColorItem1
     //
     this.changeFontBackColorItem1.Caption = "Text Highlight Color";
     this.changeFontBackColorItem1.Enabled = false;
     this.changeFontBackColorItem1.Glyph = ((System.Drawing.Image)(resources.GetObject("changeFontBackColorItem1.Glyph")));
     this.changeFontBackColorItem1.Id = 9;
     this.changeFontBackColorItem1.LargeGlyph = ((System.Drawing.Image)(resources.GetObject("changeFontBackColorItem1.LargeGlyph")));
     this.changeFontBackColorItem1.Name = "changeFontBackColorItem1";
     toolTipTitleItem8.Text = "Text Highlight Color";
     toolTipItem8.Text = "Make text look like it was marked with a highlighter pen.";
     superToolTip8.Items.Add(toolTipTitleItem8);
     superToolTip8.Items.Add(toolTipItem8);
     this.changeFontBackColorItem1.SuperTip = superToolTip8;
     //
     // toggleFontBoldItem1
     //
     this.toggleFontBoldItem1.Caption = "Bold";
     this.toggleFontBoldItem1.Enabled = false;
     this.toggleFontBoldItem1.Glyph = ((System.Drawing.Image)(resources.GetObject("toggleFontBoldItem1.Glyph")));
     this.toggleFontBoldItem1.Id = 10;
     this.toggleFontBoldItem1.LargeGlyph = ((System.Drawing.Image)(resources.GetObject("toggleFontBoldItem1.LargeGlyph")));
     this.toggleFontBoldItem1.Name = "toggleFontBoldItem1";
     toolTipTitleItem9.Text = "Bold (Ctrl+B)";
     toolTipItem9.Text = "Make the selected text bold.";
     superToolTip9.Items.Add(toolTipTitleItem9);
     superToolTip9.Items.Add(toolTipItem9);
     this.toggleFontBoldItem1.SuperTip = superToolTip9;
     //
     // toggleFontItalicItem1
     //
     this.toggleFontItalicItem1.Caption = "Italic";
     this.toggleFontItalicItem1.Enabled = false;
     this.toggleFontItalicItem1.Glyph = ((System.Drawing.Image)(resources.GetObject("toggleFontItalicItem1.Glyph")));
     this.toggleFontItalicItem1.Id = 11;
     this.toggleFontItalicItem1.LargeGlyph = ((System.Drawing.Image)(resources.GetObject("toggleFontItalicItem1.LargeGlyph")));
     this.toggleFontItalicItem1.Name = "toggleFontItalicItem1";
     toolTipTitleItem10.Text = "Italic (Ctrl+I)";
     toolTipItem10.Text = "Italicize the selected text.";
     superToolTip10.Items.Add(toolTipTitleItem10);
     superToolTip10.Items.Add(toolTipItem10);
     this.toggleFontItalicItem1.SuperTip = superToolTip10;
     //
     // toggleFontUnderlineItem1
     //
     this.toggleFontUnderlineItem1.Caption = "Underline";
     this.toggleFontUnderlineItem1.Enabled = false;
     this.toggleFontUnderlineItem1.Glyph = ((System.Drawing.Image)(resources.GetObject("toggleFontUnderlineItem1.Glyph")));
     this.toggleFontUnderlineItem1.Id = 12;
     this.toggleFontUnderlineItem1.LargeGlyph = ((System.Drawing.Image)(resources.GetObject("toggleFontUnderlineItem1.LargeGlyph")));
     this.toggleFontUnderlineItem1.Name = "toggleFontUnderlineItem1";
     toolTipTitleItem11.Text = "Underline (Ctrl+U)";
     toolTipItem11.Text = "Underline the selected text.";
     superToolTip11.Items.Add(toolTipTitleItem11);
     superToolTip11.Items.Add(toolTipItem11);
     this.toggleFontUnderlineItem1.SuperTip = superToolTip11;
     //
     // toggleFontDoubleUnderlineItem1
     //
     this.toggleFontDoubleUnderlineItem1.Caption = "Double Underline";
     this.toggleFontDoubleUnderlineItem1.Enabled = false;
     this.toggleFontDoubleUnderlineItem1.Glyph = ((System.Drawing.Image)(resources.GetObject("toggleFontDoubleUnderlineItem1.Glyph")));
     this.toggleFontDoubleUnderlineItem1.Id = 13;
     this.toggleFontDoubleUnderlineItem1.LargeGlyph = ((System.Drawing.Image)(resources.GetObject("toggleFontDoubleUnderlineItem1.LargeGlyph")));
     this.toggleFontDoubleUnderlineItem1.Name = "toggleFontDoubleUnderlineItem1";
     toolTipTitleItem12.Text = "Double Underline (Ctrl+Shift+D)";
     toolTipItem12.Text = "Double underline";
     superToolTip12.Items.Add(toolTipTitleItem12);
     superToolTip12.Items.Add(toolTipItem12);
     this.toggleFontDoubleUnderlineItem1.SuperTip = superToolTip12;
     //
     // toggleFontStrikeoutItem1
     //
     this.toggleFontStrikeoutItem1.Caption = "Strikethrough";
     this.toggleFontStrikeoutItem1.Enabled = false;
     this.toggleFontStrikeoutItem1.Glyph = ((System.Drawing.Image)(resources.GetObject("toggleFontStrikeoutItem1.Glyph")));
     this.toggleFontStrikeoutItem1.Id = 14;
     this.toggleFontStrikeoutItem1.LargeGlyph = ((System.Drawing.Image)(resources.GetObject("toggleFontStrikeoutItem1.LargeGlyph")));
     this.toggleFontStrikeoutItem1.Name = "toggleFontStrikeoutItem1";
     toolTipTitleItem13.Text = "Strikethrough";
     toolTipItem13.Text = "Draw a line through the middle of the selected text.";
     superToolTip13.Items.Add(toolTipTitleItem13);
     superToolTip13.Items.Add(toolTipItem13);
     this.toggleFontStrikeoutItem1.SuperTip = superToolTip13;
     //
     // toggleFontDoubleStrikeoutItem1
     //
     this.toggleFontDoubleStrikeoutItem1.Caption = "Double Strikethrough";
     this.toggleFontDoubleStrikeoutItem1.Enabled = false;
     this.toggleFontDoubleStrikeoutItem1.Glyph = ((System.Drawing.Image)(resources.GetObject("toggleFontDoubleStrikeoutItem1.Glyph")));
     this.toggleFontDoubleStrikeoutItem1.Id = 15;
     this.toggleFontDoubleStrikeoutItem1.LargeGlyph = ((System.Drawing.Image)(resources.GetObject("toggleFontDoubleStrikeoutItem1.LargeGlyph")));
     this.toggleFontDoubleStrikeoutItem1.Name = "toggleFontDoubleStrikeoutItem1";
     toolTipTitleItem14.Text = "Double Strikethrough";
     toolTipItem14.Text = "Double strikethrough";
     superToolTip14.Items.Add(toolTipTitleItem14);
     superToolTip14.Items.Add(toolTipItem14);
     this.toggleFontDoubleStrikeoutItem1.SuperTip = superToolTip14;
     //
     // toggleFontSubscriptItem1
     //
     this.toggleFontSubscriptItem1.Caption = "Subscript";
     this.toggleFontSubscriptItem1.Enabled = false;
     this.toggleFontSubscriptItem1.Glyph = ((System.Drawing.Image)(resources.GetObject("toggleFontSubscriptItem1.Glyph")));
     this.toggleFontSubscriptItem1.Id = 17;
     this.toggleFontSubscriptItem1.LargeGlyph = ((System.Drawing.Image)(resources.GetObject("toggleFontSubscriptItem1.LargeGlyph")));
     this.toggleFontSubscriptItem1.Name = "toggleFontSubscriptItem1";
     toolTipTitleItem15.Text = "Subscript (Ctrl++)";
     toolTipItem15.Text = "Create small letters below the text baseline.";
     superToolTip15.Items.Add(toolTipTitleItem15);
     superToolTip15.Items.Add(toolTipItem15);
     this.toggleFontSubscriptItem1.SuperTip = superToolTip15;
     //
     // changeTextCaseItem1
     //
     this.changeTextCaseItem1.Caption = "Change Case";
     this.changeTextCaseItem1.Enabled = false;
     this.changeTextCaseItem1.Glyph = ((System.Drawing.Image)(resources.GetObject("changeTextCaseItem1.Glyph")));
     this.changeTextCaseItem1.Id = 18;
     this.changeTextCaseItem1.LargeGlyph = ((System.Drawing.Image)(resources.GetObject("changeTextCaseItem1.LargeGlyph")));
     this.changeTextCaseItem1.LinksPersistInfo.AddRange(new DevExpress.XtraBars.LinkPersistInfo[] {
     new DevExpress.XtraBars.LinkPersistInfo(this.makeTextUpperCaseItem1),
     new DevExpress.XtraBars.LinkPersistInfo(this.makeTextLowerCaseItem1),
     new DevExpress.XtraBars.LinkPersistInfo(this.toggleTextCaseItem1)});
     this.changeTextCaseItem1.Name = "changeTextCaseItem1";
     toolTipTitleItem19.Text = "Change Case";
     toolTipItem19.Text = "Change all the selected text to UPPERCASE, lowercase, or other common capitalizat" +
         "ions.";
     superToolTip19.Items.Add(toolTipTitleItem19);
     superToolTip19.Items.Add(toolTipItem19);
     this.changeTextCaseItem1.SuperTip = superToolTip19;
     //
     // makeTextUpperCaseItem1
     //
     this.makeTextUpperCaseItem1.Caption = "UPPERCASE";
     this.makeTextUpperCaseItem1.Enabled = false;
     this.makeTextUpperCaseItem1.Id = 19;
     this.makeTextUpperCaseItem1.Name = "makeTextUpperCaseItem1";
     toolTipTitleItem16.Text = "UPPERCASE";
     toolTipItem16.Text = "Change all the selected text to UPPERCASE.";
     superToolTip16.Items.Add(toolTipTitleItem16);
     superToolTip16.Items.Add(toolTipItem16);
     this.makeTextUpperCaseItem1.SuperTip = superToolTip16;
     //
     // makeTextLowerCaseItem1
     //
     this.makeTextLowerCaseItem1.Caption = "lowercase";
     this.makeTextLowerCaseItem1.Enabled = false;
     this.makeTextLowerCaseItem1.Id = 20;
     this.makeTextLowerCaseItem1.Name = "makeTextLowerCaseItem1";
     toolTipTitleItem17.Text = "lowercase";
     toolTipItem17.Text = "Change all the selected text to lowercase.";
     superToolTip17.Items.Add(toolTipTitleItem17);
     superToolTip17.Items.Add(toolTipItem17);
     this.makeTextLowerCaseItem1.SuperTip = superToolTip17;
     //
     // toggleTextCaseItem1
     //
     this.toggleTextCaseItem1.Caption = "tOGGLE cASE";
     this.toggleTextCaseItem1.Enabled = false;
     this.toggleTextCaseItem1.Id = 21;
     this.toggleTextCaseItem1.Name = "toggleTextCaseItem1";
     toolTipTitleItem18.Text = "tOGGLE cASE";
     toolTipItem18.Text = "tOGGLE cASE.";
     superToolTip18.Items.Add(toolTipTitleItem18);
     superToolTip18.Items.Add(toolTipItem18);
     this.toggleTextCaseItem1.SuperTip = superToolTip18;
     //
     // fontSizeIncreaseItem1
     //
     this.fontSizeIncreaseItem1.Caption = "Grow Font";
     this.fontSizeIncreaseItem1.Enabled = false;
     this.fontSizeIncreaseItem1.Glyph = ((System.Drawing.Image)(resources.GetObject("fontSizeIncreaseItem1.Glyph")));
     this.fontSizeIncreaseItem1.Id = 22;
     this.fontSizeIncreaseItem1.LargeGlyph = ((System.Drawing.Image)(resources.GetObject("fontSizeIncreaseItem1.LargeGlyph")));
     this.fontSizeIncreaseItem1.Name = "fontSizeIncreaseItem1";
     toolTipTitleItem20.Text = "Grow Font (Ctrl+Shift+.)";
     toolTipItem20.Text = "Increase the font size.";
     superToolTip20.Items.Add(toolTipTitleItem20);
     superToolTip20.Items.Add(toolTipItem20);
     this.fontSizeIncreaseItem1.SuperTip = superToolTip20;
     //
     // fontSizeDecreaseItem1
     //
     this.fontSizeDecreaseItem1.Caption = "Shrink Font";
     this.fontSizeDecreaseItem1.Enabled = false;
     this.fontSizeDecreaseItem1.Glyph = ((System.Drawing.Image)(resources.GetObject("fontSizeDecreaseItem1.Glyph")));
     this.fontSizeDecreaseItem1.Id = 23;
     this.fontSizeDecreaseItem1.LargeGlyph = ((System.Drawing.Image)(resources.GetObject("fontSizeDecreaseItem1.LargeGlyph")));
     this.fontSizeDecreaseItem1.Name = "fontSizeDecreaseItem1";
     toolTipTitleItem21.Text = "Shrink Font (Ctrl+Shift+,)";
     toolTipItem21.Text = "Decrease the font size.";
     superToolTip21.Items.Add(toolTipTitleItem21);
     superToolTip21.Items.Add(toolTipItem21);
     this.fontSizeDecreaseItem1.SuperTip = superToolTip21;
     //
     // clearFormattingItem1
     //
     this.clearFormattingItem1.Caption = "Clear Formatting";
     this.clearFormattingItem1.Enabled = false;
     this.clearFormattingItem1.Glyph = ((System.Drawing.Image)(resources.GetObject("clearFormattingItem1.Glyph")));
     this.clearFormattingItem1.Id = 24;
     this.clearFormattingItem1.LargeGlyph = ((System.Drawing.Image)(resources.GetObject("clearFormattingItem1.LargeGlyph")));
     this.clearFormattingItem1.Name = "clearFormattingItem1";
     toolTipTitleItem22.Text = "Clear Formatting (Ctrl+Space)";
     toolTipItem22.Text = "Clear all the formatting from the selection, leaving only plain text.";
     superToolTip22.Items.Add(toolTipTitleItem22);
     superToolTip22.Items.Add(toolTipItem22);
     this.clearFormattingItem1.SuperTip = superToolTip22;
     //
     // showFontFormItem1
     //
     this.showFontFormItem1.Caption = "Font";
     this.showFontFormItem1.Enabled = false;
     this.showFontFormItem1.Glyph = ((System.Drawing.Image)(resources.GetObject("showFontFormItem1.Glyph")));
     this.showFontFormItem1.Id = 25;
     this.showFontFormItem1.LargeGlyph = ((System.Drawing.Image)(resources.GetObject("showFontFormItem1.LargeGlyph")));
     this.showFontFormItem1.Name = "showFontFormItem1";
     toolTipTitleItem23.Text = "Font (Ctrl+D)";
     toolTipItem23.Text = "Show the Font dialog box.";
     superToolTip23.Items.Add(toolTipTitleItem23);
     superToolTip23.Items.Add(toolTipItem23);
     this.showFontFormItem1.SuperTip = superToolTip23;
     //
     // toggleParagraphAlignmentLeftItem1
     //
     this.toggleParagraphAlignmentLeftItem1.Caption = "Align Text Left";
     this.toggleParagraphAlignmentLeftItem1.Enabled = false;
     this.toggleParagraphAlignmentLeftItem1.Glyph = ((System.Drawing.Image)(resources.GetObject("toggleParagraphAlignmentLeftItem1.Glyph")));
     this.toggleParagraphAlignmentLeftItem1.Id = 26;
     this.toggleParagraphAlignmentLeftItem1.LargeGlyph = ((System.Drawing.Image)(resources.GetObject("toggleParagraphAlignmentLeftItem1.LargeGlyph")));
     this.toggleParagraphAlignmentLeftItem1.Name = "toggleParagraphAlignmentLeftItem1";
     toolTipTitleItem24.Text = "Align Text Left (Ctrl+L)";
     toolTipItem24.Text = "Align text to the left.";
     superToolTip24.Items.Add(toolTipTitleItem24);
     superToolTip24.Items.Add(toolTipItem24);
     this.toggleParagraphAlignmentLeftItem1.SuperTip = superToolTip24;
     //
     // toggleParagraphAlignmentCenterItem1
     //
     this.toggleParagraphAlignmentCenterItem1.Caption = "Center";
     this.toggleParagraphAlignmentCenterItem1.Enabled = false;
     this.toggleParagraphAlignmentCenterItem1.Glyph = ((System.Drawing.Image)(resources.GetObject("toggleParagraphAlignmentCenterItem1.Glyph")));
     this.toggleParagraphAlignmentCenterItem1.Id = 27;
     this.toggleParagraphAlignmentCenterItem1.LargeGlyph = ((System.Drawing.Image)(resources.GetObject("toggleParagraphAlignmentCenterItem1.LargeGlyph")));
     this.toggleParagraphAlignmentCenterItem1.Name = "toggleParagraphAlignmentCenterItem1";
     toolTipTitleItem25.Text = "Center (Ctrl+E)";
     toolTipItem25.Text = "Center text.";
     superToolTip25.Items.Add(toolTipTitleItem25);
     superToolTip25.Items.Add(toolTipItem25);
     this.toggleParagraphAlignmentCenterItem1.SuperTip = superToolTip25;
     //
     // toggleParagraphAlignmentRightItem1
     //
     this.toggleParagraphAlignmentRightItem1.Caption = "Align Text Right";
     this.toggleParagraphAlignmentRightItem1.Enabled = false;
     this.toggleParagraphAlignmentRightItem1.Glyph = ((System.Drawing.Image)(resources.GetObject("toggleParagraphAlignmentRightItem1.Glyph")));
     this.toggleParagraphAlignmentRightItem1.Id = 28;
     this.toggleParagraphAlignmentRightItem1.LargeGlyph = ((System.Drawing.Image)(resources.GetObject("toggleParagraphAlignmentRightItem1.LargeGlyph")));
     this.toggleParagraphAlignmentRightItem1.Name = "toggleParagraphAlignmentRightItem1";
     toolTipTitleItem26.Text = "Align Text Right (Ctrl+R)";
     toolTipItem26.Text = "Align text to the right.";
     superToolTip26.Items.Add(toolTipTitleItem26);
     superToolTip26.Items.Add(toolTipItem26);
     this.toggleParagraphAlignmentRightItem1.SuperTip = superToolTip26;
     //
     // toggleParagraphAlignmentJustifyItem1
     //
     this.toggleParagraphAlignmentJustifyItem1.Caption = "Justify";
     this.toggleParagraphAlignmentJustifyItem1.Enabled = false;
     this.toggleParagraphAlignmentJustifyItem1.Glyph = ((System.Drawing.Image)(resources.GetObject("toggleParagraphAlignmentJustifyItem1.Glyph")));
     this.toggleParagraphAlignmentJustifyItem1.Id = 29;
     this.toggleParagraphAlignmentJustifyItem1.LargeGlyph = ((System.Drawing.Image)(resources.GetObject("toggleParagraphAlignmentJustifyItem1.LargeGlyph")));
     this.toggleParagraphAlignmentJustifyItem1.Name = "toggleParagraphAlignmentJustifyItem1";
     toolTipTitleItem27.Text = "Justify (Ctrl+J)";
     toolTipItem27.Text = "Align text to both left and right margins, adding extra space between words as ne" +
         "cessary.\r\n\r\nThis creates a clean look along the left and right side of the page." +
         "";
     superToolTip27.Items.Add(toolTipTitleItem27);
     superToolTip27.Items.Add(toolTipItem27);
     this.toggleParagraphAlignmentJustifyItem1.SuperTip = superToolTip27;
     //
     // changeParagraphLineSpacingItem1
     //
     this.changeParagraphLineSpacingItem1.Caption = "Line Spacing";
     this.changeParagraphLineSpacingItem1.Enabled = false;
     this.changeParagraphLineSpacingItem1.Glyph = ((System.Drawing.Image)(resources.GetObject("changeParagraphLineSpacingItem1.Glyph")));
     this.changeParagraphLineSpacingItem1.Id = 30;
     this.changeParagraphLineSpacingItem1.LargeGlyph = ((System.Drawing.Image)(resources.GetObject("changeParagraphLineSpacingItem1.LargeGlyph")));
     this.changeParagraphLineSpacingItem1.LinksPersistInfo.AddRange(new DevExpress.XtraBars.LinkPersistInfo[] {
     new DevExpress.XtraBars.LinkPersistInfo(this.setSingleParagraphSpacingItem1),
     new DevExpress.XtraBars.LinkPersistInfo(this.setSesquialteralParagraphSpacingItem1),
     new DevExpress.XtraBars.LinkPersistInfo(this.setDoubleParagraphSpacingItem1),
     new DevExpress.XtraBars.LinkPersistInfo(this.showLineSpacingFormItem1),
     new DevExpress.XtraBars.LinkPersistInfo(this.addSpacingBeforeParagraphItem1),
     new DevExpress.XtraBars.LinkPersistInfo(this.removeSpacingBeforeParagraphItem1),
     new DevExpress.XtraBars.LinkPersistInfo(this.addSpacingAfterParagraphItem1),
     new DevExpress.XtraBars.LinkPersistInfo(this.removeSpacingAfterParagraphItem1)});
     this.changeParagraphLineSpacingItem1.Name = "changeParagraphLineSpacingItem1";
     toolTipTitleItem36.Text = "Line Spacing";
     toolTipItem36.Text = "Change the spacing between lines of text.\r\n\r\nYou can also customize the amount of" +
         " space added before and after paragraphs.";
     superToolTip36.Items.Add(toolTipTitleItem36);
     superToolTip36.Items.Add(toolTipItem36);
     this.changeParagraphLineSpacingItem1.SuperTip = superToolTip36;
     //
     // setSingleParagraphSpacingItem1
     //
     this.setSingleParagraphSpacingItem1.Caption = "1.0";
     this.setSingleParagraphSpacingItem1.Enabled = false;
     this.setSingleParagraphSpacingItem1.Id = 31;
     this.setSingleParagraphSpacingItem1.Name = "setSingleParagraphSpacingItem1";
     toolTipTitleItem28.Text = "1.0 (Ctrl+1)";
     toolTipItem28.Text = " ";
     superToolTip28.Items.Add(toolTipTitleItem28);
     superToolTip28.Items.Add(toolTipItem28);
     this.setSingleParagraphSpacingItem1.SuperTip = superToolTip28;
     //
     // setSesquialteralParagraphSpacingItem1
     //
     this.setSesquialteralParagraphSpacingItem1.Caption = "1.5";
     this.setSesquialteralParagraphSpacingItem1.Enabled = false;
     this.setSesquialteralParagraphSpacingItem1.Id = 32;
     this.setSesquialteralParagraphSpacingItem1.Name = "setSesquialteralParagraphSpacingItem1";
     toolTipTitleItem29.Text = "1.5 (Ctrl+5)";
     toolTipItem29.Text = " ";
     superToolTip29.Items.Add(toolTipTitleItem29);
     superToolTip29.Items.Add(toolTipItem29);
     this.setSesquialteralParagraphSpacingItem1.SuperTip = superToolTip29;
     //
     // setDoubleParagraphSpacingItem1
     //
     this.setDoubleParagraphSpacingItem1.Caption = "2.0";
     this.setDoubleParagraphSpacingItem1.Enabled = false;
     this.setDoubleParagraphSpacingItem1.Id = 33;
     this.setDoubleParagraphSpacingItem1.Name = "setDoubleParagraphSpacingItem1";
     toolTipTitleItem30.Text = "2.0 (Ctrl+2)";
     toolTipItem30.Text = " ";
     superToolTip30.Items.Add(toolTipTitleItem30);
     superToolTip30.Items.Add(toolTipItem30);
     this.setDoubleParagraphSpacingItem1.SuperTip = superToolTip30;
     //
     // showLineSpacingFormItem1
     //
     this.showLineSpacingFormItem1.Caption = "Line Spacing Options...";
     this.showLineSpacingFormItem1.Enabled = false;
     this.showLineSpacingFormItem1.Id = 34;
     this.showLineSpacingFormItem1.Name = "showLineSpacingFormItem1";
     toolTipTitleItem31.Text = "Line Spacing Options...";
     toolTipItem31.Text = " ";
     superToolTip31.Items.Add(toolTipTitleItem31);
     superToolTip31.Items.Add(toolTipItem31);
     this.showLineSpacingFormItem1.SuperTip = superToolTip31;
     //
     // addSpacingBeforeParagraphItem1
     //
     this.addSpacingBeforeParagraphItem1.Caption = "Add Space &Before Paragraph";
     this.addSpacingBeforeParagraphItem1.Enabled = false;
     this.addSpacingBeforeParagraphItem1.Id = 35;
     this.addSpacingBeforeParagraphItem1.Name = "addSpacingBeforeParagraphItem1";
     toolTipTitleItem32.Text = "Add Space &Before Paragraph";
     toolTipItem32.Text = " ";
     superToolTip32.Items.Add(toolTipTitleItem32);
     superToolTip32.Items.Add(toolTipItem32);
     this.addSpacingBeforeParagraphItem1.SuperTip = superToolTip32;
     //
     // removeSpacingBeforeParagraphItem1
     //
     this.removeSpacingBeforeParagraphItem1.Caption = "Remove Space &Before Paragraph";
     this.removeSpacingBeforeParagraphItem1.Enabled = false;
     this.removeSpacingBeforeParagraphItem1.Id = 36;
     this.removeSpacingBeforeParagraphItem1.Name = "removeSpacingBeforeParagraphItem1";
     toolTipTitleItem33.Text = "Remove Space &Before Paragraph";
     toolTipItem33.Text = " ";
     superToolTip33.Items.Add(toolTipTitleItem33);
     superToolTip33.Items.Add(toolTipItem33);
     this.removeSpacingBeforeParagraphItem1.SuperTip = superToolTip33;
     //
     // addSpacingAfterParagraphItem1
     //
     this.addSpacingAfterParagraphItem1.Caption = "Add Space &After Paragraph";
     this.addSpacingAfterParagraphItem1.Enabled = false;
     this.addSpacingAfterParagraphItem1.Id = 37;
     this.addSpacingAfterParagraphItem1.Name = "addSpacingAfterParagraphItem1";
     toolTipTitleItem34.Text = "Add Space &After Paragraph";
     toolTipItem34.Text = " ";
     superToolTip34.Items.Add(toolTipTitleItem34);
     superToolTip34.Items.Add(toolTipItem34);
     this.addSpacingAfterParagraphItem1.SuperTip = superToolTip34;
     //
     // removeSpacingAfterParagraphItem1
     //
     this.removeSpacingAfterParagraphItem1.Caption = "Remove Space &After Paragraph";
     this.removeSpacingAfterParagraphItem1.Enabled = false;
     this.removeSpacingAfterParagraphItem1.Id = 38;
     this.removeSpacingAfterParagraphItem1.Name = "removeSpacingAfterParagraphItem1";
     toolTipTitleItem35.Text = "Remove Space &After Paragraph";
     toolTipItem35.Text = " ";
     superToolTip35.Items.Add(toolTipTitleItem35);
     superToolTip35.Items.Add(toolTipItem35);
     this.removeSpacingAfterParagraphItem1.SuperTip = superToolTip35;
     //
     // toggleNumberingListItem1
     //
     this.toggleNumberingListItem1.Caption = "Numbering";
     this.toggleNumberingListItem1.Enabled = false;
     this.toggleNumberingListItem1.Glyph = ((System.Drawing.Image)(resources.GetObject("toggleNumberingListItem1.Glyph")));
     this.toggleNumberingListItem1.Id = 39;
     this.toggleNumberingListItem1.LargeGlyph = ((System.Drawing.Image)(resources.GetObject("toggleNumberingListItem1.LargeGlyph")));
     this.toggleNumberingListItem1.Name = "toggleNumberingListItem1";
     toolTipTitleItem37.Text = "Numbering";
     toolTipItem37.Text = "Start a numbered list.";
     superToolTip37.Items.Add(toolTipTitleItem37);
     superToolTip37.Items.Add(toolTipItem37);
     this.toggleNumberingListItem1.SuperTip = superToolTip37;
     //
     // toggleMultiLevelListItem1
     //
     this.toggleMultiLevelListItem1.Caption = "Multilevel list";
     this.toggleMultiLevelListItem1.Enabled = false;
     this.toggleMultiLevelListItem1.Glyph = ((System.Drawing.Image)(resources.GetObject("toggleMultiLevelListItem1.Glyph")));
     this.toggleMultiLevelListItem1.Id = 40;
     this.toggleMultiLevelListItem1.LargeGlyph = ((System.Drawing.Image)(resources.GetObject("toggleMultiLevelListItem1.LargeGlyph")));
     this.toggleMultiLevelListItem1.Name = "toggleMultiLevelListItem1";
     toolTipTitleItem38.Text = "Multilevel list";
     toolTipItem38.Text = "Start a multilevel list.";
     superToolTip38.Items.Add(toolTipTitleItem38);
     superToolTip38.Items.Add(toolTipItem38);
     this.toggleMultiLevelListItem1.SuperTip = superToolTip38;
     //
     // decreaseIndentItem1
     //
     this.decreaseIndentItem1.Caption = "Decrease Indent";
     this.decreaseIndentItem1.Enabled = false;
     this.decreaseIndentItem1.Glyph = ((System.Drawing.Image)(resources.GetObject("decreaseIndentItem1.Glyph")));
     this.decreaseIndentItem1.Id = 41;
     this.decreaseIndentItem1.LargeGlyph = ((System.Drawing.Image)(resources.GetObject("decreaseIndentItem1.LargeGlyph")));
     this.decreaseIndentItem1.Name = "decreaseIndentItem1";
     toolTipTitleItem39.Text = "Decrease Indent";
     toolTipItem39.Text = "Decrease the indent level of the paragraph.";
     superToolTip39.Items.Add(toolTipTitleItem39);
     superToolTip39.Items.Add(toolTipItem39);
     this.decreaseIndentItem1.SuperTip = superToolTip39;
     //
     // increaseIndentItem1
     //
     this.increaseIndentItem1.Caption = "Increase Indent";
     this.increaseIndentItem1.Enabled = false;
     this.increaseIndentItem1.Glyph = ((System.Drawing.Image)(resources.GetObject("increaseIndentItem1.Glyph")));
     this.increaseIndentItem1.Id = 42;
     this.increaseIndentItem1.LargeGlyph = ((System.Drawing.Image)(resources.GetObject("increaseIndentItem1.LargeGlyph")));
     this.increaseIndentItem1.Name = "increaseIndentItem1";
     toolTipTitleItem40.Text = "Increase Indent";
     toolTipItem40.Text = "Increase the indent level of the paragraph.";
     superToolTip40.Items.Add(toolTipTitleItem40);
     superToolTip40.Items.Add(toolTipItem40);
     this.increaseIndentItem1.SuperTip = superToolTip40;
     //
     // toggleShowWhitespaceItem1
     //
     this.toggleShowWhitespaceItem1.Caption = "Show/Hide ¶";
     this.toggleShowWhitespaceItem1.Enabled = false;
     this.toggleShowWhitespaceItem1.Glyph = ((System.Drawing.Image)(resources.GetObject("toggleShowWhitespaceItem1.Glyph")));
     this.toggleShowWhitespaceItem1.Id = 43;
     this.toggleShowWhitespaceItem1.LargeGlyph = ((System.Drawing.Image)(resources.GetObject("toggleShowWhitespaceItem1.LargeGlyph")));
     this.toggleShowWhitespaceItem1.Name = "toggleShowWhitespaceItem1";
     toolTipTitleItem41.Text = "Show/Hide ¶ (Ctrl+Shift+8)";
     toolTipItem41.Text = "Show paragraph marks and other hidden formatting symbols.";
     superToolTip41.Items.Add(toolTipTitleItem41);
     superToolTip41.Items.Add(toolTipItem41);
     this.toggleShowWhitespaceItem1.SuperTip = superToolTip41;
     //
     // showParagraphFormItem1
     //
     this.showParagraphFormItem1.Caption = "Paragraph";
     this.showParagraphFormItem1.Enabled = false;
     this.showParagraphFormItem1.Glyph = ((System.Drawing.Image)(resources.GetObject("showParagraphFormItem1.Glyph")));
     this.showParagraphFormItem1.Id = 44;
     this.showParagraphFormItem1.LargeGlyph = ((System.Drawing.Image)(resources.GetObject("showParagraphFormItem1.LargeGlyph")));
     this.showParagraphFormItem1.Name = "showParagraphFormItem1";
     toolTipTitleItem42.Text = "Paragraph";
     toolTipItem42.Text = "Show the Paragraph dialog box.";
     superToolTip42.Items.Add(toolTipTitleItem42);
     superToolTip42.Items.Add(toolTipItem42);
     this.showParagraphFormItem1.SuperTip = superToolTip42;
     //
     // findItem1
     //
     this.findItem1.Caption = "Find";
     this.findItem1.Enabled = false;
     this.findItem1.Glyph = ((System.Drawing.Image)(resources.GetObject("findItem1.Glyph")));
     this.findItem1.Id = 46;
     this.findItem1.LargeGlyph = ((System.Drawing.Image)(resources.GetObject("findItem1.LargeGlyph")));
     this.findItem1.Name = "findItem1";
     toolTipTitleItem43.Text = "Find (Ctrl+F)";
     toolTipItem43.Text = "Find text in the document.";
     superToolTip43.Items.Add(toolTipTitleItem43);
     superToolTip43.Items.Add(toolTipItem43);
     this.findItem1.SuperTip = superToolTip43;
     //
     // replaceItem1
     //
     this.replaceItem1.Caption = "Replace";
     this.replaceItem1.Enabled = false;
     this.replaceItem1.Glyph = ((System.Drawing.Image)(resources.GetObject("replaceItem1.Glyph")));
     this.replaceItem1.Id = 47;
     this.replaceItem1.LargeGlyph = ((System.Drawing.Image)(resources.GetObject("replaceItem1.LargeGlyph")));
     this.replaceItem1.Name = "replaceItem1";
     toolTipTitleItem44.Text = "Replace (Ctrl+H)";
     toolTipItem44.Text = "Replace text in the document.";
     superToolTip44.Items.Add(toolTipTitleItem44);
     superToolTip44.Items.Add(toolTipItem44);
     this.replaceItem1.SuperTip = superToolTip44;
     //
     // changeTableCellsShadingItem1
     //
     this.changeTableCellsShadingItem1.Caption = "Shading";
     this.changeTableCellsShadingItem1.Enabled = false;
     this.changeTableCellsShadingItem1.Glyph = ((System.Drawing.Image)(resources.GetObject("changeTableCellsShadingItem1.Glyph")));
     this.changeTableCellsShadingItem1.Id = 48;
     this.changeTableCellsShadingItem1.LargeGlyph = ((System.Drawing.Image)(resources.GetObject("changeTableCellsShadingItem1.LargeGlyph")));
     this.changeTableCellsShadingItem1.Name = "changeTableCellsShadingItem1";
     toolTipTitleItem45.Text = "Shading";
     toolTipItem45.Text = "Color the background behind the selected cells.";
     superToolTip45.Items.Add(toolTipTitleItem45);
     superToolTip45.Items.Add(toolTipItem45);
     this.changeTableCellsShadingItem1.SuperTip = superToolTip45;
     //
     // changeTableBordersItem1
     //
     this.changeTableBordersItem1.Caption = "Borders";
     this.changeTableBordersItem1.Enabled = false;
     this.changeTableBordersItem1.Glyph = ((System.Drawing.Image)(resources.GetObject("changeTableBordersItem1.Glyph")));
     this.changeTableBordersItem1.Id = 49;
     this.changeTableBordersItem1.LargeGlyph = ((System.Drawing.Image)(resources.GetObject("changeTableBordersItem1.LargeGlyph")));
     this.changeTableBordersItem1.LinksPersistInfo.AddRange(new DevExpress.XtraBars.LinkPersistInfo[] {
     new DevExpress.XtraBars.LinkPersistInfo(this.toggleTableCellsBottomBorderItem1),
     new DevExpress.XtraBars.LinkPersistInfo(this.toggleTableCellsTopBorderItem1),
     new DevExpress.XtraBars.LinkPersistInfo(this.toggleTableCellsLeftBorderItem1),
     new DevExpress.XtraBars.LinkPersistInfo(this.toggleTableCellsRightBorderItem1),
     new DevExpress.XtraBars.LinkPersistInfo(this.resetTableCellsAllBordersItem1),
     new DevExpress.XtraBars.LinkPersistInfo(this.toggleTableCellsAllBordersItem1),
     new DevExpress.XtraBars.LinkPersistInfo(this.toggleTableCellsOutsideBorderItem1),
     new DevExpress.XtraBars.LinkPersistInfo(this.toggleTableCellsInsideBorderItem1),
     new DevExpress.XtraBars.LinkPersistInfo(this.toggleTableCellsInsideHorizontalBorderItem1),
     new DevExpress.XtraBars.LinkPersistInfo(this.toggleTableCellsInsideVerticalBorderItem1),
     new DevExpress.XtraBars.LinkPersistInfo(this.toggleShowTableGridLinesItem1)});
     this.changeTableBordersItem1.Name = "changeTableBordersItem1";
     toolTipTitleItem57.Text = "Borders";
     toolTipItem57.Text = "Customize the borders of the selected cells.";
     superToolTip57.Items.Add(toolTipTitleItem57);
     superToolTip57.Items.Add(toolTipItem57);
     this.changeTableBordersItem1.SuperTip = superToolTip57;
     //
     // toggleTableCellsBottomBorderItem1
     //
     this.toggleTableCellsBottomBorderItem1.Caption = "Bottom Border";
     this.toggleTableCellsBottomBorderItem1.Enabled = false;
     this.toggleTableCellsBottomBorderItem1.Glyph = ((System.Drawing.Image)(resources.GetObject("toggleTableCellsBottomBorderItem1.Glyph")));
     this.toggleTableCellsBottomBorderItem1.Id = 50;
     this.toggleTableCellsBottomBorderItem1.LargeGlyph = ((System.Drawing.Image)(resources.GetObject("toggleTableCellsBottomBorderItem1.LargeGlyph")));
     this.toggleTableCellsBottomBorderItem1.Name = "toggleTableCellsBottomBorderItem1";
     toolTipTitleItem46.Text = "Bottom Border";
     toolTipItem46.Text = "Customize the borders of the selected cells.";
     superToolTip46.Items.Add(toolTipTitleItem46);
     superToolTip46.Items.Add(toolTipItem46);
     this.toggleTableCellsBottomBorderItem1.SuperTip = superToolTip46;
     //
     // toggleTableCellsTopBorderItem1
     //
     this.toggleTableCellsTopBorderItem1.Caption = "Top Border";
     this.toggleTableCellsTopBorderItem1.Enabled = false;
     this.toggleTableCellsTopBorderItem1.Glyph = ((System.Drawing.Image)(resources.GetObject("toggleTableCellsTopBorderItem1.Glyph")));
     this.toggleTableCellsTopBorderItem1.Id = 51;
     this.toggleTableCellsTopBorderItem1.LargeGlyph = ((System.Drawing.Image)(resources.GetObject("toggleTableCellsTopBorderItem1.LargeGlyph")));
     this.toggleTableCellsTopBorderItem1.Name = "toggleTableCellsTopBorderItem1";
     toolTipTitleItem47.Text = "Top Border";
     toolTipItem47.Text = "Customize the borders of the selected cells.";
     superToolTip47.Items.Add(toolTipTitleItem47);
     superToolTip47.Items.Add(toolTipItem47);
     this.toggleTableCellsTopBorderItem1.SuperTip = superToolTip47;
     //
     // toggleTableCellsLeftBorderItem1
     //
     this.toggleTableCellsLeftBorderItem1.Caption = "Left Border";
     this.toggleTableCellsLeftBorderItem1.Enabled = false;
     this.toggleTableCellsLeftBorderItem1.Glyph = ((System.Drawing.Image)(resources.GetObject("toggleTableCellsLeftBorderItem1.Glyph")));
     this.toggleTableCellsLeftBorderItem1.Id = 52;
     this.toggleTableCellsLeftBorderItem1.LargeGlyph = ((System.Drawing.Image)(resources.GetObject("toggleTableCellsLeftBorderItem1.LargeGlyph")));
     this.toggleTableCellsLeftBorderItem1.Name = "toggleTableCellsLeftBorderItem1";
     toolTipTitleItem48.Text = "Left Border";
     toolTipItem48.Text = "Customize the borders of the selected cells.";
     superToolTip48.Items.Add(toolTipTitleItem48);
     superToolTip48.Items.Add(toolTipItem48);
     this.toggleTableCellsLeftBorderItem1.SuperTip = superToolTip48;
     //
     // toggleTableCellsRightBorderItem1
     //
     this.toggleTableCellsRightBorderItem1.Caption = "Right Border";
     this.toggleTableCellsRightBorderItem1.Enabled = false;
     this.toggleTableCellsRightBorderItem1.Glyph = ((System.Drawing.Image)(resources.GetObject("toggleTableCellsRightBorderItem1.Glyph")));
     this.toggleTableCellsRightBorderItem1.Id = 53;
     this.toggleTableCellsRightBorderItem1.LargeGlyph = ((System.Drawing.Image)(resources.GetObject("toggleTableCellsRightBorderItem1.LargeGlyph")));
     this.toggleTableCellsRightBorderItem1.Name = "toggleTableCellsRightBorderItem1";
     toolTipTitleItem49.Text = "Right Border";
     toolTipItem49.Text = "Customize the borders of the selected cells.";
     superToolTip49.Items.Add(toolTipTitleItem49);
     superToolTip49.Items.Add(toolTipItem49);
     this.toggleTableCellsRightBorderItem1.SuperTip = superToolTip49;
     //
     // resetTableCellsAllBordersItem1
     //
     this.resetTableCellsAllBordersItem1.Caption = "No Border";
     this.resetTableCellsAllBordersItem1.Enabled = false;
     this.resetTableCellsAllBordersItem1.Glyph = ((System.Drawing.Image)(resources.GetObject("resetTableCellsAllBordersItem1.Glyph")));
     this.resetTableCellsAllBordersItem1.Id = 54;
     this.resetTableCellsAllBordersItem1.LargeGlyph = ((System.Drawing.Image)(resources.GetObject("resetTableCellsAllBordersItem1.LargeGlyph")));
     this.resetTableCellsAllBordersItem1.Name = "resetTableCellsAllBordersItem1";
     toolTipTitleItem50.Text = "No Border";
     toolTipItem50.Text = "Customize the borders of the selected cells.";
     superToolTip50.Items.Add(toolTipTitleItem50);
     superToolTip50.Items.Add(toolTipItem50);
     this.resetTableCellsAllBordersItem1.SuperTip = superToolTip50;
     //
     // toggleTableCellsAllBordersItem1
     //
     this.toggleTableCellsAllBordersItem1.Caption = "All Borders";
     this.toggleTableCellsAllBordersItem1.Enabled = false;
     this.toggleTableCellsAllBordersItem1.Glyph = ((System.Drawing.Image)(resources.GetObject("toggleTableCellsAllBordersItem1.Glyph")));
     this.toggleTableCellsAllBordersItem1.Id = 55;
     this.toggleTableCellsAllBordersItem1.LargeGlyph = ((System.Drawing.Image)(resources.GetObject("toggleTableCellsAllBordersItem1.LargeGlyph")));
     this.toggleTableCellsAllBordersItem1.Name = "toggleTableCellsAllBordersItem1";
     toolTipTitleItem51.Text = "All Borders";
     toolTipItem51.Text = "Customize the borders of the selected cells.";
     superToolTip51.Items.Add(toolTipTitleItem51);
     superToolTip51.Items.Add(toolTipItem51);
     this.toggleTableCellsAllBordersItem1.SuperTip = superToolTip51;
     //
     // toggleTableCellsOutsideBorderItem1
     //
     this.toggleTableCellsOutsideBorderItem1.Caption = "Outside Border";
     this.toggleTableCellsOutsideBorderItem1.Enabled = false;
     this.toggleTableCellsOutsideBorderItem1.Glyph = ((System.Drawing.Image)(resources.GetObject("toggleTableCellsOutsideBorderItem1.Glyph")));
     this.toggleTableCellsOutsideBorderItem1.Id = 56;
     this.toggleTableCellsOutsideBorderItem1.LargeGlyph = ((System.Drawing.Image)(resources.GetObject("toggleTableCellsOutsideBorderItem1.LargeGlyph")));
     this.toggleTableCellsOutsideBorderItem1.Name = "toggleTableCellsOutsideBorderItem1";
     toolTipTitleItem52.Text = "Outside Border";
     toolTipItem52.Text = "Customize the borders of the selected cells.";
     superToolTip52.Items.Add(toolTipTitleItem52);
     superToolTip52.Items.Add(toolTipItem52);
     this.toggleTableCellsOutsideBorderItem1.SuperTip = superToolTip52;
     //
     // toggleTableCellsInsideBorderItem1
     //
     this.toggleTableCellsInsideBorderItem1.Caption = "Inside Border";
     this.toggleTableCellsInsideBorderItem1.Enabled = false;
     this.toggleTableCellsInsideBorderItem1.Glyph = ((System.Drawing.Image)(resources.GetObject("toggleTableCellsInsideBorderItem1.Glyph")));
     this.toggleTableCellsInsideBorderItem1.Id = 57;
     this.toggleTableCellsInsideBorderItem1.LargeGlyph = ((System.Drawing.Image)(resources.GetObject("toggleTableCellsInsideBorderItem1.LargeGlyph")));
     this.toggleTableCellsInsideBorderItem1.Name = "toggleTableCellsInsideBorderItem1";
     toolTipTitleItem53.Text = "Inside Border";
     toolTipItem53.Text = "Customize the borders of the selected cells.";
     superToolTip53.Items.Add(toolTipTitleItem53);
     superToolTip53.Items.Add(toolTipItem53);
     this.toggleTableCellsInsideBorderItem1.SuperTip = superToolTip53;
     //
     // toggleTableCellsInsideHorizontalBorderItem1
     //
     this.toggleTableCellsInsideHorizontalBorderItem1.Caption = "Inside Horizontal Border";
     this.toggleTableCellsInsideHorizontalBorderItem1.Enabled = false;
     this.toggleTableCellsInsideHorizontalBorderItem1.Glyph = ((System.Drawing.Image)(resources.GetObject("toggleTableCellsInsideHorizontalBorderItem1.Glyph")));
     this.toggleTableCellsInsideHorizontalBorderItem1.Id = 58;
     this.toggleTableCellsInsideHorizontalBorderItem1.LargeGlyph = ((System.Drawing.Image)(resources.GetObject("toggleTableCellsInsideHorizontalBorderItem1.LargeGlyph")));
     this.toggleTableCellsInsideHorizontalBorderItem1.Name = "toggleTableCellsInsideHorizontalBorderItem1";
     toolTipTitleItem54.Text = "Inside Horizontal Border";
     toolTipItem54.Text = "Customize the borders of the selected cells.";
     superToolTip54.Items.Add(toolTipTitleItem54);
     superToolTip54.Items.Add(toolTipItem54);
     this.toggleTableCellsInsideHorizontalBorderItem1.SuperTip = superToolTip54;
     //
     // toggleTableCellsInsideVerticalBorderItem1
     //
     this.toggleTableCellsInsideVerticalBorderItem1.Caption = "Inside Vertical Border";
     this.toggleTableCellsInsideVerticalBorderItem1.Enabled = false;
     this.toggleTableCellsInsideVerticalBorderItem1.Glyph = ((System.Drawing.Image)(resources.GetObject("toggleTableCellsInsideVerticalBorderItem1.Glyph")));
     this.toggleTableCellsInsideVerticalBorderItem1.Id = 59;
     this.toggleTableCellsInsideVerticalBorderItem1.LargeGlyph = ((System.Drawing.Image)(resources.GetObject("toggleTableCellsInsideVerticalBorderItem1.LargeGlyph")));
     this.toggleTableCellsInsideVerticalBorderItem1.Name = "toggleTableCellsInsideVerticalBorderItem1";
     toolTipTitleItem55.Text = "Inside Vertical Border";
     toolTipItem55.Text = "Customize the borders of the selected cells.";
     superToolTip55.Items.Add(toolTipTitleItem55);
     superToolTip55.Items.Add(toolTipItem55);
     this.toggleTableCellsInsideVerticalBorderItem1.SuperTip = superToolTip55;
     //
     // toggleShowTableGridLinesItem1
     //
     this.toggleShowTableGridLinesItem1.Caption = "View Gridlines";
     this.toggleShowTableGridLinesItem1.Enabled = false;
     this.toggleShowTableGridLinesItem1.Glyph = ((System.Drawing.Image)(resources.GetObject("toggleShowTableGridLinesItem1.Glyph")));
     this.toggleShowTableGridLinesItem1.Id = 60;
     this.toggleShowTableGridLinesItem1.LargeGlyph = ((System.Drawing.Image)(resources.GetObject("toggleShowTableGridLinesItem1.LargeGlyph")));
     this.toggleShowTableGridLinesItem1.Name = "toggleShowTableGridLinesItem1";
     toolTipTitleItem56.Text = "View Gridlines";
     toolTipItem56.Text = "Show or hide the gridlines within the table.";
     superToolTip56.Items.Add(toolTipTitleItem56);
     superToolTip56.Items.Add(toolTipItem56);
     this.toggleShowTableGridLinesItem1.SuperTip = superToolTip56;
     //
     // changeTableBorderLineStyleItem1
     //
     this.changeTableBorderLineStyleItem1.Caption = "Line Style";
     this.changeTableBorderLineStyleItem1.Edit = this.repositoryItemBorderLineStyle1;
     this.changeTableBorderLineStyleItem1.Enabled = false;
     this.changeTableBorderLineStyleItem1.Id = 61;
     this.changeTableBorderLineStyleItem1.Name = "changeTableBorderLineStyleItem1";
     toolTipTitleItem58.Text = "Line Style";
     toolTipItem58.Text = "Change the style of the line used to draw borders.";
     superToolTip58.Items.Add(toolTipTitleItem58);
     superToolTip58.Items.Add(toolTipItem58);
     this.changeTableBorderLineStyleItem1.SuperTip = superToolTip58;
     //
     // repositoryItemBorderLineStyle1
     //
     this.repositoryItemBorderLineStyle1.AutoHeight = false;
     this.repositoryItemBorderLineStyle1.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.repositoryItemBorderLineStyle1.Control = null;
     this.repositoryItemBorderLineStyle1.Name = "repositoryItemBorderLineStyle1";
     //
     // changeTableBorderLineWeightItem1
     //
     this.changeTableBorderLineWeightItem1.Caption = "Line Weight";
     this.changeTableBorderLineWeightItem1.Edit = this.repositoryItemBorderLineWeight1;
     this.changeTableBorderLineWeightItem1.Enabled = false;
     this.changeTableBorderLineWeightItem1.Id = 62;
     this.changeTableBorderLineWeightItem1.Name = "changeTableBorderLineWeightItem1";
     toolTipTitleItem59.Text = "Line Weight";
     toolTipItem59.Text = "Change the width of the line used to draw borders.";
     superToolTip59.Items.Add(toolTipTitleItem59);
     superToolTip59.Items.Add(toolTipItem59);
     this.changeTableBorderLineWeightItem1.SuperTip = superToolTip59;
     //
     // repositoryItemBorderLineWeight1
     //
     this.repositoryItemBorderLineWeight1.AutoHeight = false;
     this.repositoryItemBorderLineWeight1.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.repositoryItemBorderLineWeight1.Control = null;
     this.repositoryItemBorderLineWeight1.Name = "repositoryItemBorderLineWeight1";
     //
     // changeTableBorderColorItem1
     //
     this.changeTableBorderColorItem1.Caption = "Pen Color";
     this.changeTableBorderColorItem1.Enabled = false;
     this.changeTableBorderColorItem1.Glyph = ((System.Drawing.Image)(resources.GetObject("changeTableBorderColorItem1.Glyph")));
     this.changeTableBorderColorItem1.Id = 63;
     this.changeTableBorderColorItem1.LargeGlyph = ((System.Drawing.Image)(resources.GetObject("changeTableBorderColorItem1.LargeGlyph")));
     this.changeTableBorderColorItem1.Name = "changeTableBorderColorItem1";
     toolTipTitleItem60.Text = "Pen Color";
     toolTipItem60.Text = "Change the pen color.";
     superToolTip60.Items.Add(toolTipTitleItem60);
     superToolTip60.Items.Add(toolTipItem60);
     this.changeTableBorderColorItem1.SuperTip = superToolTip60;
     //
     // selectTableElementsItem1
     //
     this.selectTableElementsItem1.Caption = "Select";
     this.selectTableElementsItem1.Enabled = false;
     this.selectTableElementsItem1.Glyph = ((System.Drawing.Image)(resources.GetObject("selectTableElementsItem1.Glyph")));
     this.selectTableElementsItem1.Id = 64;
     this.selectTableElementsItem1.LargeGlyph = ((System.Drawing.Image)(resources.GetObject("selectTableElementsItem1.LargeGlyph")));
     this.selectTableElementsItem1.LinksPersistInfo.AddRange(new DevExpress.XtraBars.LinkPersistInfo[] {
     new DevExpress.XtraBars.LinkPersistInfo(this.selectTableCellItem1),
     new DevExpress.XtraBars.LinkPersistInfo(this.selectTableColumnItem1),
     new DevExpress.XtraBars.LinkPersistInfo(this.selectTableRowItem1),
     new DevExpress.XtraBars.LinkPersistInfo(this.selectTableItem1)});
     this.selectTableElementsItem1.Name = "selectTableElementsItem1";
     toolTipTitleItem65.Text = "Select";
     toolTipItem65.Text = "Select the current cell, row, column, or entire table";
     superToolTip65.Items.Add(toolTipTitleItem65);
     superToolTip65.Items.Add(toolTipItem65);
     this.selectTableElementsItem1.SuperTip = superToolTip65;
     //
     // selectTableCellItem1
     //
     this.selectTableCellItem1.Caption = "Select Cell";
     this.selectTableCellItem1.Enabled = false;
     this.selectTableCellItem1.Glyph = ((System.Drawing.Image)(resources.GetObject("selectTableCellItem1.Glyph")));
     this.selectTableCellItem1.Id = 65;
     this.selectTableCellItem1.LargeGlyph = ((System.Drawing.Image)(resources.GetObject("selectTableCellItem1.LargeGlyph")));
     this.selectTableCellItem1.Name = "selectTableCellItem1";
     toolTipTitleItem61.Text = "Select Cell";
     toolTipItem61.Text = "Select Cell";
     superToolTip61.Items.Add(toolTipTitleItem61);
     superToolTip61.Items.Add(toolTipItem61);
     this.selectTableCellItem1.SuperTip = superToolTip61;
     //
     // selectTableColumnItem1
     //
     this.selectTableColumnItem1.Caption = "Select Column";
     this.selectTableColumnItem1.Enabled = false;
     this.selectTableColumnItem1.Glyph = ((System.Drawing.Image)(resources.GetObject("selectTableColumnItem1.Glyph")));
     this.selectTableColumnItem1.Id = 66;
     this.selectTableColumnItem1.LargeGlyph = ((System.Drawing.Image)(resources.GetObject("selectTableColumnItem1.LargeGlyph")));
     this.selectTableColumnItem1.Name = "selectTableColumnItem1";
     toolTipTitleItem62.Text = "Select Column";
     toolTipItem62.Text = "Select Column";
     superToolTip62.Items.Add(toolTipTitleItem62);
     superToolTip62.Items.Add(toolTipItem62);
     this.selectTableColumnItem1.SuperTip = superToolTip62;
     //
     // selectTableRowItem1
     //
     this.selectTableRowItem1.Caption = "Select Row";
     this.selectTableRowItem1.Enabled = false;
     this.selectTableRowItem1.Glyph = ((System.Drawing.Image)(resources.GetObject("selectTableRowItem1.Glyph")));
     this.selectTableRowItem1.Id = 67;
     this.selectTableRowItem1.LargeGlyph = ((System.Drawing.Image)(resources.GetObject("selectTableRowItem1.LargeGlyph")));
     this.selectTableRowItem1.Name = "selectTableRowItem1";
     toolTipTitleItem63.Text = "Select Row";
     toolTipItem63.Text = "Select Row";
     superToolTip63.Items.Add(toolTipTitleItem63);
     superToolTip63.Items.Add(toolTipItem63);
     this.selectTableRowItem1.SuperTip = superToolTip63;
     //
     // selectTableItem1
     //
     this.selectTableItem1.Caption = "Select Table";
     this.selectTableItem1.Enabled = false;
     this.selectTableItem1.Glyph = ((System.Drawing.Image)(resources.GetObject("selectTableItem1.Glyph")));
     this.selectTableItem1.Id = 68;
     this.selectTableItem1.LargeGlyph = ((System.Drawing.Image)(resources.GetObject("selectTableItem1.LargeGlyph")));
     this.selectTableItem1.Name = "selectTableItem1";
     toolTipTitleItem64.Text = "Select Table";
     toolTipItem64.Text = "Select Table";
     superToolTip64.Items.Add(toolTipTitleItem64);
     superToolTip64.Items.Add(toolTipItem64);
     this.selectTableItem1.SuperTip = superToolTip64;
     //
     // showTablePropertiesFormItem1
     //
     this.showTablePropertiesFormItem1.Caption = "Properties";
     this.showTablePropertiesFormItem1.Enabled = false;
     this.showTablePropertiesFormItem1.Glyph = ((System.Drawing.Image)(resources.GetObject("showTablePropertiesFormItem1.Glyph")));
     this.showTablePropertiesFormItem1.Id = 69;
     this.showTablePropertiesFormItem1.LargeGlyph = ((System.Drawing.Image)(resources.GetObject("showTablePropertiesFormItem1.LargeGlyph")));
     this.showTablePropertiesFormItem1.Name = "showTablePropertiesFormItem1";
     toolTipTitleItem66.Text = "Properties";
     toolTipItem66.Text = "Show the Table Properties dialog box to change advanced table properties, such as" +
         " indentation and text wrapping options.";
     superToolTip66.Items.Add(toolTipTitleItem66);
     superToolTip66.Items.Add(toolTipItem66);
     this.showTablePropertiesFormItem1.SuperTip = superToolTip66;
     //
     // deleteTableElementsItem1
     //
     this.deleteTableElementsItem1.Caption = "Delete";
     this.deleteTableElementsItem1.Enabled = false;
     this.deleteTableElementsItem1.Glyph = ((System.Drawing.Image)(resources.GetObject("deleteTableElementsItem1.Glyph")));
     this.deleteTableElementsItem1.Id = 70;
     this.deleteTableElementsItem1.LargeGlyph = ((System.Drawing.Image)(resources.GetObject("deleteTableElementsItem1.LargeGlyph")));
     this.deleteTableElementsItem1.LinksPersistInfo.AddRange(new DevExpress.XtraBars.LinkPersistInfo[] {
     new DevExpress.XtraBars.LinkPersistInfo(this.showDeleteTableCellsFormItem1),
     new DevExpress.XtraBars.LinkPersistInfo(this.deleteTableColumnsItem1),
     new DevExpress.XtraBars.LinkPersistInfo(this.deleteTableRowsItem1),
     new DevExpress.XtraBars.LinkPersistInfo(this.deleteTableItem1)});
     this.deleteTableElementsItem1.Name = "deleteTableElementsItem1";
     toolTipTitleItem71.Text = "Delete";
     toolTipItem71.Text = "Delete rows, columns, cells, or the entire Table";
     superToolTip71.Items.Add(toolTipTitleItem71);
     superToolTip71.Items.Add(toolTipItem71);
     this.deleteTableElementsItem1.SuperTip = superToolTip71;
     //
     // showDeleteTableCellsFormItem1
     //
     this.showDeleteTableCellsFormItem1.Caption = "Delete Cells";
     this.showDeleteTableCellsFormItem1.Enabled = false;
     this.showDeleteTableCellsFormItem1.Glyph = ((System.Drawing.Image)(resources.GetObject("showDeleteTableCellsFormItem1.Glyph")));
     this.showDeleteTableCellsFormItem1.Id = 71;
     this.showDeleteTableCellsFormItem1.LargeGlyph = ((System.Drawing.Image)(resources.GetObject("showDeleteTableCellsFormItem1.LargeGlyph")));
     this.showDeleteTableCellsFormItem1.Name = "showDeleteTableCellsFormItem1";
     toolTipTitleItem67.Text = "Delete Cells";
     toolTipItem67.Text = "Delete rows, columns, or cells";
     superToolTip67.Items.Add(toolTipTitleItem67);
     superToolTip67.Items.Add(toolTipItem67);
     this.showDeleteTableCellsFormItem1.SuperTip = superToolTip67;
     //
     // deleteTableColumnsItem1
     //
     this.deleteTableColumnsItem1.Caption = "Delete Columns";
     this.deleteTableColumnsItem1.Enabled = false;
     this.deleteTableColumnsItem1.Glyph = ((System.Drawing.Image)(resources.GetObject("deleteTableColumnsItem1.Glyph")));
     this.deleteTableColumnsItem1.Id = 72;
     this.deleteTableColumnsItem1.LargeGlyph = ((System.Drawing.Image)(resources.GetObject("deleteTableColumnsItem1.LargeGlyph")));
     this.deleteTableColumnsItem1.Name = "deleteTableColumnsItem1";
     toolTipTitleItem68.Text = "Delete Columns";
     toolTipItem68.Text = "Delete Columns";
     superToolTip68.Items.Add(toolTipTitleItem68);
     superToolTip68.Items.Add(toolTipItem68);
     this.deleteTableColumnsItem1.SuperTip = superToolTip68;
     //
     // deleteTableRowsItem1
     //
     this.deleteTableRowsItem1.Caption = "Delete Rows";
     this.deleteTableRowsItem1.Enabled = false;
     this.deleteTableRowsItem1.Glyph = ((System.Drawing.Image)(resources.GetObject("deleteTableRowsItem1.Glyph")));
     this.deleteTableRowsItem1.Id = 73;
     this.deleteTableRowsItem1.LargeGlyph = ((System.Drawing.Image)(resources.GetObject("deleteTableRowsItem1.LargeGlyph")));
     this.deleteTableRowsItem1.Name = "deleteTableRowsItem1";
     toolTipTitleItem69.Text = "Delete Rows";
     toolTipItem69.Text = "Delete Rows";
     superToolTip69.Items.Add(toolTipTitleItem69);
     superToolTip69.Items.Add(toolTipItem69);
     this.deleteTableRowsItem1.SuperTip = superToolTip69;
     //
     // deleteTableItem1
     //
     this.deleteTableItem1.Caption = "Delete Table";
     this.deleteTableItem1.Enabled = false;
     this.deleteTableItem1.Glyph = ((System.Drawing.Image)(resources.GetObject("deleteTableItem1.Glyph")));
     this.deleteTableItem1.Id = 74;
     this.deleteTableItem1.LargeGlyph = ((System.Drawing.Image)(resources.GetObject("deleteTableItem1.LargeGlyph")));
     this.deleteTableItem1.Name = "deleteTableItem1";
     toolTipTitleItem70.Text = "Delete Table";
     toolTipItem70.Text = "Delete Entire Table";
     superToolTip70.Items.Add(toolTipTitleItem70);
     superToolTip70.Items.Add(toolTipItem70);
     this.deleteTableItem1.SuperTip = superToolTip70;
     //
     // insertTableRowAboveItem1
     //
     this.insertTableRowAboveItem1.Caption = "Insert Rows Above";
     this.insertTableRowAboveItem1.Enabled = false;
     this.insertTableRowAboveItem1.Glyph = ((System.Drawing.Image)(resources.GetObject("insertTableRowAboveItem1.Glyph")));
     this.insertTableRowAboveItem1.Id = 75;
     this.insertTableRowAboveItem1.LargeGlyph = ((System.Drawing.Image)(resources.GetObject("insertTableRowAboveItem1.LargeGlyph")));
     this.insertTableRowAboveItem1.Name = "insertTableRowAboveItem1";
     toolTipTitleItem72.Text = "Insert Rows Above";
     toolTipItem72.Text = "Add a new row directly above the selected row.";
     superToolTip72.Items.Add(toolTipTitleItem72);
     superToolTip72.Items.Add(toolTipItem72);
     this.insertTableRowAboveItem1.SuperTip = superToolTip72;
     //
     // insertTableRowBelowItem1
     //
     this.insertTableRowBelowItem1.Caption = "Insert Rows Below";
     this.insertTableRowBelowItem1.Enabled = false;
     this.insertTableRowBelowItem1.Glyph = ((System.Drawing.Image)(resources.GetObject("insertTableRowBelowItem1.Glyph")));
     this.insertTableRowBelowItem1.Id = 76;
     this.insertTableRowBelowItem1.LargeGlyph = ((System.Drawing.Image)(resources.GetObject("insertTableRowBelowItem1.LargeGlyph")));
     this.insertTableRowBelowItem1.Name = "insertTableRowBelowItem1";
     toolTipTitleItem73.Text = "Insert Rows Below";
     toolTipItem73.Text = "Add a new row directly below the selected row.";
     superToolTip73.Items.Add(toolTipTitleItem73);
     superToolTip73.Items.Add(toolTipItem73);
     this.insertTableRowBelowItem1.SuperTip = superToolTip73;
     //
     // insertTableColumnToLeftItem1
     //
     this.insertTableColumnToLeftItem1.Caption = "Insert Columns to the Left";
     this.insertTableColumnToLeftItem1.Enabled = false;
     this.insertTableColumnToLeftItem1.Glyph = ((System.Drawing.Image)(resources.GetObject("insertTableColumnToLeftItem1.Glyph")));
     this.insertTableColumnToLeftItem1.Id = 77;
     this.insertTableColumnToLeftItem1.LargeGlyph = ((System.Drawing.Image)(resources.GetObject("insertTableColumnToLeftItem1.LargeGlyph")));
     this.insertTableColumnToLeftItem1.Name = "insertTableColumnToLeftItem1";
     toolTipTitleItem74.Text = "Insert Columns to the Left";
     toolTipItem74.Text = "Add a new column directly to the left of the selected column";
     superToolTip74.Items.Add(toolTipTitleItem74);
     superToolTip74.Items.Add(toolTipItem74);
     this.insertTableColumnToLeftItem1.SuperTip = superToolTip74;
     //
     // insertTableColumnToRightItem1
     //
     this.insertTableColumnToRightItem1.Caption = "Insert Columns to the Right";
     this.insertTableColumnToRightItem1.Enabled = false;
     this.insertTableColumnToRightItem1.Glyph = ((System.Drawing.Image)(resources.GetObject("insertTableColumnToRightItem1.Glyph")));
     this.insertTableColumnToRightItem1.Id = 78;
     this.insertTableColumnToRightItem1.LargeGlyph = ((System.Drawing.Image)(resources.GetObject("insertTableColumnToRightItem1.LargeGlyph")));
     this.insertTableColumnToRightItem1.Name = "insertTableColumnToRightItem1";
     toolTipTitleItem75.Text = "Insert Columns to the Right";
     toolTipItem75.Text = "Add a new column directly to the right of the selected column";
     superToolTip75.Items.Add(toolTipTitleItem75);
     superToolTip75.Items.Add(toolTipItem75);
     this.insertTableColumnToRightItem1.SuperTip = superToolTip75;
     //
     // showInsertTableCellsFormItem1
     //
     this.showInsertTableCellsFormItem1.Caption = "Insert Cells";
     this.showInsertTableCellsFormItem1.Enabled = false;
     this.showInsertTableCellsFormItem1.Glyph = ((System.Drawing.Image)(resources.GetObject("showInsertTableCellsFormItem1.Glyph")));
     this.showInsertTableCellsFormItem1.Id = 79;
     this.showInsertTableCellsFormItem1.LargeGlyph = ((System.Drawing.Image)(resources.GetObject("showInsertTableCellsFormItem1.LargeGlyph")));
     this.showInsertTableCellsFormItem1.Name = "showInsertTableCellsFormItem1";
     toolTipTitleItem76.Text = "Insert Cells";
     toolTipItem76.Text = "Insert Cells";
     superToolTip76.Items.Add(toolTipTitleItem76);
     superToolTip76.Items.Add(toolTipItem76);
     this.showInsertTableCellsFormItem1.SuperTip = superToolTip76;
     //
     // mergeTableCellsItem1
     //
     this.mergeTableCellsItem1.Caption = "Merge Cells";
     this.mergeTableCellsItem1.Enabled = false;
     this.mergeTableCellsItem1.Glyph = ((System.Drawing.Image)(resources.GetObject("mergeTableCellsItem1.Glyph")));
     this.mergeTableCellsItem1.Id = 80;
     this.mergeTableCellsItem1.LargeGlyph = ((System.Drawing.Image)(resources.GetObject("mergeTableCellsItem1.LargeGlyph")));
     this.mergeTableCellsItem1.Name = "mergeTableCellsItem1";
     toolTipTitleItem77.Text = "Merge Cells";
     toolTipItem77.Text = "Merge the selected cells into one cell.";
     superToolTip77.Items.Add(toolTipTitleItem77);
     superToolTip77.Items.Add(toolTipItem77);
     this.mergeTableCellsItem1.SuperTip = superToolTip77;
     //
     // showSplitTableCellsForm1
     //
     this.showSplitTableCellsForm1.Caption = "Split Cells";
     this.showSplitTableCellsForm1.Enabled = false;
     this.showSplitTableCellsForm1.Glyph = ((System.Drawing.Image)(resources.GetObject("showSplitTableCellsForm1.Glyph")));
     this.showSplitTableCellsForm1.Id = 81;
     this.showSplitTableCellsForm1.LargeGlyph = ((System.Drawing.Image)(resources.GetObject("showSplitTableCellsForm1.LargeGlyph")));
     this.showSplitTableCellsForm1.Name = "showSplitTableCellsForm1";
     toolTipTitleItem78.Text = "Split Cells";
     toolTipItem78.Text = "Split the selected cells into multiple new cells";
     superToolTip78.Items.Add(toolTipTitleItem78);
     superToolTip78.Items.Add(toolTipItem78);
     this.showSplitTableCellsForm1.SuperTip = superToolTip78;
     //
     // splitTableItem1
     //
     this.splitTableItem1.Caption = "Split Table";
     this.splitTableItem1.Enabled = false;
     this.splitTableItem1.Glyph = ((System.Drawing.Image)(resources.GetObject("splitTableItem1.Glyph")));
     this.splitTableItem1.Id = 82;
     this.splitTableItem1.LargeGlyph = ((System.Drawing.Image)(resources.GetObject("splitTableItem1.LargeGlyph")));
     this.splitTableItem1.Name = "splitTableItem1";
     toolTipTitleItem79.Text = "Split Table";
     toolTipItem79.Text = "Split the table into two tables.\r\nThe selected row will become the first row of t" +
         "he new table.";
     superToolTip79.Items.Add(toolTipTitleItem79);
     superToolTip79.Items.Add(toolTipItem79);
     this.splitTableItem1.SuperTip = superToolTip79;
     //
     // toggleTableAutoFitItem1
     //
     this.toggleTableAutoFitItem1.Caption = "AutoFit";
     this.toggleTableAutoFitItem1.Enabled = false;
     this.toggleTableAutoFitItem1.Glyph = ((System.Drawing.Image)(resources.GetObject("toggleTableAutoFitItem1.Glyph")));
     this.toggleTableAutoFitItem1.Id = 83;
     this.toggleTableAutoFitItem1.LargeGlyph = ((System.Drawing.Image)(resources.GetObject("toggleTableAutoFitItem1.LargeGlyph")));
     this.toggleTableAutoFitItem1.LinksPersistInfo.AddRange(new DevExpress.XtraBars.LinkPersistInfo[] {
     new DevExpress.XtraBars.LinkPersistInfo(this.toggleTableAutoFitContentsItem1),
     new DevExpress.XtraBars.LinkPersistInfo(this.toggleTableAutoFitWindowItem1),
     new DevExpress.XtraBars.LinkPersistInfo(this.toggleTableFixedColumnWidthItem1)});
     this.toggleTableAutoFitItem1.Name = "toggleTableAutoFitItem1";
     toolTipTitleItem83.Text = "AutoFit";
     toolTipItem83.Text = "Automatically resize the column widths based on the text in them.\r\n\r\nYou can set " +
         "the table width based on the window size or convert it back to use fixed column " +
         "widths.";
     superToolTip83.Items.Add(toolTipTitleItem83);
     superToolTip83.Items.Add(toolTipItem83);
     this.toggleTableAutoFitItem1.SuperTip = superToolTip83;
     //
     // toggleTableAutoFitContentsItem1
     //
     this.toggleTableAutoFitContentsItem1.Caption = "AutoFit Contents";
     this.toggleTableAutoFitContentsItem1.Enabled = false;
     this.toggleTableAutoFitContentsItem1.Glyph = ((System.Drawing.Image)(resources.GetObject("toggleTableAutoFitContentsItem1.Glyph")));
     this.toggleTableAutoFitContentsItem1.Id = 84;
     this.toggleTableAutoFitContentsItem1.LargeGlyph = ((System.Drawing.Image)(resources.GetObject("toggleTableAutoFitContentsItem1.LargeGlyph")));
     this.toggleTableAutoFitContentsItem1.Name = "toggleTableAutoFitContentsItem1";
     toolTipTitleItem80.Text = "AutoFit Contents";
     toolTipItem80.Text = "Auto-Fit Table to the contents.";
     superToolTip80.Items.Add(toolTipTitleItem80);
     superToolTip80.Items.Add(toolTipItem80);
     this.toggleTableAutoFitContentsItem1.SuperTip = superToolTip80;
     //
     // toggleTableAutoFitWindowItem1
     //
     this.toggleTableAutoFitWindowItem1.Caption = "AutoFit Window";
     this.toggleTableAutoFitWindowItem1.Enabled = false;
     this.toggleTableAutoFitWindowItem1.Glyph = ((System.Drawing.Image)(resources.GetObject("toggleTableAutoFitWindowItem1.Glyph")));
     this.toggleTableAutoFitWindowItem1.Id = 85;
     this.toggleTableAutoFitWindowItem1.LargeGlyph = ((System.Drawing.Image)(resources.GetObject("toggleTableAutoFitWindowItem1.LargeGlyph")));
     this.toggleTableAutoFitWindowItem1.Name = "toggleTableAutoFitWindowItem1";
     toolTipTitleItem81.Text = "AutoFit Window";
     toolTipItem81.Text = "Auto-Fit Table to the window.";
     superToolTip81.Items.Add(toolTipTitleItem81);
     superToolTip81.Items.Add(toolTipItem81);
     this.toggleTableAutoFitWindowItem1.SuperTip = superToolTip81;
     //
     // toggleTableFixedColumnWidthItem1
     //
     this.toggleTableFixedColumnWidthItem1.Caption = "Fixed Column Width";
     this.toggleTableFixedColumnWidthItem1.Enabled = false;
     this.toggleTableFixedColumnWidthItem1.Glyph = ((System.Drawing.Image)(resources.GetObject("toggleTableFixedColumnWidthItem1.Glyph")));
     this.toggleTableFixedColumnWidthItem1.Id = 86;
     this.toggleTableFixedColumnWidthItem1.LargeGlyph = ((System.Drawing.Image)(resources.GetObject("toggleTableFixedColumnWidthItem1.LargeGlyph")));
     this.toggleTableFixedColumnWidthItem1.Name = "toggleTableFixedColumnWidthItem1";
     toolTipTitleItem82.Text = "Fixed Column Width";
     toolTipItem82.Text = "Set table size to a fixed width.";
     superToolTip82.Items.Add(toolTipTitleItem82);
     superToolTip82.Items.Add(toolTipItem82);
     this.toggleTableFixedColumnWidthItem1.SuperTip = superToolTip82;
     //
     // toggleTableCellsTopLeftAlignmentItem1
     //
     this.toggleTableCellsTopLeftAlignmentItem1.Caption = "Align Top Left";
     this.toggleTableCellsTopLeftAlignmentItem1.Enabled = false;
     this.toggleTableCellsTopLeftAlignmentItem1.Glyph = ((System.Drawing.Image)(resources.GetObject("toggleTableCellsTopLeftAlignmentItem1.Glyph")));
     this.toggleTableCellsTopLeftAlignmentItem1.Id = 87;
     this.toggleTableCellsTopLeftAlignmentItem1.LargeGlyph = ((System.Drawing.Image)(resources.GetObject("toggleTableCellsTopLeftAlignmentItem1.LargeGlyph")));
     this.toggleTableCellsTopLeftAlignmentItem1.Name = "toggleTableCellsTopLeftAlignmentItem1";
     toolTipTitleItem84.Text = "Align Top Left";
     toolTipItem84.Text = "Align text to the top left corner of the cell.";
     superToolTip84.Items.Add(toolTipTitleItem84);
     superToolTip84.Items.Add(toolTipItem84);
     this.toggleTableCellsTopLeftAlignmentItem1.SuperTip = superToolTip84;
     //
     // toggleTableCellsTopCenterAlignmentItem1
     //
     this.toggleTableCellsTopCenterAlignmentItem1.Caption = "Align Top Center";
     this.toggleTableCellsTopCenterAlignmentItem1.Enabled = false;
     this.toggleTableCellsTopCenterAlignmentItem1.Glyph = ((System.Drawing.Image)(resources.GetObject("toggleTableCellsTopCenterAlignmentItem1.Glyph")));
     this.toggleTableCellsTopCenterAlignmentItem1.Id = 88;
     this.toggleTableCellsTopCenterAlignmentItem1.LargeGlyph = ((System.Drawing.Image)(resources.GetObject("toggleTableCellsTopCenterAlignmentItem1.LargeGlyph")));
     this.toggleTableCellsTopCenterAlignmentItem1.Name = "toggleTableCellsTopCenterAlignmentItem1";
     toolTipTitleItem85.Text = "Align Top Center";
     toolTipItem85.Text = "Center text and align it to the top of the cell.";
     superToolTip85.Items.Add(toolTipTitleItem85);
     superToolTip85.Items.Add(toolTipItem85);
     this.toggleTableCellsTopCenterAlignmentItem1.SuperTip = superToolTip85;
     //
     // toggleTableCellsTopRightAlignmentItem1
     //
     this.toggleTableCellsTopRightAlignmentItem1.Caption = "Align Top Right";
     this.toggleTableCellsTopRightAlignmentItem1.Enabled = false;
     this.toggleTableCellsTopRightAlignmentItem1.Glyph = ((System.Drawing.Image)(resources.GetObject("toggleTableCellsTopRightAlignmentItem1.Glyph")));
     this.toggleTableCellsTopRightAlignmentItem1.Id = 89;
     this.toggleTableCellsTopRightAlignmentItem1.LargeGlyph = ((System.Drawing.Image)(resources.GetObject("toggleTableCellsTopRightAlignmentItem1.LargeGlyph")));
     this.toggleTableCellsTopRightAlignmentItem1.Name = "toggleTableCellsTopRightAlignmentItem1";
     toolTipTitleItem86.Text = "Align Top Right";
     toolTipItem86.Text = "Align text to the top right corner of the cell.";
     superToolTip86.Items.Add(toolTipTitleItem86);
     superToolTip86.Items.Add(toolTipItem86);
     this.toggleTableCellsTopRightAlignmentItem1.SuperTip = superToolTip86;
     //
     // toggleTableCellsMiddleLeftAlignmentItem1
     //
     this.toggleTableCellsMiddleLeftAlignmentItem1.Caption = "Align Center Left";
     this.toggleTableCellsMiddleLeftAlignmentItem1.Enabled = false;
     this.toggleTableCellsMiddleLeftAlignmentItem1.Glyph = ((System.Drawing.Image)(resources.GetObject("toggleTableCellsMiddleLeftAlignmentItem1.Glyph")));
     this.toggleTableCellsMiddleLeftAlignmentItem1.Id = 90;
     this.toggleTableCellsMiddleLeftAlignmentItem1.LargeGlyph = ((System.Drawing.Image)(resources.GetObject("toggleTableCellsMiddleLeftAlignmentItem1.LargeGlyph")));
     this.toggleTableCellsMiddleLeftAlignmentItem1.Name = "toggleTableCellsMiddleLeftAlignmentItem1";
     toolTipTitleItem87.Text = "Align Center Left";
     toolTipItem87.Text = "Center text vertically and align it to the left side of the cell.";
     superToolTip87.Items.Add(toolTipTitleItem87);
     superToolTip87.Items.Add(toolTipItem87);
     this.toggleTableCellsMiddleLeftAlignmentItem1.SuperTip = superToolTip87;
     //
     // toggleTableCellsMiddleCenterAlignmentItem1
     //
     this.toggleTableCellsMiddleCenterAlignmentItem1.Caption = "Align Center";
     this.toggleTableCellsMiddleCenterAlignmentItem1.Enabled = false;
     this.toggleTableCellsMiddleCenterAlignmentItem1.Glyph = ((System.Drawing.Image)(resources.GetObject("toggleTableCellsMiddleCenterAlignmentItem1.Glyph")));
     this.toggleTableCellsMiddleCenterAlignmentItem1.Id = 91;
     this.toggleTableCellsMiddleCenterAlignmentItem1.LargeGlyph = ((System.Drawing.Image)(resources.GetObject("toggleTableCellsMiddleCenterAlignmentItem1.LargeGlyph")));
     this.toggleTableCellsMiddleCenterAlignmentItem1.Name = "toggleTableCellsMiddleCenterAlignmentItem1";
     toolTipTitleItem88.Text = "Align Center";
     toolTipItem88.Text = "Center text horizontally and vertically within the cell.";
     superToolTip88.Items.Add(toolTipTitleItem88);
     superToolTip88.Items.Add(toolTipItem88);
     this.toggleTableCellsMiddleCenterAlignmentItem1.SuperTip = superToolTip88;
     //
     // toggleTableCellsMiddleRightAlignmentItem1
     //
     this.toggleTableCellsMiddleRightAlignmentItem1.Caption = "Align Center Right";
     this.toggleTableCellsMiddleRightAlignmentItem1.Enabled = false;
     this.toggleTableCellsMiddleRightAlignmentItem1.Glyph = ((System.Drawing.Image)(resources.GetObject("toggleTableCellsMiddleRightAlignmentItem1.Glyph")));
     this.toggleTableCellsMiddleRightAlignmentItem1.Id = 92;
     this.toggleTableCellsMiddleRightAlignmentItem1.LargeGlyph = ((System.Drawing.Image)(resources.GetObject("toggleTableCellsMiddleRightAlignmentItem1.LargeGlyph")));
     this.toggleTableCellsMiddleRightAlignmentItem1.Name = "toggleTableCellsMiddleRightAlignmentItem1";
     toolTipTitleItem89.Text = "Align Center Right";
     toolTipItem89.Text = "Center text vertically and align it to the right side of the cell.";
     superToolTip89.Items.Add(toolTipTitleItem89);
     superToolTip89.Items.Add(toolTipItem89);
     this.toggleTableCellsMiddleRightAlignmentItem1.SuperTip = superToolTip89;
     //
     // toggleTableCellsBottomLeftAlignmentItem1
     //
     this.toggleTableCellsBottomLeftAlignmentItem1.Caption = "Align Bottom Left";
     this.toggleTableCellsBottomLeftAlignmentItem1.Enabled = false;
     this.toggleTableCellsBottomLeftAlignmentItem1.Glyph = ((System.Drawing.Image)(resources.GetObject("toggleTableCellsBottomLeftAlignmentItem1.Glyph")));
     this.toggleTableCellsBottomLeftAlignmentItem1.Id = 93;
     this.toggleTableCellsBottomLeftAlignmentItem1.LargeGlyph = ((System.Drawing.Image)(resources.GetObject("toggleTableCellsBottomLeftAlignmentItem1.LargeGlyph")));
     this.toggleTableCellsBottomLeftAlignmentItem1.Name = "toggleTableCellsBottomLeftAlignmentItem1";
     toolTipTitleItem90.Text = "Align Bottom Left";
     toolTipItem90.Text = "Align text to the bottom left corner of the cell.";
     superToolTip90.Items.Add(toolTipTitleItem90);
     superToolTip90.Items.Add(toolTipItem90);
     this.toggleTableCellsBottomLeftAlignmentItem1.SuperTip = superToolTip90;
     //
     // toggleTableCellsBottomCenterAlignmentItem1
     //
     this.toggleTableCellsBottomCenterAlignmentItem1.Caption = "Align Bottom Center";
     this.toggleTableCellsBottomCenterAlignmentItem1.Enabled = false;
     this.toggleTableCellsBottomCenterAlignmentItem1.Glyph = ((System.Drawing.Image)(resources.GetObject("toggleTableCellsBottomCenterAlignmentItem1.Glyph")));
     this.toggleTableCellsBottomCenterAlignmentItem1.Id = 94;
     this.toggleTableCellsBottomCenterAlignmentItem1.LargeGlyph = ((System.Drawing.Image)(resources.GetObject("toggleTableCellsBottomCenterAlignmentItem1.LargeGlyph")));
     this.toggleTableCellsBottomCenterAlignmentItem1.Name = "toggleTableCellsBottomCenterAlignmentItem1";
     toolTipTitleItem91.Text = "Align Bottom Center";
     toolTipItem91.Text = "Center text and align it to the bottom of the cell.";
     superToolTip91.Items.Add(toolTipTitleItem91);
     superToolTip91.Items.Add(toolTipItem91);
     this.toggleTableCellsBottomCenterAlignmentItem1.SuperTip = superToolTip91;
     //
     // toggleTableCellsBottomRightAlignmentItem1
     //
     this.toggleTableCellsBottomRightAlignmentItem1.Caption = "Align Bottom Right";
     this.toggleTableCellsBottomRightAlignmentItem1.Enabled = false;
     this.toggleTableCellsBottomRightAlignmentItem1.Glyph = ((System.Drawing.Image)(resources.GetObject("toggleTableCellsBottomRightAlignmentItem1.Glyph")));
     this.toggleTableCellsBottomRightAlignmentItem1.Id = 95;
     this.toggleTableCellsBottomRightAlignmentItem1.LargeGlyph = ((System.Drawing.Image)(resources.GetObject("toggleTableCellsBottomRightAlignmentItem1.LargeGlyph")));
     this.toggleTableCellsBottomRightAlignmentItem1.Name = "toggleTableCellsBottomRightAlignmentItem1";
     toolTipTitleItem92.Text = "Align Bottom Right";
     toolTipItem92.Text = "Align text to the bottom right corner of the cell.";
     superToolTip92.Items.Add(toolTipTitleItem92);
     superToolTip92.Items.Add(toolTipItem92);
     this.toggleTableCellsBottomRightAlignmentItem1.SuperTip = superToolTip92;
     //
     // switchToSimpleViewItem1
     //
     this.switchToSimpleViewItem1.Caption = "Simple View";
     this.switchToSimpleViewItem1.Enabled = false;
     this.switchToSimpleViewItem1.Glyph = ((System.Drawing.Image)(resources.GetObject("switchToSimpleViewItem1.Glyph")));
     this.switchToSimpleViewItem1.Id = 96;
     this.switchToSimpleViewItem1.LargeGlyph = ((System.Drawing.Image)(resources.GetObject("switchToSimpleViewItem1.LargeGlyph")));
     this.switchToSimpleViewItem1.Name = "switchToSimpleViewItem1";
     toolTipTitleItem93.Text = "Simple View";
     toolTipItem93.Text = "View the document as a simple memo.\r\n\r\nThis view ignores the page layout to draw " +
         "attention to text editing.";
     superToolTip93.Items.Add(toolTipTitleItem93);
     superToolTip93.Items.Add(toolTipItem93);
     this.switchToSimpleViewItem1.SuperTip = superToolTip93;
     //
     // switchToDraftViewItem1
     //
     this.switchToDraftViewItem1.Caption = "Draft View";
     this.switchToDraftViewItem1.Enabled = false;
     this.switchToDraftViewItem1.Glyph = ((System.Drawing.Image)(resources.GetObject("switchToDraftViewItem1.Glyph")));
     this.switchToDraftViewItem1.Id = 97;
     this.switchToDraftViewItem1.LargeGlyph = ((System.Drawing.Image)(resources.GetObject("switchToDraftViewItem1.LargeGlyph")));
     this.switchToDraftViewItem1.Name = "switchToDraftViewItem1";
     toolTipTitleItem94.Text = "Draft View";
     toolTipItem94.Text = "View the document as a draft to quickly edit the text.\r\n\r\nCertain elements of the" +
         " document such as headers and footers will not be visible in this view.";
     superToolTip94.Items.Add(toolTipTitleItem94);
     superToolTip94.Items.Add(toolTipItem94);
     this.switchToDraftViewItem1.SuperTip = superToolTip94;
     //
     // switchToPrintLayoutViewItem1
     //
     this.switchToPrintLayoutViewItem1.Caption = "Print Layout";
     this.switchToPrintLayoutViewItem1.Enabled = false;
     this.switchToPrintLayoutViewItem1.Glyph = ((System.Drawing.Image)(resources.GetObject("switchToPrintLayoutViewItem1.Glyph")));
     this.switchToPrintLayoutViewItem1.Id = 98;
     this.switchToPrintLayoutViewItem1.LargeGlyph = ((System.Drawing.Image)(resources.GetObject("switchToPrintLayoutViewItem1.LargeGlyph")));
     this.switchToPrintLayoutViewItem1.Name = "switchToPrintLayoutViewItem1";
     toolTipTitleItem95.Text = "Print Layout";
     toolTipItem95.Text = "View the document as it will appear on the printed page.";
     superToolTip95.Items.Add(toolTipTitleItem95);
     superToolTip95.Items.Add(toolTipItem95);
     this.switchToPrintLayoutViewItem1.SuperTip = superToolTip95;
     //
     // toggleShowHorizontalRulerItem1
     //
     this.toggleShowHorizontalRulerItem1.Caption = "Horizontal Ruler";
     this.toggleShowHorizontalRulerItem1.Enabled = false;
     this.toggleShowHorizontalRulerItem1.Glyph = ((System.Drawing.Image)(resources.GetObject("toggleShowHorizontalRulerItem1.Glyph")));
     this.toggleShowHorizontalRulerItem1.Id = 99;
     this.toggleShowHorizontalRulerItem1.LargeGlyph = ((System.Drawing.Image)(resources.GetObject("toggleShowHorizontalRulerItem1.LargeGlyph")));
     this.toggleShowHorizontalRulerItem1.Name = "toggleShowHorizontalRulerItem1";
     toolTipTitleItem96.Text = "Horizontal Ruler";
     toolTipItem96.Text = "View the horizontal ruler, used to measure and line up objects in the document";
     superToolTip96.Items.Add(toolTipTitleItem96);
     superToolTip96.Items.Add(toolTipItem96);
     this.toggleShowHorizontalRulerItem1.SuperTip = superToolTip96;
     //
     // toggleShowVerticalRulerItem1
     //
     this.toggleShowVerticalRulerItem1.Caption = "Vertical Ruler";
     this.toggleShowVerticalRulerItem1.Enabled = false;
     this.toggleShowVerticalRulerItem1.Glyph = ((System.Drawing.Image)(resources.GetObject("toggleShowVerticalRulerItem1.Glyph")));
     this.toggleShowVerticalRulerItem1.Id = 100;
     this.toggleShowVerticalRulerItem1.LargeGlyph = ((System.Drawing.Image)(resources.GetObject("toggleShowVerticalRulerItem1.LargeGlyph")));
     this.toggleShowVerticalRulerItem1.Name = "toggleShowVerticalRulerItem1";
     toolTipTitleItem97.Text = "Vertical Ruler";
     toolTipItem97.Text = "View the vertical ruler, used to measure and line up objects in the document";
     superToolTip97.Items.Add(toolTipTitleItem97);
     superToolTip97.Items.Add(toolTipItem97);
     this.toggleShowVerticalRulerItem1.SuperTip = superToolTip97;
     //
     // zoomOutItem1
     //
     this.zoomOutItem1.Caption = "Zoom Out";
     this.zoomOutItem1.Enabled = false;
     this.zoomOutItem1.Glyph = ((System.Drawing.Image)(resources.GetObject("zoomOutItem1.Glyph")));
     this.zoomOutItem1.Id = 101;
     this.zoomOutItem1.LargeGlyph = ((System.Drawing.Image)(resources.GetObject("zoomOutItem1.LargeGlyph")));
     this.zoomOutItem1.Name = "zoomOutItem1";
     toolTipTitleItem98.Text = "Zoom Out (Ctrl+Subtract)";
     toolTipItem98.Text = "Zoom Out";
     superToolTip98.Items.Add(toolTipTitleItem98);
     superToolTip98.Items.Add(toolTipItem98);
     this.zoomOutItem1.SuperTip = superToolTip98;
     //
     // zoomInItem1
     //
     this.zoomInItem1.Caption = "Zoom In";
     this.zoomInItem1.Enabled = false;
     this.zoomInItem1.Glyph = ((System.Drawing.Image)(resources.GetObject("zoomInItem1.Glyph")));
     this.zoomInItem1.Id = 102;
     this.zoomInItem1.LargeGlyph = ((System.Drawing.Image)(resources.GetObject("zoomInItem1.LargeGlyph")));
     this.zoomInItem1.Name = "zoomInItem1";
     toolTipTitleItem99.Text = "Zoom In (Ctrl+Add)";
     toolTipItem99.Text = "Zoom In";
     superToolTip99.Items.Add(toolTipTitleItem99);
     superToolTip99.Items.Add(toolTipItem99);
     this.zoomInItem1.SuperTip = superToolTip99;
     //
     // toggleBulletedListItem1
     //
     this.toggleBulletedListItem1.Caption = "Bullets";
     this.toggleBulletedListItem1.Enabled = false;
     this.toggleBulletedListItem1.Glyph = ((System.Drawing.Image)(resources.GetObject("toggleBulletedListItem1.Glyph")));
     this.toggleBulletedListItem1.Id = 112;
     this.toggleBulletedListItem1.LargeGlyph = ((System.Drawing.Image)(resources.GetObject("toggleBulletedListItem1.LargeGlyph")));
     this.toggleBulletedListItem1.Name = "toggleBulletedListItem1";
     toolTipTitleItem100.Text = "Bullets";
     toolTipItem100.Text = "Start a bulleted list.";
     superToolTip100.Items.Add(toolTipTitleItem100);
     superToolTip100.Items.Add(toolTipItem100);
     this.toggleBulletedListItem1.SuperTip = superToolTip100;
     //
     // insertPageBreakItem1
     //
     this.insertPageBreakItem1.Caption = "Page";
     this.insertPageBreakItem1.Enabled = false;
     this.insertPageBreakItem1.Glyph = ((System.Drawing.Image)(resources.GetObject("insertPageBreakItem1.Glyph")));
     this.insertPageBreakItem1.Id = 113;
     this.insertPageBreakItem1.LargeGlyph = ((System.Drawing.Image)(resources.GetObject("insertPageBreakItem1.LargeGlyph")));
     this.insertPageBreakItem1.Name = "insertPageBreakItem1";
     toolTipTitleItem101.Text = "Page (Ctrl+Return)";
     toolTipItem101.Text = "Start the next page at the current position.";
     superToolTip101.Items.Add(toolTipTitleItem101);
     superToolTip101.Items.Add(toolTipItem101);
     this.insertPageBreakItem1.SuperTip = superToolTip101;
     //
     // insertTableItem1
     //
     this.insertTableItem1.Caption = "Table";
     this.insertTableItem1.Enabled = false;
     this.insertTableItem1.Glyph = ((System.Drawing.Image)(resources.GetObject("insertTableItem1.Glyph")));
     this.insertTableItem1.Id = 114;
     this.insertTableItem1.LargeGlyph = ((System.Drawing.Image)(resources.GetObject("insertTableItem1.LargeGlyph")));
     this.insertTableItem1.Name = "insertTableItem1";
     toolTipTitleItem102.Text = "Table";
     toolTipItem102.Text = "Insert a table into the document.";
     superToolTip102.Items.Add(toolTipTitleItem102);
     superToolTip102.Items.Add(toolTipItem102);
     this.insertTableItem1.SuperTip = superToolTip102;
     //
     // insertPictureItem1
     //
     this.insertPictureItem1.Caption = "Picture";
     this.insertPictureItem1.Enabled = false;
     this.insertPictureItem1.Glyph = ((System.Drawing.Image)(resources.GetObject("insertPictureItem1.Glyph")));
     this.insertPictureItem1.Id = 115;
     this.insertPictureItem1.LargeGlyph = ((System.Drawing.Image)(resources.GetObject("insertPictureItem1.LargeGlyph")));
     this.insertPictureItem1.Name = "insertPictureItem1";
     toolTipTitleItem103.Text = "Picture";
     toolTipItem103.Text = "Insert a picture from a file.";
     superToolTip103.Items.Add(toolTipTitleItem103);
     superToolTip103.Items.Add(toolTipItem103);
     this.insertPictureItem1.SuperTip = superToolTip103;
     //
     // insertBookmarkItem1
     //
     this.insertBookmarkItem1.Caption = "Bookmark";
     this.insertBookmarkItem1.Enabled = false;
     this.insertBookmarkItem1.Glyph = ((System.Drawing.Image)(resources.GetObject("insertBookmarkItem1.Glyph")));
     this.insertBookmarkItem1.Id = 116;
     this.insertBookmarkItem1.LargeGlyph = ((System.Drawing.Image)(resources.GetObject("insertBookmarkItem1.LargeGlyph")));
     this.insertBookmarkItem1.Name = "insertBookmarkItem1";
     toolTipTitleItem104.Text = "Bookmark";
     toolTipItem104.Text = "Create a bookmark to assign a name to a specific point in a document\r\n\r\nYou can m" +
         "ake hyperlinks that jump directly to a bookmarked location.";
     superToolTip104.Items.Add(toolTipTitleItem104);
     superToolTip104.Items.Add(toolTipItem104);
     this.insertBookmarkItem1.SuperTip = superToolTip104;
     //
     // insertHyperlinkItem1
     //
     this.insertHyperlinkItem1.Caption = "Hyperlink";
     this.insertHyperlinkItem1.Enabled = false;
     this.insertHyperlinkItem1.Glyph = ((System.Drawing.Image)(resources.GetObject("insertHyperlinkItem1.Glyph")));
     this.insertHyperlinkItem1.Id = 117;
     this.insertHyperlinkItem1.LargeGlyph = ((System.Drawing.Image)(resources.GetObject("insertHyperlinkItem1.LargeGlyph")));
     this.insertHyperlinkItem1.Name = "insertHyperlinkItem1";
     toolTipTitleItem105.Text = "Hyperlink (Ctrl+K)";
     toolTipItem105.Text = "Create a link to a Web page, a picture, an e-mail address, or a program.";
     superToolTip105.Items.Add(toolTipTitleItem105);
     superToolTip105.Items.Add(toolTipItem105);
     this.insertHyperlinkItem1.SuperTip = superToolTip105;
     //
     // editPageHeaderItem1
     //
     this.editPageHeaderItem1.Caption = "Header";
     this.editPageHeaderItem1.Enabled = false;
     this.editPageHeaderItem1.Glyph = ((System.Drawing.Image)(resources.GetObject("editPageHeaderItem1.Glyph")));
     this.editPageHeaderItem1.Id = 118;
     this.editPageHeaderItem1.LargeGlyph = ((System.Drawing.Image)(resources.GetObject("editPageHeaderItem1.LargeGlyph")));
     this.editPageHeaderItem1.Name = "editPageHeaderItem1";
     toolTipTitleItem106.Text = "Header";
     toolTipItem106.Text = "Edit the header of the document.\r\n\r\nThe content in the header will appear at the " +
         "top of each printed page.";
     superToolTip106.Items.Add(toolTipTitleItem106);
     superToolTip106.Items.Add(toolTipItem106);
     this.editPageHeaderItem1.SuperTip = superToolTip106;
     //
     // editPageFooterItem1
     //
     this.editPageFooterItem1.Caption = "Footer";
     this.editPageFooterItem1.Enabled = false;
     this.editPageFooterItem1.Glyph = ((System.Drawing.Image)(resources.GetObject("editPageFooterItem1.Glyph")));
     this.editPageFooterItem1.Id = 119;
     this.editPageFooterItem1.LargeGlyph = ((System.Drawing.Image)(resources.GetObject("editPageFooterItem1.LargeGlyph")));
     this.editPageFooterItem1.Name = "editPageFooterItem1";
     toolTipTitleItem107.Text = "Footer";
     toolTipItem107.Text = "Edit the footer of the document.\r\n\r\nThe content in the footer will appear at the " +
         "bottom of each printed page.";
     superToolTip107.Items.Add(toolTipTitleItem107);
     superToolTip107.Items.Add(toolTipItem107);
     this.editPageFooterItem1.SuperTip = superToolTip107;
     //
     // insertPageNumberItem1
     //
     this.insertPageNumberItem1.Caption = "Page Number";
     this.insertPageNumberItem1.Enabled = false;
     this.insertPageNumberItem1.Glyph = ((System.Drawing.Image)(resources.GetObject("insertPageNumberItem1.Glyph")));
     this.insertPageNumberItem1.Id = 120;
     this.insertPageNumberItem1.LargeGlyph = ((System.Drawing.Image)(resources.GetObject("insertPageNumberItem1.LargeGlyph")));
     this.insertPageNumberItem1.Name = "insertPageNumberItem1";
     toolTipTitleItem108.Text = "Page Number";
     toolTipItem108.Text = "Insert page numbers into the document.";
     superToolTip108.Items.Add(toolTipTitleItem108);
     superToolTip108.Items.Add(toolTipItem108);
     this.insertPageNumberItem1.SuperTip = superToolTip108;
     //
     // insertPageCountItem1
     //
     this.insertPageCountItem1.Caption = "Page Count";
     this.insertPageCountItem1.Enabled = false;
     this.insertPageCountItem1.Glyph = ((System.Drawing.Image)(resources.GetObject("insertPageCountItem1.Glyph")));
     this.insertPageCountItem1.Id = 121;
     this.insertPageCountItem1.LargeGlyph = ((System.Drawing.Image)(resources.GetObject("insertPageCountItem1.LargeGlyph")));
     this.insertPageCountItem1.Name = "insertPageCountItem1";
     toolTipTitleItem109.Text = "Page Count";
     toolTipItem109.Text = "Insert total page count into the document.";
     superToolTip109.Items.Add(toolTipTitleItem109);
     superToolTip109.Items.Add(toolTipItem109);
     this.insertPageCountItem1.SuperTip = superToolTip109;
     //
     // insertSymbolItem1
     //
     this.insertSymbolItem1.Caption = "Symbol";
     this.insertSymbolItem1.Enabled = false;
     this.insertSymbolItem1.Glyph = ((System.Drawing.Image)(resources.GetObject("insertSymbolItem1.Glyph")));
     this.insertSymbolItem1.Id = 122;
     this.insertSymbolItem1.LargeGlyph = ((System.Drawing.Image)(resources.GetObject("insertSymbolItem1.LargeGlyph")));
     this.insertSymbolItem1.Name = "insertSymbolItem1";
     toolTipTitleItem110.Text = "Symbol";
     toolTipItem110.Text = "Insert symbols that are not on your keyboard, such as copyright symbols, trademar" +
         "k symbols, paragraph marks and Unicode characters.";
     superToolTip110.Items.Add(toolTipTitleItem110);
     superToolTip110.Items.Add(toolTipItem110);
     this.insertSymbolItem1.SuperTip = superToolTip110;
     //
     // changeSectionPageMarginsItem1
     //
     this.changeSectionPageMarginsItem1.Caption = "Margins";
     this.changeSectionPageMarginsItem1.Enabled = false;
     this.changeSectionPageMarginsItem1.Glyph = ((System.Drawing.Image)(resources.GetObject("changeSectionPageMarginsItem1.Glyph")));
     this.changeSectionPageMarginsItem1.Id = 129;
     this.changeSectionPageMarginsItem1.LargeGlyph = ((System.Drawing.Image)(resources.GetObject("changeSectionPageMarginsItem1.LargeGlyph")));
     this.changeSectionPageMarginsItem1.LinksPersistInfo.AddRange(new DevExpress.XtraBars.LinkPersistInfo[] {
     new DevExpress.XtraBars.LinkPersistInfo(this.setNormalSectionPageMarginsItem1),
     new DevExpress.XtraBars.LinkPersistInfo(this.setNarrowSectionPageMarginsItem1),
     new DevExpress.XtraBars.LinkPersistInfo(this.setModerateSectionPageMarginsItem1),
     new DevExpress.XtraBars.LinkPersistInfo(this.setWideSectionPageMarginsItem1)});
     this.changeSectionPageMarginsItem1.Name = "changeSectionPageMarginsItem1";
     toolTipTitleItem115.Text = "Margins";
     toolTipItem115.Text = "Select the margin sizes for the entire document or the current section.";
     superToolTip115.Items.Add(toolTipTitleItem115);
     superToolTip115.Items.Add(toolTipItem115);
     this.changeSectionPageMarginsItem1.SuperTip = superToolTip115;
     //
     // setNormalSectionPageMarginsItem1
     //
     this.setNormalSectionPageMarginsItem1.Caption = "Normal\r\nTop:\t     0.79\"\tBottom:\t     0.79\"\r\nLeft:\t     1.18\"\tRight:\t\t     0.59\"";
     this.setNormalSectionPageMarginsItem1.Enabled = false;
     this.setNormalSectionPageMarginsItem1.Glyph = ((System.Drawing.Image)(resources.GetObject("setNormalSectionPageMarginsItem1.Glyph")));
     this.setNormalSectionPageMarginsItem1.Id = 130;
     this.setNormalSectionPageMarginsItem1.LargeGlyph = ((System.Drawing.Image)(resources.GetObject("setNormalSectionPageMarginsItem1.LargeGlyph")));
     this.setNormalSectionPageMarginsItem1.Name = "setNormalSectionPageMarginsItem1";
     toolTipTitleItem111.Text = "Normal\r\nTop:\t     0.79\"\tBottom:\t     0.79\"\r\nLeft:\t     1.18\"\tRight:\t\t     0.59\"";
     toolTipItem111.Text = " ";
     superToolTip111.Items.Add(toolTipTitleItem111);
     superToolTip111.Items.Add(toolTipItem111);
     this.setNormalSectionPageMarginsItem1.SuperTip = superToolTip111;
     //
     // setNarrowSectionPageMarginsItem1
     //
     this.setNarrowSectionPageMarginsItem1.Caption = "Narrow\r\nTop:\t      0.5\"\tBottom:\t      0.5\"\r\nLeft:\t      0.5\"\tRight:\t\t      0.5\"";
     this.setNarrowSectionPageMarginsItem1.Enabled = false;
     this.setNarrowSectionPageMarginsItem1.Glyph = ((System.Drawing.Image)(resources.GetObject("setNarrowSectionPageMarginsItem1.Glyph")));
     this.setNarrowSectionPageMarginsItem1.Id = 131;
     this.setNarrowSectionPageMarginsItem1.LargeGlyph = ((System.Drawing.Image)(resources.GetObject("setNarrowSectionPageMarginsItem1.LargeGlyph")));
     this.setNarrowSectionPageMarginsItem1.Name = "setNarrowSectionPageMarginsItem1";
     toolTipTitleItem112.Text = "Narrow\r\nTop:\t      0.5\"\tBottom:\t      0.5\"\r\nLeft:\t      0.5\"\tRight:\t\t      0.5\"";
     toolTipItem112.Text = " ";
     superToolTip112.Items.Add(toolTipTitleItem112);
     superToolTip112.Items.Add(toolTipItem112);
     this.setNarrowSectionPageMarginsItem1.SuperTip = superToolTip112;
     //
     // setModerateSectionPageMarginsItem1
     //
     this.setModerateSectionPageMarginsItem1.Caption = "Moderate\r\nTop:\t        1\"\tBottom:\t        1\"\r\nLeft:\t     0.75\"\tRight:\t\t     0.75\"" +
         "";
     this.setModerateSectionPageMarginsItem1.Enabled = false;
     this.setModerateSectionPageMarginsItem1.Glyph = ((System.Drawing.Image)(resources.GetObject("setModerateSectionPageMarginsItem1.Glyph")));
     this.setModerateSectionPageMarginsItem1.Id = 132;
     this.setModerateSectionPageMarginsItem1.LargeGlyph = ((System.Drawing.Image)(resources.GetObject("setModerateSectionPageMarginsItem1.LargeGlyph")));
     this.setModerateSectionPageMarginsItem1.Name = "setModerateSectionPageMarginsItem1";
     toolTipTitleItem113.Text = "Moderate\r\nTop:\t        1\"\tBottom:\t        1\"\r\nLeft:\t     0.75\"\tRight:\t\t     0.75\"" +
         "";
     toolTipItem113.Text = " ";
     superToolTip113.Items.Add(toolTipTitleItem113);
     superToolTip113.Items.Add(toolTipItem113);
     this.setModerateSectionPageMarginsItem1.SuperTip = superToolTip113;
     //
     // setWideSectionPageMarginsItem1
     //
     this.setWideSectionPageMarginsItem1.Caption = "Wide\r\nTop:\t        1\"\tBottom:\t        1\"\r\nLeft:\t        2\"\tRight:\t\t        2\"";
     this.setWideSectionPageMarginsItem1.Enabled = false;
     this.setWideSectionPageMarginsItem1.Glyph = ((System.Drawing.Image)(resources.GetObject("setWideSectionPageMarginsItem1.Glyph")));
     this.setWideSectionPageMarginsItem1.Id = 133;
     this.setWideSectionPageMarginsItem1.LargeGlyph = ((System.Drawing.Image)(resources.GetObject("setWideSectionPageMarginsItem1.LargeGlyph")));
     this.setWideSectionPageMarginsItem1.Name = "setWideSectionPageMarginsItem1";
     toolTipTitleItem114.Text = "Wide\r\nTop:\t        1\"\tBottom:\t        1\"\r\nLeft:\t        2\"\tRight:\t\t        2\"";
     toolTipItem114.Text = " ";
     superToolTip114.Items.Add(toolTipTitleItem114);
     superToolTip114.Items.Add(toolTipItem114);
     this.setWideSectionPageMarginsItem1.SuperTip = superToolTip114;
     //
     // changeSectionPageOrientationItem1
     //
     this.changeSectionPageOrientationItem1.Caption = "Orientation";
     this.changeSectionPageOrientationItem1.Enabled = false;
     this.changeSectionPageOrientationItem1.Glyph = ((System.Drawing.Image)(resources.GetObject("changeSectionPageOrientationItem1.Glyph")));
     this.changeSectionPageOrientationItem1.Id = 134;
     this.changeSectionPageOrientationItem1.LargeGlyph = ((System.Drawing.Image)(resources.GetObject("changeSectionPageOrientationItem1.LargeGlyph")));
     this.changeSectionPageOrientationItem1.LinksPersistInfo.AddRange(new DevExpress.XtraBars.LinkPersistInfo[] {
     new DevExpress.XtraBars.LinkPersistInfo(this.setPortraitPageOrientationItem1),
     new DevExpress.XtraBars.LinkPersistInfo(this.setLandscapePageOrientationItem1)});
     this.changeSectionPageOrientationItem1.Name = "changeSectionPageOrientationItem1";
     toolTipTitleItem118.Text = "Orientation";
     toolTipItem118.Text = "Switch the pages between portrait and landscape layouts.";
     superToolTip118.Items.Add(toolTipTitleItem118);
     superToolTip118.Items.Add(toolTipItem118);
     this.changeSectionPageOrientationItem1.SuperTip = superToolTip118;
     //
     // setPortraitPageOrientationItem1
     //
     this.setPortraitPageOrientationItem1.Caption = "Portrait";
     this.setPortraitPageOrientationItem1.Enabled = false;
     this.setPortraitPageOrientationItem1.Id = 135;
     this.setPortraitPageOrientationItem1.Name = "setPortraitPageOrientationItem1";
     toolTipTitleItem116.Text = "Portrait";
     toolTipItem116.Text = " ";
     superToolTip116.Items.Add(toolTipTitleItem116);
     superToolTip116.Items.Add(toolTipItem116);
     this.setPortraitPageOrientationItem1.SuperTip = superToolTip116;
     //
     // setLandscapePageOrientationItem1
     //
     this.setLandscapePageOrientationItem1.Caption = "Landscape";
     this.setLandscapePageOrientationItem1.Enabled = false;
     this.setLandscapePageOrientationItem1.Id = 136;
     this.setLandscapePageOrientationItem1.Name = "setLandscapePageOrientationItem1";
     toolTipTitleItem117.Text = "Landscape";
     toolTipItem117.Text = " ";
     superToolTip117.Items.Add(toolTipTitleItem117);
     superToolTip117.Items.Add(toolTipItem117);
     this.setLandscapePageOrientationItem1.SuperTip = superToolTip117;
     //
     // changeSectionPaperKindItem1
     //
     this.changeSectionPaperKindItem1.Caption = "Size";
     this.changeSectionPaperKindItem1.Enabled = false;
     this.changeSectionPaperKindItem1.Glyph = ((System.Drawing.Image)(resources.GetObject("changeSectionPaperKindItem1.Glyph")));
     this.changeSectionPaperKindItem1.Id = 137;
     this.changeSectionPaperKindItem1.LargeGlyph = ((System.Drawing.Image)(resources.GetObject("changeSectionPaperKindItem1.LargeGlyph")));
     this.changeSectionPaperKindItem1.Name = "changeSectionPaperKindItem1";
     toolTipTitleItem119.Text = "Size";
     toolTipItem119.Text = "Choose a paper size for the current section.";
     superToolTip119.Items.Add(toolTipTitleItem119);
     superToolTip119.Items.Add(toolTipItem119);
     this.changeSectionPaperKindItem1.SuperTip = superToolTip119;
     //
     // changeSectionColumnsItem1
     //
     this.changeSectionColumnsItem1.Caption = "Columns";
     this.changeSectionColumnsItem1.Enabled = false;
     this.changeSectionColumnsItem1.Glyph = ((System.Drawing.Image)(resources.GetObject("changeSectionColumnsItem1.Glyph")));
     this.changeSectionColumnsItem1.Id = 138;
     this.changeSectionColumnsItem1.LargeGlyph = ((System.Drawing.Image)(resources.GetObject("changeSectionColumnsItem1.LargeGlyph")));
     this.changeSectionColumnsItem1.LinksPersistInfo.AddRange(new DevExpress.XtraBars.LinkPersistInfo[] {
     new DevExpress.XtraBars.LinkPersistInfo(this.setSectionOneColumnItem1),
     new DevExpress.XtraBars.LinkPersistInfo(this.setSectionTwoColumnsItem1),
     new DevExpress.XtraBars.LinkPersistInfo(this.setSectionThreeColumnsItem1),
     new DevExpress.XtraBars.LinkPersistInfo(this.showColumnsSetupFormItem1)});
     this.changeSectionColumnsItem1.Name = "changeSectionColumnsItem1";
     toolTipTitleItem124.Text = "Columns";
     toolTipItem124.Text = "Split text into two or more columns.";
     superToolTip124.Items.Add(toolTipTitleItem124);
     superToolTip124.Items.Add(toolTipItem124);
     this.changeSectionColumnsItem1.SuperTip = superToolTip124;
     //
     // setSectionOneColumnItem1
     //
     this.setSectionOneColumnItem1.Caption = "One";
     this.setSectionOneColumnItem1.Enabled = false;
     this.setSectionOneColumnItem1.Glyph = ((System.Drawing.Image)(resources.GetObject("setSectionOneColumnItem1.Glyph")));
     this.setSectionOneColumnItem1.Id = 139;
     this.setSectionOneColumnItem1.LargeGlyph = ((System.Drawing.Image)(resources.GetObject("setSectionOneColumnItem1.LargeGlyph")));
     this.setSectionOneColumnItem1.Name = "setSectionOneColumnItem1";
     toolTipTitleItem120.Text = "One";
     toolTipItem120.Text = "One column.";
     superToolTip120.Items.Add(toolTipTitleItem120);
     superToolTip120.Items.Add(toolTipItem120);
     this.setSectionOneColumnItem1.SuperTip = superToolTip120;
     //
     // setSectionTwoColumnsItem1
     //
     this.setSectionTwoColumnsItem1.Caption = "Two";
     this.setSectionTwoColumnsItem1.Enabled = false;
     this.setSectionTwoColumnsItem1.Glyph = ((System.Drawing.Image)(resources.GetObject("setSectionTwoColumnsItem1.Glyph")));
     this.setSectionTwoColumnsItem1.Id = 140;
     this.setSectionTwoColumnsItem1.LargeGlyph = ((System.Drawing.Image)(resources.GetObject("setSectionTwoColumnsItem1.LargeGlyph")));
     this.setSectionTwoColumnsItem1.Name = "setSectionTwoColumnsItem1";
     toolTipTitleItem121.Text = "Two";
     toolTipItem121.Text = "Two columns.";
     superToolTip121.Items.Add(toolTipTitleItem121);
     superToolTip121.Items.Add(toolTipItem121);
     this.setSectionTwoColumnsItem1.SuperTip = superToolTip121;
     //
     // setSectionThreeColumnsItem1
     //
     this.setSectionThreeColumnsItem1.Caption = "Three";
     this.setSectionThreeColumnsItem1.Enabled = false;
     this.setSectionThreeColumnsItem1.Glyph = ((System.Drawing.Image)(resources.GetObject("setSectionThreeColumnsItem1.Glyph")));
     this.setSectionThreeColumnsItem1.Id = 141;
     this.setSectionThreeColumnsItem1.LargeGlyph = ((System.Drawing.Image)(resources.GetObject("setSectionThreeColumnsItem1.LargeGlyph")));
     this.setSectionThreeColumnsItem1.Name = "setSectionThreeColumnsItem1";
     toolTipTitleItem122.Text = "Three";
     toolTipItem122.Text = "Three columns.";
     superToolTip122.Items.Add(toolTipTitleItem122);
     superToolTip122.Items.Add(toolTipItem122);
     this.setSectionThreeColumnsItem1.SuperTip = superToolTip122;
     //
     // showColumnsSetupFormItem1
     //
     this.showColumnsSetupFormItem1.Caption = "More Columns";
     this.showColumnsSetupFormItem1.Enabled = false;
     this.showColumnsSetupFormItem1.Glyph = ((System.Drawing.Image)(resources.GetObject("showColumnsSetupFormItem1.Glyph")));
     this.showColumnsSetupFormItem1.Id = 142;
     this.showColumnsSetupFormItem1.LargeGlyph = ((System.Drawing.Image)(resources.GetObject("showColumnsSetupFormItem1.LargeGlyph")));
     this.showColumnsSetupFormItem1.Name = "showColumnsSetupFormItem1";
     toolTipTitleItem123.Text = "More Columns";
     toolTipItem123.Text = "Show the Column dialog box to customize column widths.";
     superToolTip123.Items.Add(toolTipTitleItem123);
     superToolTip123.Items.Add(toolTipItem123);
     this.showColumnsSetupFormItem1.SuperTip = superToolTip123;
     //
     // insertBreakItem1
     //
     this.insertBreakItem1.Caption = "Breaks";
     this.insertBreakItem1.Enabled = false;
     this.insertBreakItem1.Glyph = ((System.Drawing.Image)(resources.GetObject("insertBreakItem1.Glyph")));
     this.insertBreakItem1.Id = 143;
     this.insertBreakItem1.LargeGlyph = ((System.Drawing.Image)(resources.GetObject("insertBreakItem1.LargeGlyph")));
     this.insertBreakItem1.LinksPersistInfo.AddRange(new DevExpress.XtraBars.LinkPersistInfo[] {
     new DevExpress.XtraBars.LinkPersistInfo(this.insertPageBreakItem2),
     new DevExpress.XtraBars.LinkPersistInfo(this.insertColumnBreakItem1),
     new DevExpress.XtraBars.LinkPersistInfo(this.insertSectionBreakNextPageItem1),
     new DevExpress.XtraBars.LinkPersistInfo(this.insertSectionBreakEvenPageItem1),
     new DevExpress.XtraBars.LinkPersistInfo(this.insertSectionBreakOddPageItem1)});
     this.insertBreakItem1.Name = "insertBreakItem1";
     toolTipTitleItem130.Text = "Breaks";
     toolTipItem130.Text = "Add page, section, or column breaks to the document.";
     superToolTip130.Items.Add(toolTipTitleItem130);
     superToolTip130.Items.Add(toolTipItem130);
     this.insertBreakItem1.SuperTip = superToolTip130;
     //
     // insertPageBreakItem2
     //
     this.insertPageBreakItem2.Caption = "Page";
     this.insertPageBreakItem2.Enabled = false;
     this.insertPageBreakItem2.Glyph = ((System.Drawing.Image)(resources.GetObject("insertPageBreakItem2.Glyph")));
     this.insertPageBreakItem2.Id = 144;
     this.insertPageBreakItem2.LargeGlyph = ((System.Drawing.Image)(resources.GetObject("insertPageBreakItem2.LargeGlyph")));
     this.insertPageBreakItem2.Name = "insertPageBreakItem2";
     toolTipTitleItem125.Text = "Page (Ctrl+Return)";
     toolTipItem125.Text = "Start the next page at the current position.";
     superToolTip125.Items.Add(toolTipTitleItem125);
     superToolTip125.Items.Add(toolTipItem125);
     this.insertPageBreakItem2.SuperTip = superToolTip125;
     //
     // insertColumnBreakItem1
     //
     this.insertColumnBreakItem1.Caption = "Column";
     this.insertColumnBreakItem1.Enabled = false;
     this.insertColumnBreakItem1.Glyph = ((System.Drawing.Image)(resources.GetObject("insertColumnBreakItem1.Glyph")));
     this.insertColumnBreakItem1.Id = 145;
     this.insertColumnBreakItem1.LargeGlyph = ((System.Drawing.Image)(resources.GetObject("insertColumnBreakItem1.LargeGlyph")));
     this.insertColumnBreakItem1.Name = "insertColumnBreakItem1";
     toolTipTitleItem126.Text = "Column (Ctrl+Shift+Return)";
     toolTipItem126.Text = "Indicate that the text following the column break will begin in the next column.";
     superToolTip126.Items.Add(toolTipTitleItem126);
     superToolTip126.Items.Add(toolTipItem126);
     this.insertColumnBreakItem1.SuperTip = superToolTip126;
     //
     // insertSectionBreakNextPageItem1
     //
     this.insertSectionBreakNextPageItem1.Caption = "Section (Next Page)";
     this.insertSectionBreakNextPageItem1.Enabled = false;
     this.insertSectionBreakNextPageItem1.Glyph = ((System.Drawing.Image)(resources.GetObject("insertSectionBreakNextPageItem1.Glyph")));
     this.insertSectionBreakNextPageItem1.Id = 146;
     this.insertSectionBreakNextPageItem1.LargeGlyph = ((System.Drawing.Image)(resources.GetObject("insertSectionBreakNextPageItem1.LargeGlyph")));
     this.insertSectionBreakNextPageItem1.Name = "insertSectionBreakNextPageItem1";
     toolTipTitleItem127.Text = "Section (Next Page)";
     toolTipItem127.Text = "Insert a section break and start the new section on the next page.";
     superToolTip127.Items.Add(toolTipTitleItem127);
     superToolTip127.Items.Add(toolTipItem127);
     this.insertSectionBreakNextPageItem1.SuperTip = superToolTip127;
     //
     // insertSectionBreakEvenPageItem1
     //
     this.insertSectionBreakEvenPageItem1.Caption = "Section (Even Page)";
     this.insertSectionBreakEvenPageItem1.Enabled = false;
     this.insertSectionBreakEvenPageItem1.Glyph = ((System.Drawing.Image)(resources.GetObject("insertSectionBreakEvenPageItem1.Glyph")));
     this.insertSectionBreakEvenPageItem1.Id = 147;
     this.insertSectionBreakEvenPageItem1.LargeGlyph = ((System.Drawing.Image)(resources.GetObject("insertSectionBreakEvenPageItem1.LargeGlyph")));
     this.insertSectionBreakEvenPageItem1.Name = "insertSectionBreakEvenPageItem1";
     toolTipTitleItem128.Text = "Section (Even Page)";
     toolTipItem128.Text = "Insert a section break and start the new section on the next even-numbered page.";
     superToolTip128.Items.Add(toolTipTitleItem128);
     superToolTip128.Items.Add(toolTipItem128);
     this.insertSectionBreakEvenPageItem1.SuperTip = superToolTip128;
     //
     // insertSectionBreakOddPageItem1
     //
     this.insertSectionBreakOddPageItem1.Caption = "Section (Odd Page)";
     this.insertSectionBreakOddPageItem1.Enabled = false;
     this.insertSectionBreakOddPageItem1.Glyph = ((System.Drawing.Image)(resources.GetObject("insertSectionBreakOddPageItem1.Glyph")));
     this.insertSectionBreakOddPageItem1.Id = 148;
     this.insertSectionBreakOddPageItem1.LargeGlyph = ((System.Drawing.Image)(resources.GetObject("insertSectionBreakOddPageItem1.LargeGlyph")));
     this.insertSectionBreakOddPageItem1.Name = "insertSectionBreakOddPageItem1";
     toolTipTitleItem129.Text = "Section (Odd Page)";
     toolTipItem129.Text = "Insert a section break and start the new section on the next odd-numbered page.";
     superToolTip129.Items.Add(toolTipTitleItem129);
     superToolTip129.Items.Add(toolTipItem129);
     this.insertSectionBreakOddPageItem1.SuperTip = superToolTip129;
     //
     // changeSectionLineNumberingItem1
     //
     this.changeSectionLineNumberingItem1.Caption = "Line Numbers";
     this.changeSectionLineNumberingItem1.Enabled = false;
     this.changeSectionLineNumberingItem1.Glyph = ((System.Drawing.Image)(resources.GetObject("changeSectionLineNumberingItem1.Glyph")));
     this.changeSectionLineNumberingItem1.Id = 149;
     this.changeSectionLineNumberingItem1.LargeGlyph = ((System.Drawing.Image)(resources.GetObject("changeSectionLineNumberingItem1.LargeGlyph")));
     this.changeSectionLineNumberingItem1.LinksPersistInfo.AddRange(new DevExpress.XtraBars.LinkPersistInfo[] {
     new DevExpress.XtraBars.LinkPersistInfo(this.setSectionLineNumberingNoneItem1),
     new DevExpress.XtraBars.LinkPersistInfo(this.setSectionLineNumberingContinuousItem1),
     new DevExpress.XtraBars.LinkPersistInfo(this.setSectionLineNumberingRestartNewPageItem1),
     new DevExpress.XtraBars.LinkPersistInfo(this.setSectionLineNumberingRestartNewSectionItem1),
     new DevExpress.XtraBars.LinkPersistInfo(this.toggleParagraphSuppressLineNumbersItem1),
     new DevExpress.XtraBars.LinkPersistInfo(this.showLineNumberingFormItem1)});
     this.changeSectionLineNumberingItem1.Name = "changeSectionLineNumberingItem1";
     toolTipTitleItem137.Text = "Line Numbers";
     toolTipItem137.Text = "Add line numbers in the margin alongside of each line of the document.";
     superToolTip137.Items.Add(toolTipTitleItem137);
     superToolTip137.Items.Add(toolTipItem137);
     this.changeSectionLineNumberingItem1.SuperTip = superToolTip137;
     //
     // setSectionLineNumberingNoneItem1
     //
     this.setSectionLineNumberingNoneItem1.Caption = "None";
     this.setSectionLineNumberingNoneItem1.Enabled = false;
     this.setSectionLineNumberingNoneItem1.Id = 150;
     this.setSectionLineNumberingNoneItem1.Name = "setSectionLineNumberingNoneItem1";
     toolTipTitleItem131.Text = "None";
     toolTipItem131.Text = "No line numbers.";
     superToolTip131.Items.Add(toolTipTitleItem131);
     superToolTip131.Items.Add(toolTipItem131);
     this.setSectionLineNumberingNoneItem1.SuperTip = superToolTip131;
     //
     // setSectionLineNumberingContinuousItem1
     //
     this.setSectionLineNumberingContinuousItem1.Caption = "Continuous";
     this.setSectionLineNumberingContinuousItem1.Enabled = false;
     this.setSectionLineNumberingContinuousItem1.Id = 151;
     this.setSectionLineNumberingContinuousItem1.Name = "setSectionLineNumberingContinuousItem1";
     toolTipTitleItem132.Text = "Continuous";
     toolTipItem132.Text = "Continuous";
     superToolTip132.Items.Add(toolTipTitleItem132);
     superToolTip132.Items.Add(toolTipItem132);
     this.setSectionLineNumberingContinuousItem1.SuperTip = superToolTip132;
     //
     // setSectionLineNumberingRestartNewPageItem1
     //
     this.setSectionLineNumberingRestartNewPageItem1.Caption = "Restart Each Page";
     this.setSectionLineNumberingRestartNewPageItem1.Enabled = false;
     this.setSectionLineNumberingRestartNewPageItem1.Id = 152;
     this.setSectionLineNumberingRestartNewPageItem1.Name = "setSectionLineNumberingRestartNewPageItem1";
     toolTipTitleItem133.Text = "Restart Each Page";
     toolTipItem133.Text = "Restart Each Page";
     superToolTip133.Items.Add(toolTipTitleItem133);
     superToolTip133.Items.Add(toolTipItem133);
     this.setSectionLineNumberingRestartNewPageItem1.SuperTip = superToolTip133;
     //
     // setSectionLineNumberingRestartNewSectionItem1
     //
     this.setSectionLineNumberingRestartNewSectionItem1.Caption = "Restart Each Section";
     this.setSectionLineNumberingRestartNewSectionItem1.Enabled = false;
     this.setSectionLineNumberingRestartNewSectionItem1.Id = 153;
     this.setSectionLineNumberingRestartNewSectionItem1.Name = "setSectionLineNumberingRestartNewSectionItem1";
     toolTipTitleItem134.Text = "Restart Each Section";
     toolTipItem134.Text = "Restart Each Section";
     superToolTip134.Items.Add(toolTipTitleItem134);
     superToolTip134.Items.Add(toolTipItem134);
     this.setSectionLineNumberingRestartNewSectionItem1.SuperTip = superToolTip134;
     //
     // toggleParagraphSuppressLineNumbersItem1
     //
     this.toggleParagraphSuppressLineNumbersItem1.Caption = "Suppress Line Numbers for Current Paragraph";
     this.toggleParagraphSuppressLineNumbersItem1.Enabled = false;
     this.toggleParagraphSuppressLineNumbersItem1.Id = 154;
     this.toggleParagraphSuppressLineNumbersItem1.Name = "toggleParagraphSuppressLineNumbersItem1";
     toolTipTitleItem135.Text = "Suppress Line Numbers for Current Paragraph";
     toolTipItem135.Text = "Suppress Line Numbers for Current Paragraph";
     superToolTip135.Items.Add(toolTipTitleItem135);
     superToolTip135.Items.Add(toolTipItem135);
     this.toggleParagraphSuppressLineNumbersItem1.SuperTip = superToolTip135;
     //
     // showLineNumberingFormItem1
     //
     this.showLineNumberingFormItem1.Caption = "Line Numbering Options";
     this.showLineNumberingFormItem1.Enabled = false;
     this.showLineNumberingFormItem1.Id = 155;
     this.showLineNumberingFormItem1.Name = "showLineNumberingFormItem1";
     toolTipTitleItem136.Text = "Line Numbering Options";
     toolTipItem136.Text = "Line Numbering Options";
     superToolTip136.Items.Add(toolTipTitleItem136);
     superToolTip136.Items.Add(toolTipItem136);
     this.showLineNumberingFormItem1.SuperTip = superToolTip136;
     //
     // checkSpellingItem1
     //
     this.checkSpellingItem1.Caption = "Spelling";
     this.checkSpellingItem1.Enabled = false;
     this.checkSpellingItem1.Glyph = ((System.Drawing.Image)(resources.GetObject("checkSpellingItem1.Glyph")));
     this.checkSpellingItem1.Id = 156;
     this.checkSpellingItem1.LargeGlyph = ((System.Drawing.Image)(resources.GetObject("checkSpellingItem1.LargeGlyph")));
     this.checkSpellingItem1.Name = "checkSpellingItem1";
     toolTipTitleItem138.Text = "Spelling";
     toolTipItem138.Text = "Check the spelling of text in the document.";
     superToolTip138.Items.Add(toolTipTitleItem138);
     superToolTip138.Items.Add(toolTipItem138);
     this.checkSpellingItem1.SuperTip = superToolTip138;
     //
     // protectDocumentItem1
     //
     this.protectDocumentItem1.Caption = "Protect Document";
     this.protectDocumentItem1.Enabled = false;
     this.protectDocumentItem1.Glyph = ((System.Drawing.Image)(resources.GetObject("protectDocumentItem1.Glyph")));
     this.protectDocumentItem1.Id = 157;
     this.protectDocumentItem1.LargeGlyph = ((System.Drawing.Image)(resources.GetObject("protectDocumentItem1.LargeGlyph")));
     this.protectDocumentItem1.Name = "protectDocumentItem1";
     toolTipTitleItem139.Text = "Protect Document";
     toolTipItem139.Text = "Help restrict people from editing the document by specifying a password.";
     superToolTip139.Items.Add(toolTipTitleItem139);
     superToolTip139.Items.Add(toolTipItem139);
     this.protectDocumentItem1.SuperTip = superToolTip139;
     //
     // changeRangeEditingPermissionsItem1
     //
     this.changeRangeEditingPermissionsItem1.Caption = "Range Editing Permissions";
     this.changeRangeEditingPermissionsItem1.Enabled = false;
     this.changeRangeEditingPermissionsItem1.Glyph = ((System.Drawing.Image)(resources.GetObject("changeRangeEditingPermissionsItem1.Glyph")));
     this.changeRangeEditingPermissionsItem1.Id = 158;
     this.changeRangeEditingPermissionsItem1.LargeGlyph = ((System.Drawing.Image)(resources.GetObject("changeRangeEditingPermissionsItem1.LargeGlyph")));
     this.changeRangeEditingPermissionsItem1.Name = "changeRangeEditingPermissionsItem1";
     toolTipTitleItem140.Text = "Range Editing Permissions";
     toolTipItem140.Text = "Range Editing Permissions";
     superToolTip140.Items.Add(toolTipTitleItem140);
     superToolTip140.Items.Add(toolTipItem140);
     this.changeRangeEditingPermissionsItem1.SuperTip = superToolTip140;
     //
     // unprotectDocumentItem1
     //
     this.unprotectDocumentItem1.Caption = "Unprotect Document";
     this.unprotectDocumentItem1.Enabled = false;
     this.unprotectDocumentItem1.Glyph = ((System.Drawing.Image)(resources.GetObject("unprotectDocumentItem1.Glyph")));
     this.unprotectDocumentItem1.Id = 159;
     this.unprotectDocumentItem1.LargeGlyph = ((System.Drawing.Image)(resources.GetObject("unprotectDocumentItem1.LargeGlyph")));
     this.unprotectDocumentItem1.Name = "unprotectDocumentItem1";
     toolTipTitleItem141.Text = "Unprotect Document";
     toolTipItem141.Text = "Unprotect Document";
     superToolTip141.Items.Add(toolTipTitleItem141);
     superToolTip141.Items.Add(toolTipItem141);
     this.unprotectDocumentItem1.SuperTip = superToolTip141;
     //
     // barStaticItem1
     //
     this.barStaticItem1.Caption = "テンプレート";
     this.barStaticItem1.Id = 123;
     this.barStaticItem1.Name = "barStaticItem1";
     this.barStaticItem1.TextAlignment = System.Drawing.StringAlignment.Near;
     //
     // cboTemplate
     //
     this.cboTemplate.Caption = "cbo1";
     this.cboTemplate.Edit = this.repositoryItemComboBox1;
     this.cboTemplate.Id = 124;
     this.cboTemplate.Name = "cboTemplate";
     //
     // 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";
     //
     // barStaticItem2
     //
     this.barStaticItem2.Caption = "表示";
     this.barStaticItem2.Id = 126;
     this.barStaticItem2.Name = "barStaticItem2";
     this.barStaticItem2.TextAlignment = System.Drawing.StringAlignment.Near;
     //
     // barEditItem1
     //
     this.barEditItem1.Caption = "hs";
     this.barEditItem1.Edit = this.repositoryItemPictureEdit2;
     this.barEditItem1.Id = 161;
     this.barEditItem1.Name = "barEditItem1";
     //
     // repositoryItemPictureEdit2
     //
     this.repositoryItemPictureEdit2.Name = "repositoryItemPictureEdit2";
     //
     // barButtonItem1
     //
     this.barButtonItem1.Caption = "Img";
     this.barButtonItem1.Id = 189;
     this.barButtonItem1.Name = "barButtonItem1";
     //
     // repositoryItemRichEditStyleEdit1
     //
     this.repositoryItemRichEditStyleEdit1.AutoHeight = false;
     this.repositoryItemRichEditStyleEdit1.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.repositoryItemRichEditStyleEdit1.Control = null;
     this.repositoryItemRichEditStyleEdit1.Name = "repositoryItemRichEditStyleEdit1";
     //
     // repositoryItemPictureEdit1
     //
     this.repositoryItemPictureEdit1.Name = "repositoryItemPictureEdit1";
     //
     // repositoryItemTextEdit1
     //
     this.repositoryItemTextEdit1.AutoHeight = false;
     this.repositoryItemTextEdit1.Name = "repositoryItemTextEdit1";
     //
     // repositoryItemRichEditStyleEdit2
     //
     this.repositoryItemRichEditStyleEdit2.AutoHeight = false;
     this.repositoryItemRichEditStyleEdit2.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.repositoryItemRichEditStyleEdit2.Control = null;
     this.repositoryItemRichEditStyleEdit2.Name = "repositoryItemRichEditStyleEdit2";
     //
     // 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";
     //
     // 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";
     //
     // repositoryItemRichEditStyleEdit3
     //
     this.repositoryItemRichEditStyleEdit3.AutoHeight = false;
     this.repositoryItemRichEditStyleEdit3.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.repositoryItemRichEditStyleEdit3.Control = null;
     this.repositoryItemRichEditStyleEdit3.Name = "repositoryItemRichEditStyleEdit3";
     //
     // richEditBarController1
     //
     this.richEditBarController1.BarItems.Add(this.cutItem1);
     this.richEditBarController1.BarItems.Add(this.copyItem1);
     this.richEditBarController1.BarItems.Add(this.pasteItem1);
     this.richEditBarController1.BarItems.Add(this.pasteSpecialItem1);
     this.richEditBarController1.BarItems.Add(this.changeFontNameItem1);
     this.richEditBarController1.BarItems.Add(this.changeFontSizeItem1);
     this.richEditBarController1.BarItems.Add(this.changeFontColorItem1);
     this.richEditBarController1.BarItems.Add(this.changeFontBackColorItem1);
     this.richEditBarController1.BarItems.Add(this.toggleFontBoldItem1);
     this.richEditBarController1.BarItems.Add(this.toggleFontItalicItem1);
     this.richEditBarController1.BarItems.Add(this.toggleFontUnderlineItem1);
     this.richEditBarController1.BarItems.Add(this.toggleFontDoubleUnderlineItem1);
     this.richEditBarController1.BarItems.Add(this.toggleFontStrikeoutItem1);
     this.richEditBarController1.BarItems.Add(this.toggleFontDoubleStrikeoutItem1);
     this.richEditBarController1.BarItems.Add(this.toggleFontSubscriptItem1);
     this.richEditBarController1.BarItems.Add(this.changeTextCaseItem1);
     this.richEditBarController1.BarItems.Add(this.makeTextUpperCaseItem1);
     this.richEditBarController1.BarItems.Add(this.makeTextLowerCaseItem1);
     this.richEditBarController1.BarItems.Add(this.toggleTextCaseItem1);
     this.richEditBarController1.BarItems.Add(this.fontSizeIncreaseItem1);
     this.richEditBarController1.BarItems.Add(this.fontSizeDecreaseItem1);
     this.richEditBarController1.BarItems.Add(this.clearFormattingItem1);
     this.richEditBarController1.BarItems.Add(this.showFontFormItem1);
     this.richEditBarController1.BarItems.Add(this.toggleParagraphAlignmentLeftItem1);
     this.richEditBarController1.BarItems.Add(this.toggleParagraphAlignmentCenterItem1);
     this.richEditBarController1.BarItems.Add(this.toggleParagraphAlignmentRightItem1);
     this.richEditBarController1.BarItems.Add(this.toggleParagraphAlignmentJustifyItem1);
     this.richEditBarController1.BarItems.Add(this.changeParagraphLineSpacingItem1);
     this.richEditBarController1.BarItems.Add(this.setSingleParagraphSpacingItem1);
     this.richEditBarController1.BarItems.Add(this.setSesquialteralParagraphSpacingItem1);
     this.richEditBarController1.BarItems.Add(this.setDoubleParagraphSpacingItem1);
     this.richEditBarController1.BarItems.Add(this.showLineSpacingFormItem1);
     this.richEditBarController1.BarItems.Add(this.addSpacingBeforeParagraphItem1);
     this.richEditBarController1.BarItems.Add(this.removeSpacingBeforeParagraphItem1);
     this.richEditBarController1.BarItems.Add(this.addSpacingAfterParagraphItem1);
     this.richEditBarController1.BarItems.Add(this.removeSpacingAfterParagraphItem1);
     this.richEditBarController1.BarItems.Add(this.toggleNumberingListItem1);
     this.richEditBarController1.BarItems.Add(this.toggleMultiLevelListItem1);
     this.richEditBarController1.BarItems.Add(this.decreaseIndentItem1);
     this.richEditBarController1.BarItems.Add(this.increaseIndentItem1);
     this.richEditBarController1.BarItems.Add(this.toggleShowWhitespaceItem1);
     this.richEditBarController1.BarItems.Add(this.showParagraphFormItem1);
     this.richEditBarController1.BarItems.Add(this.findItem1);
     this.richEditBarController1.BarItems.Add(this.replaceItem1);
     this.richEditBarController1.BarItems.Add(this.changeTableCellsShadingItem1);
     this.richEditBarController1.BarItems.Add(this.changeTableBordersItem1);
     this.richEditBarController1.BarItems.Add(this.toggleTableCellsBottomBorderItem1);
     this.richEditBarController1.BarItems.Add(this.toggleTableCellsTopBorderItem1);
     this.richEditBarController1.BarItems.Add(this.toggleTableCellsLeftBorderItem1);
     this.richEditBarController1.BarItems.Add(this.toggleTableCellsRightBorderItem1);
     this.richEditBarController1.BarItems.Add(this.resetTableCellsAllBordersItem1);
     this.richEditBarController1.BarItems.Add(this.toggleTableCellsAllBordersItem1);
     this.richEditBarController1.BarItems.Add(this.toggleTableCellsOutsideBorderItem1);
     this.richEditBarController1.BarItems.Add(this.toggleTableCellsInsideBorderItem1);
     this.richEditBarController1.BarItems.Add(this.toggleTableCellsInsideHorizontalBorderItem1);
     this.richEditBarController1.BarItems.Add(this.toggleTableCellsInsideVerticalBorderItem1);
     this.richEditBarController1.BarItems.Add(this.toggleShowTableGridLinesItem1);
     this.richEditBarController1.BarItems.Add(this.changeTableBorderLineStyleItem1);
     this.richEditBarController1.BarItems.Add(this.changeTableBorderLineWeightItem1);
     this.richEditBarController1.BarItems.Add(this.changeTableBorderColorItem1);
     this.richEditBarController1.BarItems.Add(this.selectTableElementsItem1);
     this.richEditBarController1.BarItems.Add(this.selectTableCellItem1);
     this.richEditBarController1.BarItems.Add(this.selectTableColumnItem1);
     this.richEditBarController1.BarItems.Add(this.selectTableRowItem1);
     this.richEditBarController1.BarItems.Add(this.selectTableItem1);
     this.richEditBarController1.BarItems.Add(this.showTablePropertiesFormItem1);
     this.richEditBarController1.BarItems.Add(this.deleteTableElementsItem1);
     this.richEditBarController1.BarItems.Add(this.showDeleteTableCellsFormItem1);
     this.richEditBarController1.BarItems.Add(this.deleteTableColumnsItem1);
     this.richEditBarController1.BarItems.Add(this.deleteTableRowsItem1);
     this.richEditBarController1.BarItems.Add(this.deleteTableItem1);
     this.richEditBarController1.BarItems.Add(this.insertTableRowAboveItem1);
     this.richEditBarController1.BarItems.Add(this.insertTableRowBelowItem1);
     this.richEditBarController1.BarItems.Add(this.insertTableColumnToLeftItem1);
     this.richEditBarController1.BarItems.Add(this.insertTableColumnToRightItem1);
     this.richEditBarController1.BarItems.Add(this.showInsertTableCellsFormItem1);
     this.richEditBarController1.BarItems.Add(this.mergeTableCellsItem1);
     this.richEditBarController1.BarItems.Add(this.showSplitTableCellsForm1);
     this.richEditBarController1.BarItems.Add(this.splitTableItem1);
     this.richEditBarController1.BarItems.Add(this.toggleTableAutoFitItem1);
     this.richEditBarController1.BarItems.Add(this.toggleTableAutoFitContentsItem1);
     this.richEditBarController1.BarItems.Add(this.toggleTableAutoFitWindowItem1);
     this.richEditBarController1.BarItems.Add(this.toggleTableFixedColumnWidthItem1);
     this.richEditBarController1.BarItems.Add(this.toggleTableCellsTopLeftAlignmentItem1);
     this.richEditBarController1.BarItems.Add(this.toggleTableCellsTopCenterAlignmentItem1);
     this.richEditBarController1.BarItems.Add(this.toggleTableCellsTopRightAlignmentItem1);
     this.richEditBarController1.BarItems.Add(this.toggleTableCellsMiddleLeftAlignmentItem1);
     this.richEditBarController1.BarItems.Add(this.toggleTableCellsMiddleCenterAlignmentItem1);
     this.richEditBarController1.BarItems.Add(this.toggleTableCellsMiddleRightAlignmentItem1);
     this.richEditBarController1.BarItems.Add(this.toggleTableCellsBottomLeftAlignmentItem1);
     this.richEditBarController1.BarItems.Add(this.toggleTableCellsBottomCenterAlignmentItem1);
     this.richEditBarController1.BarItems.Add(this.toggleTableCellsBottomRightAlignmentItem1);
     this.richEditBarController1.BarItems.Add(this.switchToSimpleViewItem1);
     this.richEditBarController1.BarItems.Add(this.switchToDraftViewItem1);
     this.richEditBarController1.BarItems.Add(this.switchToPrintLayoutViewItem1);
     this.richEditBarController1.BarItems.Add(this.toggleShowHorizontalRulerItem1);
     this.richEditBarController1.BarItems.Add(this.toggleShowVerticalRulerItem1);
     this.richEditBarController1.BarItems.Add(this.zoomOutItem1);
     this.richEditBarController1.BarItems.Add(this.zoomInItem1);
     this.richEditBarController1.BarItems.Add(this.toggleBulletedListItem1);
     this.richEditBarController1.BarItems.Add(this.insertPageBreakItem1);
     this.richEditBarController1.BarItems.Add(this.insertTableItem1);
     this.richEditBarController1.BarItems.Add(this.insertPictureItem1);
     this.richEditBarController1.BarItems.Add(this.insertBookmarkItem1);
     this.richEditBarController1.BarItems.Add(this.insertHyperlinkItem1);
     this.richEditBarController1.BarItems.Add(this.editPageHeaderItem1);
     this.richEditBarController1.BarItems.Add(this.editPageFooterItem1);
     this.richEditBarController1.BarItems.Add(this.insertPageNumberItem1);
     this.richEditBarController1.BarItems.Add(this.insertPageCountItem1);
     this.richEditBarController1.BarItems.Add(this.insertSymbolItem1);
     this.richEditBarController1.BarItems.Add(this.changeSectionPageMarginsItem1);
     this.richEditBarController1.BarItems.Add(this.setNormalSectionPageMarginsItem1);
     this.richEditBarController1.BarItems.Add(this.setNarrowSectionPageMarginsItem1);
     this.richEditBarController1.BarItems.Add(this.setModerateSectionPageMarginsItem1);
     this.richEditBarController1.BarItems.Add(this.setWideSectionPageMarginsItem1);
     this.richEditBarController1.BarItems.Add(this.changeSectionPageOrientationItem1);
     this.richEditBarController1.BarItems.Add(this.setPortraitPageOrientationItem1);
     this.richEditBarController1.BarItems.Add(this.setLandscapePageOrientationItem1);
     this.richEditBarController1.BarItems.Add(this.changeSectionPaperKindItem1);
     this.richEditBarController1.BarItems.Add(this.changeSectionColumnsItem1);
     this.richEditBarController1.BarItems.Add(this.setSectionOneColumnItem1);
     this.richEditBarController1.BarItems.Add(this.setSectionTwoColumnsItem1);
     this.richEditBarController1.BarItems.Add(this.setSectionThreeColumnsItem1);
     this.richEditBarController1.BarItems.Add(this.showColumnsSetupFormItem1);
     this.richEditBarController1.BarItems.Add(this.insertBreakItem1);
     this.richEditBarController1.BarItems.Add(this.insertPageBreakItem2);
     this.richEditBarController1.BarItems.Add(this.insertColumnBreakItem1);
     this.richEditBarController1.BarItems.Add(this.insertSectionBreakNextPageItem1);
     this.richEditBarController1.BarItems.Add(this.insertSectionBreakEvenPageItem1);
     this.richEditBarController1.BarItems.Add(this.insertSectionBreakOddPageItem1);
     this.richEditBarController1.BarItems.Add(this.changeSectionLineNumberingItem1);
     this.richEditBarController1.BarItems.Add(this.setSectionLineNumberingNoneItem1);
     this.richEditBarController1.BarItems.Add(this.setSectionLineNumberingContinuousItem1);
     this.richEditBarController1.BarItems.Add(this.setSectionLineNumberingRestartNewPageItem1);
     this.richEditBarController1.BarItems.Add(this.setSectionLineNumberingRestartNewSectionItem1);
     this.richEditBarController1.BarItems.Add(this.toggleParagraphSuppressLineNumbersItem1);
     this.richEditBarController1.BarItems.Add(this.showLineNumberingFormItem1);
     this.richEditBarController1.BarItems.Add(this.checkSpellingItem1);
     this.richEditBarController1.BarItems.Add(this.protectDocumentItem1);
     this.richEditBarController1.BarItems.Add(this.changeRangeEditingPermissionsItem1);
     this.richEditBarController1.BarItems.Add(this.unprotectDocumentItem1);
     //
     // stylesBar2
     //
     this.stylesBar2.BarName = "";
     this.stylesBar2.DockCol = 0;
     this.stylesBar2.DockRow = 5;
     this.stylesBar2.DockStyle = DevExpress.XtraBars.BarDockStyle.Top;
     this.stylesBar2.LinksPersistInfo.AddRange(new DevExpress.XtraBars.LinkPersistInfo[] {
     new DevExpress.XtraBars.LinkPersistInfo(this.barStaticItem1),
     new DevExpress.XtraBars.LinkPersistInfo(this.cboTemplate)});
     this.stylesBar2.Text = "";
     //
     // grdContent
     //
     this.grdContent.Dock = System.Windows.Forms.DockStyle.Fill;
     this.grdContent.EmbeddedNavigator.Appearance.Options.UseBorderColor = true;
     this.grdContent.Location = new System.Drawing.Point(0, 29);
     this.grdContent.MainView = this.gridView1;
     this.grdContent.Name = "grdContent";
     this.grdContent.RepositoryItems.AddRange(new DevExpress.XtraEditors.Repository.RepositoryItem[] {
     this.repositoryItemRichTextEdit1,
     this.repositoryItemMemoEdit1,
     this.repositoryItemComboBox3,
     this.repositoryItemGridLookUpEdit1,
     this.repositoryItemRichTextEdit2,
     this.repositoryItemRichTextEdit3,
     this.repositoryItemTextEdit2,
     this.repositoryItemTextEdit3,
     this.repositoryItemPictureEdit3,
     this.repositoryItemLookUpEdit1,
     this.repositoryItemMemoEdit2});
     this.grdContent.ShowOnlyPredefinedDetails = true;
     this.grdContent.Size = new System.Drawing.Size(728, 462);
     this.grdContent.TabIndex = 5;
     this.grdContent.ViewCollection.AddRange(new DevExpress.XtraGrid.Views.Base.BaseView[] {
     this.gridView1});
     this.grdContent.KeyDown += new System.Windows.Forms.KeyEventHandler(this.grdContent_KeyDown);
     //
     // gridView1
     //
     this.gridView1.BorderStyle = DevExpress.XtraEditors.Controls.BorderStyles.NoBorder;
     this.gridView1.Columns.AddRange(new DevExpress.XtraGrid.Columns.GridColumn[] {
     this.colTagCode,
     this.colTagName,
     this.colNotes,
     this.CreateDate,
     this.colType});
     this.gridView1.GridControl = this.grdContent;
     this.gridView1.Name = "gridView1";
     this.gridView1.OptionsView.RowAutoHeight = true;
     this.gridView1.OptionsView.ShowColumnHeaders = false;
     this.gridView1.OptionsView.ShowGroupPanel = false;
     this.gridView1.OptionsView.ShowIndicator = false;
     this.gridView1.SelectionChanged += new DevExpress.Data.SelectionChangedEventHandler(this.gridView1_SelectionChanged);
     this.gridView1.CellValueChanged += new DevExpress.XtraGrid.Views.Base.CellValueChangedEventHandler(this.gridView1_CellValueChanged);
     this.gridView1.CellValueChanging += new DevExpress.XtraGrid.Views.Base.CellValueChangedEventHandler(this.gridView1_CellValueChanging);
     this.gridView1.CustomRowCellEdit += new DevExpress.XtraGrid.Views.Grid.CustomRowCellEditEventHandler(this.gridView1_CustomRowCellEdit);
     this.gridView1.ColumnChanged += new System.EventHandler(this.gridView1_ColumnChanged);
     //
     // colTagCode
     //
     this.colTagCode.Caption = "Tag code";
     this.colTagCode.ColumnEdit = this.repositoryItemLookUpEdit1;
     this.colTagCode.FieldName = "TagCode";
     this.colTagCode.Name = "colTagCode";
     this.colTagCode.OptionsColumn.AllowSize = false;
     this.colTagCode.OptionsColumn.FixedWidth = true;
     this.colTagCode.Visible = true;
     this.colTagCode.VisibleIndex = 0;
     this.colTagCode.Width = 74;
     //
     // 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";
     //
     // colTagName
     //
     this.colTagName.Caption = "Tag Name";
     this.colTagName.FieldName = "TagName";
     this.colTagName.Name = "colTagName";
     this.colTagName.OptionsColumn.AllowEdit = false;
     this.colTagName.OptionsColumn.AllowSize = false;
     this.colTagName.OptionsColumn.FixedWidth = true;
     this.colTagName.OptionsColumn.ReadOnly = true;
     this.colTagName.Visible = true;
     this.colTagName.VisibleIndex = 1;
     this.colTagName.Width = 74;
     //
     // colNotes
     //
     this.colNotes.AppearanceHeader.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(204)));
     this.colNotes.AppearanceHeader.Options.UseFont = true;
     this.colNotes.Caption = "Content";
     this.colNotes.ColumnEdit = this.repositoryItemMemoEdit2;
     this.colNotes.FieldName = "Content";
     this.colNotes.Name = "colNotes";
     this.colNotes.OptionsColumn.AllowGroup = DevExpress.Utils.DefaultBoolean.False;
     this.colNotes.OptionsColumn.AllowSort = DevExpress.Utils.DefaultBoolean.False;
     this.colNotes.OptionsFilter.AllowFilter = false;
     this.colNotes.Visible = true;
     this.colNotes.VisibleIndex = 2;
     this.colNotes.Width = 290;
     //
     // repositoryItemMemoEdit2
     //
     this.repositoryItemMemoEdit2.Name = "repositoryItemMemoEdit2";
     //
     // repositoryItemPictureEdit3
     //
     this.repositoryItemPictureEdit3.Name = "repositoryItemPictureEdit3";
     //
     // CreateDate
     //
     this.CreateDate.Caption = "CreateDate";
     this.CreateDate.FieldName = "CreateDate";
     this.CreateDate.Name = "CreateDate";
     //
     // colType
     //
     this.colType.Caption = "Product Type";
     this.colType.ColumnEdit = this.repositoryItemMemoEdit1;
     this.colType.FieldName = "Type";
     this.colType.Name = "colType";
     this.colType.Width = 97;
     //
     // repositoryItemMemoEdit1
     //
     this.repositoryItemMemoEdit1.Name = "repositoryItemMemoEdit1";
     //
     // repositoryItemRichTextEdit1
     //
     this.repositoryItemRichTextEdit1.Name = "repositoryItemRichTextEdit1";
     this.repositoryItemRichTextEdit1.ShowCaretInReadOnly = false;
     //
     // 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";
     //
     // repositoryItemGridLookUpEdit1
     //
     this.repositoryItemGridLookUpEdit1.AutoHeight = false;
     this.repositoryItemGridLookUpEdit1.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.repositoryItemGridLookUpEdit1.Name = "repositoryItemGridLookUpEdit1";
     this.repositoryItemGridLookUpEdit1.View = this.repositoryItemGridLookUpEdit1View;
     //
     // repositoryItemGridLookUpEdit1View
     //
     this.repositoryItemGridLookUpEdit1View.FocusRectStyle = DevExpress.XtraGrid.Views.Grid.DrawFocusRectStyle.RowFocus;
     this.repositoryItemGridLookUpEdit1View.Name = "repositoryItemGridLookUpEdit1View";
     this.repositoryItemGridLookUpEdit1View.OptionsSelection.EnableAppearanceFocusedCell = false;
     this.repositoryItemGridLookUpEdit1View.OptionsView.ShowGroupPanel = false;
     //
     // repositoryItemRichTextEdit2
     //
     this.repositoryItemRichTextEdit2.Name = "repositoryItemRichTextEdit2";
     this.repositoryItemRichTextEdit2.ShowCaretInReadOnly = false;
     //
     // repositoryItemRichTextEdit3
     //
     this.repositoryItemRichTextEdit3.Name = "repositoryItemRichTextEdit3";
     this.repositoryItemRichTextEdit3.ShowCaretInReadOnly = false;
     //
     // repositoryItemTextEdit2
     //
     this.repositoryItemTextEdit2.AutoHeight = false;
     this.repositoryItemTextEdit2.Name = "repositoryItemTextEdit2";
     //
     // repositoryItemTextEdit3
     //
     this.repositoryItemTextEdit3.AutoHeight = false;
     this.repositoryItemTextEdit3.Name = "repositoryItemTextEdit3";
     //
     // cboTempl1
     //
     this.cboTempl1.FormattingEnabled = true;
     this.cboTempl1.Location = new System.Drawing.Point(65, 4);
     this.cboTempl1.Name = "cboTempl1";
     this.cboTempl1.Size = new System.Drawing.Size(90, 21);
     this.cboTempl1.TabIndex = 10;
     this.cboTempl1.SelectedIndexChanged += new System.EventHandler(this.cboTempl1_SelectedIndexChanged);
     //
     // cboDisplay
     //
     this.cboDisplay.FormattingEnabled = true;
     this.cboDisplay.Location = new System.Drawing.Point(240, 4);
     this.cboDisplay.Name = "cboDisplay";
     this.cboDisplay.Size = new System.Drawing.Size(90, 21);
     this.cboDisplay.TabIndex = 11;
     this.cboDisplay.SelectedIndexChanged += new System.EventHandler(this.cboDisplay_SelectedIndexChanged);
     //
     // labelControl1
     //
     this.labelControl1.Location = new System.Drawing.Point(5, 9);
     this.labelControl1.Name = "labelControl1";
     this.labelControl1.Size = new System.Drawing.Size(54, 13);
     this.labelControl1.TabIndex = 16;
     this.labelControl1.Text = "テンプレート";
     //
     // insertBookmark
     //
     this.insertBookmark.Location = new System.Drawing.Point(210, 9);
     this.insertBookmark.Name = "insertBookmark";
     this.insertBookmark.Size = new System.Drawing.Size(24, 13);
     this.insertBookmark.TabIndex = 17;
     this.insertBookmark.Text = "表示";
     //
     // fileSaveItem2
     //
     this.fileSaveItem2.Caption = "Save";
     this.fileSaveItem2.Enabled = false;
     this.fileSaveItem2.Glyph = ((System.Drawing.Image)(resources.GetObject("fileSaveItem2.Glyph")));
     this.fileSaveItem2.Id = 105;
     this.fileSaveItem2.LargeGlyph = ((System.Drawing.Image)(resources.GetObject("fileSaveItem2.LargeGlyph")));
     this.fileSaveItem2.Name = "fileSaveItem2";
     toolTipTitleItem142.Text = "Save (Ctrl+S)";
     toolTipItem142.Text = "Save";
     superToolTip142.Items.Add(toolTipTitleItem142);
     superToolTip142.Items.Add(toolTipItem142);
     this.fileSaveItem2.SuperTip = superToolTip142;
     //
     // commonBar2
     //
     this.commonBar2.BarName = "";
     this.commonBar2.DockCol = 0;
     this.commonBar2.DockRow = 0;
     this.commonBar2.DockStyle = DevExpress.XtraBars.BarDockStyle.Standalone;
     this.commonBar2.FloatLocation = new System.Drawing.Point(323, 168);
     this.commonBar2.LinksPersistInfo.AddRange(new DevExpress.XtraBars.LinkPersistInfo[] {
     new DevExpress.XtraBars.LinkPersistInfo(this.cboTemplate)});
     this.commonBar2.OptionsBar.AllowQuickCustomization = false;
     this.commonBar2.Text = "";
     //
     // commonBar3
     //
     this.commonBar3.BarName = "";
     this.commonBar3.DockCol = 0;
     this.commonBar3.DockRow = 0;
     this.commonBar3.DockStyle = DevExpress.XtraBars.BarDockStyle.Standalone;
     this.commonBar3.FloatLocation = new System.Drawing.Point(323, 168);
     this.commonBar3.LinksPersistInfo.AddRange(new DevExpress.XtraBars.LinkPersistInfo[] {
     new DevExpress.XtraBars.LinkPersistInfo(this.cboTemplate)});
     this.commonBar3.OptionsBar.AllowQuickCustomization = false;
     this.commonBar3.Text = "";
     //
     // commonBar4
     //
     this.commonBar4.BarName = "";
     this.commonBar4.DockCol = 0;
     this.commonBar4.DockRow = 0;
     this.commonBar4.DockStyle = DevExpress.XtraBars.BarDockStyle.Standalone;
     this.commonBar4.FloatLocation = new System.Drawing.Point(323, 168);
     this.commonBar4.LinksPersistInfo.AddRange(new DevExpress.XtraBars.LinkPersistInfo[] {
     new DevExpress.XtraBars.LinkPersistInfo(this.cboTemplate)});
     this.commonBar4.OptionsBar.AllowQuickCustomization = false;
     this.commonBar4.Text = "";
     //
     // imageList1
     //
     this.imageList1.ImageStream = ((System.Windows.Forms.ImageListStreamer)(resources.GetObject("imageList1.ImageStream")));
     this.imageList1.TransparentColor = System.Drawing.Color.Transparent;
     this.imageList1.Images.SetKeyName(0, "edit_16x16.png");
     this.imageList1.Images.SetKeyName(1, "edit_box_24x24.png");
     this.imageList1.Images.SetKeyName(2, "insert-bookmark_16x16.png");
     this.imageList1.Images.SetKeyName(3, "insert-bookmark_box_24x24.png");
     this.imageList1.Images.SetKeyName(4, "insert-image_16x16.png");
     this.imageList1.Images.SetKeyName(5, "insert-image_box_24x24.png");
     this.imageList1.Images.SetKeyName(6, "insert-pdf_16x16.png");
     this.imageList1.Images.SetKeyName(7, "insert-pdf_box_24x24.png");
     this.imageList1.Images.SetKeyName(8, "log_box_24x24.png");
     this.imageList1.Images.SetKeyName(9, "log-history_16x16.png");
     this.imageList1.Images.SetKeyName(10, "print_box_24x24.png");
     this.imageList1.Images.SetKeyName(11, "printer_16x16.png");
     this.imageList1.Images.SetKeyName(12, "refesh_16x16.png");
     this.imageList1.Images.SetKeyName(13, "refesh_box_24x24.png");
     //
     // imageCollection1
     //
     this.imageCollection1.ImageStream = ((DevExpress.Utils.ImageCollectionStreamer)(resources.GetObject("imageCollection1.ImageStream")));
     this.imageCollection1.Images.SetKeyName(0, "file_unlock.png");
     this.imageCollection1.Images.SetKeyName(1, "bar_chart_add.png");
     this.imageCollection1.Images.SetKeyName(2, "chart_remove.png");
     //
     // dateEdit
     //
     this.dateEdit.EditValue = null;
     this.dateEdit.Location = new System.Drawing.Point(580, 3);
     this.dateEdit.MenuManager = this.barManager1;
     this.dateEdit.Name = "dateEdit";
     this.dateEdit.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.dateEdit.Properties.VistaTimeProperties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton()});
     this.dateEdit.Size = new System.Drawing.Size(94, 20);
     this.dateEdit.TabIndex = 22;
     this.dateEdit.EditValueChanged += new System.EventHandler(this.dateEdit_EditValueChanged);
     //
     // Editor
     //
     this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
     this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
     this.Controls.Add(this.dateEdit);
     this.Controls.Add(this.insertBookmark);
     this.Controls.Add(this.labelControl1);
     this.Controls.Add(this.cboDisplay);
     this.Controls.Add(this.cboTempl1);
     this.Controls.Add(this.grdContent);
     this.Controls.Add(this.barDockControlLeft);
     this.Controls.Add(this.barDockControlRight);
     this.Controls.Add(this.barDockControlBottom);
     this.Controls.Add(this.barDockControlTop);
     this.Name = "Editor";
     this.Size = new System.Drawing.Size(728, 514);
     this.Load += new System.EventHandler(this.Editor_Load);
     ((System.ComponentModel.ISupportInitialize)(this.barManager1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemFontEdit1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemRichEditFontSizeEdit1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemBorderLineStyle1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemBorderLineWeight1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemComboBox1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemPictureEdit2)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemRichEditStyleEdit1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemPictureEdit1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemTextEdit1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemRichEditStyleEdit2)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemComboBox2)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemComboBox4)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemRichEditStyleEdit3)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.richEditBarController1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.grdContent)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridView1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemLookUpEdit1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemMemoEdit2)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemPictureEdit3)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemMemoEdit1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemRichTextEdit1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemComboBox3)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemGridLookUpEdit1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemGridLookUpEdit1View)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemRichTextEdit2)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemRichTextEdit3)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemTextEdit2)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemTextEdit3)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.imageCollection1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.dateEdit.Properties.VistaTimeProperties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.dateEdit.Properties)).EndInit();
     this.ResumeLayout(false);
     this.PerformLayout();
 }
Example #34
0
 /// <summary>
 /// Required method for Designer support - do not modify
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     DevExpress.XtraGrid.GridLevelNode gridLevelNode1 = new DevExpress.XtraGrid.GridLevelNode();
     this.gridMaster = new DevExpress.XtraGrid.GridControl();
     this.gridMasterView = new DevExpress.XtraGrid.Views.Grid.GridView();
     this.nCategory = new DevExpress.XtraGrid.Columns.GridColumn();
     this.lk_Category = new DevExpress.XtraEditors.Repository.RepositoryItemLookUpEdit();
     this.dtClickDate = new DevExpress.XtraEditors.DateEdit();
     this.gridChild = new DevExpress.XtraGrid.GridControl();
     this.gridChildView = new DevExpress.XtraGrid.Views.Grid.GridView();
     this.dtDate = new DevExpress.XtraGrid.Columns.GridColumn();
     this.label1 = new System.Windows.Forms.Label();
     this.groupBox1 = new System.Windows.Forms.GroupBox();
     ((System.ComponentModel.ISupportInitialize)(this.gridMaster)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridMasterView)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.lk_Category)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.dtClickDate.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridChild)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridChildView)).BeginInit();
     this.groupBox1.SuspendLayout();
     this.SuspendLayout();
     //
     // gridMaster
     //
     //
     // gridMaster.EmbeddedNavigator
     //
     this.gridMaster.EmbeddedNavigator.Name = "";
     gridLevelNode1.RelationName = "Level1";
     this.gridMaster.LevelTree.Nodes.AddRange(new DevExpress.XtraGrid.GridLevelNode[] {
                                                                                          gridLevelNode1});
     this.gridMaster.Location = new System.Drawing.Point(0, 32);
     this.gridMaster.MainView = this.gridMasterView;
     this.gridMaster.Name = "gridMaster";
     this.gridMaster.RepositoryItems.AddRange(new DevExpress.XtraEditors.Repository.RepositoryItem[] {
                                                                                                         this.lk_Category});
     this.gridMaster.Size = new System.Drawing.Size(840, 224);
     this.gridMaster.TabIndex = 0;
     this.gridMaster.ViewCollection.AddRange(new DevExpress.XtraGrid.Views.Base.BaseView[] {
                                                                                               this.gridMasterView});
     //
     // gridMasterView
     //
     this.gridMasterView.ActiveFilterEnabled = false;
     this.gridMasterView.BorderStyle = DevExpress.XtraEditors.Controls.BorderStyles.Style3D;
     this.gridMasterView.Columns.AddRange(new DevExpress.XtraGrid.Columns.GridColumn[] {
                                                                                           this.nCategory});
     this.gridMasterView.GridControl = this.gridMaster;
     this.gridMasterView.Name = "gridMasterView";
     this.gridMasterView.OptionsBehavior.Editable = false;
     this.gridMasterView.OptionsCustomization.AllowFilter = false;
     this.gridMasterView.OptionsCustomization.AllowSort = false;
     this.gridMasterView.OptionsView.ShowFilterPanel = false;
     this.gridMasterView.OptionsView.ShowGroupPanel = false;
     this.gridMasterView.FocusedRowChanged += new DevExpress.XtraGrid.Views.Base.FocusedRowChangedEventHandler(this.View_Childlist);
     //
     // nCategory
     //
     this.nCategory.Caption = "Category";
     this.nCategory.FieldName = "strReportGroup";
     this.nCategory.Name = "nCategory";
     this.nCategory.Visible = true;
     this.nCategory.VisibleIndex = 0;
     //
     // 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";
     //
     // dtClickDate
     //
     this.dtClickDate.Anchor = System.Windows.Forms.AnchorStyles.None;
     this.dtClickDate.EditValue = null;
     this.dtClickDate.Location = new System.Drawing.Point(60, 11);
     this.dtClickDate.Name = "dtClickDate";
     //
     // dtClickDate.Properties
     //
     this.dtClickDate.Properties.BorderStyle = DevExpress.XtraEditors.Controls.BorderStyles.Style3D;
     this.dtClickDate.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
                                                                                                         new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.dtClickDate.Properties.DisplayFormat.FormatString = "dd/MM/yyyy";
     this.dtClickDate.Properties.DisplayFormat.FormatType = DevExpress.Utils.FormatType.DateTime;
     this.dtClickDate.Properties.EditFormat.FormatString = "dd/MM/yyyy";
     this.dtClickDate.Properties.EditFormat.FormatType = DevExpress.Utils.FormatType.DateTime;
     this.dtClickDate.Properties.Mask.EditMask = "dd/MM/yyyy";
     this.dtClickDate.Size = new System.Drawing.Size(108, 22);
     this.dtClickDate.TabIndex = 1;
     this.dtClickDate.EditValueChanged += new System.EventHandler(this.dtClickDate_EditValueChanged);
     //
     // gridChild
     //
     this.gridChild.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
     //
     // gridChild.EmbeddedNavigator
     //
     this.gridChild.EmbeddedNavigator.Name = "";
     this.gridChild.Location = new System.Drawing.Point(0, 272);
     this.gridChild.MainView = this.gridChildView;
     this.gridChild.Name = "gridChild";
     this.gridChild.Size = new System.Drawing.Size(840, 264);
     this.gridChild.TabIndex = 2;
     this.gridChild.ViewCollection.AddRange(new DevExpress.XtraGrid.Views.Base.BaseView[] {
                                                                                              this.gridChildView});
     //
     // gridChildView
     //
     this.gridChildView.ActiveFilterEnabled = false;
     this.gridChildView.BorderStyle = DevExpress.XtraEditors.Controls.BorderStyles.Style3D;
     this.gridChildView.Columns.AddRange(new DevExpress.XtraGrid.Columns.GridColumn[] {
                                                                                          this.dtDate});
     this.gridChildView.GridControl = this.gridChild;
     this.gridChildView.Name = "gridChildView";
     this.gridChildView.OptionsBehavior.Editable = false;
     this.gridChildView.OptionsCustomization.AllowFilter = false;
     this.gridChildView.OptionsCustomization.AllowSort = false;
     this.gridChildView.OptionsView.ShowFilterPanel = false;
     this.gridChildView.OptionsView.ShowGroupPanel = false;
     //
     // dtDate
     //
     this.dtDate.Caption = "Date";
     this.dtDate.DisplayFormat.FormatString = "dd/MM/yyyy";
     this.dtDate.DisplayFormat.FormatType = DevExpress.Utils.FormatType.DateTime;
     this.dtDate.FieldName = "dtDate";
     this.dtDate.Name = "dtDate";
     this.dtDate.Visible = true;
     this.dtDate.VisibleIndex = 0;
     //
     // label1
     //
     this.label1.Location = new System.Drawing.Point(8, 8);
     this.label1.Name = "label1";
     this.label1.Size = new System.Drawing.Size(56, 22);
     this.label1.TabIndex = 3;
     this.label1.Text = "Date";
     //
     // groupBox1
     //
     this.groupBox1.Controls.Add(this.dtClickDate);
     this.groupBox1.Controls.Add(this.label1);
     this.groupBox1.Location = new System.Drawing.Point(8, 0);
     this.groupBox1.Name = "groupBox1";
     this.groupBox1.Size = new System.Drawing.Size(176, 32);
     this.groupBox1.TabIndex = 4;
     this.groupBox1.TabStop = false;
     //
     // RPSalesMangement
     //
     this.AutoScaleBaseSize = new System.Drawing.Size(5, 14);
     this.ClientSize = new System.Drawing.Size(840, 536);
     this.Controls.Add(this.gridChild);
     this.Controls.Add(this.groupBox1);
     this.Controls.Add(this.gridMaster);
     this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.None;
     this.Name = "RPSalesMangement";
     this.Text = "RPSalesMangement";
     this.Load += new System.EventHandler(this.RPSalesMangement_Load);
     ((System.ComponentModel.ISupportInitialize)(this.gridMaster)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridMasterView)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.lk_Category)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.dtClickDate.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridChild)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridChildView)).EndInit();
     this.groupBox1.ResumeLayout(false);
     this.ResumeLayout(false);
 }
Example #35
0
        /// <summary>
        /// 创建Grid列
        /// </summary>
        private void CreateGridColumn()
        {
            try
            {
                gvSearch.Columns.Clear();
                int i = 0;
                List<DataRow> LDataRows = dtDetail.Select("bIsShow=1").ToList();
                if (IsGroup)
                {
                    string sDisGroupField = "";
                    foreach (var item in GetGroupFields().Split(new string[] { "," }, StringSplitOptions.RemoveEmptyEntries))
                    {
                        sDisGroupField += "'" + item + "',";
                    }
                    if (sDisGroupField != "")
                    {
                        sDisGroupField = "(" + sDisGroupField.Substring(0, sDisGroupField.Length - 1) + ")";
                        //将统计字段也加入Grid列中
                        LDataRows = dtDetail.Select("bIsShow=1 AND bIsGroup=1 AND sColumnFieldName IN " + sDisGroupField).Union(dtDetail.Select("bIsStat=1")).ToList();
                    }
                    else
                    {
                        Public.SystemInfo("必须至少选择一列分组字段!");
                        return;
                    }

                }
                foreach (DataRow dr in LDataRows)
                {
                    DevExpress.XtraGrid.Columns.GridColumn col = new DevExpress.XtraGrid.Columns.GridColumn();
                    col.FieldName = dr["sColumnFieldName"].ToString();
                    col.Caption = dr["sColumnCaption"].ToString();
                    col.Name = "col" + dr["sColumnFieldName"].ToString() + i.ToString();
                    col.Width = 100;
                    col.Visible = true;
                    col.VisibleIndex = i;
                    if (dr["sColumnType"].ToString() == "K")
                    {
                        DevExpress.XtraEditors.Repository.RepositoryItemCheckEdit colItem = new DevExpress.XtraEditors.Repository.RepositoryItemCheckEdit();
                        colItem.AutoHeight = false;
                        colItem.Name = "repositoryItem" + dr["sColumnFieldName"].ToString() + i.ToString();
                        colItem.NullStyle = DevExpress.XtraEditors.Controls.StyleIndeterminate.Unchecked;
                        col.ColumnEdit = colItem;
                        gcSearch.RepositoryItems.Add(colItem);
                    }
                    //Grid Footer显示
                    if (dr["sFooterType"].ToString() != "001")
                    {
                        //001	无
                        //002	求和
                        //003	计数
                        //004	平均值
                        //005	最大值
                        //006	最小值
                        col.SummaryItem.FieldName = dr["sColumnFieldName"].ToString();
                        if (dr["sFooterType"].ToString() == "002")
                            col.SummaryItem.SummaryType = DevExpress.Data.SummaryItemType.Sum;
                        else if (dr["sFooterType"].ToString() == "003")
                            col.SummaryItem.SummaryType = DevExpress.Data.SummaryItemType.Count;
                        else if (dr["sFooterType"].ToString() == "004")
                            col.SummaryItem.SummaryType = DevExpress.Data.SummaryItemType.Average;
                        else if (dr["sFooterType"].ToString() == "005")
                            col.SummaryItem.SummaryType = DevExpress.Data.SummaryItemType.Max;
                        else if (dr["sFooterType"].ToString() == "006")
                            col.SummaryItem.SummaryType = DevExpress.Data.SummaryItemType.Min;

                        gvSearch.GroupSummary.Add(DevExpress.Data.SummaryItemType.Sum, dr["sColumnFieldName"].ToString(), col);
                    }
                    gvSearch.Columns.Add(col);
                    i++;
                }

                //添加图表值字段到ComboBox中
                if (IsChart)
                {
                    //数据值
                    cbxValueType.Properties.Items.Clear();
                    DataTable dtTemp = dtDetail.Clone();
                    foreach (DataRow item in dtDetail.Select("bChartValue"))
                    {
                        //DataRow dr = dtTemp.NewRow();
                        //dr["sColumnFieldName"] = item["sColumnFieldName"];
                        //dr["sColumnCaption"] = item["sColumnCaption"];
                        //dtTemp.Rows.Add(dr);
                        cbxValueType.Properties.Items.Add(new DevExpress.XtraEditors.Controls.ImageComboBoxItem(item["sColumnCaption"].ToString(), item["sColumnFieldName"]));
                    }
                    cbxValueType.SelectedIndex = 0;
                    //cbxValueType.DataSource = dtTemp;
                    //cbxValueType.ValueMember = "sColumnFieldName";
                    //cbxValueType.DisplayMember = "sColumnCaption";

                    //比较值
                    cbxField.Properties.Items.Clear();
                    DataTable dtField = dtDetail.Clone();
                    foreach (DataRow item in dtDetail.Select("bChartField"))
                    {
                        //DataRow dr = dtField.NewRow();
                        //dr["sColumnFieldName"] = item["sColumnFieldName"];
                        //dr["sColumnCaption"] = item["sColumnCaption"];
                        //dtField.Rows.Add(dr);
                        cbxField.Properties.Items.Add(new DevExpress.XtraEditors.Controls.ImageComboBoxItem(item["sColumnCaption"].ToString(), item["sColumnFieldName"]));
                    }
                    cbxField.SelectedIndex = 0;
                    //cbxField.DataSource = dtField;
                    //cbxField.ValueMember = "sColumnFieldName";
                    //cbxField.DisplayMember = "sColumnCaption";
                }
            }
            catch (Exception ex)
            {
                Public.SystemInfo("创建查询Grid列错误!" + ex.Message, true);
            }
        }
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();
     DevExpress.XtraGrid.GridLevelNode gridLevelNode1 = new DevExpress.XtraGrid.GridLevelNode();
     this.groupBox1 = new System.Windows.Forms.GroupBox();
     this.btnPrint = new DevExpress.XtraEditors.SimpleButton();
     this.dtDateDay = new System.Windows.Forms.MonthCalendar();
     this.dtClickDateTill = new System.Windows.Forms.MonthCalendar();
     this.dtClickDate = new System.Windows.Forms.MonthCalendar();
     this.label3 = new System.Windows.Forms.Label();
     this.btn_View = new DevExpress.XtraEditors.SimpleButton();
     this.dtClickDateTill2 = new DevExpress.XtraEditors.DateEdit();
     this.dtClickDate1 = new DevExpress.XtraEditors.DateEdit();
     this.btnExport = new DevExpress.XtraEditors.SimpleButton();
     this.gridMaster = new DevExpress.XtraGrid.GridControl();
     this.gridMasterView = new DevExpress.XtraGrid.Views.Grid.GridView();
     this.nCategory = new DevExpress.XtraGrid.Columns.GridColumn();
     this.lk_Category = new DevExpress.XtraEditors.Repository.RepositoryItemLookUpEdit();
     this.printingSystem1 = new DevExpress.XtraPrinting.PrintingSystem(this.components);
     this.printableComponentLink1 = new DevExpress.XtraPrinting.PrintableComponentLink(this.components);
     this.groupBox1.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.dtClickDateTill2.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.dtClickDate1.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridMaster)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridMasterView)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.lk_Category)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.printingSystem1)).BeginInit();
     this.SuspendLayout();
     //
     // groupBox1
     //
     this.groupBox1.Controls.Add(this.btnPrint);
     this.groupBox1.Controls.Add(this.dtDateDay);
     this.groupBox1.Controls.Add(this.dtClickDateTill);
     this.groupBox1.Controls.Add(this.dtClickDate);
     this.groupBox1.Controls.Add(this.label3);
     this.groupBox1.Controls.Add(this.btn_View);
     this.groupBox1.Controls.Add(this.dtClickDateTill2);
     this.groupBox1.Controls.Add(this.dtClickDate1);
     this.groupBox1.Controls.Add(this.btnExport);
     this.groupBox1.Location = new System.Drawing.Point(0, 0);
     this.groupBox1.Name = "groupBox1";
     this.groupBox1.Size = new System.Drawing.Size(768, 160);
     this.groupBox1.TabIndex = 6;
     this.groupBox1.TabStop = false;
     this.groupBox1.Enter += new System.EventHandler(this.groupBox1_Enter);
     //
     // btnPrint
     //
     this.btnPrint.Location = new System.Drawing.Point(648, 72);
     this.btnPrint.Name = "btnPrint";
     this.btnPrint.Size = new System.Drawing.Size(96, 23);
     this.btnPrint.TabIndex = 11;
     this.btnPrint.Text = "Print";
     this.btnPrint.Click += new System.EventHandler(this.btnPrint_Click);
     //
     // dtDateDay
     //
     this.dtDateDay.Location = new System.Drawing.Point(448, 8);
     this.dtDateDay.Name = "dtDateDay";
     this.dtDateDay.TabIndex = 10;
     this.dtDateDay.DateSelected += new System.Windows.Forms.DateRangeEventHandler(this.dtDateDay_DateSelected);
     //
     // dtClickDateTill
     //
     this.dtClickDateTill.Location = new System.Drawing.Point(248, 8);
     this.dtClickDateTill.Name = "dtClickDateTill";
     this.dtClickDateTill.TabIndex = 9;
     //
     // dtClickDate
     //
     this.dtClickDate.Location = new System.Drawing.Point(8, 8);
     this.dtClickDate.Name = "dtClickDate";
     this.dtClickDate.TabIndex = 8;
     //
     // label3
     //
     this.label3.Font = new System.Drawing.Font("Tahoma", 14.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((System.Byte)(0)));
     this.label3.Location = new System.Drawing.Point(206, 64);
     this.label3.Name = "label3";
     this.label3.Size = new System.Drawing.Size(36, 22);
     this.label3.TabIndex = 7;
     this.label3.Text = "TO";
     //
     // btn_View
     //
     this.btn_View.Location = new System.Drawing.Point(206, 112);
     this.btn_View.Name = "btn_View";
     this.btn_View.Size = new System.Drawing.Size(32, 23);
     this.btn_View.TabIndex = 6;
     this.btn_View.Text = "View";
     this.btn_View.Click += new System.EventHandler(this.btn_View_Click);
     //
     // dtClickDateTill2
     //
     this.dtClickDateTill2.Anchor = System.Windows.Forms.AnchorStyles.None;
     this.dtClickDateTill2.EditValue = null;
     this.dtClickDateTill2.Location = new System.Drawing.Point(280, 66);
     this.dtClickDateTill2.Name = "dtClickDateTill2";
     //
     // dtClickDateTill2.Properties
     //
     this.dtClickDateTill2.Properties.BorderStyle = DevExpress.XtraEditors.Controls.BorderStyles.Style3D;
     this.dtClickDateTill2.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
                                                                                                              new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.dtClickDateTill2.Properties.DisplayFormat.FormatString = "dd/MM/yyyy";
     this.dtClickDateTill2.Properties.DisplayFormat.FormatType = DevExpress.Utils.FormatType.DateTime;
     this.dtClickDateTill2.Properties.EditFormat.FormatString = "dd/MM/yyyy";
     this.dtClickDateTill2.Properties.EditFormat.FormatType = DevExpress.Utils.FormatType.DateTime;
     this.dtClickDateTill2.Properties.Mask.EditMask = "dd/MM/yyyy";
     this.dtClickDateTill2.Size = new System.Drawing.Size(108, 22);
     this.dtClickDateTill2.TabIndex = 4;
     //
     // dtClickDate1
     //
     this.dtClickDate1.Anchor = System.Windows.Forms.AnchorStyles.None;
     this.dtClickDate1.EditValue = null;
     this.dtClickDate1.Location = new System.Drawing.Point(48, 34);
     this.dtClickDate1.Name = "dtClickDate1";
     //
     // dtClickDate1.Properties
     //
     this.dtClickDate1.Properties.BorderStyle = DevExpress.XtraEditors.Controls.BorderStyles.Style3D;
     this.dtClickDate1.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
                                                                                                          new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.dtClickDate1.Properties.DisplayFormat.FormatString = "dd/MM/yyyy";
     this.dtClickDate1.Properties.DisplayFormat.FormatType = DevExpress.Utils.FormatType.DateTime;
     this.dtClickDate1.Properties.EditFormat.FormatString = "dd/MM/yyyy";
     this.dtClickDate1.Properties.EditFormat.FormatType = DevExpress.Utils.FormatType.DateTime;
     this.dtClickDate1.Properties.Mask.EditMask = "dd/MM/yyyy";
     this.dtClickDate1.Size = new System.Drawing.Size(108, 22);
     this.dtClickDate1.TabIndex = 1;
     //
     // btnExport
     //
     this.btnExport.Location = new System.Drawing.Point(648, 32);
     this.btnExport.Name = "btnExport";
     this.btnExport.Size = new System.Drawing.Size(96, 23);
     this.btnExport.TabIndex = 7;
     this.btnExport.Text = "Export To Excel";
     this.btnExport.Visible = false;
     this.btnExport.Click += new System.EventHandler(this.btnExport_Click);
     //
     // gridMaster
     //
     //
     // gridMaster.EmbeddedNavigator
     //
     this.gridMaster.EmbeddedNavigator.Name = "";
     this.gridMaster.Font = new System.Drawing.Font("Tahoma", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((System.Byte)(0)));
     gridLevelNode1.RelationName = "Level1";
     this.gridMaster.LevelTree.Nodes.AddRange(new DevExpress.XtraGrid.GridLevelNode[] {
                                                                                          gridLevelNode1});
     this.gridMaster.Location = new System.Drawing.Point(0, 168);
     this.gridMaster.MainView = this.gridMasterView;
     this.gridMaster.Name = "gridMaster";
     this.gridMaster.RepositoryItems.AddRange(new DevExpress.XtraEditors.Repository.RepositoryItem[] {
                                                                                                         this.lk_Category});
     this.gridMaster.Size = new System.Drawing.Size(784, 352);
     this.gridMaster.TabIndex = 5;
     this.gridMaster.ViewCollection.AddRange(new DevExpress.XtraGrid.Views.Base.BaseView[] {
                                                                                               this.gridMasterView});
     //
     // gridMasterView
     //
     this.gridMasterView.ActiveFilterEnabled = false;
     this.gridMasterView.Appearance.GroupPanel.BackColor = System.Drawing.Color.White;
     this.gridMasterView.Appearance.GroupPanel.BorderColor = System.Drawing.Color.White;
     this.gridMasterView.Appearance.GroupPanel.Font = new System.Drawing.Font("Tahoma", 12F, System.Drawing.FontStyle.Bold);
     this.gridMasterView.Appearance.GroupPanel.ForeColor = System.Drawing.Color.Black;
     this.gridMasterView.Appearance.GroupPanel.Options.UseBackColor = true;
     this.gridMasterView.Appearance.GroupPanel.Options.UseBorderColor = true;
     this.gridMasterView.Appearance.GroupPanel.Options.UseFont = true;
     this.gridMasterView.Appearance.GroupPanel.Options.UseForeColor = true;
     this.gridMasterView.Appearance.HeaderPanel.ForeColor = System.Drawing.Color.Black;
     this.gridMasterView.Appearance.HeaderPanel.Options.UseForeColor = true;
     this.gridMasterView.AppearancePrint.HeaderPanel.ForeColor = System.Drawing.Color.Black;
     this.gridMasterView.AppearancePrint.HeaderPanel.Options.UseForeColor = true;
     this.gridMasterView.BorderStyle = DevExpress.XtraEditors.Controls.BorderStyles.Style3D;
     this.gridMasterView.Columns.AddRange(new DevExpress.XtraGrid.Columns.GridColumn[] {
                                                                                           this.nCategory});
     this.gridMasterView.GridControl = this.gridMaster;
     this.gridMasterView.GroupPanelText = "hELLO";
     this.gridMasterView.Name = "gridMasterView";
     this.gridMasterView.OptionsBehavior.Editable = false;
     this.gridMasterView.OptionsCustomization.AllowFilter = false;
     this.gridMasterView.OptionsCustomization.AllowSort = false;
     this.gridMasterView.OptionsPrint.PrintGroupFooter = false;
     this.gridMasterView.OptionsPrint.UsePrintStyles = true;
     this.gridMasterView.OptionsView.ShowFilterPanel = false;
     this.gridMasterView.OptionsView.ShowFooter = true;
     //
     // nCategory
     //
     this.nCategory.Caption = "Category";
     this.nCategory.FieldName = "strReportGroup";
     this.nCategory.Name = "nCategory";
     this.nCategory.Visible = true;
     this.nCategory.VisibleIndex = 0;
     this.nCategory.Width = 100;
     //
     // 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";
     //
     // printingSystem1
     //
     this.printingSystem1.Links.AddRange(new object[] {
                                                          this.printableComponentLink1});
     //
     // printableComponentLink1
     //
     this.printableComponentLink1.Component = this.gridMaster;
     this.printableComponentLink1.Landscape = true;
     this.printableComponentLink1.Margins = new System.Drawing.Printing.Margins(50, 50, 50, 50);
     this.printableComponentLink1.PaperKind = System.Drawing.Printing.PaperKind.A4;
     this.printableComponentLink1.PrintingSystem = this.printingSystem1;
     //
     // RPAllIncome
     //
     this.AutoScaleBaseSize = new System.Drawing.Size(5, 14);
     this.ClientSize = new System.Drawing.Size(784, 512);
     this.Controls.Add(this.groupBox1);
     this.Controls.Add(this.gridMaster);
     this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.None;
     this.Name = "RPAllIncome";
     this.Text = "RPAllIncome";
     this.Load += new System.EventHandler(this.RPAllIncome_Load);
     this.groupBox1.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.dtClickDateTill2.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.dtClickDate1.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridMaster)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridMasterView)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.lk_Category)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.printingSystem1)).EndInit();
     this.ResumeLayout(false);
 }
Example #37
0
 private void SetDefaultProperty()
 {
     //加载事件
     this.Load += new EventHandler(EFDevGrid_Load);
     ////添加选择列
     colSelectedTemp = getCheckOptionColumn();
     if (this.MainView is DevExpress.XtraGrid.Views.Grid.GridView)
     {
         ((DevExpress.XtraGrid.Views.Grid.GridView)this.MainView).OptionsView.ColumnAutoWidth = false;
         //不自动调整列宽.
         ((DevExpress.XtraGrid.Views.Grid.GridView)this.MainView).OptionsView.ColumnAutoWidth = false;
         //使用交叉色.
         ((DevExpress.XtraGrid.Views.Grid.GridView)this.MainView).OptionsView.EnableAppearanceEvenRow = true;
         ((DevExpress.XtraGrid.Views.Grid.GridView)this.MainView).OptionsView.EnableAppearanceOddRow = true;
         //不显示汇总栏panel
         ((DevExpress.XtraGrid.Views.Grid.GridView)this.MainView).OptionsView.ShowGroupPanel = false;
         //不显示过滤行
         ((DevExpress.XtraGrid.Views.Grid.GridView)this.MainView).OptionsView.ShowAutoFilterRow = false;
         //为行添加行号
         ((DevExpress.XtraGrid.Views.Grid.GridView)this.MainView).IndicatorWidth = 35; //默认显示行号的宽度
         ((DevExpress.XtraGrid.Views.Grid.GridView)this.MainView).CustomDrawRowIndicator += new DevExpress.XtraGrid.Views.Grid.RowIndicatorCustomDrawEventHandler(this.gridView1_CustomDrawRowIndicator);
     }
 }
 private void gridView1_ShowingEditor(object sender, CancelEventArgs e)
 {
     DevExpress.XtraGrid.Views.Grid.GridView view;
     view = sender as DevExpress.XtraGrid.Views.Grid.GridView;
     if (prevColumn != view.FocusedColumn || prevRow != view.FocusedRowHandle)
     {
         e.Cancel = true;
     }
     prevColumn = view.FocusedColumn;
     prevRow = view.FocusedRowHandle;
 }        
Example #39
0
 /// <summary>
 /// Required method for Designer support - do not modify
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     this.groupControl1 = new DevExpress.XtraEditors.GroupControl();
     this.sbtnEmpDel = new DevExpress.XtraEditors.SimpleButton();
     this.sbtnEmpAllDel = new DevExpress.XtraEditors.SimpleButton();
     this.sbtnEmpAllAdd = new DevExpress.XtraEditors.SimpleButton();
     this.sbtnEmpAdd = new DevExpress.XtraEditors.SimpleButton();
     this.gridctrEmployee2 = new DevExpress.XtraGrid.GridControl();
     this.gvEmployee2 = new DevExpress.XtraGrid.Views.Grid.GridView();
     this.colEmployeeID2 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.colEmployeeName2 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridctrEmployee = new DevExpress.XtraGrid.GridControl();
     this.gvEmployee = new DevExpress.XtraGrid.Views.Grid.GridView();
     this.colEmployeeID = new DevExpress.XtraGrid.Columns.GridColumn();
     this.colEmployeeName = new DevExpress.XtraGrid.Columns.GridColumn();
     this.sbtnPGDel = new DevExpress.XtraEditors.SimpleButton();
     this.sbtnPGAllDel = new DevExpress.XtraEditors.SimpleButton();
     this.sbtnPGAllAdd = new DevExpress.XtraEditors.SimpleButton();
     this.sbtnPGAdd = new DevExpress.XtraEditors.SimpleButton();
     this.gridctrPersonalGroup2 = new DevExpress.XtraGrid.GridControl();
     this.gvPersonalGroup2 = new DevExpress.XtraGrid.Views.Grid.GridView();
     this.colPersonalGroupID2 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.colPersonalGroupCode3 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.colPersonalGroupDesc2 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridctrPersonalGroup = new DevExpress.XtraGrid.GridControl();
     this.gvPersonalGroup = new DevExpress.XtraGrid.Views.Grid.GridView();
     this.colPersonalGroupID = new DevExpress.XtraGrid.Columns.GridColumn();
     this.colPersonalGroupCode = new DevExpress.XtraGrid.Columns.GridColumn();
     this.colPersonalGroupDesc = new DevExpress.XtraGrid.Columns.GridColumn();
     this.sbtnDGDel = new DevExpress.XtraEditors.SimpleButton();
     this.sbtnDGAllDel = new DevExpress.XtraEditors.SimpleButton();
     this.sbtnDGAllAdd = new DevExpress.XtraEditors.SimpleButton();
     this.sbtnDGAdd = new DevExpress.XtraEditors.SimpleButton();
     this.gridctrDepartmentGroup2 = new DevExpress.XtraGrid.GridControl();
     this.gvDepartmentGroup2 = new DevExpress.XtraGrid.Views.Grid.GridView();
     this.colDepartmentID2 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.colDepartmentGroupCode2 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.colDepartmentGroupDesc2 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridctrDepartmentGroup = new DevExpress.XtraGrid.GridControl();
     this.gvDepartmentGroup = new DevExpress.XtraGrid.Views.Grid.GridView();
     this.colDepartmentGroup = new DevExpress.XtraGrid.Columns.GridColumn();
     this.colDepartmentGroupCode = new DevExpress.XtraGrid.Columns.GridColumn();
     this.colDepartmentGroupDesc = new DevExpress.XtraGrid.Columns.GridColumn();
     this.sbtnBGDel = new DevExpress.XtraEditors.SimpleButton();
     this.sbtnBGAllDel = new DevExpress.XtraEditors.SimpleButton();
     this.sbtnBGAllAdd = new DevExpress.XtraEditors.SimpleButton();
     this.sbtnBGAdd = new DevExpress.XtraEditors.SimpleButton();
     this.label6 = new System.Windows.Forms.Label();
     this.label4 = new System.Windows.Forms.Label();
     this.label5 = new System.Windows.Forms.Label();
     this.gridctrBranchReceipient2 = new DevExpress.XtraGrid.GridControl();
     this.gvBranchReceipient2 = new DevExpress.XtraGrid.Views.Grid.GridView();
     this.colBranchCode2 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.colBranchName2 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.label3 = new System.Windows.Forms.Label();
     this.gridctrBranchReceipient = new DevExpress.XtraGrid.GridControl();
     this.gvBranchReceipient = new DevExpress.XtraGrid.Views.Grid.GridView();
     this.colBranchCode = new DevExpress.XtraGrid.Columns.GridColumn();
     this.colBranchName = new DevExpress.XtraGrid.Columns.GridColumn();
     this.sbtnAdd = new DevExpress.XtraEditors.SimpleButton();
     this.sbtnCancel = new DevExpress.XtraEditors.SimpleButton();
     ((System.ComponentModel.ISupportInitialize)(this.groupControl1)).BeginInit();
     this.groupControl1.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.gridctrEmployee2)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.gvEmployee2)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridctrEmployee)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.gvEmployee)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridctrPersonalGroup2)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.gvPersonalGroup2)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridctrPersonalGroup)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.gvPersonalGroup)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridctrDepartmentGroup2)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.gvDepartmentGroup2)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridctrDepartmentGroup)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.gvDepartmentGroup)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridctrBranchReceipient2)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.gvBranchReceipient2)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridctrBranchReceipient)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.gvBranchReceipient)).BeginInit();
     this.SuspendLayout();
     //
     // groupControl1
     //
     this.groupControl1.Controls.Add(this.sbtnEmpDel);
     this.groupControl1.Controls.Add(this.sbtnEmpAllDel);
     this.groupControl1.Controls.Add(this.sbtnEmpAllAdd);
     this.groupControl1.Controls.Add(this.sbtnEmpAdd);
     this.groupControl1.Controls.Add(this.gridctrEmployee2);
     this.groupControl1.Controls.Add(this.gridctrEmployee);
     this.groupControl1.Controls.Add(this.sbtnPGDel);
     this.groupControl1.Controls.Add(this.sbtnPGAllDel);
     this.groupControl1.Controls.Add(this.sbtnPGAllAdd);
     this.groupControl1.Controls.Add(this.sbtnPGAdd);
     this.groupControl1.Controls.Add(this.gridctrPersonalGroup2);
     this.groupControl1.Controls.Add(this.gridctrPersonalGroup);
     this.groupControl1.Controls.Add(this.sbtnDGDel);
     this.groupControl1.Controls.Add(this.sbtnDGAllDel);
     this.groupControl1.Controls.Add(this.sbtnDGAllAdd);
     this.groupControl1.Controls.Add(this.sbtnDGAdd);
     this.groupControl1.Controls.Add(this.gridctrDepartmentGroup2);
     this.groupControl1.Controls.Add(this.gridctrDepartmentGroup);
     this.groupControl1.Controls.Add(this.sbtnBGDel);
     this.groupControl1.Controls.Add(this.sbtnBGAllDel);
     this.groupControl1.Controls.Add(this.sbtnBGAllAdd);
     this.groupControl1.Controls.Add(this.sbtnBGAdd);
     this.groupControl1.Controls.Add(this.label6);
     this.groupControl1.Controls.Add(this.label4);
     this.groupControl1.Controls.Add(this.label5);
     this.groupControl1.Controls.Add(this.gridctrBranchReceipient2);
     this.groupControl1.Controls.Add(this.label3);
     this.groupControl1.Controls.Add(this.gridctrBranchReceipient);
     this.groupControl1.Location = new System.Drawing.Point(4, 8);
     this.groupControl1.Name = "groupControl1";
     this.groupControl1.Size = new System.Drawing.Size(914, 384);
     this.groupControl1.TabIndex = 0;
     this.groupControl1.Text = "Recepients";
     //
     // sbtnEmpDel
     //
     this.sbtnEmpDel.ButtonStyle = DevExpress.XtraEditors.Controls.BorderStyles.Simple;
     this.sbtnEmpDel.Location = new System.Drawing.Point(476, 358);
     this.sbtnEmpDel.Name = "sbtnEmpDel";
     this.sbtnEmpDel.Size = new System.Drawing.Size(30, 20);
     this.sbtnEmpDel.TabIndex = 22;
     this.sbtnEmpDel.Text = "<";
     this.sbtnEmpDel.Click += new System.EventHandler(this.sbtnEmpDel_Click);
     //
     // sbtnEmpAllDel
     //
     this.sbtnEmpAllDel.ButtonStyle = DevExpress.XtraEditors.Controls.BorderStyles.Simple;
     this.sbtnEmpAllDel.Location = new System.Drawing.Point(476, 336);
     this.sbtnEmpAllDel.Name = "sbtnEmpAllDel";
     this.sbtnEmpAllDel.Size = new System.Drawing.Size(30, 20);
     this.sbtnEmpAllDel.TabIndex = 21;
     this.sbtnEmpAllDel.Text = "<<";
     this.sbtnEmpAllDel.Click += new System.EventHandler(this.sbtnEmpAllDel_Click);
     //
     // sbtnEmpAllAdd
     //
     this.sbtnEmpAllAdd.ButtonStyle = DevExpress.XtraEditors.Controls.BorderStyles.Simple;
     this.sbtnEmpAllAdd.Location = new System.Drawing.Point(476, 314);
     this.sbtnEmpAllAdd.Name = "sbtnEmpAllAdd";
     this.sbtnEmpAllAdd.Size = new System.Drawing.Size(30, 20);
     this.sbtnEmpAllAdd.TabIndex = 20;
     this.sbtnEmpAllAdd.Text = ">>";
     this.sbtnEmpAllAdd.Click += new System.EventHandler(this.sbtnEmpAllAdd_Click);
     //
     // sbtnEmpAdd
     //
     this.sbtnEmpAdd.ButtonStyle = DevExpress.XtraEditors.Controls.BorderStyles.Simple;
     this.sbtnEmpAdd.Location = new System.Drawing.Point(476, 292);
     this.sbtnEmpAdd.Name = "sbtnEmpAdd";
     this.sbtnEmpAdd.Size = new System.Drawing.Size(30, 20);
     this.sbtnEmpAdd.TabIndex = 19;
     this.sbtnEmpAdd.Text = ">";
     this.sbtnEmpAdd.Click += new System.EventHandler(this.sbtnEmpAdd_Click);
     //
     // gridctrEmployee2
     //
     //
     // gridctrEmployee2.EmbeddedNavigator
     //
     this.gridctrEmployee2.EmbeddedNavigator.Name = "";
     this.gridctrEmployee2.Location = new System.Drawing.Point(510, 290);
     this.gridctrEmployee2.MainView = this.gvEmployee2;
     this.gridctrEmployee2.Name = "gridctrEmployee2";
     this.gridctrEmployee2.Size = new System.Drawing.Size(400, 88);
     this.gridctrEmployee2.TabIndex = 23;
     this.gridctrEmployee2.ViewCollection.AddRange(new DevExpress.XtraGrid.Views.Base.BaseView[] {
                                                                                                     this.gvEmployee2});
     //
     // gvEmployee2
     //
     this.gvEmployee2.Columns.AddRange(new DevExpress.XtraGrid.Columns.GridColumn[] {
                                                                                        this.colEmployeeID2,
                                                                                        this.colEmployeeName2});
     this.gvEmployee2.GridControl = this.gridctrEmployee2;
     this.gvEmployee2.Name = "gvEmployee2";
     this.gvEmployee2.OptionsBehavior.AllowIncrementalSearch = true;
     this.gvEmployee2.OptionsBehavior.Editable = false;
     this.gvEmployee2.OptionsCustomization.AllowFilter = false;
     this.gvEmployee2.OptionsSelection.MultiSelect = true;
     this.gvEmployee2.OptionsView.ShowGroupPanel = false;
     this.gvEmployee2.SortInfo.AddRange(new DevExpress.XtraGrid.Columns.GridColumnSortInfo[] {
                                                                                                 new DevExpress.XtraGrid.Columns.GridColumnSortInfo(this.colEmployeeID2, DevExpress.Data.ColumnSortOrder.Ascending)});
     //
     // colEmployeeID2
     //
     this.colEmployeeID2.Caption = "Employee ID";
     this.colEmployeeID2.FieldName = "nEmployeeID";
     this.colEmployeeID2.Name = "colEmployeeID2";
     this.colEmployeeID2.Visible = true;
     this.colEmployeeID2.VisibleIndex = 0;
     this.colEmployeeID2.Width = 78;
     //
     // colEmployeeName2
     //
     this.colEmployeeName2.Caption = "Name";
     this.colEmployeeName2.FieldName = "strEmployeeName";
     this.colEmployeeName2.Name = "colEmployeeName2";
     this.colEmployeeName2.Visible = true;
     this.colEmployeeName2.VisibleIndex = 1;
     this.colEmployeeName2.Width = 308;
     //
     // gridctrEmployee
     //
     //
     // gridctrEmployee.EmbeddedNavigator
     //
     this.gridctrEmployee.EmbeddedNavigator.Name = "";
     this.gridctrEmployee.Location = new System.Drawing.Point(72, 290);
     this.gridctrEmployee.MainView = this.gvEmployee;
     this.gridctrEmployee.Name = "gridctrEmployee";
     this.gridctrEmployee.Size = new System.Drawing.Size(400, 88);
     this.gridctrEmployee.TabIndex = 18;
     this.gridctrEmployee.ViewCollection.AddRange(new DevExpress.XtraGrid.Views.Base.BaseView[] {
                                                                                                    this.gvEmployee});
     //
     // gvEmployee
     //
     this.gvEmployee.Columns.AddRange(new DevExpress.XtraGrid.Columns.GridColumn[] {
                                                                                       this.colEmployeeID,
                                                                                       this.colEmployeeName});
     this.gvEmployee.GridControl = this.gridctrEmployee;
     this.gvEmployee.Name = "gvEmployee";
     this.gvEmployee.OptionsBehavior.AllowIncrementalSearch = true;
     this.gvEmployee.OptionsBehavior.Editable = false;
     this.gvEmployee.OptionsCustomization.AllowFilter = false;
     this.gvEmployee.OptionsSelection.MultiSelect = true;
     this.gvEmployee.OptionsView.ShowGroupPanel = false;
     this.gvEmployee.SortInfo.AddRange(new DevExpress.XtraGrid.Columns.GridColumnSortInfo[] {
                                                                                                new DevExpress.XtraGrid.Columns.GridColumnSortInfo(this.colEmployeeID, DevExpress.Data.ColumnSortOrder.Ascending)});
     //
     // colEmployeeID
     //
     this.colEmployeeID.Caption = "Employee ID";
     this.colEmployeeID.FieldName = "nEmployeeID";
     this.colEmployeeID.Name = "colEmployeeID";
     this.colEmployeeID.Visible = true;
     this.colEmployeeID.VisibleIndex = 0;
     this.colEmployeeID.Width = 79;
     //
     // colEmployeeName
     //
     this.colEmployeeName.Caption = "Name";
     this.colEmployeeName.FieldName = "strEmployeeName";
     this.colEmployeeName.Name = "colEmployeeName";
     this.colEmployeeName.Visible = true;
     this.colEmployeeName.VisibleIndex = 1;
     this.colEmployeeName.Width = 307;
     //
     // sbtnPGDel
     //
     this.sbtnPGDel.ButtonStyle = DevExpress.XtraEditors.Controls.BorderStyles.Simple;
     this.sbtnPGDel.Location = new System.Drawing.Point(476, 268);
     this.sbtnPGDel.Name = "sbtnPGDel";
     this.sbtnPGDel.Size = new System.Drawing.Size(30, 20);
     this.sbtnPGDel.TabIndex = 16;
     this.sbtnPGDel.Text = "<";
     this.sbtnPGDel.Click += new System.EventHandler(this.sbtnPGDel_Click);
     //
     // sbtnPGAllDel
     //
     this.sbtnPGAllDel.ButtonStyle = DevExpress.XtraEditors.Controls.BorderStyles.Simple;
     this.sbtnPGAllDel.Location = new System.Drawing.Point(476, 246);
     this.sbtnPGAllDel.Name = "sbtnPGAllDel";
     this.sbtnPGAllDel.Size = new System.Drawing.Size(30, 20);
     this.sbtnPGAllDel.TabIndex = 15;
     this.sbtnPGAllDel.Text = "<<";
     this.sbtnPGAllDel.Click += new System.EventHandler(this.sbtnPGAllDel_Click);
     //
     // sbtnPGAllAdd
     //
     this.sbtnPGAllAdd.ButtonStyle = DevExpress.XtraEditors.Controls.BorderStyles.Simple;
     this.sbtnPGAllAdd.Location = new System.Drawing.Point(476, 224);
     this.sbtnPGAllAdd.Name = "sbtnPGAllAdd";
     this.sbtnPGAllAdd.Size = new System.Drawing.Size(30, 20);
     this.sbtnPGAllAdd.TabIndex = 14;
     this.sbtnPGAllAdd.Text = ">>";
     this.sbtnPGAllAdd.Click += new System.EventHandler(this.sbtnPGAllAdd_Click);
     //
     // sbtnPGAdd
     //
     this.sbtnPGAdd.ButtonStyle = DevExpress.XtraEditors.Controls.BorderStyles.Simple;
     this.sbtnPGAdd.Location = new System.Drawing.Point(476, 202);
     this.sbtnPGAdd.Name = "sbtnPGAdd";
     this.sbtnPGAdd.Size = new System.Drawing.Size(30, 20);
     this.sbtnPGAdd.TabIndex = 13;
     this.sbtnPGAdd.Text = ">";
     this.sbtnPGAdd.Click += new System.EventHandler(this.sbtnPGAdd_Click);
     //
     // gridctrPersonalGroup2
     //
     //
     // gridctrPersonalGroup2.EmbeddedNavigator
     //
     this.gridctrPersonalGroup2.EmbeddedNavigator.Name = "";
     this.gridctrPersonalGroup2.Location = new System.Drawing.Point(510, 200);
     this.gridctrPersonalGroup2.MainView = this.gvPersonalGroup2;
     this.gridctrPersonalGroup2.Name = "gridctrPersonalGroup2";
     this.gridctrPersonalGroup2.Size = new System.Drawing.Size(400, 88);
     this.gridctrPersonalGroup2.TabIndex = 17;
     this.gridctrPersonalGroup2.ViewCollection.AddRange(new DevExpress.XtraGrid.Views.Base.BaseView[] {
                                                                                                          this.gvPersonalGroup2});
     //
     // gvPersonalGroup2
     //
     this.gvPersonalGroup2.Columns.AddRange(new DevExpress.XtraGrid.Columns.GridColumn[] {
                                                                                             this.colPersonalGroupID2,
                                                                                             this.colPersonalGroupCode3,
                                                                                             this.colPersonalGroupDesc2});
     this.gvPersonalGroup2.GridControl = this.gridctrPersonalGroup2;
     this.gvPersonalGroup2.Name = "gvPersonalGroup2";
     this.gvPersonalGroup2.OptionsBehavior.AllowIncrementalSearch = true;
     this.gvPersonalGroup2.OptionsBehavior.Editable = false;
     this.gvPersonalGroup2.OptionsCustomization.AllowFilter = false;
     this.gvPersonalGroup2.OptionsSelection.MultiSelect = true;
     this.gvPersonalGroup2.OptionsView.ShowGroupPanel = false;
     this.gvPersonalGroup2.SortInfo.AddRange(new DevExpress.XtraGrid.Columns.GridColumnSortInfo[] {
                                                                                                      new DevExpress.XtraGrid.Columns.GridColumnSortInfo(this.colPersonalGroupID2, DevExpress.Data.ColumnSortOrder.Ascending)});
     //
     // colPersonalGroupID2
     //
     this.colPersonalGroupID2.Caption = "ID";
     this.colPersonalGroupID2.FieldName = "nMemoGroupID";
     this.colPersonalGroupID2.Name = "colPersonalGroupID2";
     this.colPersonalGroupID2.Visible = true;
     this.colPersonalGroupID2.VisibleIndex = 0;
     this.colPersonalGroupID2.Width = 71;
     //
     // colPersonalGroupCode3
     //
     this.colPersonalGroupCode3.Caption = "Code";
     this.colPersonalGroupCode3.FieldName = "strMemoGroupCode";
     this.colPersonalGroupCode3.Name = "colPersonalGroupCode3";
     this.colPersonalGroupCode3.Visible = true;
     this.colPersonalGroupCode3.VisibleIndex = 1;
     this.colPersonalGroupCode3.Width = 92;
     //
     // colPersonalGroupDesc2
     //
     this.colPersonalGroupDesc2.Caption = "Description";
     this.colPersonalGroupDesc2.FieldName = "strDescription";
     this.colPersonalGroupDesc2.Name = "colPersonalGroupDesc2";
     this.colPersonalGroupDesc2.Visible = true;
     this.colPersonalGroupDesc2.VisibleIndex = 2;
     this.colPersonalGroupDesc2.Width = 223;
     //
     // gridctrPersonalGroup
     //
     //
     // gridctrPersonalGroup.EmbeddedNavigator
     //
     this.gridctrPersonalGroup.EmbeddedNavigator.Name = "";
     this.gridctrPersonalGroup.Location = new System.Drawing.Point(72, 200);
     this.gridctrPersonalGroup.MainView = this.gvPersonalGroup;
     this.gridctrPersonalGroup.Name = "gridctrPersonalGroup";
     this.gridctrPersonalGroup.Size = new System.Drawing.Size(400, 88);
     this.gridctrPersonalGroup.TabIndex = 12;
     this.gridctrPersonalGroup.ViewCollection.AddRange(new DevExpress.XtraGrid.Views.Base.BaseView[] {
                                                                                                         this.gvPersonalGroup});
     //
     // gvPersonalGroup
     //
     this.gvPersonalGroup.Columns.AddRange(new DevExpress.XtraGrid.Columns.GridColumn[] {
                                                                                            this.colPersonalGroupID,
                                                                                            this.colPersonalGroupCode,
                                                                                            this.colPersonalGroupDesc});
     this.gvPersonalGroup.GridControl = this.gridctrPersonalGroup;
     this.gvPersonalGroup.Name = "gvPersonalGroup";
     this.gvPersonalGroup.OptionsBehavior.AllowIncrementalSearch = true;
     this.gvPersonalGroup.OptionsBehavior.Editable = false;
     this.gvPersonalGroup.OptionsCustomization.AllowFilter = false;
     this.gvPersonalGroup.OptionsSelection.MultiSelect = true;
     this.gvPersonalGroup.OptionsView.ShowGroupPanel = false;
     this.gvPersonalGroup.SortInfo.AddRange(new DevExpress.XtraGrid.Columns.GridColumnSortInfo[] {
                                                                                                     new DevExpress.XtraGrid.Columns.GridColumnSortInfo(this.colPersonalGroupID, DevExpress.Data.ColumnSortOrder.Ascending)});
     //
     // colPersonalGroupID
     //
     this.colPersonalGroupID.Caption = "ID";
     this.colPersonalGroupID.FieldName = "nMemoGroupID";
     this.colPersonalGroupID.Name = "colPersonalGroupID";
     this.colPersonalGroupID.Visible = true;
     this.colPersonalGroupID.VisibleIndex = 0;
     this.colPersonalGroupID.Width = 63;
     //
     // colPersonalGroupCode
     //
     this.colPersonalGroupCode.Caption = "Code";
     this.colPersonalGroupCode.FieldName = "strMemoGroupCode";
     this.colPersonalGroupCode.Name = "colPersonalGroupCode";
     this.colPersonalGroupCode.Visible = true;
     this.colPersonalGroupCode.VisibleIndex = 1;
     this.colPersonalGroupCode.Width = 97;
     //
     // colPersonalGroupDesc
     //
     this.colPersonalGroupDesc.Caption = "Description";
     this.colPersonalGroupDesc.FieldName = "strDescription";
     this.colPersonalGroupDesc.Name = "colPersonalGroupDesc";
     this.colPersonalGroupDesc.Visible = true;
     this.colPersonalGroupDesc.VisibleIndex = 2;
     this.colPersonalGroupDesc.Width = 226;
     //
     // sbtnDGDel
     //
     this.sbtnDGDel.ButtonStyle = DevExpress.XtraEditors.Controls.BorderStyles.Simple;
     this.sbtnDGDel.Location = new System.Drawing.Point(476, 178);
     this.sbtnDGDel.Name = "sbtnDGDel";
     this.sbtnDGDel.Size = new System.Drawing.Size(30, 20);
     this.sbtnDGDel.TabIndex = 10;
     this.sbtnDGDel.Text = "<";
     this.sbtnDGDel.Click += new System.EventHandler(this.sbtnDGDel_Click);
     //
     // sbtnDGAllDel
     //
     this.sbtnDGAllDel.ButtonStyle = DevExpress.XtraEditors.Controls.BorderStyles.Simple;
     this.sbtnDGAllDel.Location = new System.Drawing.Point(476, 156);
     this.sbtnDGAllDel.Name = "sbtnDGAllDel";
     this.sbtnDGAllDel.Size = new System.Drawing.Size(30, 20);
     this.sbtnDGAllDel.TabIndex = 9;
     this.sbtnDGAllDel.Text = "<<";
     this.sbtnDGAllDel.Click += new System.EventHandler(this.sbtnDGAllDel_Click);
     //
     // sbtnDGAllAdd
     //
     this.sbtnDGAllAdd.ButtonStyle = DevExpress.XtraEditors.Controls.BorderStyles.Simple;
     this.sbtnDGAllAdd.Location = new System.Drawing.Point(476, 134);
     this.sbtnDGAllAdd.Name = "sbtnDGAllAdd";
     this.sbtnDGAllAdd.Size = new System.Drawing.Size(30, 20);
     this.sbtnDGAllAdd.TabIndex = 8;
     this.sbtnDGAllAdd.Text = ">>";
     this.sbtnDGAllAdd.Click += new System.EventHandler(this.sbtnDGAllAdd_Click);
     //
     // sbtnDGAdd
     //
     this.sbtnDGAdd.ButtonStyle = DevExpress.XtraEditors.Controls.BorderStyles.Simple;
     this.sbtnDGAdd.Location = new System.Drawing.Point(476, 112);
     this.sbtnDGAdd.Name = "sbtnDGAdd";
     this.sbtnDGAdd.Size = new System.Drawing.Size(30, 20);
     this.sbtnDGAdd.TabIndex = 7;
     this.sbtnDGAdd.Text = ">";
     this.sbtnDGAdd.Click += new System.EventHandler(this.sbtnDGAdd_Click);
     //
     // gridctrDepartmentGroup2
     //
     //
     // gridctrDepartmentGroup2.EmbeddedNavigator
     //
     this.gridctrDepartmentGroup2.EmbeddedNavigator.Name = "";
     this.gridctrDepartmentGroup2.Location = new System.Drawing.Point(510, 110);
     this.gridctrDepartmentGroup2.MainView = this.gvDepartmentGroup2;
     this.gridctrDepartmentGroup2.Name = "gridctrDepartmentGroup2";
     this.gridctrDepartmentGroup2.Size = new System.Drawing.Size(400, 88);
     this.gridctrDepartmentGroup2.TabIndex = 11;
     this.gridctrDepartmentGroup2.ViewCollection.AddRange(new DevExpress.XtraGrid.Views.Base.BaseView[] {
                                                                                                            this.gvDepartmentGroup2});
     //
     // gvDepartmentGroup2
     //
     this.gvDepartmentGroup2.Columns.AddRange(new DevExpress.XtraGrid.Columns.GridColumn[] {
                                                                                               this.colDepartmentID2,
                                                                                               this.colDepartmentGroupCode2,
                                                                                               this.colDepartmentGroupDesc2});
     this.gvDepartmentGroup2.GridControl = this.gridctrDepartmentGroup2;
     this.gvDepartmentGroup2.Name = "gvDepartmentGroup2";
     this.gvDepartmentGroup2.OptionsBehavior.AllowIncrementalSearch = true;
     this.gvDepartmentGroup2.OptionsBehavior.Editable = false;
     this.gvDepartmentGroup2.OptionsCustomization.AllowFilter = false;
     this.gvDepartmentGroup2.OptionsSelection.MultiSelect = true;
     this.gvDepartmentGroup2.OptionsView.ShowGroupPanel = false;
     this.gvDepartmentGroup2.SortInfo.AddRange(new DevExpress.XtraGrid.Columns.GridColumnSortInfo[] {
                                                                                                        new DevExpress.XtraGrid.Columns.GridColumnSortInfo(this.colDepartmentID2, DevExpress.Data.ColumnSortOrder.Ascending)});
     //
     // colDepartmentID2
     //
     this.colDepartmentID2.Caption = "ID";
     this.colDepartmentID2.FieldName = "nMemoGroupID";
     this.colDepartmentID2.Name = "colDepartmentID2";
     this.colDepartmentID2.Visible = true;
     this.colDepartmentID2.VisibleIndex = 0;
     this.colDepartmentID2.Width = 70;
     //
     // colDepartmentGroupCode2
     //
     this.colDepartmentGroupCode2.Caption = "Code";
     this.colDepartmentGroupCode2.FieldName = "strMemoGroupCode";
     this.colDepartmentGroupCode2.Name = "colDepartmentGroupCode2";
     this.colDepartmentGroupCode2.Visible = true;
     this.colDepartmentGroupCode2.VisibleIndex = 1;
     this.colDepartmentGroupCode2.Width = 92;
     //
     // colDepartmentGroupDesc2
     //
     this.colDepartmentGroupDesc2.Caption = "Description";
     this.colDepartmentGroupDesc2.FieldName = "strDescription";
     this.colDepartmentGroupDesc2.Name = "colDepartmentGroupDesc2";
     this.colDepartmentGroupDesc2.Visible = true;
     this.colDepartmentGroupDesc2.VisibleIndex = 2;
     this.colDepartmentGroupDesc2.Width = 224;
     //
     // gridctrDepartmentGroup
     //
     //
     // gridctrDepartmentGroup.EmbeddedNavigator
     //
     this.gridctrDepartmentGroup.EmbeddedNavigator.Name = "";
     this.gridctrDepartmentGroup.Location = new System.Drawing.Point(72, 110);
     this.gridctrDepartmentGroup.MainView = this.gvDepartmentGroup;
     this.gridctrDepartmentGroup.Name = "gridctrDepartmentGroup";
     this.gridctrDepartmentGroup.Size = new System.Drawing.Size(400, 88);
     this.gridctrDepartmentGroup.TabIndex = 6;
     this.gridctrDepartmentGroup.ViewCollection.AddRange(new DevExpress.XtraGrid.Views.Base.BaseView[] {
                                                                                                           this.gvDepartmentGroup});
     //
     // gvDepartmentGroup
     //
     this.gvDepartmentGroup.Columns.AddRange(new DevExpress.XtraGrid.Columns.GridColumn[] {
                                                                                              this.colDepartmentGroup,
                                                                                              this.colDepartmentGroupCode,
                                                                                              this.colDepartmentGroupDesc});
     this.gvDepartmentGroup.GridControl = this.gridctrDepartmentGroup;
     this.gvDepartmentGroup.Name = "gvDepartmentGroup";
     this.gvDepartmentGroup.OptionsBehavior.AllowIncrementalSearch = true;
     this.gvDepartmentGroup.OptionsBehavior.Editable = false;
     this.gvDepartmentGroup.OptionsCustomization.AllowFilter = false;
     this.gvDepartmentGroup.OptionsSelection.MultiSelect = true;
     this.gvDepartmentGroup.OptionsView.ShowGroupPanel = false;
     this.gvDepartmentGroup.SortInfo.AddRange(new DevExpress.XtraGrid.Columns.GridColumnSortInfo[] {
                                                                                                       new DevExpress.XtraGrid.Columns.GridColumnSortInfo(this.colDepartmentGroup, DevExpress.Data.ColumnSortOrder.Ascending)});
     //
     // colDepartmentGroup
     //
     this.colDepartmentGroup.Caption = "ID";
     this.colDepartmentGroup.FieldName = "nMemoGroupID";
     this.colDepartmentGroup.Name = "colDepartmentGroup";
     this.colDepartmentGroup.Visible = true;
     this.colDepartmentGroup.VisibleIndex = 0;
     this.colDepartmentGroup.Width = 66;
     //
     // colDepartmentGroupCode
     //
     this.colDepartmentGroupCode.Caption = "Code";
     this.colDepartmentGroupCode.FieldName = "strMemoGroupCode";
     this.colDepartmentGroupCode.Name = "colDepartmentGroupCode";
     this.colDepartmentGroupCode.Visible = true;
     this.colDepartmentGroupCode.VisibleIndex = 1;
     this.colDepartmentGroupCode.Width = 95;
     //
     // colDepartmentGroupDesc
     //
     this.colDepartmentGroupDesc.Caption = "Description";
     this.colDepartmentGroupDesc.FieldName = "strDescription";
     this.colDepartmentGroupDesc.Name = "colDepartmentGroupDesc";
     this.colDepartmentGroupDesc.Visible = true;
     this.colDepartmentGroupDesc.VisibleIndex = 2;
     this.colDepartmentGroupDesc.Width = 225;
     //
     // sbtnBGDel
     //
     this.sbtnBGDel.ButtonStyle = DevExpress.XtraEditors.Controls.BorderStyles.Simple;
     this.sbtnBGDel.Location = new System.Drawing.Point(476, 88);
     this.sbtnBGDel.Name = "sbtnBGDel";
     this.sbtnBGDel.Size = new System.Drawing.Size(30, 20);
     this.sbtnBGDel.TabIndex = 4;
     this.sbtnBGDel.Text = "<";
     this.sbtnBGDel.Click += new System.EventHandler(this.sbtnBGDel_Click);
     //
     // sbtnBGAllDel
     //
     this.sbtnBGAllDel.ButtonStyle = DevExpress.XtraEditors.Controls.BorderStyles.Simple;
     this.sbtnBGAllDel.Location = new System.Drawing.Point(476, 66);
     this.sbtnBGAllDel.Name = "sbtnBGAllDel";
     this.sbtnBGAllDel.Size = new System.Drawing.Size(30, 20);
     this.sbtnBGAllDel.TabIndex = 3;
     this.sbtnBGAllDel.Text = "<<";
     this.sbtnBGAllDel.Click += new System.EventHandler(this.sbtnBGAllDel_Click);
     //
     // sbtnBGAllAdd
     //
     this.sbtnBGAllAdd.ButtonStyle = DevExpress.XtraEditors.Controls.BorderStyles.Simple;
     this.sbtnBGAllAdd.Location = new System.Drawing.Point(476, 44);
     this.sbtnBGAllAdd.Name = "sbtnBGAllAdd";
     this.sbtnBGAllAdd.Size = new System.Drawing.Size(30, 20);
     this.sbtnBGAllAdd.TabIndex = 2;
     this.sbtnBGAllAdd.Text = ">>";
     this.sbtnBGAllAdd.Click += new System.EventHandler(this.sbtnBGAllAdd_Click);
     //
     // sbtnBGAdd
     //
     this.sbtnBGAdd.ButtonStyle = DevExpress.XtraEditors.Controls.BorderStyles.Simple;
     this.sbtnBGAdd.Location = new System.Drawing.Point(476, 22);
     this.sbtnBGAdd.Name = "sbtnBGAdd";
     this.sbtnBGAdd.Size = new System.Drawing.Size(30, 20);
     this.sbtnBGAdd.TabIndex = 1;
     this.sbtnBGAdd.Text = ">";
     this.sbtnBGAdd.Click += new System.EventHandler(this.sbtnBGAdd_Click);
     //
     // label6
     //
     this.label6.Location = new System.Drawing.Point(10, 292);
     this.label6.Name = "label6";
     this.label6.Size = new System.Drawing.Size(60, 18);
     this.label6.TabIndex = 20;
     this.label6.Text = "Employee:";
     //
     // label4
     //
     this.label4.Location = new System.Drawing.Point(8, 202);
     this.label4.Name = "label4";
     this.label4.Size = new System.Drawing.Size(58, 30);
     this.label4.TabIndex = 19;
     this.label4.Text = "Personal Group:";
     //
     // label5
     //
     this.label5.Location = new System.Drawing.Point(6, 112);
     this.label5.Name = "label5";
     this.label5.Size = new System.Drawing.Size(64, 30);
     this.label5.TabIndex = 18;
     this.label5.Text = "Department Group:";
     //
     // gridctrBranchReceipient2
     //
     //
     // gridctrBranchReceipient2.EmbeddedNavigator
     //
     this.gridctrBranchReceipient2.EmbeddedNavigator.Name = "";
     this.gridctrBranchReceipient2.Location = new System.Drawing.Point(510, 20);
     this.gridctrBranchReceipient2.MainView = this.gvBranchReceipient2;
     this.gridctrBranchReceipient2.Name = "gridctrBranchReceipient2";
     this.gridctrBranchReceipient2.Size = new System.Drawing.Size(400, 88);
     this.gridctrBranchReceipient2.TabIndex = 5;
     this.gridctrBranchReceipient2.ViewCollection.AddRange(new DevExpress.XtraGrid.Views.Base.BaseView[] {
                                                                                                             this.gvBranchReceipient2});
     //
     // gvBranchReceipient2
     //
     this.gvBranchReceipient2.Columns.AddRange(new DevExpress.XtraGrid.Columns.GridColumn[] {
                                                                                                this.colBranchCode2,
                                                                                                this.colBranchName2});
     this.gvBranchReceipient2.GridControl = this.gridctrBranchReceipient2;
     this.gvBranchReceipient2.Name = "gvBranchReceipient2";
     this.gvBranchReceipient2.OptionsBehavior.AllowIncrementalSearch = true;
     this.gvBranchReceipient2.OptionsBehavior.Editable = false;
     this.gvBranchReceipient2.OptionsCustomization.AllowFilter = false;
     this.gvBranchReceipient2.OptionsSelection.MultiSelect = true;
     this.gvBranchReceipient2.OptionsView.ShowGroupPanel = false;
     this.gvBranchReceipient2.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(6, 22);
     this.label3.Name = "label3";
     this.label3.Size = new System.Drawing.Size(48, 34);
     this.label3.TabIndex = 16;
     this.label3.Text = "Branch Group:";
     //
     // gridctrBranchReceipient
     //
     //
     // gridctrBranchReceipient.EmbeddedNavigator
     //
     this.gridctrBranchReceipient.EmbeddedNavigator.Name = "";
     this.gridctrBranchReceipient.Location = new System.Drawing.Point(72, 20);
     this.gridctrBranchReceipient.MainView = this.gvBranchReceipient;
     this.gridctrBranchReceipient.Name = "gridctrBranchReceipient";
     this.gridctrBranchReceipient.Size = new System.Drawing.Size(400, 88);
     this.gridctrBranchReceipient.TabIndex = 0;
     this.gridctrBranchReceipient.ViewCollection.AddRange(new DevExpress.XtraGrid.Views.Base.BaseView[] {
                                                                                                            this.gvBranchReceipient});
     //
     // gvBranchReceipient
     //
     this.gvBranchReceipient.Columns.AddRange(new DevExpress.XtraGrid.Columns.GridColumn[] {
                                                                                               this.colBranchCode,
                                                                                               this.colBranchName});
     this.gvBranchReceipient.GridControl = this.gridctrBranchReceipient;
     this.gvBranchReceipient.Name = "gvBranchReceipient";
     this.gvBranchReceipient.OptionsBehavior.AllowIncrementalSearch = true;
     this.gvBranchReceipient.OptionsBehavior.Editable = false;
     this.gvBranchReceipient.OptionsCustomization.AllowFilter = false;
     this.gvBranchReceipient.OptionsSelection.MultiSelect = true;
     this.gvBranchReceipient.OptionsView.ShowGroupPanel = false;
     this.gvBranchReceipient.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;
     //
     // sbtnAdd
     //
     this.sbtnAdd.ButtonStyle = DevExpress.XtraEditors.Controls.BorderStyles.Simple;
     this.sbtnAdd.Location = new System.Drawing.Point(760, 396);
     this.sbtnAdd.Name = "sbtnAdd";
     this.sbtnAdd.TabIndex = 1;
     this.sbtnAdd.Text = "Add";
     this.sbtnAdd.Click += new System.EventHandler(this.sbtnAdd_Click);
     //
     // sbtnCancel
     //
     this.sbtnCancel.ButtonStyle = DevExpress.XtraEditors.Controls.BorderStyles.Simple;
     this.sbtnCancel.DialogResult = System.Windows.Forms.DialogResult.Cancel;
     this.sbtnCancel.Location = new System.Drawing.Point(842, 396);
     this.sbtnCancel.Name = "sbtnCancel";
     this.sbtnCancel.TabIndex = 2;
     this.sbtnCancel.Text = "Cancel";
     //
     // frmNewReceipient2
     //
     this.AcceptButton = this.sbtnAdd;
     this.AutoScaleBaseSize = new System.Drawing.Size(5, 13);
     this.CancelButton = this.sbtnCancel;
     this.ClientSize = new System.Drawing.Size(920, 424);
     this.Controls.Add(this.sbtnAdd);
     this.Controls.Add(this.sbtnCancel);
     this.Controls.Add(this.groupControl1);
     this.MaximizeBox = false;
     this.MinimizeBox = false;
     this.Name = "frmNewReceipient2";
     this.ShowInTaskbar = false;
     this.StartPosition = System.Windows.Forms.FormStartPosition.CenterParent;
     this.Text = "New Receipient";
     ((System.ComponentModel.ISupportInitialize)(this.groupControl1)).EndInit();
     this.groupControl1.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.gridctrEmployee2)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.gvEmployee2)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridctrEmployee)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.gvEmployee)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridctrPersonalGroup2)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.gvPersonalGroup2)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridctrPersonalGroup)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.gvPersonalGroup)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridctrDepartmentGroup2)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.gvDepartmentGroup2)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridctrDepartmentGroup)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.gvDepartmentGroup)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridctrBranchReceipient2)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.gvBranchReceipient2)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridctrBranchReceipient)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.gvBranchReceipient)).EndInit();
     this.ResumeLayout(false);
 }
Example #40
0
        private DevExpress.XtraGrid.Columns.GridColumn getCheckOptionColumn()
        {
            DevExpress.XtraGrid.Columns.GridColumn gridColumn1 = gridView1.Columns.ColumnByFieldName(selectedColumnFieldName);
            if (gridColumn1 != null)
            {
                return gridColumn1;
            }

            gridColumn1 = new DevExpress.XtraGrid.Columns.GridColumn();
            //
            // repositoryItemCheckEdit1
            //
            repositoryItemCheckEdit1.AutoHeight = false;
            repositoryItemCheckEdit1.EditValueChanged += new EventHandler(edit_EditValueChanged);
            //
            // gridColumn1
            //
            gridColumn1.Caption = " ";//EP.EPEF.EPEFC0000012/*选择*/;
            if (repositoryItemCheckEdit1 != null)
            gridColumn1.ColumnEdit = repositoryItemCheckEdit1;
            gridColumn1.FieldName = selectedColumnFieldName;
            gridColumn1.Name = selectedColumnFieldName;
            gridColumn1.UnboundType = DevExpress.Data.UnboundColumnType.Boolean;
            gridColumn1.Visible = ShowSelectedColumn;
            gridColumn1.VisibleIndex = 0;
            gridColumn1.Fixed = FixedStyle.Left;
            gridColumn1.Width = 35;
            //gridColumn1.Disposed += new EventHandler(gridColumn1_Disposed);
            //gridColumn1.ColumnHandle = 0;
            //gridColumn1.Fixed = DevExpress.XtraGrid.Columns.FixedStyle.Left;
            gridView1.FixedLineWidth = 1;
             return gridColumn1;
        }
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(frmCourseBrw));
     this.persistentRepository1 = new DevExpress.XtraEditors.Repository.PersistentRepository(this.components);
     this.repositoryItemTextEdit1 = new DevExpress.XtraEditors.Repository.RepositoryItemTextEdit();
     this.pnl_Find = new System.Windows.Forms.Panel();
     this.panel1 = new System.Windows.Forms.Panel();
     this.pictureBox1 = new System.Windows.Forms.PictureBox();
     this.txtSearch = new System.Windows.Forms.TextBox();
     this.chk_Anywhere = new System.Windows.Forms.CheckBox();
     this.btn_Clear = new System.Windows.Forms.Button();
     this.btn_Find = new System.Windows.Forms.Button();
     this.lbl_Find = new System.Windows.Forms.Label();
     this.chk_AdvanceSearch = new System.Windows.Forms.CheckBox();
     this.pnlBody = new System.Windows.Forms.Panel();
     this.pnl_SpeedSearch = new System.Windows.Forms.Panel();
     this.pnl_SpeedSearch1 = new System.Windows.Forms.Panel();
     this.txt_SpeedSearch = new System.Windows.Forms.TextBox();
     this.label1 = new System.Windows.Forms.Label();
     this.grdCourse = new DevExpress.XtraGrid.GridControl();
     this.xpServerCollectionSource1 = new DevExpress.Xpo.XPServerCollectionSource();
     this.session1 = new DevExpress.Xpo.Session();
     this.gvwCourse = new DevExpress.XtraGrid.Views.Grid.GridView();
     this.gcolCourseId = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gColName = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gcolPhonetic = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gcolNameRomaji = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gcolCourseType = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gColProgram = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gcolClient = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gcolDept = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gcolEventDateTime = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gcolEndDateTime = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gcolNumberStudents = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gcolHomeWorkMinutes = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gcolTestIniEventID = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gColTestMidEventID = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gColTestFinalEventID = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gcolTestIniForm = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gColTestMidForm = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gcolTestFinalForm = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gcolCurriculam = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gcolStatus = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gcolDescription = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gcolDateLastLogin = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gcolDateCreated = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gcolLastModified = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gcolLastModifiedByUser = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gcolEventId = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gcolOccurrenceCount = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gcolScheduledInstructor = new DevExpress.XtraGrid.Columns.GridColumn();
     this.repositoryItemTimeEdit1 = new DevExpress.XtraEditors.Repository.RepositoryItemTimeEdit();
     this.repositoryItemButtonEdit1 = new DevExpress.XtraEditors.Repository.RepositoryItemButtonEdit();
     this.repositoryItemTimeEdit2 = new DevExpress.XtraEditors.Repository.RepositoryItemTimeEdit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemTextEdit1)).BeginInit();
     this.pnl_Find.SuspendLayout();
     this.panel1.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.pictureBox1)).BeginInit();
     this.pnlBody.SuspendLayout();
     this.pnl_SpeedSearch.SuspendLayout();
     this.pnl_SpeedSearch1.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.grdCourse)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.xpServerCollectionSource1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.session1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.gvwCourse)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemTimeEdit1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemButtonEdit1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemTimeEdit2)).BeginInit();
     this.SuspendLayout();
     //
     // persistentRepository1
     //
     this.persistentRepository1.Items.AddRange(new DevExpress.XtraEditors.Repository.RepositoryItem[] {
     this.repositoryItemTextEdit1});
     //
     // repositoryItemTextEdit1
     //
     this.repositoryItemTextEdit1.AllowFocused = false;
     this.repositoryItemTextEdit1.AutoHeight = false;
     this.repositoryItemTextEdit1.BorderStyle = DevExpress.XtraEditors.Controls.BorderStyles.NoBorder;
     this.repositoryItemTextEdit1.Name = "repositoryItemTextEdit1";
     //
     // pnl_Find
     //
     this.pnl_Find.BackColor = System.Drawing.SystemColors.Window;
     this.pnl_Find.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D;
     this.pnl_Find.Controls.Add(this.panel1);
     this.pnl_Find.Controls.Add(this.txtSearch);
     this.pnl_Find.Controls.Add(this.chk_Anywhere);
     this.pnl_Find.Controls.Add(this.btn_Clear);
     this.pnl_Find.Controls.Add(this.btn_Find);
     this.pnl_Find.Controls.Add(this.lbl_Find);
     this.pnl_Find.Controls.Add(this.chk_AdvanceSearch);
     this.pnl_Find.Dock = System.Windows.Forms.DockStyle.Top;
     this.pnl_Find.Location = new System.Drawing.Point(0, 0);
     this.pnl_Find.Name = "pnl_Find";
     this.pnl_Find.Size = new System.Drawing.Size(672, 129);
     this.pnl_Find.TabIndex = 28;
     //
     // panel1
     //
     this.panel1.Controls.Add(this.pictureBox1);
     this.panel1.Dock = System.Windows.Forms.DockStyle.Right;
     this.panel1.Location = new System.Drawing.Point(386, 0);
     this.panel1.Name = "panel1";
     this.panel1.Size = new System.Drawing.Size(282, 125);
     this.panel1.TabIndex = 10;
     //
     // pictureBox1
     //
     this.pictureBox1.Dock = System.Windows.Forms.DockStyle.Fill;
     this.pictureBox1.Image = ((System.Drawing.Image)(resources.GetObject("pictureBox1.Image")));
     this.pictureBox1.Location = new System.Drawing.Point(0, 0);
     this.pictureBox1.Name = "pictureBox1";
     this.pictureBox1.Size = new System.Drawing.Size(282, 125);
     this.pictureBox1.SizeMode = System.Windows.Forms.PictureBoxSizeMode.StretchImage;
     this.pictureBox1.TabIndex = 0;
     this.pictureBox1.TabStop = false;
     //
     // txtSearch
     //
     this.txtSearch.Location = new System.Drawing.Point(102, 24);
     this.txtSearch.Name = "txtSearch";
     this.txtSearch.Size = new System.Drawing.Size(474, 27);
     this.txtSearch.TabIndex = 9;
     this.txtSearch.KeyDown += new System.Windows.Forms.KeyEventHandler(this.txtSearch_KeyDown);
     //
     // chk_Anywhere
     //
     this.chk_Anywhere.BackColor = System.Drawing.SystemColors.Window;
     this.chk_Anywhere.FlatStyle = System.Windows.Forms.FlatStyle.System;
     this.chk_Anywhere.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.chk_Anywhere.Location = new System.Drawing.Point(336, 63);
     this.chk_Anywhere.Name = "chk_Anywhere";
     this.chk_Anywhere.RightToLeft = System.Windows.Forms.RightToLeft.No;
     this.chk_Anywhere.Size = new System.Drawing.Size(246, 34);
     this.chk_Anywhere.TabIndex = 7;
     this.chk_Anywhere.Text = "Search Anywhere in Fields";
     this.chk_Anywhere.UseVisualStyleBackColor = false;
     //
     // btn_Clear
     //
     this.btn_Clear.BackColor = System.Drawing.SystemColors.Control;
     this.btn_Clear.FlatStyle = System.Windows.Forms.FlatStyle.System;
     this.btn_Clear.Location = new System.Drawing.Point(592, 63);
     this.btn_Clear.Name = "btn_Clear";
     this.btn_Clear.Size = new System.Drawing.Size(120, 33);
     this.btn_Clear.TabIndex = 6;
     this.btn_Clear.Text = "Clear";
     this.btn_Clear.UseVisualStyleBackColor = false;
     this.btn_Clear.Click += new System.EventHandler(this.btn_Clear_Click);
     //
     // btn_Find
     //
     this.btn_Find.BackColor = System.Drawing.SystemColors.Control;
     this.btn_Find.FlatStyle = System.Windows.Forms.FlatStyle.System;
     this.btn_Find.Location = new System.Drawing.Point(592, 21);
     this.btn_Find.Name = "btn_Find";
     this.btn_Find.Size = new System.Drawing.Size(120, 33);
     this.btn_Find.TabIndex = 4;
     this.btn_Find.Text = "Find";
     this.btn_Find.UseVisualStyleBackColor = false;
     this.btn_Find.Click += new System.EventHandler(this.btn_Find_Click);
     //
     // lbl_Find
     //
     this.lbl_Find.AutoSize = true;
     this.lbl_Find.Location = new System.Drawing.Point(24, 27);
     this.lbl_Find.Name = "lbl_Find";
     this.lbl_Find.Size = new System.Drawing.Size(46, 21);
     this.lbl_Find.TabIndex = 0;
     this.lbl_Find.Text = " Find";
     //
     // chk_AdvanceSearch
     //
     this.chk_AdvanceSearch.BackColor = System.Drawing.SystemColors.Window;
     this.chk_AdvanceSearch.Checked = true;
     this.chk_AdvanceSearch.CheckState = System.Windows.Forms.CheckState.Checked;
     this.chk_AdvanceSearch.FlatStyle = System.Windows.Forms.FlatStyle.System;
     this.chk_AdvanceSearch.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.chk_AdvanceSearch.Location = new System.Drawing.Point(102, 63);
     this.chk_AdvanceSearch.Name = "chk_AdvanceSearch";
     this.chk_AdvanceSearch.RightToLeft = System.Windows.Forms.RightToLeft.No;
     this.chk_AdvanceSearch.Size = new System.Drawing.Size(180, 34);
     this.chk_AdvanceSearch.TabIndex = 8;
     this.chk_AdvanceSearch.Text = "Search All Fields";
     this.chk_AdvanceSearch.UseVisualStyleBackColor = false;
     //
     // pnlBody
     //
     this.pnlBody.Controls.Add(this.pnl_SpeedSearch);
     this.pnlBody.Controls.Add(this.grdCourse);
     this.pnlBody.Controls.Add(this.pnl_Find);
     this.pnlBody.Dock = System.Windows.Forms.DockStyle.Fill;
     this.pnlBody.Location = new System.Drawing.Point(0, 0);
     this.pnlBody.Name = "pnlBody";
     this.pnlBody.Size = new System.Drawing.Size(672, 357);
     this.pnlBody.TabIndex = 29;
     this.pnlBody.Resize += new System.EventHandler(this.pnlBody_Resize);
     //
     // pnl_SpeedSearch
     //
     this.pnl_SpeedSearch.BackColor = System.Drawing.Color.Black;
     this.pnl_SpeedSearch.Controls.Add(this.pnl_SpeedSearch1);
     this.pnl_SpeedSearch.Location = new System.Drawing.Point(64, 309);
     this.pnl_SpeedSearch.Name = "pnl_SpeedSearch";
     this.pnl_SpeedSearch.Size = new System.Drawing.Size(307, 102);
     this.pnl_SpeedSearch.TabIndex = 42;
     this.pnl_SpeedSearch.Visible = false;
     //
     // pnl_SpeedSearch1
     //
     this.pnl_SpeedSearch1.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(38)))), ((int)(((byte)(143)))), ((int)(((byte)(230)))));
     this.pnl_SpeedSearch1.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
     this.pnl_SpeedSearch1.Controls.Add(this.txt_SpeedSearch);
     this.pnl_SpeedSearch1.Controls.Add(this.label1);
     this.pnl_SpeedSearch1.Location = new System.Drawing.Point(6, 6);
     this.pnl_SpeedSearch1.Name = "pnl_SpeedSearch1";
     this.pnl_SpeedSearch1.Size = new System.Drawing.Size(295, 91);
     this.pnl_SpeedSearch1.TabIndex = 39;
     //
     // txt_SpeedSearch
     //
     this.txt_SpeedSearch.Location = new System.Drawing.Point(18, 41);
     this.txt_SpeedSearch.Name = "txt_SpeedSearch";
     this.txt_SpeedSearch.Size = new System.Drawing.Size(251, 27);
     this.txt_SpeedSearch.TabIndex = 10;
     this.txt_SpeedSearch.TextChanged += new System.EventHandler(this.txt_SpeedSearch_TextChanged);
     this.txt_SpeedSearch.KeyDown += new System.Windows.Forms.KeyEventHandler(this.txt_SpeedSearch_KeyDown);
     this.txt_SpeedSearch.Leave += new System.EventHandler(this.txt_SpeedSearch_Leave);
     this.txt_SpeedSearch.KeyUp += new System.Windows.Forms.KeyEventHandler(this.txt_SpeedSearch_KeyUp);
     //
     // label1
     //
     this.label1.AutoSize = true;
     this.label1.Font = new System.Drawing.Font("Arial", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label1.ForeColor = System.Drawing.Color.White;
     this.label1.Location = new System.Drawing.Point(90, 6);
     this.label1.Name = "label1";
     this.label1.Size = new System.Drawing.Size(103, 19);
     this.label1.TabIndex = 0;
     this.label1.Text = "Fast Search";
     //
     // grdCourse
     //
     this.grdCourse.DataSource = this.xpServerCollectionSource1;
     this.grdCourse.Dock = System.Windows.Forms.DockStyle.Fill;
     this.grdCourse.ExternalRepository = this.persistentRepository1;
     this.grdCourse.Location = new System.Drawing.Point(0, 129);
     this.grdCourse.MainView = this.gvwCourse;
     this.grdCourse.Name = "grdCourse";
     this.grdCourse.RepositoryItems.AddRange(new DevExpress.XtraEditors.Repository.RepositoryItem[] {
     this.repositoryItemTimeEdit1,
     this.repositoryItemButtonEdit1,
     this.repositoryItemTimeEdit2});
     this.grdCourse.ServerMode = true;
     this.grdCourse.Size = new System.Drawing.Size(672, 228);
     this.grdCourse.TabIndex = 26;
     this.grdCourse.ViewCollection.AddRange(new DevExpress.XtraGrid.Views.Base.BaseView[] {
     this.gvwCourse});
     this.grdCourse.DoubleClick += new System.EventHandler(this.grdCourse_DoubleClick);
     this.grdCourse.KeyPress += new System.Windows.Forms.KeyPressEventHandler(this.grdCourse_KeyPress);
     //
     // xpServerCollectionSource1
     //
     this.xpServerCollectionSource1.ObjectType = typeof(Scheduler.BusinessLayer.CoursePO);
     this.xpServerCollectionSource1.Session = this.session1;
     //
     // gvwCourse
     //
     this.gvwCourse.ActiveFilterString = "[CourseStatus] = \'Active\'";
     this.gvwCourse.BorderStyle = DevExpress.XtraEditors.Controls.BorderStyles.Style3D;
     this.gvwCourse.Columns.AddRange(new DevExpress.XtraGrid.Columns.GridColumn[] {
     this.gcolCourseId,
     this.gColName,
     this.gcolPhonetic,
     this.gcolNameRomaji,
     this.gcolCourseType,
     this.gColProgram,
     this.gcolClient,
     this.gcolDept,
     this.gcolEventDateTime,
     this.gcolEndDateTime,
     this.gcolNumberStudents,
     this.gcolHomeWorkMinutes,
     this.gcolTestIniEventID,
     this.gColTestMidEventID,
     this.gColTestFinalEventID,
     this.gcolTestIniForm,
     this.gColTestMidForm,
     this.gcolTestFinalForm,
     this.gcolCurriculam,
     this.gcolStatus,
     this.gcolDescription,
     this.gcolDateLastLogin,
     this.gcolDateCreated,
     this.gcolLastModified,
     this.gcolLastModifiedByUser,
     this.gcolEventId,
     this.gcolOccurrenceCount,
     this.gcolScheduledInstructor});
     this.gvwCourse.FocusRectStyle = DevExpress.XtraGrid.Views.Grid.DrawFocusRectStyle.RowFocus;
     this.gvwCourse.GridControl = this.grdCourse;
     this.gvwCourse.Name = "gvwCourse";
     this.gvwCourse.OptionsBehavior.Editable = false;
     this.gvwCourse.OptionsBehavior.KeepGroupExpandedOnSorting = false;
     this.gvwCourse.OptionsNavigation.AutoMoveRowFocus = false;
     this.gvwCourse.OptionsView.ShowDetailButtons = false;
     this.gvwCourse.OptionsView.ShowGroupPanel = false;
     this.gvwCourse.OptionsView.ShowHorzLines = false;
     this.gvwCourse.OptionsView.ShowIndicator = false;
     this.gvwCourse.SortInfo.AddRange(new DevExpress.XtraGrid.Columns.GridColumnSortInfo[] {
     new DevExpress.XtraGrid.Columns.GridColumnSortInfo(this.gcolClient, DevExpress.Data.ColumnSortOrder.Ascending),
     new DevExpress.XtraGrid.Columns.GridColumnSortInfo(this.gColName, DevExpress.Data.ColumnSortOrder.Ascending),
     new DevExpress.XtraGrid.Columns.GridColumnSortInfo(this.gcolEventDateTime, DevExpress.Data.ColumnSortOrder.Ascending)});
     //
     // gcolCourseId
     //
     this.gcolCourseId.Caption = "Course Id";
     this.gcolCourseId.FieldName = "CourseId";
     this.gcolCourseId.Name = "gcolCourseId";
     //
     // gColName
     //
     this.gColName.Caption = "Class Name";
     this.gColName.FieldName = "BrowseName";
     this.gColName.Name = "gColName";
     this.gColName.Visible = true;
     this.gColName.VisibleIndex = 3;
     this.gColName.Width = 203;
     //
     // gcolPhonetic
     //
     this.gcolPhonetic.Caption = "Name Phonetic";
     this.gcolPhonetic.FieldName = "NamePhonetic";
     this.gcolPhonetic.Name = "gcolPhonetic";
     this.gcolPhonetic.Width = 78;
     //
     // gcolNameRomaji
     //
     this.gcolNameRomaji.Caption = "Name Romaji";
     this.gcolNameRomaji.FieldName = "NameRomaji";
     this.gcolNameRomaji.Name = "gcolNameRomaji";
     this.gcolNameRomaji.Width = 78;
     //
     // gcolCourseType
     //
     this.gcolCourseType.Caption = "Type";
     this.gcolCourseType.FieldName = "CourseType";
     this.gcolCourseType.Name = "gcolCourseType";
     this.gcolCourseType.Width = 60;
     //
     // gColProgram
     //
     this.gColProgram.Caption = "Program Name";
     this.gColProgram.FieldName = "Program";
     this.gColProgram.Name = "gColProgram";
     this.gColProgram.Visible = true;
     this.gColProgram.VisibleIndex = 2;
     this.gColProgram.Width = 203;
     //
     // gcolClient
     //
     this.gcolClient.Caption = "Client Name";
     this.gcolClient.FieldName = "Client";
     this.gcolClient.Name = "gcolClient";
     this.gcolClient.Visible = true;
     this.gcolClient.VisibleIndex = 0;
     this.gcolClient.Width = 223;
     //
     // gcolDept
     //
     this.gcolDept.Caption = "Department Name";
     this.gcolDept.FieldName = "Department";
     this.gcolDept.Name = "gcolDept";
     this.gcolDept.Visible = true;
     this.gcolDept.VisibleIndex = 1;
     this.gcolDept.Width = 208;
     //
     // gcolEventDateTime
     //
     this.gcolEventDateTime.Caption = "Event Start Date";
     this.gcolEventDateTime.DisplayFormat.FormatString = "MM/dd/yyyy HH:mm";
     this.gcolEventDateTime.DisplayFormat.FormatType = DevExpress.Utils.FormatType.DateTime;
     this.gcolEventDateTime.FieldName = "EventStartDateTime";
     this.gcolEventDateTime.Name = "gcolEventDateTime";
     this.gcolEventDateTime.Visible = true;
     this.gcolEventDateTime.VisibleIndex = 4;
     this.gcolEventDateTime.Width = 160;
     //
     // gcolEndDateTime
     //
     this.gcolEndDateTime.Caption = "Event End Date";
     this.gcolEndDateTime.DisplayFormat.FormatString = "MM/dd/yyyy HH:mm";
     this.gcolEndDateTime.DisplayFormat.FormatType = DevExpress.Utils.FormatType.DateTime;
     this.gcolEndDateTime.FieldName = "EventEndDateTime";
     this.gcolEndDateTime.Name = "gcolEndDateTime";
     this.gcolEndDateTime.Visible = true;
     this.gcolEndDateTime.VisibleIndex = 5;
     this.gcolEndDateTime.Width = 160;
     //
     // gcolNumberStudents
     //
     this.gcolNumberStudents.Caption = "No. Students";
     this.gcolNumberStudents.FieldName = "NumberStudents";
     this.gcolNumberStudents.Name = "gcolNumberStudents";
     //
     // gcolHomeWorkMinutes
     //
     this.gcolHomeWorkMinutes.Caption = "Homework Mints.";
     this.gcolHomeWorkMinutes.FieldName = "HomeWorkMinutes";
     this.gcolHomeWorkMinutes.Name = "gcolHomeWorkMinutes";
     this.gcolHomeWorkMinutes.Width = 76;
     //
     // gcolTestIniEventID
     //
     this.gcolTestIniEventID.Caption = "Initial EventID";
     this.gcolTestIniEventID.FieldName = "TestInitialEventID";
     this.gcolTestIniEventID.Name = "gcolTestIniEventID";
     //
     // gColTestMidEventID
     //
     this.gColTestMidEventID.Caption = "Mid-term EventID";
     this.gColTestMidEventID.FieldName = "TestMidTermEventID";
     this.gColTestMidEventID.Name = "gColTestMidEventID";
     //
     // gColTestFinalEventID
     //
     this.gColTestFinalEventID.Caption = "Final EventID";
     this.gColTestFinalEventID.FieldName = "TestFinalEventID";
     this.gColTestFinalEventID.Name = "gColTestFinalEventID";
     //
     // gcolTestIniForm
     //
     this.gcolTestIniForm.Caption = "Initial Form";
     this.gcolTestIniForm.FieldName = "TestInitialForm";
     this.gcolTestIniForm.Name = "gcolTestIniForm";
     //
     // gColTestMidForm
     //
     this.gColTestMidForm.Caption = "Mid-term Form";
     this.gColTestMidForm.FieldName = "TestMidTermForm";
     this.gColTestMidForm.Name = "gColTestMidForm";
     //
     // gcolTestFinalForm
     //
     this.gcolTestFinalForm.Caption = "Final Form";
     this.gcolTestFinalForm.FieldName = "TestFinalForm";
     this.gcolTestFinalForm.Name = "gcolTestFinalForm";
     //
     // gcolCurriculam
     //
     this.gcolCurriculam.Caption = "Curriculam";
     this.gcolCurriculam.FieldName = "Curriculam";
     this.gcolCurriculam.Name = "gcolCurriculam";
     this.gcolCurriculam.Width = 44;
     //
     // gcolStatus
     //
     this.gcolStatus.Caption = "Status";
     this.gcolStatus.FieldName = "CourseStatus";
     this.gcolStatus.Name = "gcolStatus";
     this.gcolStatus.Visible = true;
     this.gcolStatus.VisibleIndex = 7;
     this.gcolStatus.Width = 183;
     //
     // gcolDescription
     //
     this.gcolDescription.Caption = "Description";
     this.gcolDescription.FieldName = "Description";
     this.gcolDescription.Name = "gcolDescription";
     this.gcolDescription.Width = 102;
     //
     // gcolDateLastLogin
     //
     this.gcolDateLastLogin.Caption = "Date Last Login";
     this.gcolDateLastLogin.FieldName = "DatelastLogin";
     this.gcolDateLastLogin.Name = "gcolDateLastLogin";
     //
     // gcolDateCreated
     //
     this.gcolDateCreated.Caption = "Date Created";
     this.gcolDateCreated.FieldName = "DateCreated";
     this.gcolDateCreated.Name = "gcolDateCreated";
     //
     // gcolLastModified
     //
     this.gcolLastModified.Caption = "Date Last Modified";
     this.gcolLastModified.FieldName = "DateLastModified";
     this.gcolLastModified.Name = "gcolLastModified";
     //
     // gcolLastModifiedByUser
     //
     this.gcolLastModifiedByUser.Caption = "Last Modified User ID";
     this.gcolLastModifiedByUser.FieldName = "LastModifiedByUserID";
     this.gcolLastModifiedByUser.Name = "gcolLastModifiedByUser";
     //
     // gcolEventId
     //
     this.gcolEventId.Caption = "EventId";
     this.gcolEventId.DisplayFormat.FormatType = DevExpress.Utils.FormatType.Numeric;
     this.gcolEventId.FieldName = "EventID";
     this.gcolEventId.Name = "gcolEventId";
     //
     // gcolOccurrenceCount
     //
     this.gcolOccurrenceCount.Caption = "Occured / Total";
     this.gcolOccurrenceCount.FieldName = "OccurrenceCount";
     this.gcolOccurrenceCount.Name = "gcolOccurrenceCount";
     this.gcolOccurrenceCount.Visible = true;
     this.gcolOccurrenceCount.VisibleIndex = 8;
     this.gcolOccurrenceCount.Width = 224;
     //
     // gcolScheduledInstructor
     //
     this.gcolScheduledInstructor.Caption = "Scheduled Instructor";
     this.gcolScheduledInstructor.FieldName = "ScheduledInstructor";
     this.gcolScheduledInstructor.Name = "gcolScheduledInstructor";
     this.gcolScheduledInstructor.Visible = true;
     this.gcolScheduledInstructor.VisibleIndex = 6;
     this.gcolScheduledInstructor.Width = 183;
     //
     // repositoryItemTimeEdit1
     //
     this.repositoryItemTimeEdit1.AutoHeight = false;
     this.repositoryItemTimeEdit1.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton()});
     this.repositoryItemTimeEdit1.DisplayFormat.FormatString = "hh:mm:ss tt";
     this.repositoryItemTimeEdit1.DisplayFormat.FormatType = DevExpress.Utils.FormatType.DateTime;
     this.repositoryItemTimeEdit1.Mask.EditMask = "hh:mm:ss tt";
     this.repositoryItemTimeEdit1.Name = "repositoryItemTimeEdit1";
     //
     // repositoryItemButtonEdit1
     //
     this.repositoryItemButtonEdit1.AutoHeight = false;
     this.repositoryItemButtonEdit1.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton()});
     this.repositoryItemButtonEdit1.Name = "repositoryItemButtonEdit1";
     //
     // repositoryItemTimeEdit2
     //
     this.repositoryItemTimeEdit2.AutoHeight = false;
     this.repositoryItemTimeEdit2.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton()});
     this.repositoryItemTimeEdit2.DisplayFormat.FormatString = "MM/dd/yyyy HH:mm";
     this.repositoryItemTimeEdit2.DisplayFormat.FormatType = DevExpress.Utils.FormatType.DateTime;
     this.repositoryItemTimeEdit2.Mask.EditMask = "MM/dd/yyyy HH:mm";
     this.repositoryItemTimeEdit2.Name = "repositoryItemTimeEdit2";
     //
     // frmCourseBrw
     //
     this.AutoScaleBaseSize = new System.Drawing.Size(8, 20);
     this.ClientSize = new System.Drawing.Size(672, 357);
     this.Controls.Add(this.pnlBody);
     this.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.Name = "frmCourseBrw";
     this.ShowInTaskbar = false;
     this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen;
     this.Text = "`";
     this.Load += new System.EventHandler(this.frmCourseBrw_Load);
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemTextEdit1)).EndInit();
     this.pnl_Find.ResumeLayout(false);
     this.pnl_Find.PerformLayout();
     this.panel1.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.pictureBox1)).EndInit();
     this.pnlBody.ResumeLayout(false);
     this.pnl_SpeedSearch.ResumeLayout(false);
     this.pnl_SpeedSearch1.ResumeLayout(false);
     this.pnl_SpeedSearch1.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(this.grdCourse)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.xpServerCollectionSource1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.session1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.gvwCourse)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemTimeEdit1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemButtonEdit1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemTimeEdit2)).EndInit();
     this.ResumeLayout(false);
 }
Example #42
0
        protected DevExpress.XtraGrid.Columns.GridColumn colPaymentMode;    //付款方式
        protected override void CreateGridColumns()
        {
            this.colBoundID     = new DevExpress.XtraGrid.Columns.GridColumn();
            this.colShipDate    = new DevExpress.XtraGrid.Columns.GridColumn();
            this.colDueDate     = new DevExpress.XtraGrid.Columns.GridColumn();
            this.colPoNo        = new DevExpress.XtraGrid.Columns.GridColumn();
            this.colSales       = new DevExpress.XtraGrid.Columns.GridColumn();
            this.colCustomer    = new DevExpress.XtraGrid.Columns.GridColumn();
            this.colQuantity    = new DevExpress.XtraGrid.Columns.GridColumn();
            this.colPriceAmount = new DevExpress.XtraGrid.Columns.GridColumn();
            this.colRcvdAmount  = new DevExpress.XtraGrid.Columns.GridColumn();
            this.colInvAmount   = new DevExpress.XtraGrid.Columns.GridColumn();
            this.colCommission  = new DevExpress.XtraGrid.Columns.GridColumn();
            this.colPayoff      = new DevExpress.XtraGrid.Columns.GridColumn();
            this.colCommPaid    = new DevExpress.XtraGrid.Columns.GridColumn();
            this.colPaymentMode = new DevExpress.XtraGrid.Columns.GridColumn();
            Columns             = new DevExpress.XtraGrid.Columns.GridColumn[] { this.colBoundID,
                                                                                 this.colSales,
                                                                                 this.colShipDate,
                                                                                 this.colDueDate,
                                                                                 this.colPoNo,
                                                                                 this.colCustomer,
                                                                                 this.colQuantity,
                                                                                 this.colInvAmount,
                                                                                 this.colPriceAmount,
                                                                                 this.colCommission,
                                                                                 this.colRcvdAmount,
                                                                                 this.colPayoff,
                                                                                 this.colCommPaid,
                                                                                 this.colPaymentMode };
            // colBoundID
            //
            this.colBoundID.Caption     = "单据号";
            this.colBoundID.FieldName   = "OutboundID";
            this.colBoundID.Name        = "colBoundID";
            this.colBoundID.UnboundType = DevExpress.Data.UnboundColumnType.String;
            this.colBoundID.Visible     = false;
            this.colBoundID.Width       = 100;
            //
            // colSales
            //
            this.colSales.Caption     = "Sales";
            this.colSales.FieldName   = "Sales";
            this.colSales.Name        = "colSales";
            this.colSales.UnboundType = DevExpress.Data.UnboundColumnType.String;
            this.colSales.Visible     = true;
            this.colSales.Width       = 120;

            //
            // colShipDate
            //
            this.colShipDate.Caption     = "Ship Date";
            this.colShipDate.FieldName   = "ShipDate";
            this.colShipDate.Name        = "colShipDate";
            this.colShipDate.UnboundType = DevExpress.Data.UnboundColumnType.String;
            this.colShipDate.Visible     = true;
            this.colShipDate.Width       = 100;

            //
            // colDueDate
            //
            this.colDueDate.Caption     = "Due Date";
            this.colDueDate.FieldName   = "DueDate";
            this.colDueDate.Name        = "colDueDate";
            this.colDueDate.UnboundType = DevExpress.Data.UnboundColumnType.String;
            this.colDueDate.Visible     = true;
            this.colDueDate.Width       = 100;

            //
            // colPoNo
            //
            this.colPoNo.Caption     = "P.O#";
            this.colPoNo.FieldName   = "OrderNo";
            this.colPoNo.Name        = "colPoNo";
            this.colPoNo.UnboundType = DevExpress.Data.UnboundColumnType.String;
            this.colPoNo.Visible     = true;
            this.colPoNo.Width       = 120;
            //
            //colCustomer
            //
            this.colCustomer.Caption                 = "Receiver";
            this.colCustomer.FieldName               = "Receiver";
            this.colCustomer.Name                    = "colCustomer";
            this.colCustomer.UnboundType             = DevExpress.Data.UnboundColumnType.Boolean;
            this.colCustomer.OptionsColumn.AllowEdit = false;
            this.colCustomer.OptionsColumn.AllowSort = DefaultBoolean.False;
            this.colCustomer.Visible                 = true;
            this.colCustomer.Width                   = 150;

            //
            // colQuantity
            //
            this.colQuantity.Caption     = "Qty";
            this.colQuantity.FieldName   = "Quantity";
            this.colQuantity.Name        = "colQuantity";
            this.colQuantity.UnboundType = DevExpress.Data.UnboundColumnType.Integer;
            this.colQuantity.Visible     = true;
            this.colQuantity.Width       = 50;

            //
            // colInvAmount
            //
            this.colInvAmount.Caption     = "Inv Amt";
            this.colInvAmount.FieldName   = "InvAmt";
            this.colInvAmount.Name        = "colInvAmount";
            this.colInvAmount.UnboundType = DevExpress.Data.UnboundColumnType.Decimal;
            this.colInvAmount.Visible     = true;
            this.colInvAmount.Width       = 100;
            this.colInvAmount.DisplayFormat.FormatString = "0.0";
            this.colInvAmount.DisplayFormat.FormatType   = FormatType.Custom;
            //
            // colPriceAmount
            //
            this.colPriceAmount.Caption     = "Comm Amt";
            this.colPriceAmount.FieldName   = "CommAmt";
            this.colPriceAmount.Name        = "colPriceAmount";
            this.colPriceAmount.UnboundType = DevExpress.Data.UnboundColumnType.Decimal;
            this.colPriceAmount.Visible     = true;
            this.colPriceAmount.Width       = 100;
            this.colPriceAmount.DisplayFormat.FormatString = "0.0";
            this.colPriceAmount.DisplayFormat.FormatType   = FormatType.Custom;

            //
            // Commission
            //
            this.colCommission.Caption     = "Comm";
            this.colCommission.FieldName   = "Commission";
            this.colCommission.Name        = "colCommission";
            this.colCommission.UnboundType = DevExpress.Data.UnboundColumnType.String;
            this.colCommission.Visible     = true;
            this.colCommission.Width       = 80;
            this.colCommission.DisplayFormat.FormatString = "0.0";
            this.colCommission.DisplayFormat.FormatType   = FormatType.Custom;
            //
            // colRcvdAmount
            //
            this.colRcvdAmount.Caption     = "Rcvd Amt";
            this.colRcvdAmount.FieldName   = "RcvdAmount";
            this.colRcvdAmount.Name        = "colRcvdAmount";
            this.colRcvdAmount.UnboundType = DevExpress.Data.UnboundColumnType.String;
            this.colRcvdAmount.Visible     = true;
            this.colRcvdAmount.Width       = 80;
            this.colRcvdAmount.DisplayFormat.FormatString = "0.0";
            this.colRcvdAmount.DisplayFormat.FormatType   = FormatType.Custom;
            //
            // colPayoff
            //
            this.colPayoff.Caption     = "Pay Off";
            this.colPayoff.FieldName   = "PayOff";
            this.colPayoff.Name        = "colPayoff";
            this.colPayoff.UnboundType = DevExpress.Data.UnboundColumnType.Decimal;
            this.colPayoff.Visible     = true;
            this.colPayoff.Width       = 70;
            //
            // colCommStatus
            //
            this.colCommPaid.Caption     = "Comm Paid";
            this.colCommPaid.FieldName   = "CommPaid";
            this.colCommPaid.Name        = "colCommStatus";
            this.colCommPaid.UnboundType = DevExpress.Data.UnboundColumnType.Decimal;
            this.colCommPaid.Visible     = true;
            this.colCommPaid.Width       = 70;
            //
            // colPaymentMode
            //
            this.colPaymentMode.Caption     = "PAYMENT MODE";
            this.colPaymentMode.FieldName   = "PaymentMode";
            this.colPaymentMode.Name        = "colPaymentMode";
            this.colPaymentMode.UnboundType = DevExpress.Data.UnboundColumnType.Decimal;
            this.colPaymentMode.Visible     = true;
            this.colPaymentMode.Width       = 90;
        }
Example #43
0
 /// <summary>
 /// Required method for Designer support - do not modify
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     this.memoedtBody = new DevExpress.XtraEditors.MemoEdit();
     this.label2 = new System.Windows.Forms.Label();
     this.txtSubject = new DevExpress.XtraEditors.TextEdit();
     this.label1 = new System.Windows.Forms.Label();
     this.groupControl1 = new DevExpress.XtraEditors.GroupControl();
     this.sbtnEmpDel = new DevExpress.XtraEditors.SimpleButton();
     this.sbtnEmpAllDel = new DevExpress.XtraEditors.SimpleButton();
     this.sbtnEmpAllAdd = new DevExpress.XtraEditors.SimpleButton();
     this.sbtnEmpAdd = new DevExpress.XtraEditors.SimpleButton();
     this.gridctrEmployee2 = new DevExpress.XtraGrid.GridControl();
     this.gvEmployee2 = new DevExpress.XtraGrid.Views.Grid.GridView();
     this.colEmployeeID2 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.colEmployeeName2 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridctrEmployee = new DevExpress.XtraGrid.GridControl();
     this.gvEmployee = new DevExpress.XtraGrid.Views.Grid.GridView();
     this.colEmployeeID = new DevExpress.XtraGrid.Columns.GridColumn();
     this.colEmployeeName = new DevExpress.XtraGrid.Columns.GridColumn();
     this.sbtnPGDel = new DevExpress.XtraEditors.SimpleButton();
     this.sbtnPGAllDel = new DevExpress.XtraEditors.SimpleButton();
     this.sbtnPGAllAdd = new DevExpress.XtraEditors.SimpleButton();
     this.sbtnPGAdd = new DevExpress.XtraEditors.SimpleButton();
     this.gridctrPersonalGroup2 = new DevExpress.XtraGrid.GridControl();
     this.gvPersonalGroup2 = new DevExpress.XtraGrid.Views.Grid.GridView();
     this.colPersonalGroupID2 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.colPersonalGroupCode3 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.colPersonalGroupDesc2 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridctrPersonalGroup = new DevExpress.XtraGrid.GridControl();
     this.gvPersonalGroup = new DevExpress.XtraGrid.Views.Grid.GridView();
     this.colPersonalGroupID = new DevExpress.XtraGrid.Columns.GridColumn();
     this.colPersonalGroupCode = new DevExpress.XtraGrid.Columns.GridColumn();
     this.colPersonalGroupDesc = new DevExpress.XtraGrid.Columns.GridColumn();
     this.sbtnDGDel = new DevExpress.XtraEditors.SimpleButton();
     this.sbtnDGAllDel = new DevExpress.XtraEditors.SimpleButton();
     this.sbtnDGAllAdd = new DevExpress.XtraEditors.SimpleButton();
     this.sbtnDGAdd = new DevExpress.XtraEditors.SimpleButton();
     this.gridctrDepartmentGroup2 = new DevExpress.XtraGrid.GridControl();
     this.gvDepartmentGroup2 = new DevExpress.XtraGrid.Views.Grid.GridView();
     this.colDepartmentID2 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.colDepartmentGroupCode2 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.colDepartmentGroupDesc2 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridctrDepartmentGroup = new DevExpress.XtraGrid.GridControl();
     this.gvDepartmentGroup = new DevExpress.XtraGrid.Views.Grid.GridView();
     this.colDepartmentGroup = new DevExpress.XtraGrid.Columns.GridColumn();
     this.colDepartmentGroupCode = new DevExpress.XtraGrid.Columns.GridColumn();
     this.colDepartmentGroupDesc = new DevExpress.XtraGrid.Columns.GridColumn();
     this.sbtnBGDel = new DevExpress.XtraEditors.SimpleButton();
     this.sbtnBGAllDel = new DevExpress.XtraEditors.SimpleButton();
     this.sbtnBGAllAdd = new DevExpress.XtraEditors.SimpleButton();
     this.sbtnBGAdd = new DevExpress.XtraEditors.SimpleButton();
     this.label6 = new System.Windows.Forms.Label();
     this.label4 = new System.Windows.Forms.Label();
     this.label5 = new System.Windows.Forms.Label();
     this.gridctrBranchReceipient2 = new DevExpress.XtraGrid.GridControl();
     this.gvBranchReceipient2 = new DevExpress.XtraGrid.Views.Grid.GridView();
     this.colBranchCode2 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.colBranchName2 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.label3 = new System.Windows.Forms.Label();
     this.gridctrBranchReceipient = new DevExpress.XtraGrid.GridControl();
     this.gvBranchReceipient = new DevExpress.XtraGrid.Views.Grid.GridView();
     this.colBranchCode = new DevExpress.XtraGrid.Columns.GridColumn();
     this.colBranchName = new DevExpress.XtraGrid.Columns.GridColumn();
     this.sbtnDraft = new DevExpress.XtraEditors.SimpleButton();
     this.sbtnSend = new DevExpress.XtraEditors.SimpleButton();
     this.sbtnCancel = new DevExpress.XtraEditors.SimpleButton();
     this.lblFileName = new System.Windows.Forms.Label();
     this.txtImagePath = new DevExpress.XtraEditors.TextEdit();
     this.pbFileSelect = new System.Windows.Forms.PictureBox();
     this.pbFilePath1 = new System.Windows.Forms.PictureBox();
     this.txtFilePath1 = new DevExpress.XtraEditors.TextEdit();
     this.label7 = new System.Windows.Forms.Label();
     this.pbFilePath2 = new System.Windows.Forms.PictureBox();
     this.txtFilePath2 = new DevExpress.XtraEditors.TextEdit();
     this.label8 = new System.Windows.Forms.Label();
     this.pbFilePath3 = new System.Windows.Forms.PictureBox();
     this.txtFilePath3 = new DevExpress.XtraEditors.TextEdit();
     this.label9 = new System.Windows.Forms.Label();
     ((System.ComponentModel.ISupportInitialize)(this.memoedtBody.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtSubject.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.groupControl1)).BeginInit();
     this.groupControl1.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.gridctrEmployee2)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.gvEmployee2)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridctrEmployee)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.gvEmployee)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridctrPersonalGroup2)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.gvPersonalGroup2)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridctrPersonalGroup)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.gvPersonalGroup)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridctrDepartmentGroup2)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.gvDepartmentGroup2)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridctrDepartmentGroup)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.gvDepartmentGroup)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridctrBranchReceipient2)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.gvBranchReceipient2)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridctrBranchReceipient)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.gvBranchReceipient)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtImagePath.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.pbFileSelect)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.pbFilePath1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtFilePath1.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.pbFilePath2)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtFilePath2.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.pbFilePath3)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtFilePath3.Properties)).BeginInit();
     this.SuspendLayout();
     //
     // memoedtBody
     //
     this.memoedtBody.EditValue = "";
     this.memoedtBody.Location = new System.Drawing.Point(134, 30);
     this.memoedtBody.Name = "memoedtBody";
     this.memoedtBody.Properties.MaxLength = 1000;
     this.memoedtBody.Size = new System.Drawing.Size(678, 108);
     this.memoedtBody.TabIndex = 1;
     //
     // label2
     //
     this.label2.Location = new System.Drawing.Point(64, 32);
     this.label2.Name = "label2";
     this.label2.Size = new System.Drawing.Size(48, 18);
     this.label2.TabIndex = 6;
     this.label2.Text = "Body:";
     //
     // txtSubject
     //
     this.txtSubject.EditValue = "";
     this.txtSubject.Location = new System.Drawing.Point(134, 6);
     this.txtSubject.Name = "txtSubject";
     this.txtSubject.Properties.MaxLength = 255;
     this.txtSubject.Size = new System.Drawing.Size(678, 20);
     this.txtSubject.TabIndex = 0;
     //
     // label1
     //
     this.label1.Location = new System.Drawing.Point(64, 8);
     this.label1.Name = "label1";
     this.label1.Size = new System.Drawing.Size(48, 18);
     this.label1.TabIndex = 4;
     this.label1.Text = "Subject:";
     //
     // groupControl1
     //
     this.groupControl1.Controls.Add(this.sbtnEmpDel);
     this.groupControl1.Controls.Add(this.sbtnEmpAllDel);
     this.groupControl1.Controls.Add(this.sbtnEmpAllAdd);
     this.groupControl1.Controls.Add(this.sbtnEmpAdd);
     this.groupControl1.Controls.Add(this.gridctrEmployee2);
     this.groupControl1.Controls.Add(this.gridctrEmployee);
     this.groupControl1.Controls.Add(this.sbtnPGDel);
     this.groupControl1.Controls.Add(this.sbtnPGAllDel);
     this.groupControl1.Controls.Add(this.sbtnPGAllAdd);
     this.groupControl1.Controls.Add(this.sbtnPGAdd);
     this.groupControl1.Controls.Add(this.gridctrPersonalGroup2);
     this.groupControl1.Controls.Add(this.gridctrPersonalGroup);
     this.groupControl1.Controls.Add(this.sbtnDGDel);
     this.groupControl1.Controls.Add(this.sbtnDGAllDel);
     this.groupControl1.Controls.Add(this.sbtnDGAllAdd);
     this.groupControl1.Controls.Add(this.sbtnDGAdd);
     this.groupControl1.Controls.Add(this.gridctrDepartmentGroup2);
     this.groupControl1.Controls.Add(this.gridctrDepartmentGroup);
     this.groupControl1.Controls.Add(this.sbtnBGDel);
     this.groupControl1.Controls.Add(this.sbtnBGAllDel);
     this.groupControl1.Controls.Add(this.sbtnBGAllAdd);
     this.groupControl1.Controls.Add(this.sbtnBGAdd);
     this.groupControl1.Controls.Add(this.label6);
     this.groupControl1.Controls.Add(this.label4);
     this.groupControl1.Controls.Add(this.label5);
     this.groupControl1.Controls.Add(this.gridctrBranchReceipient2);
     this.groupControl1.Controls.Add(this.label3);
     this.groupControl1.Controls.Add(this.gridctrBranchReceipient);
     this.groupControl1.Location = new System.Drawing.Point(4, 252);
     this.groupControl1.Name = "groupControl1";
     this.groupControl1.Size = new System.Drawing.Size(914, 384);
     this.groupControl1.TabIndex = 2;
     this.groupControl1.Text = "Recepients";
     //
     // sbtnEmpDel
     //
     this.sbtnEmpDel.ButtonStyle = DevExpress.XtraEditors.Controls.BorderStyles.Simple;
     this.sbtnEmpDel.Location = new System.Drawing.Point(476, 358);
     this.sbtnEmpDel.Name = "sbtnEmpDel";
     this.sbtnEmpDel.Size = new System.Drawing.Size(30, 20);
     this.sbtnEmpDel.TabIndex = 22;
     this.sbtnEmpDel.Text = "<";
     this.sbtnEmpDel.Click += new System.EventHandler(this.sbtnEmpDel_Click);
     //
     // sbtnEmpAllDel
     //
     this.sbtnEmpAllDel.ButtonStyle = DevExpress.XtraEditors.Controls.BorderStyles.Simple;
     this.sbtnEmpAllDel.Location = new System.Drawing.Point(476, 336);
     this.sbtnEmpAllDel.Name = "sbtnEmpAllDel";
     this.sbtnEmpAllDel.Size = new System.Drawing.Size(30, 20);
     this.sbtnEmpAllDel.TabIndex = 21;
     this.sbtnEmpAllDel.Text = "<<";
     this.sbtnEmpAllDel.Click += new System.EventHandler(this.sbtnEmpAllDel_Click);
     //
     // sbtnEmpAllAdd
     //
     this.sbtnEmpAllAdd.ButtonStyle = DevExpress.XtraEditors.Controls.BorderStyles.Simple;
     this.sbtnEmpAllAdd.Location = new System.Drawing.Point(476, 314);
     this.sbtnEmpAllAdd.Name = "sbtnEmpAllAdd";
     this.sbtnEmpAllAdd.Size = new System.Drawing.Size(30, 20);
     this.sbtnEmpAllAdd.TabIndex = 20;
     this.sbtnEmpAllAdd.Text = ">>";
     this.sbtnEmpAllAdd.Click += new System.EventHandler(this.sbtnEmpAllAdd_Click);
     //
     // sbtnEmpAdd
     //
     this.sbtnEmpAdd.ButtonStyle = DevExpress.XtraEditors.Controls.BorderStyles.Simple;
     this.sbtnEmpAdd.Location = new System.Drawing.Point(476, 292);
     this.sbtnEmpAdd.Name = "sbtnEmpAdd";
     this.sbtnEmpAdd.Size = new System.Drawing.Size(30, 20);
     this.sbtnEmpAdd.TabIndex = 19;
     this.sbtnEmpAdd.Text = ">";
     this.sbtnEmpAdd.Click += new System.EventHandler(this.sbtnEmpAdd_Click);
     //
     // gridctrEmployee2
     //
     this.gridctrEmployee2.Location = new System.Drawing.Point(510, 290);
     this.gridctrEmployee2.MainView = this.gvEmployee2;
     this.gridctrEmployee2.Name = "gridctrEmployee2";
     this.gridctrEmployee2.Size = new System.Drawing.Size(400, 88);
     this.gridctrEmployee2.TabIndex = 23;
     this.gridctrEmployee2.ViewCollection.AddRange(new DevExpress.XtraGrid.Views.Base.BaseView[] {
     this.gvEmployee2});
     //
     // gvEmployee2
     //
     this.gvEmployee2.Columns.AddRange(new DevExpress.XtraGrid.Columns.GridColumn[] {
     this.colEmployeeID2,
     this.colEmployeeName2});
     this.gvEmployee2.GridControl = this.gridctrEmployee2;
     this.gvEmployee2.Name = "gvEmployee2";
     this.gvEmployee2.OptionsBehavior.AllowIncrementalSearch = true;
     this.gvEmployee2.OptionsBehavior.Editable = false;
     this.gvEmployee2.OptionsCustomization.AllowFilter = false;
     this.gvEmployee2.OptionsSelection.MultiSelect = true;
     this.gvEmployee2.OptionsView.ShowGroupPanel = false;
     this.gvEmployee2.SortInfo.AddRange(new DevExpress.XtraGrid.Columns.GridColumnSortInfo[] {
     new DevExpress.XtraGrid.Columns.GridColumnSortInfo(this.colEmployeeID2, DevExpress.Data.ColumnSortOrder.Ascending)});
     //
     // colEmployeeID2
     //
     this.colEmployeeID2.Caption = "Employee ID";
     this.colEmployeeID2.FieldName = "nEmployeeID";
     this.colEmployeeID2.Name = "colEmployeeID2";
     this.colEmployeeID2.Visible = true;
     this.colEmployeeID2.VisibleIndex = 0;
     this.colEmployeeID2.Width = 78;
     //
     // colEmployeeName2
     //
     this.colEmployeeName2.Caption = "Name";
     this.colEmployeeName2.FieldName = "strEmployeeName";
     this.colEmployeeName2.Name = "colEmployeeName2";
     this.colEmployeeName2.Visible = true;
     this.colEmployeeName2.VisibleIndex = 1;
     this.colEmployeeName2.Width = 308;
     //
     // gridctrEmployee
     //
     this.gridctrEmployee.Location = new System.Drawing.Point(72, 290);
     this.gridctrEmployee.MainView = this.gvEmployee;
     this.gridctrEmployee.Name = "gridctrEmployee";
     this.gridctrEmployee.Size = new System.Drawing.Size(400, 88);
     this.gridctrEmployee.TabIndex = 18;
     this.gridctrEmployee.ViewCollection.AddRange(new DevExpress.XtraGrid.Views.Base.BaseView[] {
     this.gvEmployee});
     //
     // gvEmployee
     //
     this.gvEmployee.Columns.AddRange(new DevExpress.XtraGrid.Columns.GridColumn[] {
     this.colEmployeeID,
     this.colEmployeeName});
     this.gvEmployee.GridControl = this.gridctrEmployee;
     this.gvEmployee.Name = "gvEmployee";
     this.gvEmployee.OptionsBehavior.AllowIncrementalSearch = true;
     this.gvEmployee.OptionsBehavior.Editable = false;
     this.gvEmployee.OptionsCustomization.AllowFilter = false;
     this.gvEmployee.OptionsSelection.MultiSelect = true;
     this.gvEmployee.OptionsView.ShowGroupPanel = false;
     this.gvEmployee.SortInfo.AddRange(new DevExpress.XtraGrid.Columns.GridColumnSortInfo[] {
     new DevExpress.XtraGrid.Columns.GridColumnSortInfo(this.colEmployeeID, DevExpress.Data.ColumnSortOrder.Ascending)});
     //
     // colEmployeeID
     //
     this.colEmployeeID.Caption = "Employee ID";
     this.colEmployeeID.FieldName = "nEmployeeID";
     this.colEmployeeID.Name = "colEmployeeID";
     this.colEmployeeID.Visible = true;
     this.colEmployeeID.VisibleIndex = 0;
     this.colEmployeeID.Width = 79;
     //
     // colEmployeeName
     //
     this.colEmployeeName.Caption = "Name";
     this.colEmployeeName.FieldName = "strEmployeeName";
     this.colEmployeeName.Name = "colEmployeeName";
     this.colEmployeeName.Visible = true;
     this.colEmployeeName.VisibleIndex = 1;
     this.colEmployeeName.Width = 307;
     //
     // sbtnPGDel
     //
     this.sbtnPGDel.ButtonStyle = DevExpress.XtraEditors.Controls.BorderStyles.Simple;
     this.sbtnPGDel.Location = new System.Drawing.Point(476, 268);
     this.sbtnPGDel.Name = "sbtnPGDel";
     this.sbtnPGDel.Size = new System.Drawing.Size(30, 20);
     this.sbtnPGDel.TabIndex = 16;
     this.sbtnPGDel.Text = "<";
     this.sbtnPGDel.Click += new System.EventHandler(this.sbtnPGDel_Click);
     //
     // sbtnPGAllDel
     //
     this.sbtnPGAllDel.ButtonStyle = DevExpress.XtraEditors.Controls.BorderStyles.Simple;
     this.sbtnPGAllDel.Location = new System.Drawing.Point(476, 246);
     this.sbtnPGAllDel.Name = "sbtnPGAllDel";
     this.sbtnPGAllDel.Size = new System.Drawing.Size(30, 20);
     this.sbtnPGAllDel.TabIndex = 15;
     this.sbtnPGAllDel.Text = "<<";
     this.sbtnPGAllDel.Click += new System.EventHandler(this.sbtnPGAllDel_Click);
     //
     // sbtnPGAllAdd
     //
     this.sbtnPGAllAdd.ButtonStyle = DevExpress.XtraEditors.Controls.BorderStyles.Simple;
     this.sbtnPGAllAdd.Location = new System.Drawing.Point(476, 224);
     this.sbtnPGAllAdd.Name = "sbtnPGAllAdd";
     this.sbtnPGAllAdd.Size = new System.Drawing.Size(30, 20);
     this.sbtnPGAllAdd.TabIndex = 14;
     this.sbtnPGAllAdd.Text = ">>";
     this.sbtnPGAllAdd.Click += new System.EventHandler(this.sbtnPGAllAdd_Click);
     //
     // sbtnPGAdd
     //
     this.sbtnPGAdd.ButtonStyle = DevExpress.XtraEditors.Controls.BorderStyles.Simple;
     this.sbtnPGAdd.Location = new System.Drawing.Point(476, 202);
     this.sbtnPGAdd.Name = "sbtnPGAdd";
     this.sbtnPGAdd.Size = new System.Drawing.Size(30, 20);
     this.sbtnPGAdd.TabIndex = 13;
     this.sbtnPGAdd.Text = ">";
     this.sbtnPGAdd.Click += new System.EventHandler(this.sbtnPGAdd_Click);
     //
     // gridctrPersonalGroup2
     //
     this.gridctrPersonalGroup2.Location = new System.Drawing.Point(510, 200);
     this.gridctrPersonalGroup2.MainView = this.gvPersonalGroup2;
     this.gridctrPersonalGroup2.Name = "gridctrPersonalGroup2";
     this.gridctrPersonalGroup2.Size = new System.Drawing.Size(400, 88);
     this.gridctrPersonalGroup2.TabIndex = 17;
     this.gridctrPersonalGroup2.ViewCollection.AddRange(new DevExpress.XtraGrid.Views.Base.BaseView[] {
     this.gvPersonalGroup2});
     //
     // gvPersonalGroup2
     //
     this.gvPersonalGroup2.Columns.AddRange(new DevExpress.XtraGrid.Columns.GridColumn[] {
     this.colPersonalGroupID2,
     this.colPersonalGroupCode3,
     this.colPersonalGroupDesc2});
     this.gvPersonalGroup2.GridControl = this.gridctrPersonalGroup2;
     this.gvPersonalGroup2.Name = "gvPersonalGroup2";
     this.gvPersonalGroup2.OptionsBehavior.AllowIncrementalSearch = true;
     this.gvPersonalGroup2.OptionsBehavior.Editable = false;
     this.gvPersonalGroup2.OptionsCustomization.AllowFilter = false;
     this.gvPersonalGroup2.OptionsSelection.MultiSelect = true;
     this.gvPersonalGroup2.OptionsView.ShowGroupPanel = false;
     this.gvPersonalGroup2.SortInfo.AddRange(new DevExpress.XtraGrid.Columns.GridColumnSortInfo[] {
     new DevExpress.XtraGrid.Columns.GridColumnSortInfo(this.colPersonalGroupID2, DevExpress.Data.ColumnSortOrder.Ascending)});
     //
     // colPersonalGroupID2
     //
     this.colPersonalGroupID2.Caption = "ID";
     this.colPersonalGroupID2.FieldName = "nMemoGroupID";
     this.colPersonalGroupID2.Name = "colPersonalGroupID2";
     this.colPersonalGroupID2.Visible = true;
     this.colPersonalGroupID2.VisibleIndex = 0;
     this.colPersonalGroupID2.Width = 71;
     //
     // colPersonalGroupCode3
     //
     this.colPersonalGroupCode3.Caption = "Code";
     this.colPersonalGroupCode3.FieldName = "strMemoGroupCode";
     this.colPersonalGroupCode3.Name = "colPersonalGroupCode3";
     this.colPersonalGroupCode3.Visible = true;
     this.colPersonalGroupCode3.VisibleIndex = 1;
     this.colPersonalGroupCode3.Width = 92;
     //
     // colPersonalGroupDesc2
     //
     this.colPersonalGroupDesc2.Caption = "Description";
     this.colPersonalGroupDesc2.FieldName = "strDescription";
     this.colPersonalGroupDesc2.Name = "colPersonalGroupDesc2";
     this.colPersonalGroupDesc2.Visible = true;
     this.colPersonalGroupDesc2.VisibleIndex = 2;
     this.colPersonalGroupDesc2.Width = 223;
     //
     // gridctrPersonalGroup
     //
     this.gridctrPersonalGroup.Location = new System.Drawing.Point(72, 200);
     this.gridctrPersonalGroup.MainView = this.gvPersonalGroup;
     this.gridctrPersonalGroup.Name = "gridctrPersonalGroup";
     this.gridctrPersonalGroup.Size = new System.Drawing.Size(400, 88);
     this.gridctrPersonalGroup.TabIndex = 12;
     this.gridctrPersonalGroup.ViewCollection.AddRange(new DevExpress.XtraGrid.Views.Base.BaseView[] {
     this.gvPersonalGroup});
     //
     // gvPersonalGroup
     //
     this.gvPersonalGroup.Columns.AddRange(new DevExpress.XtraGrid.Columns.GridColumn[] {
     this.colPersonalGroupID,
     this.colPersonalGroupCode,
     this.colPersonalGroupDesc});
     this.gvPersonalGroup.GridControl = this.gridctrPersonalGroup;
     this.gvPersonalGroup.Name = "gvPersonalGroup";
     this.gvPersonalGroup.OptionsBehavior.AllowIncrementalSearch = true;
     this.gvPersonalGroup.OptionsBehavior.Editable = false;
     this.gvPersonalGroup.OptionsCustomization.AllowFilter = false;
     this.gvPersonalGroup.OptionsSelection.MultiSelect = true;
     this.gvPersonalGroup.OptionsView.ShowGroupPanel = false;
     this.gvPersonalGroup.SortInfo.AddRange(new DevExpress.XtraGrid.Columns.GridColumnSortInfo[] {
     new DevExpress.XtraGrid.Columns.GridColumnSortInfo(this.colPersonalGroupID, DevExpress.Data.ColumnSortOrder.Ascending)});
     //
     // colPersonalGroupID
     //
     this.colPersonalGroupID.Caption = "ID";
     this.colPersonalGroupID.FieldName = "nMemoGroupID";
     this.colPersonalGroupID.Name = "colPersonalGroupID";
     this.colPersonalGroupID.Visible = true;
     this.colPersonalGroupID.VisibleIndex = 0;
     this.colPersonalGroupID.Width = 63;
     //
     // colPersonalGroupCode
     //
     this.colPersonalGroupCode.Caption = "Code";
     this.colPersonalGroupCode.FieldName = "strMemoGroupCode";
     this.colPersonalGroupCode.Name = "colPersonalGroupCode";
     this.colPersonalGroupCode.Visible = true;
     this.colPersonalGroupCode.VisibleIndex = 1;
     this.colPersonalGroupCode.Width = 97;
     //
     // colPersonalGroupDesc
     //
     this.colPersonalGroupDesc.Caption = "Description";
     this.colPersonalGroupDesc.FieldName = "strDescription";
     this.colPersonalGroupDesc.Name = "colPersonalGroupDesc";
     this.colPersonalGroupDesc.Visible = true;
     this.colPersonalGroupDesc.VisibleIndex = 2;
     this.colPersonalGroupDesc.Width = 226;
     //
     // sbtnDGDel
     //
     this.sbtnDGDel.ButtonStyle = DevExpress.XtraEditors.Controls.BorderStyles.Simple;
     this.sbtnDGDel.Location = new System.Drawing.Point(476, 178);
     this.sbtnDGDel.Name = "sbtnDGDel";
     this.sbtnDGDel.Size = new System.Drawing.Size(30, 20);
     this.sbtnDGDel.TabIndex = 10;
     this.sbtnDGDel.Text = "<";
     this.sbtnDGDel.Click += new System.EventHandler(this.sbtnDGDel_Click);
     //
     // sbtnDGAllDel
     //
     this.sbtnDGAllDel.ButtonStyle = DevExpress.XtraEditors.Controls.BorderStyles.Simple;
     this.sbtnDGAllDel.Location = new System.Drawing.Point(476, 156);
     this.sbtnDGAllDel.Name = "sbtnDGAllDel";
     this.sbtnDGAllDel.Size = new System.Drawing.Size(30, 20);
     this.sbtnDGAllDel.TabIndex = 9;
     this.sbtnDGAllDel.Text = "<<";
     this.sbtnDGAllDel.Click += new System.EventHandler(this.sbtnDGAllDel_Click);
     //
     // sbtnDGAllAdd
     //
     this.sbtnDGAllAdd.ButtonStyle = DevExpress.XtraEditors.Controls.BorderStyles.Simple;
     this.sbtnDGAllAdd.Location = new System.Drawing.Point(476, 134);
     this.sbtnDGAllAdd.Name = "sbtnDGAllAdd";
     this.sbtnDGAllAdd.Size = new System.Drawing.Size(30, 20);
     this.sbtnDGAllAdd.TabIndex = 8;
     this.sbtnDGAllAdd.Text = ">>";
     this.sbtnDGAllAdd.Click += new System.EventHandler(this.sbtnDGAllAdd_Click);
     //
     // sbtnDGAdd
     //
     this.sbtnDGAdd.ButtonStyle = DevExpress.XtraEditors.Controls.BorderStyles.Simple;
     this.sbtnDGAdd.Location = new System.Drawing.Point(476, 112);
     this.sbtnDGAdd.Name = "sbtnDGAdd";
     this.sbtnDGAdd.Size = new System.Drawing.Size(30, 20);
     this.sbtnDGAdd.TabIndex = 7;
     this.sbtnDGAdd.Text = ">";
     this.sbtnDGAdd.Click += new System.EventHandler(this.sbtnDGAdd_Click);
     //
     // gridctrDepartmentGroup2
     //
     this.gridctrDepartmentGroup2.Location = new System.Drawing.Point(510, 110);
     this.gridctrDepartmentGroup2.MainView = this.gvDepartmentGroup2;
     this.gridctrDepartmentGroup2.Name = "gridctrDepartmentGroup2";
     this.gridctrDepartmentGroup2.Size = new System.Drawing.Size(400, 88);
     this.gridctrDepartmentGroup2.TabIndex = 11;
     this.gridctrDepartmentGroup2.ViewCollection.AddRange(new DevExpress.XtraGrid.Views.Base.BaseView[] {
     this.gvDepartmentGroup2});
     //
     // gvDepartmentGroup2
     //
     this.gvDepartmentGroup2.Columns.AddRange(new DevExpress.XtraGrid.Columns.GridColumn[] {
     this.colDepartmentID2,
     this.colDepartmentGroupCode2,
     this.colDepartmentGroupDesc2});
     this.gvDepartmentGroup2.GridControl = this.gridctrDepartmentGroup2;
     this.gvDepartmentGroup2.Name = "gvDepartmentGroup2";
     this.gvDepartmentGroup2.OptionsBehavior.AllowIncrementalSearch = true;
     this.gvDepartmentGroup2.OptionsBehavior.Editable = false;
     this.gvDepartmentGroup2.OptionsCustomization.AllowFilter = false;
     this.gvDepartmentGroup2.OptionsSelection.MultiSelect = true;
     this.gvDepartmentGroup2.OptionsView.ShowGroupPanel = false;
     this.gvDepartmentGroup2.SortInfo.AddRange(new DevExpress.XtraGrid.Columns.GridColumnSortInfo[] {
     new DevExpress.XtraGrid.Columns.GridColumnSortInfo(this.colDepartmentID2, DevExpress.Data.ColumnSortOrder.Ascending)});
     //
     // colDepartmentID2
     //
     this.colDepartmentID2.Caption = "ID";
     this.colDepartmentID2.FieldName = "nMemoGroupID";
     this.colDepartmentID2.Name = "colDepartmentID2";
     this.colDepartmentID2.Visible = true;
     this.colDepartmentID2.VisibleIndex = 0;
     this.colDepartmentID2.Width = 70;
     //
     // colDepartmentGroupCode2
     //
     this.colDepartmentGroupCode2.Caption = "Code";
     this.colDepartmentGroupCode2.FieldName = "strMemoGroupCode";
     this.colDepartmentGroupCode2.Name = "colDepartmentGroupCode2";
     this.colDepartmentGroupCode2.Visible = true;
     this.colDepartmentGroupCode2.VisibleIndex = 1;
     this.colDepartmentGroupCode2.Width = 92;
     //
     // colDepartmentGroupDesc2
     //
     this.colDepartmentGroupDesc2.Caption = "Description";
     this.colDepartmentGroupDesc2.FieldName = "strDescription";
     this.colDepartmentGroupDesc2.Name = "colDepartmentGroupDesc2";
     this.colDepartmentGroupDesc2.Visible = true;
     this.colDepartmentGroupDesc2.VisibleIndex = 2;
     this.colDepartmentGroupDesc2.Width = 224;
     //
     // gridctrDepartmentGroup
     //
     this.gridctrDepartmentGroup.Location = new System.Drawing.Point(72, 110);
     this.gridctrDepartmentGroup.MainView = this.gvDepartmentGroup;
     this.gridctrDepartmentGroup.Name = "gridctrDepartmentGroup";
     this.gridctrDepartmentGroup.Size = new System.Drawing.Size(400, 88);
     this.gridctrDepartmentGroup.TabIndex = 6;
     this.gridctrDepartmentGroup.ViewCollection.AddRange(new DevExpress.XtraGrid.Views.Base.BaseView[] {
     this.gvDepartmentGroup});
     //
     // gvDepartmentGroup
     //
     this.gvDepartmentGroup.Columns.AddRange(new DevExpress.XtraGrid.Columns.GridColumn[] {
     this.colDepartmentGroup,
     this.colDepartmentGroupCode,
     this.colDepartmentGroupDesc});
     this.gvDepartmentGroup.GridControl = this.gridctrDepartmentGroup;
     this.gvDepartmentGroup.Name = "gvDepartmentGroup";
     this.gvDepartmentGroup.OptionsBehavior.AllowIncrementalSearch = true;
     this.gvDepartmentGroup.OptionsBehavior.Editable = false;
     this.gvDepartmentGroup.OptionsCustomization.AllowFilter = false;
     this.gvDepartmentGroup.OptionsSelection.MultiSelect = true;
     this.gvDepartmentGroup.OptionsView.ShowGroupPanel = false;
     this.gvDepartmentGroup.SortInfo.AddRange(new DevExpress.XtraGrid.Columns.GridColumnSortInfo[] {
     new DevExpress.XtraGrid.Columns.GridColumnSortInfo(this.colDepartmentGroup, DevExpress.Data.ColumnSortOrder.Ascending)});
     //
     // colDepartmentGroup
     //
     this.colDepartmentGroup.Caption = "ID";
     this.colDepartmentGroup.FieldName = "nMemoGroupID";
     this.colDepartmentGroup.Name = "colDepartmentGroup";
     this.colDepartmentGroup.Visible = true;
     this.colDepartmentGroup.VisibleIndex = 0;
     this.colDepartmentGroup.Width = 66;
     //
     // colDepartmentGroupCode
     //
     this.colDepartmentGroupCode.Caption = "Code";
     this.colDepartmentGroupCode.FieldName = "strMemoGroupCode";
     this.colDepartmentGroupCode.Name = "colDepartmentGroupCode";
     this.colDepartmentGroupCode.Visible = true;
     this.colDepartmentGroupCode.VisibleIndex = 1;
     this.colDepartmentGroupCode.Width = 95;
     //
     // colDepartmentGroupDesc
     //
     this.colDepartmentGroupDesc.Caption = "Description";
     this.colDepartmentGroupDesc.FieldName = "strDescription";
     this.colDepartmentGroupDesc.Name = "colDepartmentGroupDesc";
     this.colDepartmentGroupDesc.Visible = true;
     this.colDepartmentGroupDesc.VisibleIndex = 2;
     this.colDepartmentGroupDesc.Width = 225;
     //
     // sbtnBGDel
     //
     this.sbtnBGDel.ButtonStyle = DevExpress.XtraEditors.Controls.BorderStyles.Simple;
     this.sbtnBGDel.Location = new System.Drawing.Point(476, 88);
     this.sbtnBGDel.Name = "sbtnBGDel";
     this.sbtnBGDel.Size = new System.Drawing.Size(30, 20);
     this.sbtnBGDel.TabIndex = 4;
     this.sbtnBGDel.Text = "<";
     this.sbtnBGDel.Click += new System.EventHandler(this.sbtnBGDel_Click);
     //
     // sbtnBGAllDel
     //
     this.sbtnBGAllDel.ButtonStyle = DevExpress.XtraEditors.Controls.BorderStyles.Simple;
     this.sbtnBGAllDel.Location = new System.Drawing.Point(476, 66);
     this.sbtnBGAllDel.Name = "sbtnBGAllDel";
     this.sbtnBGAllDel.Size = new System.Drawing.Size(30, 20);
     this.sbtnBGAllDel.TabIndex = 3;
     this.sbtnBGAllDel.Text = "<<";
     this.sbtnBGAllDel.Click += new System.EventHandler(this.sbtnBGAllDel_Click);
     //
     // sbtnBGAllAdd
     //
     this.sbtnBGAllAdd.ButtonStyle = DevExpress.XtraEditors.Controls.BorderStyles.Simple;
     this.sbtnBGAllAdd.Location = new System.Drawing.Point(476, 44);
     this.sbtnBGAllAdd.Name = "sbtnBGAllAdd";
     this.sbtnBGAllAdd.Size = new System.Drawing.Size(30, 20);
     this.sbtnBGAllAdd.TabIndex = 2;
     this.sbtnBGAllAdd.Text = ">>";
     this.sbtnBGAllAdd.Click += new System.EventHandler(this.sbtnBGAllAdd_Click);
     //
     // sbtnBGAdd
     //
     this.sbtnBGAdd.ButtonStyle = DevExpress.XtraEditors.Controls.BorderStyles.Simple;
     this.sbtnBGAdd.Location = new System.Drawing.Point(476, 22);
     this.sbtnBGAdd.Name = "sbtnBGAdd";
     this.sbtnBGAdd.Size = new System.Drawing.Size(30, 20);
     this.sbtnBGAdd.TabIndex = 1;
     this.sbtnBGAdd.Text = ">";
     this.sbtnBGAdd.Click += new System.EventHandler(this.sbtnBGAdd_Click);
     //
     // label6
     //
     this.label6.Location = new System.Drawing.Point(10, 292);
     this.label6.Name = "label6";
     this.label6.Size = new System.Drawing.Size(60, 18);
     this.label6.TabIndex = 20;
     this.label6.Text = "Employee:";
     //
     // label4
     //
     this.label4.Location = new System.Drawing.Point(8, 202);
     this.label4.Name = "label4";
     this.label4.Size = new System.Drawing.Size(58, 30);
     this.label4.TabIndex = 19;
     this.label4.Text = "Personal Group:";
     //
     // label5
     //
     this.label5.Location = new System.Drawing.Point(6, 112);
     this.label5.Name = "label5";
     this.label5.Size = new System.Drawing.Size(64, 30);
     this.label5.TabIndex = 18;
     this.label5.Text = "Department Group:";
     //
     // gridctrBranchReceipient2
     //
     this.gridctrBranchReceipient2.Location = new System.Drawing.Point(510, 20);
     this.gridctrBranchReceipient2.MainView = this.gvBranchReceipient2;
     this.gridctrBranchReceipient2.Name = "gridctrBranchReceipient2";
     this.gridctrBranchReceipient2.Size = new System.Drawing.Size(400, 88);
     this.gridctrBranchReceipient2.TabIndex = 5;
     this.gridctrBranchReceipient2.ViewCollection.AddRange(new DevExpress.XtraGrid.Views.Base.BaseView[] {
     this.gvBranchReceipient2});
     //
     // gvBranchReceipient2
     //
     this.gvBranchReceipient2.Columns.AddRange(new DevExpress.XtraGrid.Columns.GridColumn[] {
     this.colBranchCode2,
     this.colBranchName2});
     this.gvBranchReceipient2.GridControl = this.gridctrBranchReceipient2;
     this.gvBranchReceipient2.Name = "gvBranchReceipient2";
     this.gvBranchReceipient2.OptionsBehavior.AllowIncrementalSearch = true;
     this.gvBranchReceipient2.OptionsBehavior.Editable = false;
     this.gvBranchReceipient2.OptionsCustomization.AllowFilter = false;
     this.gvBranchReceipient2.OptionsSelection.MultiSelect = true;
     this.gvBranchReceipient2.OptionsView.ShowGroupPanel = false;
     this.gvBranchReceipient2.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(6, 22);
     this.label3.Name = "label3";
     this.label3.Size = new System.Drawing.Size(48, 34);
     this.label3.TabIndex = 16;
     this.label3.Text = "Branch Group:";
     //
     // gridctrBranchReceipient
     //
     this.gridctrBranchReceipient.Location = new System.Drawing.Point(72, 20);
     this.gridctrBranchReceipient.MainView = this.gvBranchReceipient;
     this.gridctrBranchReceipient.Name = "gridctrBranchReceipient";
     this.gridctrBranchReceipient.Size = new System.Drawing.Size(400, 88);
     this.gridctrBranchReceipient.TabIndex = 0;
     this.gridctrBranchReceipient.ViewCollection.AddRange(new DevExpress.XtraGrid.Views.Base.BaseView[] {
     this.gvBranchReceipient});
     //
     // gvBranchReceipient
     //
     this.gvBranchReceipient.Columns.AddRange(new DevExpress.XtraGrid.Columns.GridColumn[] {
     this.colBranchCode,
     this.colBranchName});
     this.gvBranchReceipient.GridControl = this.gridctrBranchReceipient;
     this.gvBranchReceipient.Name = "gvBranchReceipient";
     this.gvBranchReceipient.OptionsBehavior.AllowIncrementalSearch = true;
     this.gvBranchReceipient.OptionsBehavior.Editable = false;
     this.gvBranchReceipient.OptionsCustomization.AllowFilter = false;
     this.gvBranchReceipient.OptionsSelection.MultiSelect = true;
     this.gvBranchReceipient.OptionsView.ShowGroupPanel = false;
     this.gvBranchReceipient.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;
     //
     // sbtnDraft
     //
     this.sbtnDraft.ButtonStyle = DevExpress.XtraEditors.Controls.BorderStyles.Simple;
     this.sbtnDraft.Location = new System.Drawing.Point(678, 640);
     this.sbtnDraft.Name = "sbtnDraft";
     this.sbtnDraft.Size = new System.Drawing.Size(75, 23);
     this.sbtnDraft.TabIndex = 3;
     this.sbtnDraft.Text = "Draft";
     this.sbtnDraft.Visible = false;
     this.sbtnDraft.Click += new System.EventHandler(this.sbtnDraft_Click);
     //
     // sbtnSend
     //
     this.sbtnSend.ButtonStyle = DevExpress.XtraEditors.Controls.BorderStyles.Simple;
     this.sbtnSend.Location = new System.Drawing.Point(760, 640);
     this.sbtnSend.Name = "sbtnSend";
     this.sbtnSend.Size = new System.Drawing.Size(75, 23);
     this.sbtnSend.TabIndex = 4;
     this.sbtnSend.Text = "Send";
     this.sbtnSend.Click += new System.EventHandler(this.sbtnSend_Click);
     //
     // sbtnCancel
     //
     this.sbtnCancel.ButtonStyle = DevExpress.XtraEditors.Controls.BorderStyles.Simple;
     this.sbtnCancel.DialogResult = System.Windows.Forms.DialogResult.Cancel;
     this.sbtnCancel.Location = new System.Drawing.Point(842, 640);
     this.sbtnCancel.Name = "sbtnCancel";
     this.sbtnCancel.Size = new System.Drawing.Size(75, 23);
     this.sbtnCancel.TabIndex = 5;
     this.sbtnCancel.Text = "Cancel";
     //
     // lblFileName
     //
     this.lblFileName.Location = new System.Drawing.Point(64, 144);
     this.lblFileName.Name = "lblFileName";
     this.lblFileName.Size = new System.Drawing.Size(66, 18);
     this.lblFileName.TabIndex = 7;
     this.lblFileName.Text = "Picture File:";
     //
     // txtImagePath
     //
     this.txtImagePath.EditValue = "";
     this.txtImagePath.Location = new System.Drawing.Point(134, 142);
     this.txtImagePath.Name = "txtImagePath";
     this.txtImagePath.Properties.MaxLength = 255;
     this.txtImagePath.Properties.ReadOnly = true;
     this.txtImagePath.Size = new System.Drawing.Size(391, 20);
     this.txtImagePath.TabIndex = 2;
     //
     // pbFileSelect
     //
     this.pbFileSelect.Cursor = System.Windows.Forms.Cursors.Hand;
     this.pbFileSelect.ErrorImage = global::ACMS.Properties.Resources.open_file_icon;
     this.pbFileSelect.Image = global::ACMS.Properties.Resources.open_file_icon;
     this.pbFileSelect.InitialImage = global::ACMS.Properties.Resources.open_file_icon;
     this.pbFileSelect.Location = new System.Drawing.Point(531, 142);
     this.pbFileSelect.Name = "pbFileSelect";
     this.pbFileSelect.Size = new System.Drawing.Size(20, 20);
     this.pbFileSelect.SizeMode = System.Windows.Forms.PictureBoxSizeMode.StretchImage;
     this.pbFileSelect.TabIndex = 9;
     this.pbFileSelect.TabStop = false;
     this.pbFileSelect.Click += new System.EventHandler(this.pbFileSelect_Click);
     //
     // pbFilePath1
     //
     this.pbFilePath1.Cursor = System.Windows.Forms.Cursors.Hand;
     this.pbFilePath1.ErrorImage = global::ACMS.Properties.Resources.open_file_icon;
     this.pbFilePath1.Image = global::ACMS.Properties.Resources.open_file_icon;
     this.pbFilePath1.InitialImage = global::ACMS.Properties.Resources.open_file_icon;
     this.pbFilePath1.Location = new System.Drawing.Point(531, 168);
     this.pbFilePath1.Name = "pbFilePath1";
     this.pbFilePath1.Size = new System.Drawing.Size(20, 20);
     this.pbFilePath1.SizeMode = System.Windows.Forms.PictureBoxSizeMode.StretchImage;
     this.pbFilePath1.TabIndex = 12;
     this.pbFilePath1.TabStop = false;
     this.pbFilePath1.Click += new System.EventHandler(this.pbFilePath1_Click);
     //
     // txtFilePath1
     //
     this.txtFilePath1.EditValue = "";
     this.txtFilePath1.Location = new System.Drawing.Point(134, 168);
     this.txtFilePath1.Name = "txtFilePath1";
     this.txtFilePath1.Properties.MaxLength = 255;
     this.txtFilePath1.Properties.ReadOnly = true;
     this.txtFilePath1.Size = new System.Drawing.Size(391, 20);
     this.txtFilePath1.TabIndex = 10;
     //
     // label7
     //
     this.label7.Location = new System.Drawing.Point(64, 170);
     this.label7.Name = "label7";
     this.label7.Size = new System.Drawing.Size(66, 18);
     this.label7.TabIndex = 11;
     this.label7.Text = "File 1:";
     //
     // pbFilePath2
     //
     this.pbFilePath2.Cursor = System.Windows.Forms.Cursors.Hand;
     this.pbFilePath2.ErrorImage = global::ACMS.Properties.Resources.open_file_icon;
     this.pbFilePath2.Image = global::ACMS.Properties.Resources.open_file_icon;
     this.pbFilePath2.InitialImage = global::ACMS.Properties.Resources.open_file_icon;
     this.pbFilePath2.Location = new System.Drawing.Point(531, 194);
     this.pbFilePath2.Name = "pbFilePath2";
     this.pbFilePath2.Size = new System.Drawing.Size(20, 20);
     this.pbFilePath2.SizeMode = System.Windows.Forms.PictureBoxSizeMode.StretchImage;
     this.pbFilePath2.TabIndex = 15;
     this.pbFilePath2.TabStop = false;
     this.pbFilePath2.Click += new System.EventHandler(this.pbFilePath2_Click);
     //
     // txtFilePath2
     //
     this.txtFilePath2.EditValue = "";
     this.txtFilePath2.Location = new System.Drawing.Point(134, 194);
     this.txtFilePath2.Name = "txtFilePath2";
     this.txtFilePath2.Properties.MaxLength = 255;
     this.txtFilePath2.Properties.ReadOnly = true;
     this.txtFilePath2.Size = new System.Drawing.Size(391, 20);
     this.txtFilePath2.TabIndex = 13;
     //
     // label8
     //
     this.label8.Location = new System.Drawing.Point(64, 196);
     this.label8.Name = "label8";
     this.label8.Size = new System.Drawing.Size(66, 18);
     this.label8.TabIndex = 14;
     this.label8.Text = "File 2:";
     //
     // pbFilePath3
     //
     this.pbFilePath3.Cursor = System.Windows.Forms.Cursors.Hand;
     this.pbFilePath3.ErrorImage = global::ACMS.Properties.Resources.open_file_icon;
     this.pbFilePath3.Image = global::ACMS.Properties.Resources.open_file_icon;
     this.pbFilePath3.InitialImage = global::ACMS.Properties.Resources.open_file_icon;
     this.pbFilePath3.Location = new System.Drawing.Point(531, 220);
     this.pbFilePath3.Name = "pbFilePath3";
     this.pbFilePath3.Size = new System.Drawing.Size(20, 20);
     this.pbFilePath3.SizeMode = System.Windows.Forms.PictureBoxSizeMode.StretchImage;
     this.pbFilePath3.TabIndex = 18;
     this.pbFilePath3.TabStop = false;
     this.pbFilePath3.Click += new System.EventHandler(this.pbFilePath3_Click);
     //
     // txtFilePath3
     //
     this.txtFilePath3.EditValue = "";
     this.txtFilePath3.Location = new System.Drawing.Point(134, 220);
     this.txtFilePath3.Name = "txtFilePath3";
     this.txtFilePath3.Properties.MaxLength = 255;
     this.txtFilePath3.Properties.ReadOnly = true;
     this.txtFilePath3.Size = new System.Drawing.Size(391, 20);
     this.txtFilePath3.TabIndex = 16;
     //
     // label9
     //
     this.label9.Location = new System.Drawing.Point(64, 222);
     this.label9.Name = "label9";
     this.label9.Size = new System.Drawing.Size(66, 18);
     this.label9.TabIndex = 17;
     this.label9.Text = "File 3:";
     //
     // frmNewMemo2
     //
     this.AcceptButton = this.sbtnSend;
     this.AutoScaleBaseSize = new System.Drawing.Size(5, 13);
     this.CancelButton = this.sbtnCancel;
     this.ClientSize = new System.Drawing.Size(920, 671);
     this.Controls.Add(this.pbFilePath3);
     this.Controls.Add(this.txtFilePath3);
     this.Controls.Add(this.label9);
     this.Controls.Add(this.pbFilePath2);
     this.Controls.Add(this.txtFilePath2);
     this.Controls.Add(this.label8);
     this.Controls.Add(this.pbFilePath1);
     this.Controls.Add(this.txtFilePath1);
     this.Controls.Add(this.label7);
     this.Controls.Add(this.pbFileSelect);
     this.Controls.Add(this.txtImagePath);
     this.Controls.Add(this.lblFileName);
     this.Controls.Add(this.sbtnDraft);
     this.Controls.Add(this.sbtnSend);
     this.Controls.Add(this.sbtnCancel);
     this.Controls.Add(this.groupControl1);
     this.Controls.Add(this.memoedtBody);
     this.Controls.Add(this.label2);
     this.Controls.Add(this.txtSubject);
     this.Controls.Add(this.label1);
     this.MaximizeBox = false;
     this.MinimizeBox = false;
     this.Name = "frmNewMemo2";
     this.ShowInTaskbar = false;
     this.StartPosition = System.Windows.Forms.FormStartPosition.CenterParent;
     this.Text = "New Memo";
     ((System.ComponentModel.ISupportInitialize)(this.memoedtBody.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtSubject.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.groupControl1)).EndInit();
     this.groupControl1.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.gridctrEmployee2)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.gvEmployee2)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridctrEmployee)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.gvEmployee)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridctrPersonalGroup2)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.gvPersonalGroup2)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridctrPersonalGroup)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.gvPersonalGroup)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridctrDepartmentGroup2)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.gvDepartmentGroup2)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridctrDepartmentGroup)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.gvDepartmentGroup)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridctrBranchReceipient2)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.gvBranchReceipient2)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridctrBranchReceipient)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.gvBranchReceipient)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtImagePath.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.pbFileSelect)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.pbFilePath1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtFilePath1.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.pbFilePath2)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtFilePath2.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.pbFilePath3)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtFilePath3.Properties)).EndInit();
     this.ResumeLayout(false);
 }