Example #1
0
        /// <summary>
        /// 그룹에 바를 추가한다.
        /// </summary>
        /// <param name="ribbon">기본객체.</param>
        /// <param name="pageName">페이지이름.</param>
        /// <param name="groupName">그룹이름.</param>
        /// <param name="name">버튼바객체.</param>
        /// <param name="catpion">버튼캡션름</param>
        /// <param name="imageIndex">이미지인덱스.</param>
        /// <param name="LargeImageIndex">라지이미지인덱스.</param>
        /// <param name="barId">바 아이디.</param>
        /// <returns>바객체</returns>
        public static DevExpress.XtraBars.BarButtonItem AddBar(DevExpress.XtraBars.Ribbon.RibbonControl ribbon,
                                                               string pageName,
                                                               string groupName,
                                                               string name,
                                                               string catpion,
                                                               int imageIndex,
                                                               int LargeImageIndex,
                                                               int barId)
        {
            try
            {
                DevExpress.XtraBars.Ribbon.RibbonPage      rPage  = FindPage(ribbon, pageName);
                DevExpress.XtraBars.Ribbon.RibbonPageGroup rGroup = FindGroup(rPage, groupName);
                DevExpress.XtraBars.BarButtonItem          rBar   = new DevExpress.XtraBars.BarButtonItem();

                rBar.Caption         = catpion;
                rBar.Id              = barId;
                rBar.LargeImageIndex = LargeImageIndex;
                rBar.ImageIndex      = imageIndex;
                rBar.Name            = name;
                ribbon.Items.Add(rBar);
                rGroup.ItemLinks.Add(rBar);
                return(rBar);
            }
            catch (Exception ex)
            {
                throw ex;
            }
        }
Example #2
0
        /// <summary>
        /// Carrega todos os itens da barra de ferramentas de modulos.
        /// </summary>
        public void Carregar_Barra_Ferramenta(DevExpress.XtraBars.Ribbon.RibbonControl ribbon)
        {
            string sQuery = "select * from vw_retornar_modulos_acessos where usuario = {0}";

            sQuery = string.Format(sQuery
                                   , Propriedades.CodigoUsuario);
            DataTable dt = SQL.Select(sQuery, "x", false);

            Propriedades.FormMain.cmdToolModulos.DropDownControl = ts_Modulos;
            DevExpress.Utils.ImageCollection ic = (DevExpress.Utils.ImageCollection)ribbon.Images;

            //-- Carrega itens do menu.
            foreach (DataRow row in dt.Select("", "descricao_modulo"))
            {
                DevExpress.XtraBars.BarButtonItem bbi = new DevExpress.XtraBars.BarButtonItem();
                bbi.ItemClick  += new DevExpress.XtraBars.ItemClickEventHandler(Propriedades.FormMain.bbi_ItemClick);
                bbi.Caption     = row["Descricao_Modulo"].ToString();
                bbi.Description = row["Descricao_Modulo"].ToString();
                bbi.Tag         = row["Modulo"];

                //-- Carrega imagem.
                DataTable dt_imagem = SQL.Select("Select imagem from Modulos where modulo = " + row["Modulo"].ToString(), "x", false);
                if (dt_imagem.Rows.Count > 0 && dt_imagem.Rows[0][0] != DBNull.Value)
                {
                    MemoryStream ms = new MemoryStream((byte[])dt_imagem.Rows[0][0]);
                    ic.AddImage(Image.FromStream(ms));
                    bbi.ImageIndex = ic.Images.Count - 1;
                }
                ribbon.Items.Add(bbi);
                ts_Modulos.ItemLinks.Add(bbi);
            }

            dt.Dispose();
            dt = null;
        }
Example #3
0
        //Find baritem of ribbon control
        public void SearchWindow(DevExpress.XtraBars.Ribbon.RibbonControl ribbonControl, DataTable dt)
        {
            foreach (var item in ribbonControl.Items)
            {
                if (item.GetType() == typeof(BarButtonItem))
                {
                    BarButtonItem barItem = (BarButtonItem)item;
                    if (barItem.Name.Contains("bar"))
                    {
                        barItem.Enabled = false;
                    }
                }
            }

            foreach (var item in ribbonControl.Items)
            {
                if (item.GetType() == typeof(BarButtonItem))
                {
                    BarButtonItem barItem = (BarButtonItem)item;
                    if (barItem.Name.Contains("bar"))
                    {
                        for (int i = 0; i < dt.Rows.Count; i++)
                        {
                            string ad_window_name            = dt.Rows[i]["ad_window_name"].ToString();
                            string ad_window_access_isactive = dt.Rows[i]["ad_window_access_isactive"].ToString();
                            if (string.Compare(barItem.Name.ToString(), ad_window_name) == 0 && string.Compare(ad_window_access_isactive, "Y") == 0)
                            {
                                barItem.Enabled = true;
                            }
                        }
                    }
                }
            }
        }
Example #4
0
        private void ribbon_Merge(object sender, DevExpress.XtraBars.Ribbon.RibbonMergeEventArgs e)
        {
            DevExpress.XtraBars.Ribbon.RibbonControl parentRRibbon = sender as DevExpress.XtraBars.Ribbon.RibbonControl;
            DevExpress.XtraBars.Ribbon.RibbonControl childRibbon   = e.MergedChild;

            parentRRibbon.StatusBar.MergeStatusBar(childRibbon.StatusBar);
        }
Example #5
0
 //ribbon
 public void SaveRibbonLayOut(DevExpress.XtraBars.Ribbon.RibbonControl ribbon, string key)
 {
     try
     {
         PropertyService.Set <bool>(key, ribbon.Minimized);
     }
     catch (Exception ex)
     {
         MessageService.ShowException(ex);
     }
 }
Example #6
0
        public static List <DevExpress.XtraBars.BarButtonItem> getAllBarButtonItem(DevExpress.XtraBars.Ribbon.RibbonControl ribbon)
        {
            List <DevExpress.XtraBars.BarButtonItem> lstBarbuttonItem = new List <DevExpress.XtraBars.BarButtonItem>();

            foreach (var item in (ribbon as DevExpress.XtraBars.Ribbon.RibbonControl).Items)
            {
                if (item is DevExpress.XtraBars.BarButtonItem)
                {
                    lstBarbuttonItem.Add(item as DevExpress.XtraBars.BarButtonItem);
                }
            }

            return(lstBarbuttonItem);
        }
Example #7
0
        public static List <DevExpress.XtraBars.Ribbon.RibbonPage> getAllRibbonPage(DevExpress.XtraBars.Ribbon.RibbonControl ribbon)
        {
            List <DevExpress.XtraBars.Ribbon.RibbonPage> lstRibbonPage = new List <DevExpress.XtraBars.Ribbon.RibbonPage>();

            foreach (var page in ribbon.Pages)
            {
                if (page is DevExpress.XtraBars.Ribbon.RibbonPage)
                {
                    lstRibbonPage.Add(page as DevExpress.XtraBars.Ribbon.RibbonPage);
                }
            }

            return(lstRibbonPage);
        }
Example #8
0
 /// <summary>
 /// Required method for Designer support - do not modify
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(AddinMenu));
     this.addinRibbon = new DevExpress.XtraBars.Ribbon.RibbonControl();
     this.label1 = new System.Windows.Forms.Label();
     ((System.ComponentModel.ISupportInitialize)(this.addinRibbon)).BeginInit();
     this.SuspendLayout();
     //
     // addinRibbon
     //
     this.addinRibbon.ApplicationButtonText = null;
     //
     //
     //
     this.addinRibbon.ExpandCollapseItem.Id = 0;
     this.addinRibbon.ExpandCollapseItem.Name = "";
     this.addinRibbon.Items.AddRange(new DevExpress.XtraBars.BarItem[] {
     this.addinRibbon.ExpandCollapseItem});
     this.addinRibbon.Location = new System.Drawing.Point(0, 0);
     this.addinRibbon.MaxItemId = 1;
     this.addinRibbon.MdiMergeStyle = DevExpress.XtraBars.Ribbon.RibbonMdiMergeStyle.OnlyWhenMaximized;
     this.addinRibbon.Name = "addinRibbon";
     this.addinRibbon.RibbonStyle = DevExpress.XtraBars.Ribbon.RibbonControlStyle.Office2010;
     this.addinRibbon.Size = new System.Drawing.Size(554, 54);
     //
     // label1
     //
     this.label1.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
     this.label1.ForeColor = System.Drawing.Color.Red;
     this.label1.Location = new System.Drawing.Point(12, 200);
     this.label1.Name = "label1";
     this.label1.Size = new System.Drawing.Size(292, 220);
     this.label1.TabIndex = 5;
     this.label1.Text = resources.GetString("label1.Text");
     this.label1.Visible = false;
     //
     // AddinMenu
     //
     this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
     this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
     this.ClientSize = new System.Drawing.Size(554, 429);
     this.Controls.Add(this.label1);
     this.Controls.Add(this.addinRibbon);
     this.Name = "AddinMenu";
     this.Ribbon = this.addinRibbon;
     this.Text = "AddinMenu";
     ((System.ComponentModel.ISupportInitialize)(this.addinRibbon)).EndInit();
     this.ResumeLayout(false);
 }
Example #9
0
        public RibbonControlGenerate(Form frm)
        {
            OnwerForm = frm;
            //Control
            DefaultRbControl = new DevExpress.XtraBars.Ribbon.RibbonControl();

            ((System.ComponentModel.ISupportInitialize)(DefaultRbControl)).BeginInit();
            //页  page
            DefaultRbPage = new DevExpress.XtraBars.Ribbon.RibbonPage(RibbonLoad.RibbonPageText);

            //组 关闭按钮
            var CloseRbPageGroup = new DevExpress.XtraBars.Ribbon.RibbonPageGroup("功能");

            DefaultRbPage.Groups.Add(CloseRbPageGroup);

            //var item = AddBarItem("BarItemLinkClose", "关闭", global::GZFramework.UI.Dev.Properties.Resources.hide_32x32);
            //按钮 baritem
            DevExpress.XtraBars.BarButtonItem bbiClose = getButtonItem("BarItemLinkClose", "关闭", global::GZFramework.UI.Dev.Properties.Resources.hide_32x32);

            DefaultRbControl.Items.Add(bbiClose);
            var link = CloseRbPageGroup.ItemLinks.Add(bbiClose);

            link.Item.ItemClick += Item_ItemClick;


            DefaultRbControl.Pages.Add(DefaultRbPage);
            //组 group
            DefaultRbPageGroup = new DevExpress.XtraBars.Ribbon.RibbonPageGroup(RibbonLoad.RibbonPageGroupOptionText);
            DefaultRbPage.Groups.Add(DefaultRbPageGroup);

            //组 group
            DefaultNavRbPageGroup = new DevExpress.XtraBars.Ribbon.RibbonPageGroup(RibbonLoad.RibbonPageGroupDataNavText);
            DefaultRbPage.Groups.Add(DefaultNavRbPageGroup);


            DefaultRbControl.ShowPageHeadersMode      = DevExpress.XtraBars.Ribbon.ShowPageHeadersMode.Hide;
            DefaultRbControl.ShowToolbarCustomizeItem = false;
            DefaultRbControl.ShowApplicationButton    = DevExpress.Utils.DefaultBoolean.False;
            DefaultRbControl.ToolbarLocation          = DevExpress.XtraBars.Ribbon.RibbonQuickAccessToolbarLocation.Hidden;
            DefaultRbControl.AutoHideEmptyItems       = true;
            DefaultRbControl.DrawGroupCaptions        = DevExpress.Utils.DefaultBoolean.False;
            frm.Controls.Add(DefaultRbControl);


            ((System.ComponentModel.ISupportInitialize)(DefaultRbControl)).EndInit();
            frm.Load += frm_Load;
        }
Example #10
0
 /// <summary>
 /// 리본콘트롤에 페이지를 추가한다.
 /// </summary>
 /// <param name="ribbon">리본객체</param>
 /// <param name="name">리본이름.</param>
 /// <param name="caption">기본캡션</param>
 public static void AddPage(DevExpress.XtraBars.Ribbon.RibbonControl ribbon,
                            string name,
                            string caption)
 {
     try
     {
         DevExpress.XtraBars.Ribbon.RibbonPage rPage = new DevExpress.XtraBars.Ribbon.RibbonPage();
         rPage.KeyTip = "";
         rPage.Name   = name;
         rPage.Text   = caption;
         ribbon.Pages.Add(rPage);
     }
     catch (Exception ex)
     {
         throw ex;
     }
 }
Example #11
0
 public RibbonRegister(Form owner, DevExpress.XtraBars.Ribbon.RibbonControl bar)
 {
     _Owner = owner;
     _bar   = bar;
     _BaseButtonlist.Clear();
     _BaseButtonlist.Add("btnView", "rpgwindow");
     _BaseButtonlist.Add("btnAdd", "rpgedit");
     _BaseButtonlist.Add("btnDelete", "rpgedit");
     _BaseButtonlist.Add("btnEdit", "rpgedit");
     _BaseButtonlist.Add("btnSave", "rpgsave");
     _BaseButtonlist.Add("btnCancel", "rpgsave");
     _BaseButtonlist.Add("btnApproval", "rpgbusiness");
     _BaseButtonlist.Add("btnShowModifyHistory", "rpgwindow");
     _BaseButtonlist.Add("btnHelp", "rpghelp");
     _BaseButtonlist.Add("btnAbout", "rpghelp");
     _BaseButtonlist.Add("btnClose", "rpgwindow");
 }
Example #12
0
        /// <summary>
        /// 페이지에 그룹을 추가한다.
        /// </summary>
        /// <param name="ribbon">개본객체.</param>
        /// <param name="pageName">페이지이름.</param>
        /// <param name="name">그룹이름.</param>
        /// <param name="caption">그룹캡션.</param>
        public static void AddGroup(DevExpress.XtraBars.Ribbon.RibbonControl ribbon,
                                    string pageName,
                                    string name,
                                    string caption)
        {
            try
            {
                DevExpress.XtraBars.Ribbon.RibbonPageGroup rGroup = new DevExpress.XtraBars.Ribbon.RibbonPageGroup();
                DevExpress.XtraBars.Ribbon.RibbonPage      rPage  = FindPage(ribbon, pageName);

                rGroup.KeyTip            = "";
                rGroup.Name              = name;
                rGroup.Text              = caption;
                rGroup.ShowCaptionButton = false;
                rPage.Groups.Add(rGroup);
            }
            catch (Exception ex)
            {
                throw ex;
            }
        }
Example #13
0
        /// <summary>
        /// 리본객체에서 페이지를 찾습니다.
        /// </summary>
        /// <param name="ribbon">리본객체.</param>
        /// <param name="name">페이지이름.</param>
        /// <returns>리본페이지</returns>
        public static DevExpress.XtraBars.Ribbon.RibbonPage FindPage(DevExpress.XtraBars.Ribbon.RibbonControl ribbon, string name)
        {
            try
            {
                DevExpress.XtraBars.Ribbon.RibbonPage rPage = null;
                for (int i = 0; i < ribbon.Pages.Count; i++)
                {
                    if (ribbon.Pages[i].Name == name)
                    {
                        rPage = ribbon.Pages[i];
                        break;
                    }
                }

                return(rPage);
            }
            catch (Exception ex)
            {
                throw ex;
            }
        }
Example #14
0
        /// <summary>
        /// 리본객체에서 버튼아이텀을 찾습니다.
        /// </summary>
        /// <param name="ribbon">기본객체.</param>
        /// <param name="name">버튼객체이름</param>
        /// <returns>버튼객체</returns>
        public static DevExpress.XtraBars.BarButtonItem FindBarButtonItem(DevExpress.XtraBars.Ribbon.RibbonControl ribbon, string name)
        {
            try
            {
                DevExpress.XtraBars.BarButtonItem bar = null;
                for (int i = 0; i < ribbon.Items.Count; i++)
                {
                    //if(ribbon.Items [i].ToString().Trim() == "DevExpress.XtraBars.BarButtonItem"  && ribbon.Items [i].Name == name)
                    if (ribbon.Items[i] is DevExpress.XtraBars.BarButtonItem && ribbon.Items[i].Name == name)
                    {
                        bar = (DevExpress.XtraBars.BarButtonItem)ribbon.Items[i];
                        break;
                    }
                }

                return(bar);
            }
            catch (Exception ex)
            {
                throw ex;
            }
        }
 /// <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(MenuPrincipal));
     this.ribbon = new DevExpress.XtraBars.Ribbon.RibbonControl();
     this.barButtonItem1 = new DevExpress.XtraBars.BarButtonItem();
     this.barStaticItem1 = new DevExpress.XtraBars.BarStaticItem();
     this.barButtonItem3 = new DevExpress.XtraBars.BarButtonItem();
     this.barStaticItem2 = new DevExpress.XtraBars.BarStaticItem();
     this.barStaticItem3 = new DevExpress.XtraBars.BarStaticItem();
     this.barButtonItem4 = new DevExpress.XtraBars.BarButtonItem();
     this.barStaticItem4 = new DevExpress.XtraBars.BarStaticItem();
     this.barStaticItem5 = new DevExpress.XtraBars.BarStaticItem();
     this.barStaticItem6 = new DevExpress.XtraBars.BarStaticItem();
     this.barStaticItem7 = new DevExpress.XtraBars.BarStaticItem();
     this.barStaticItem8 = new DevExpress.XtraBars.BarStaticItem();
     this.barButtonItem5 = new DevExpress.XtraBars.BarButtonItem();
     this.barButtonItem2 = new DevExpress.XtraBars.BarButtonItem();
     this.barButtonItem7 = new DevExpress.XtraBars.BarButtonItem();
     this.barButtonItem8 = new DevExpress.XtraBars.BarButtonItem();
     this.barButtonItem9 = new DevExpress.XtraBars.BarButtonItem();
     this.barButtonItem10 = new DevExpress.XtraBars.BarButtonItem();
     this.barButtonItem11 = new DevExpress.XtraBars.BarButtonItem();
     this.barButtonItem12 = new DevExpress.XtraBars.BarButtonItem();
     this.barButtonItem13 = new DevExpress.XtraBars.BarButtonItem();
     this.barbuttons3 = new DevExpress.XtraBars.BarButtonItem();
     this.barButtonItem14 = new DevExpress.XtraBars.BarButtonItem();
     this.barButtonItem15 = new DevExpress.XtraBars.BarButtonItem();
     this.barButtonItem16 = new DevExpress.XtraBars.BarButtonItem();
     this.ribbonPage1 = new DevExpress.XtraBars.Ribbon.RibbonPage();
     this.ribbonPageGroup1 = new DevExpress.XtraBars.Ribbon.RibbonPageGroup();
     this.ribbonPage2 = new DevExpress.XtraBars.Ribbon.RibbonPage();
     this.ribbonPageGroup2 = new DevExpress.XtraBars.Ribbon.RibbonPageGroup();
     this.ribbonPage3 = new DevExpress.XtraBars.Ribbon.RibbonPage();
     this.ribbonPageGroup3 = new DevExpress.XtraBars.Ribbon.RibbonPageGroup();
     this.ribbonPageGroup4 = new DevExpress.XtraBars.Ribbon.RibbonPageGroup();
     this.ribbonPageGroup6 = new DevExpress.XtraBars.Ribbon.RibbonPageGroup();
     this.ribbonPage5 = new DevExpress.XtraBars.Ribbon.RibbonPage();
     this.ribbonPageGroup5 = new DevExpress.XtraBars.Ribbon.RibbonPageGroup();
     this.ribbonPage6 = new DevExpress.XtraBars.Ribbon.RibbonPage();
     this.ribbonPageGroup7 = new DevExpress.XtraBars.Ribbon.RibbonPageGroup();
     this.ribbonPage7 = new DevExpress.XtraBars.Ribbon.RibbonPage();
     this.ribbonPageGroup8 = new DevExpress.XtraBars.Ribbon.RibbonPageGroup();
     this.ribbonStatusBar = new DevExpress.XtraBars.Ribbon.RibbonStatusBar();
     this.PanelControl1 = new DevExpress.XtraEditors.PanelControl();
     this.defaultLookAndFeel1 = new DevExpress.LookAndFeel.DefaultLookAndFeel(this.components);
     ((System.ComponentModel.ISupportInitialize)(this.ribbon)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.PanelControl1)).BeginInit();
     this.SuspendLayout();
     //
     // ribbon
     //
     this.ribbon.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
     | System.Windows.Forms.AnchorStyles.Left)
     | System.Windows.Forms.AnchorStyles.Right)));
     this.ribbon.ApplicationIcon = global::ETNA.SGI.Presentacion.Properties.Resources.ETNAIMAGE;
     this.ribbon.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(224)))), ((int)(((byte)(224)))), ((int)(((byte)(224)))));
     this.ribbon.ColorScheme = DevExpress.XtraBars.Ribbon.RibbonControlColorScheme.Blue;
     this.ribbon.Dock = System.Windows.Forms.DockStyle.None;
     this.ribbon.ExpandCollapseItem.Id = 0;
     this.ribbon.Items.AddRange(new DevExpress.XtraBars.BarItem[] {
     this.ribbon.ExpandCollapseItem,
     this.barButtonItem1,
     this.barStaticItem1,
     this.barButtonItem3,
     this.barStaticItem2,
     this.barStaticItem3,
     this.barButtonItem4,
     this.barStaticItem4,
     this.barStaticItem5,
     this.barStaticItem6,
     this.barStaticItem7,
     this.barStaticItem8,
     this.barButtonItem5,
     this.barButtonItem2,
     this.barButtonItem7,
     this.barButtonItem8,
     this.barButtonItem9,
     this.barButtonItem10,
     this.barButtonItem11,
     this.barButtonItem12,
     this.barButtonItem13,
     this.barbuttons3,
     this.barButtonItem14,
     this.barButtonItem15,
     this.barButtonItem16});
     this.ribbon.Location = new System.Drawing.Point(0, 0);
     this.ribbon.MaxItemId = 28;
     this.ribbon.Name = "ribbon";
     this.ribbon.PageHeaderItemLinks.Add(this.barStaticItem8);
     this.ribbon.Pages.AddRange(new DevExpress.XtraBars.Ribbon.RibbonPage[] {
     this.ribbonPage1,
     this.ribbonPage2,
     this.ribbonPage3,
     this.ribbonPage5,
     this.ribbonPage6,
     this.ribbonPage7});
     this.ribbon.RibbonStyle = DevExpress.XtraBars.Ribbon.RibbonControlStyle.Office2007;
     this.ribbon.Size = new System.Drawing.Size(803, 145);
     this.ribbon.StatusBar = this.ribbonStatusBar;
     this.ribbon.Click += new System.EventHandler(this.ribbon_Click);
     //
     // barButtonItem1
     //
     this.barButtonItem1.Caption = "Pedidos";
     this.barButtonItem1.Glyph = global::ETNA.SGI.Presentacion.Properties.Resources.pedido;
     this.barButtonItem1.Id = 7;
     this.barButtonItem1.LargeGlyph = global::ETNA.SGI.Presentacion.Properties.Resources.pedido;
     this.barButtonItem1.LargeImageIndex = 7;
     this.barButtonItem1.Name = "barButtonItem1";
     this.barButtonItem1.RibbonStyle = ((DevExpress.XtraBars.Ribbon.RibbonItemStyles)((DevExpress.XtraBars.Ribbon.RibbonItemStyles.Large | DevExpress.XtraBars.Ribbon.RibbonItemStyles.SmallWithoutText)));
     this.barButtonItem1.ItemClick += new DevExpress.XtraBars.ItemClickEventHandler(this.barButtonItem1_ItemClick);
     //
     // barStaticItem1
     //
     this.barStaticItem1.Caption = "barStaticItem1";
     this.barStaticItem1.CategoryGuid = new System.Guid("6ffddb2b-9015-4d97-a4c1-91613e0ef537");
     this.barStaticItem1.Id = 1;
     this.barStaticItem1.Name = "barStaticItem1";
     this.barStaticItem1.TextAlignment = System.Drawing.StringAlignment.Near;
     //
     // barButtonItem3
     //
     this.barButtonItem3.Caption = "barButtonItem3";
     this.barButtonItem3.Id = 2;
     this.barButtonItem3.Name = "barButtonItem3";
     //
     // barStaticItem2
     //
     this.barStaticItem2.Caption = "barStaticItem2";
     this.barStaticItem2.Id = 4;
     this.barStaticItem2.Name = "barStaticItem2";
     this.barStaticItem2.TextAlignment = System.Drawing.StringAlignment.Near;
     //
     // barStaticItem3
     //
     this.barStaticItem3.Caption = "barStaticItem3";
     this.barStaticItem3.Id = 5;
     this.barStaticItem3.Name = "barStaticItem3";
     this.barStaticItem3.TextAlignment = System.Drawing.StringAlignment.Near;
     //
     // barButtonItem4
     //
     this.barButtonItem4.Caption = "barButtonItem4";
     this.barButtonItem4.Id = 6;
     this.barButtonItem4.Name = "barButtonItem4";
     //
     // barStaticItem4
     //
     this.barStaticItem4.Caption = "barStaticItem4";
     this.barStaticItem4.Id = 7;
     this.barStaticItem4.Name = "barStaticItem4";
     this.barStaticItem4.TextAlignment = System.Drawing.StringAlignment.Near;
     //
     // barStaticItem5
     //
     this.barStaticItem5.Caption = "barStaticItem5";
     this.barStaticItem5.Id = 8;
     this.barStaticItem5.Name = "barStaticItem5";
     this.barStaticItem5.TextAlignment = System.Drawing.StringAlignment.Near;
     //
     // barStaticItem6
     //
     this.barStaticItem6.Caption = "barStaticItem6";
     this.barStaticItem6.Id = 9;
     this.barStaticItem6.Name = "barStaticItem6";
     this.barStaticItem6.TextAlignment = System.Drawing.StringAlignment.Near;
     //
     // barStaticItem7
     //
     this.barStaticItem7.Caption = "barStaticItem7";
     this.barStaticItem7.Id = 10;
     this.barStaticItem7.Name = "barStaticItem7";
     this.barStaticItem7.TextAlignment = System.Drawing.StringAlignment.Near;
     //
     // barStaticItem8
     //
     this.barStaticItem8.Caption = "barStaticItem8";
     this.barStaticItem8.Id = 12;
     this.barStaticItem8.ItemInMenuAppearance.Disabled.BackColor = System.Drawing.Color.Red;
     this.barStaticItem8.ItemInMenuAppearance.Disabled.ForeColor = System.Drawing.Color.Red;
     this.barStaticItem8.ItemInMenuAppearance.Disabled.Options.UseBackColor = true;
     this.barStaticItem8.ItemInMenuAppearance.Disabled.Options.UseForeColor = true;
     this.barStaticItem8.ItemInMenuAppearance.Hovered.BackColor = System.Drawing.Color.Red;
     this.barStaticItem8.ItemInMenuAppearance.Hovered.ForeColor = System.Drawing.Color.Red;
     this.barStaticItem8.ItemInMenuAppearance.Hovered.Options.UseBackColor = true;
     this.barStaticItem8.ItemInMenuAppearance.Hovered.Options.UseForeColor = true;
     this.barStaticItem8.ItemInMenuAppearance.Normal.BackColor = System.Drawing.Color.Red;
     this.barStaticItem8.ItemInMenuAppearance.Normal.ForeColor = System.Drawing.Color.Red;
     this.barStaticItem8.ItemInMenuAppearance.Normal.Options.UseBackColor = true;
     this.barStaticItem8.ItemInMenuAppearance.Normal.Options.UseForeColor = true;
     this.barStaticItem8.Name = "barStaticItem8";
     this.barStaticItem8.TextAlignment = System.Drawing.StringAlignment.Near;
     //
     // barButtonItem5
     //
     this.barButtonItem5.Caption = "Facturas";
     this.barButtonItem5.Id = 13;
     this.barButtonItem5.LargeGlyph = global::ETNA.SGI.Presentacion.Properties.Resources.atlas_energia_factura;
     this.barButtonItem5.Name = "barButtonItem5";
     this.barButtonItem5.ItemClick += new DevExpress.XtraBars.ItemClickEventHandler(this.barButtonItem5_ItemClick);
     //
     // barButtonItem2
     //
     this.barButtonItem2.Caption = "Pedidos Anulados";
     this.barButtonItem2.Id = 14;
     this.barButtonItem2.LargeGlyph = global::ETNA.SGI.Presentacion.Properties.Resources.BO121;
     this.barButtonItem2.Name = "barButtonItem2";
     //
     // barButtonItem7
     //
     this.barButtonItem7.Caption = "Cuota Venta";
     this.barButtonItem7.Id = 17;
     this.barButtonItem7.LargeGlyph = global::ETNA.SGI.Presentacion.Properties.Resources.ACCESOS12;
     this.barButtonItem7.Name = "barButtonItem7";
     this.barButtonItem7.ItemClick += new DevExpress.XtraBars.ItemClickEventHandler(this.barButtonItem7_ItemClick);
     //
     // barButtonItem8
     //
     this.barButtonItem8.Caption = "Actualizar Vendedor";
     this.barButtonItem8.Id = 18;
     this.barButtonItem8.LargeGlyph = global::ETNA.SGI.Presentacion.Properties.Resources.vendedor;
     this.barButtonItem8.Name = "barButtonItem8";
     //
     // barButtonItem9
     //
     this.barButtonItem9.Caption = "Lista de Precios";
     this.barButtonItem9.Id = 19;
     this.barButtonItem9.LargeGlyph = global::ETNA.SGI.Presentacion.Properties.Resources.listaprecio;
     this.barButtonItem9.Name = "barButtonItem9";
     //
     // barButtonItem10
     //
     this.barButtonItem10.Caption = "Plan de Ventas";
     this.barButtonItem10.Id = 20;
     this.barButtonItem10.LargeGlyph = global::ETNA.SGI.Presentacion.Properties.Resources.planventa;
     this.barButtonItem10.LargeImageIndexDisabled = 5;
     this.barButtonItem10.LargeWidth = 100;
     this.barButtonItem10.Name = "barButtonItem10";
     //
     // barButtonItem11
     //
     this.barButtonItem11.Caption = "Previsión de Venta";
     this.barButtonItem11.Id = 21;
     this.barButtonItem11.LargeGlyph = global::ETNA.SGI.Presentacion.Properties.Resources.previsionventa;
     this.barButtonItem11.Name = "barButtonItem11";
     //
     // barButtonItem12
     //
     this.barButtonItem12.Caption = "Actualizar Clientes";
     this.barButtonItem12.Id = 22;
     this.barButtonItem12.LargeGlyph = global::ETNA.SGI.Presentacion.Properties.Resources.clientes2;
     this.barButtonItem12.Name = "barButtonItem12";
     //
     // barButtonItem13
     //
     this.barButtonItem13.Caption = "Actualizar Grupo de Venta";
     this.barButtonItem13.Id = 23;
     this.barButtonItem13.LargeGlyph = global::ETNA.SGI.Presentacion.Properties.Resources.grupoventa;
     this.barButtonItem13.Name = "barButtonItem13";
     //
     // barbuttons3
     //
     this.barbuttons3.Caption = "Facturación por Lote";
     this.barbuttons3.Id = 24;
     this.barbuttons3.LargeGlyph = global::ETNA.SGI.Presentacion.Properties.Resources.factura;
     this.barbuttons3.Name = "barbuttons3";
     this.barbuttons3.ItemClick += new DevExpress.XtraBars.ItemClickEventHandler(this.barbuttons3_ItemClick);
     //
     // barButtonItem14
     //
     this.barButtonItem14.Caption = "Presupuesto Venta";
     this.barButtonItem14.Id = 25;
     this.barButtonItem14.LargeGlyph = global::ETNA.SGI.Presentacion.Properties.Resources.presupuesto;
     this.barButtonItem14.Name = "barButtonItem14";
     //
     // barButtonItem15
     //
     this.barButtonItem15.Caption = "Plan Ventas";
     this.barButtonItem15.Id = 26;
     this.barButtonItem15.LargeGlyph = global::ETNA.SGI.Presentacion.Properties.Resources.dashboard;
     this.barButtonItem15.Name = "barButtonItem15";
     //
     // barButtonItem16
     //
     this.barButtonItem16.Caption = "Tipo Comprobante";
     this.barButtonItem16.Id = 27;
     this.barButtonItem16.LargeGlyph = global::ETNA.SGI.Presentacion.Properties.Resources.tipocomprobante;
     this.barButtonItem16.Name = "barButtonItem16";
     //
     // ribbonPage1
     //
     this.ribbonPage1.Groups.AddRange(new DevExpress.XtraBars.Ribbon.RibbonPageGroup[] {
     this.ribbonPageGroup1});
     this.ribbonPage1.Name = "ribbonPage1";
     this.ribbonPage1.Text = "Pedidos";
     //
     // ribbonPageGroup1
     //
     this.ribbonPageGroup1.ItemLinks.Add(this.barButtonItem1);
     this.ribbonPageGroup1.ItemLinks.Add(this.barButtonItem2);
     this.ribbonPageGroup1.Name = "ribbonPageGroup1";
     this.ribbonPageGroup1.Text = "ETNA - PEDIDOS";
     //
     // ribbonPage2
     //
     this.ribbonPage2.Groups.AddRange(new DevExpress.XtraBars.Ribbon.RibbonPageGroup[] {
     this.ribbonPageGroup2});
     this.ribbonPage2.Name = "ribbonPage2";
     this.ribbonPage2.Text = "Facturación";
     //
     // ribbonPageGroup2
     //
     this.ribbonPageGroup2.ItemLinks.Add(this.barButtonItem5);
     this.ribbonPageGroup2.ItemLinks.Add(this.barbuttons3);
     this.ribbonPageGroup2.Name = "ribbonPageGroup2";
     this.ribbonPageGroup2.Text = "Facturación";
     //
     // ribbonPage3
     //
     this.ribbonPage3.Groups.AddRange(new DevExpress.XtraBars.Ribbon.RibbonPageGroup[] {
     this.ribbonPageGroup3,
     this.ribbonPageGroup4,
     this.ribbonPageGroup6});
     this.ribbonPage3.Name = "ribbonPage3";
     this.ribbonPage3.Text = "Ventas";
     //
     // ribbonPageGroup3
     //
     this.ribbonPageGroup3.ItemLinks.Add(this.barButtonItem7);
     this.ribbonPageGroup3.ItemLinks.Add(this.barButtonItem11);
     this.ribbonPageGroup3.Name = "ribbonPageGroup3";
     this.ribbonPageGroup3.Text = "Venta";
     //
     // ribbonPageGroup4
     //
     this.ribbonPageGroup4.ItemLinks.Add(this.barButtonItem8);
     this.ribbonPageGroup4.ItemLinks.Add(this.barButtonItem12);
     this.ribbonPageGroup4.Name = "ribbonPageGroup4";
     this.ribbonPageGroup4.Text = "Maestros";
     //
     // ribbonPageGroup6
     //
     this.ribbonPageGroup6.ItemLinks.Add(this.barButtonItem13);
     this.ribbonPageGroup6.ItemLinks.Add(this.barButtonItem10);
     this.ribbonPageGroup6.ItemLinks.Add(this.barButtonItem14);
     this.ribbonPageGroup6.Name = "ribbonPageGroup6";
     this.ribbonPageGroup6.Text = "Comercial";
     //
     // ribbonPage5
     //
     this.ribbonPage5.Groups.AddRange(new DevExpress.XtraBars.Ribbon.RibbonPageGroup[] {
     this.ribbonPageGroup5});
     this.ribbonPage5.Name = "ribbonPage5";
     this.ribbonPage5.Text = "Precios";
     //
     // ribbonPageGroup5
     //
     this.ribbonPageGroup5.ItemLinks.Add(this.barButtonItem9);
     this.ribbonPageGroup5.Name = "ribbonPageGroup5";
     //
     // ribbonPage6
     //
     this.ribbonPage6.Groups.AddRange(new DevExpress.XtraBars.Ribbon.RibbonPageGroup[] {
     this.ribbonPageGroup7});
     this.ribbonPage6.Name = "ribbonPage6";
     this.ribbonPage6.Text = "DashBoards";
     //
     // ribbonPageGroup7
     //
     this.ribbonPageGroup7.ItemLinks.Add(this.barButtonItem15);
     this.ribbonPageGroup7.Name = "ribbonPageGroup7";
     //
     // ribbonPage7
     //
     this.ribbonPage7.Groups.AddRange(new DevExpress.XtraBars.Ribbon.RibbonPageGroup[] {
     this.ribbonPageGroup8});
     this.ribbonPage7.Name = "ribbonPage7";
     this.ribbonPage7.Text = "Mantenimiento";
     //
     // ribbonPageGroup8
     //
     this.ribbonPageGroup8.ItemLinks.Add(this.barButtonItem16);
     this.ribbonPageGroup8.Name = "ribbonPageGroup8";
     this.ribbonPageGroup8.Text = "ETNA";
     //
     // ribbonStatusBar
     //
     this.ribbonStatusBar.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
     | System.Windows.Forms.AnchorStyles.Left)
     | System.Windows.Forms.AnchorStyles.Right)));
     this.ribbonStatusBar.Dock = System.Windows.Forms.DockStyle.None;
     this.ribbonStatusBar.Location = new System.Drawing.Point(0, 488);
     this.ribbonStatusBar.Name = "ribbonStatusBar";
     this.ribbonStatusBar.Ribbon = this.ribbon;
     this.ribbonStatusBar.Size = new System.Drawing.Size(784, 32);
     //
     // PanelControl1
     //
     this.PanelControl1.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
     | System.Windows.Forms.AnchorStyles.Left)
     | System.Windows.Forms.AnchorStyles.Right)));
     this.PanelControl1.Location = new System.Drawing.Point(0, 150);
     this.PanelControl1.LookAndFeel.SkinName = "Office 2010 Blue";
     this.PanelControl1.Name = "PanelControl1";
     this.PanelControl1.Size = new System.Drawing.Size(784, 342);
     this.PanelControl1.TabIndex = 5;
     //
     // defaultLookAndFeel1
     //
     this.defaultLookAndFeel1.LookAndFeel.SkinName = "Office 2010 Silver";
     this.defaultLookAndFeel1.LookAndFeel.TouchUIMode = DevExpress.LookAndFeel.TouchUIMode.False;
     //
     // MenuPrincipal
     //
     this.Appearance.ForeColor = System.Drawing.Color.White;
     this.Appearance.Options.UseForeColor = true;
     this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
     this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
     this.ClientSize = new System.Drawing.Size(784, 520);
     this.Controls.Add(this.ribbonStatusBar);
     this.Controls.Add(this.PanelControl1);
     this.Controls.Add(this.ribbon);
     this.Icon = ((System.Drawing.Icon)(resources.GetObject("$this.Icon")));
     this.Name = "MenuPrincipal";
     this.Ribbon = this.ribbon;
     this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen;
     this.StatusBar = this.ribbonStatusBar;
     this.Text = "ERP ETNA :::: 2015 :::: VRS 1.2 ::::::: DESARROLLADO POR UPC SYSTEM";
     this.WindowState = System.Windows.Forms.FormWindowState.Maximized;
     this.Load += new System.EventHandler(this.MenuPrincipal_Load);
     ((System.ComponentModel.ISupportInitialize)(this.ribbon)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.PanelControl1)).EndInit();
     this.ResumeLayout(false);
     this.PerformLayout();
 }
 /// <summary>
 /// Required method for Designer support - do not modify
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     DevExpress.XtraBars.Ribbon.RibbonControl ribbon;
     this.btnStok_arama    = new DevExpress.XtraBars.BarButtonItem();
     this.btnStok_ekle     = new DevExpress.XtraBars.BarButtonItem();
     this.barButtonItem1   = new DevExpress.XtraBars.BarButtonItem();
     this.barButtonItem2   = new DevExpress.XtraBars.BarButtonItem();
     this.barButtonItem3   = new DevExpress.XtraBars.BarButtonItem();
     this.barButtonItem4   = new DevExpress.XtraBars.BarButtonItem();
     this.barButtonItem5   = new DevExpress.XtraBars.BarButtonItem();
     this.barButtonItem6   = new DevExpress.XtraBars.BarButtonItem();
     this.barButtonItem7   = new DevExpress.XtraBars.BarButtonItem();
     this.barButtonItem8   = new DevExpress.XtraBars.BarButtonItem();
     this.stok             = new DevExpress.XtraBars.Ribbon.RibbonPage();
     this.ribbonPageGroup1 = new DevExpress.XtraBars.Ribbon.RibbonPageGroup();
     this.ribbonPage1      = new DevExpress.XtraBars.Ribbon.RibbonPage();
     this.ribbonPageGroup2 = new DevExpress.XtraBars.Ribbon.RibbonPageGroup();
     this.ribbonPage2      = new DevExpress.XtraBars.Ribbon.RibbonPage();
     this.ribbonPageGroup3 = new DevExpress.XtraBars.Ribbon.RibbonPageGroup();
     this.ribbonPage3      = new DevExpress.XtraBars.Ribbon.RibbonPage();
     this.ribbonPageGroup4 = new DevExpress.XtraBars.Ribbon.RibbonPageGroup();
     this.splitContainer1  = new System.Windows.Forms.SplitContainer();
     this.splitContainer3  = new System.Windows.Forms.SplitContainer();
     this.pictureBox1      = new System.Windows.Forms.PictureBox();
     this.simpleButton2    = new DevExpress.XtraEditors.SimpleButton();
     this.btnsifre         = new DevExpress.XtraEditors.SimpleButton();
     this.labelControl2    = new DevExpress.XtraEditors.LabelControl();
     this.k_adi            = new DevExpress.XtraEditors.LabelControl();
     this.simpleButton1    = new DevExpress.XtraEditors.SimpleButton();
     this.splitContainer2  = new System.Windows.Forms.SplitContainer();
     this.tabControl1      = new System.Windows.Forms.TabControl();
     this.tabPage1         = new System.Windows.Forms.TabPage();
     this.labelControl1    = new DevExpress.XtraEditors.LabelControl();
     this.ButGonder        = new DevExpress.XtraEditors.SimpleButton();
     this.TxtRutbe         = new DevExpress.XtraEditors.ComboBoxEdit();
     this.labelControl4    = new DevExpress.XtraEditors.LabelControl();
     this.TxtKul           = new DevExpress.XtraEditors.ComboBoxEdit();
     this.labelControl3    = new DevExpress.XtraEditors.LabelControl();
     this.TxtMesaj         = new System.Windows.Forms.RichTextBox();
     this.tabPage2         = new System.Windows.Forms.TabPage();
     this.gridControl1     = new DevExpress.XtraGrid.GridControl();
     this.gridView1        = new DevExpress.XtraGrid.Views.Grid.GridView();
     this.gridColumn1      = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn2      = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn3      = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridView3        = new DevExpress.XtraGrid.Views.Grid.GridView();
     this.tabPage3         = new System.Windows.Forms.TabPage();
     this.gridControl2     = new DevExpress.XtraGrid.GridControl();
     this.gridView2        = new DevExpress.XtraGrid.Views.Grid.GridView();
     this.gridColumn4      = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn5      = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn6      = new DevExpress.XtraGrid.Columns.GridColumn();
     this.openFileDialog1  = new System.Windows.Forms.OpenFileDialog();
     this.barButtonItem9   = new DevExpress.XtraBars.BarButtonItem();
     ribbon = new DevExpress.XtraBars.Ribbon.RibbonControl();
     ((System.ComponentModel.ISupportInitialize)(ribbon)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.splitContainer1)).BeginInit();
     this.splitContainer1.Panel1.SuspendLayout();
     this.splitContainer1.Panel2.SuspendLayout();
     this.splitContainer1.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.splitContainer3)).BeginInit();
     this.splitContainer3.Panel1.SuspendLayout();
     this.splitContainer3.Panel2.SuspendLayout();
     this.splitContainer3.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.pictureBox1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.splitContainer2)).BeginInit();
     this.splitContainer2.Panel1.SuspendLayout();
     this.splitContainer2.Panel2.SuspendLayout();
     this.splitContainer2.SuspendLayout();
     this.tabControl1.SuspendLayout();
     this.tabPage1.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.TxtRutbe.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.TxtKul.Properties)).BeginInit();
     this.tabPage2.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.gridControl1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridView1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridView3)).BeginInit();
     this.tabPage3.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.gridControl2)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridView2)).BeginInit();
     this.SuspendLayout();
     //
     // ribbon
     //
     ribbon.BackgroundImageLayout = System.Windows.Forms.ImageLayout.None;
     ribbon.ExpandCollapseItem.Id = 0;
     ribbon.ForeColor             = System.Drawing.SystemColors.ControlLightLight;
     ribbon.Items.AddRange(new DevExpress.XtraBars.BarItem[] {
         ribbon.ExpandCollapseItem,
         this.btnStok_arama,
         this.btnStok_ekle,
         this.barButtonItem1,
         this.barButtonItem2,
         this.barButtonItem3,
         this.barButtonItem4,
         this.barButtonItem5,
         this.barButtonItem6,
         this.barButtonItem7,
         this.barButtonItem8,
         this.barButtonItem9
     });
     ribbon.Location  = new System.Drawing.Point(0, 0);
     ribbon.Margin    = new System.Windows.Forms.Padding(2, 3, 2, 3);
     ribbon.MaxItemId = 19;
     ribbon.Name      = "ribbon";
     ribbon.Pages.AddRange(new DevExpress.XtraBars.Ribbon.RibbonPage[] {
         this.stok,
         this.ribbonPage1,
         this.ribbonPage2,
         this.ribbonPage3
     });
     ribbon.Size            = new System.Drawing.Size(1102, 135);
     ribbon.ToolbarLocation = DevExpress.XtraBars.Ribbon.RibbonQuickAccessToolbarLocation.Hidden;
     //
     // btnStok_arama
     //
     this.btnStok_arama.Caption    = "STOKARAMA";
     this.btnStok_arama.Id         = 1;
     this.btnStok_arama.LargeGlyph = global::Stok_Takip.Properties.Resources.ARAMA;
     this.btnStok_arama.Name       = "btnStok_arama";
     this.btnStok_arama.ItemClick += new DevExpress.XtraBars.ItemClickEventHandler(this.btnStok_arama_ItemClick);
     //
     // btnStok_ekle
     //
     this.btnStok_ekle.Caption    = "STOKEKLEME";
     this.btnStok_ekle.Id         = 3;
     this.btnStok_ekle.LargeGlyph = global::Stok_Takip.Properties.Resources.GİRİS;
     this.btnStok_ekle.Name       = "btnStok_ekle";
     this.btnStok_ekle.ItemClick += new DevExpress.XtraBars.ItemClickEventHandler(this.btnStok_ekle_ItemClick);
     //
     // barButtonItem1
     //
     this.barButtonItem1.Caption = "ÜRETİMDİKİM";
     this.barButtonItem1.Id      = 10;
     this.barButtonItem1.ItemAppearance.Normal.Font             = new System.Drawing.Font("Tahoma", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(162)));
     this.barButtonItem1.ItemAppearance.Normal.Options.UseFont  = true;
     this.barButtonItem1.ItemAppearance.Pressed.Font            = new System.Drawing.Font("Tahoma", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(162)));
     this.barButtonItem1.ItemAppearance.Pressed.Options.UseFont = true;
     this.barButtonItem1.LargeGlyph = global::Stok_Takip.Properties.Resources.GİRİS;
     this.barButtonItem1.Name       = "barButtonItem1";
     //
     // barButtonItem2
     //
     this.barButtonItem2.Caption = "ÜRETİMDOLUM";
     this.barButtonItem2.Glyph   = global::Stok_Takip.Properties.Resources.GÜNCELLE;
     this.barButtonItem2.Id      = 11;
     this.barButtonItem2.ItemAppearance.Normal.Font                  = new System.Drawing.Font("Tahoma", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(162)));
     this.barButtonItem2.ItemAppearance.Normal.Options.UseFont       = true;
     this.barButtonItem2.ItemAppearance.Pressed.Font                 = new System.Drawing.Font("Tahoma", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(162)));
     this.barButtonItem2.ItemAppearance.Pressed.Options.UseFont      = true;
     this.barButtonItem2.ItemInMenuAppearance.Normal.Font            = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(162)));
     this.barButtonItem2.ItemInMenuAppearance.Normal.Options.UseFont = true;
     this.barButtonItem2.LargeGlyph = global::Stok_Takip.Properties.Resources.GÜNCELLE;
     this.barButtonItem2.Name       = "barButtonItem2";
     //
     // barButtonItem3
     //
     this.barButtonItem3.Caption    = "ÜRETİMDİKİM";
     this.barButtonItem3.Id         = 12;
     this.barButtonItem3.LargeGlyph = global::Stok_Takip.Properties.Resources.GİRİS;
     this.barButtonItem3.Name       = "barButtonItem3";
     //
     // barButtonItem4
     //
     this.barButtonItem4.Caption    = "MAKİNA KONTROL";
     this.barButtonItem4.Id         = 13;
     this.barButtonItem4.LargeGlyph = global::Stok_Takip.Properties.Resources.GÜNCELLE;
     this.barButtonItem4.Name       = "barButtonItem4";
     //
     // barButtonItem5
     //
     this.barButtonItem5.Caption    = "SİPARİŞ-GİRİŞ";
     this.barButtonItem5.Id         = 14;
     this.barButtonItem5.LargeGlyph = global::Stok_Takip.Properties.Resources.k_giris;
     this.barButtonItem5.Name       = "barButtonItem5";
     this.barButtonItem5.ItemClick += new DevExpress.XtraBars.ItemClickEventHandler(this.barButtonItem5_ItemClick);
     //
     // barButtonItem6
     //
     this.barButtonItem6.Caption    = "SİPARİŞ-DURUM";
     this.barButtonItem6.Id         = 15;
     this.barButtonItem6.LargeGlyph = global::Stok_Takip.Properties.Resources.GÜNCELLE;
     this.barButtonItem6.Name       = "barButtonItem6";
     this.barButtonItem6.ItemClick += new DevExpress.XtraBars.ItemClickEventHandler(this.barButtonItem6_ItemClick);
     //
     // barButtonItem7
     //
     this.barButtonItem7.Caption    = "MAKİNAKONTROL";
     this.barButtonItem7.Id         = 16;
     this.barButtonItem7.LargeGlyph = global::Stok_Takip.Properties.Resources.k_giris;
     this.barButtonItem7.Name       = "barButtonItem7";
     this.barButtonItem7.ItemClick += new DevExpress.XtraBars.ItemClickEventHandler(this.barButtonItem7_ItemClick);
     //
     // barButtonItem8
     //
     this.barButtonItem8.Caption    = "HAZIR-ÜRÜNLER";
     this.barButtonItem8.Glyph      = global::Stok_Takip.Properties.Resources.GÜNCELLE;
     this.barButtonItem8.Id         = 17;
     this.barButtonItem8.LargeGlyph = global::Stok_Takip.Properties.Resources.GÜNCELLE;
     this.barButtonItem8.Name       = "barButtonItem8";
     this.barButtonItem8.ItemClick += new DevExpress.XtraBars.ItemClickEventHandler(this.barButtonItem8_ItemClick);
     //
     // stok
     //
     this.stok.Appearance.Font            = new System.Drawing.Font("Tahoma", 15.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(162)));
     this.stok.Appearance.Options.UseFont = true;
     this.stok.Groups.AddRange(new DevExpress.XtraBars.Ribbon.RibbonPageGroup[] {
         this.ribbonPageGroup1
     });
     this.stok.Image = global::Stok_Takip.Properties.Resources.ARAMA;
     this.stok.Name  = "stok";
     this.stok.Text  = "STOK KONTROL";
     //
     // ribbonPageGroup1
     //
     this.ribbonPageGroup1.AllowTextClipping = false;
     this.ribbonPageGroup1.ItemLinks.Add(this.btnStok_arama);
     this.ribbonPageGroup1.ItemLinks.Add(this.btnStok_ekle);
     this.ribbonPageGroup1.Name = "ribbonPageGroup1";
     this.ribbonPageGroup1.ShowCaptionButton = false;
     //
     // ribbonPage1
     //
     this.ribbonPage1.Appearance.Font            = new System.Drawing.Font("Tahoma", 14.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(162)));
     this.ribbonPage1.Appearance.Options.UseFont = true;
     this.ribbonPage1.Groups.AddRange(new DevExpress.XtraBars.Ribbon.RibbonPageGroup[] {
         this.ribbonPageGroup2
     });
     this.ribbonPage1.ImageAlign = DevExpress.Utils.HorzAlignment.Center;
     this.ribbonPage1.Name       = "ribbonPage1";
     this.ribbonPage1.Text       = "ÜRETİM KONTROL";
     //
     // ribbonPageGroup2
     //
     this.ribbonPageGroup2.AllowTextClipping = false;
     this.ribbonPageGroup2.ItemLinks.Add(this.barButtonItem7);
     this.ribbonPageGroup2.ItemLinks.Add(this.barButtonItem9);
     this.ribbonPageGroup2.Name = "ribbonPageGroup2";
     this.ribbonPageGroup2.ShowCaptionButton = false;
     //
     // ribbonPage2
     //
     this.ribbonPage2.Appearance.Font            = new System.Drawing.Font("Tahoma", 14.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(162)));
     this.ribbonPage2.Appearance.Options.UseFont = true;
     this.ribbonPage2.Groups.AddRange(new DevExpress.XtraBars.Ribbon.RibbonPageGroup[] {
         this.ribbonPageGroup3
     });
     this.ribbonPage2.Name = "ribbonPage2";
     this.ribbonPage2.Text = "SİPARİŞ";
     //
     // ribbonPageGroup3
     //
     this.ribbonPageGroup3.ItemLinks.Add(this.barButtonItem5);
     this.ribbonPageGroup3.ItemLinks.Add(this.barButtonItem6);
     this.ribbonPageGroup3.Name = "ribbonPageGroup3";
     this.ribbonPageGroup3.Text = "ribbonPageGroup3";
     //
     // ribbonPage3
     //
     this.ribbonPage3.Appearance.Font            = new System.Drawing.Font("Tahoma", 14.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(162)));
     this.ribbonPage3.Appearance.Options.UseFont = true;
     this.ribbonPage3.Groups.AddRange(new DevExpress.XtraBars.Ribbon.RibbonPageGroup[] {
         this.ribbonPageGroup4
     });
     this.ribbonPage3.Name = "ribbonPage3";
     this.ribbonPage3.Text = "REZERVE";
     //
     // ribbonPageGroup4
     //
     this.ribbonPageGroup4.ItemLinks.Add(this.barButtonItem8);
     this.ribbonPageGroup4.Name = "ribbonPageGroup4";
     this.ribbonPageGroup4.Text = "ribbonPageGroup4";
     //
     // splitContainer1
     //
     this.splitContainer1.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D;
     this.splitContainer1.Dock        = System.Windows.Forms.DockStyle.Fill;
     this.splitContainer1.Location    = new System.Drawing.Point(0, 0);
     this.splitContainer1.Name        = "splitContainer1";
     //
     // splitContainer1.Panel1
     //
     this.splitContainer1.Panel1.Controls.Add(this.splitContainer3);
     //
     // splitContainer1.Panel2
     //
     this.splitContainer1.Panel2.Controls.Add(this.splitContainer2);
     this.splitContainer1.Size             = new System.Drawing.Size(1194, 793);
     this.splitContainer1.SplitterDistance = 84;
     this.splitContainer1.TabIndex         = 0;
     //
     // splitContainer3
     //
     this.splitContainer3.Dock        = System.Windows.Forms.DockStyle.Fill;
     this.splitContainer3.Location    = new System.Drawing.Point(0, 0);
     this.splitContainer3.Name        = "splitContainer3";
     this.splitContainer3.Orientation = System.Windows.Forms.Orientation.Horizontal;
     //
     // splitContainer3.Panel1
     //
     this.splitContainer3.Panel1.Controls.Add(this.pictureBox1);
     //
     // splitContainer3.Panel2
     //
     this.splitContainer3.Panel2.Controls.Add(this.simpleButton2);
     this.splitContainer3.Panel2.Controls.Add(this.btnsifre);
     this.splitContainer3.Panel2.Controls.Add(this.labelControl2);
     this.splitContainer3.Panel2.Controls.Add(this.k_adi);
     this.splitContainer3.Panel2.Controls.Add(this.simpleButton1);
     this.splitContainer3.Size             = new System.Drawing.Size(80, 789);
     this.splitContainer3.SplitterDistance = 104;
     this.splitContainer3.TabIndex         = 0;
     //
     // pictureBox1
     //
     this.pictureBox1.Dock         = System.Windows.Forms.DockStyle.Fill;
     this.pictureBox1.InitialImage = null;
     this.pictureBox1.Location     = new System.Drawing.Point(0, 0);
     this.pictureBox1.Name         = "pictureBox1";
     this.pictureBox1.Size         = new System.Drawing.Size(80, 104);
     this.pictureBox1.TabIndex     = 0;
     this.pictureBox1.TabStop      = false;
     //
     // simpleButton2
     //
     this.simpleButton2.Location = new System.Drawing.Point(11, 139);
     this.simpleButton2.Name     = "simpleButton2";
     this.simpleButton2.Size     = new System.Drawing.Size(101, 23);
     this.simpleButton2.TabIndex = 4;
     this.simpleButton2.Text     = "KULLANICI EKLE";
     this.simpleButton2.Click   += new System.EventHandler(this.simpleButton2_Click_1);
     //
     // btnsifre
     //
     this.btnsifre.Location = new System.Drawing.Point(11, 110);
     this.btnsifre.Name     = "btnsifre";
     this.btnsifre.Size     = new System.Drawing.Size(101, 23);
     this.btnsifre.TabIndex = 3;
     this.btnsifre.Text     = "ŞİFRE DEĞİŞTİR";
     this.btnsifre.Click   += new System.EventHandler(this.simpleButton2_Click);
     //
     // labelControl2
     //
     this.labelControl2.Location = new System.Drawing.Point(17, 13);
     this.labelControl2.Name     = "labelControl2";
     this.labelControl2.Size     = new System.Drawing.Size(67, 13);
     this.labelControl2.TabIndex = 2;
     this.labelControl2.Text     = "HOŞGELDİNİZ";
     //
     // k_adi
     //
     this.k_adi.Location = new System.Drawing.Point(17, 50);
     this.k_adi.Name     = "k_adi";
     this.k_adi.Size     = new System.Drawing.Size(73, 13);
     this.k_adi.TabIndex = 2;
     this.k_adi.Text     = "KULLANICI ADI";
     //
     // simpleButton1
     //
     this.simpleButton1.Location = new System.Drawing.Point(11, 81);
     this.simpleButton1.Name     = "simpleButton1";
     this.simpleButton1.Size     = new System.Drawing.Size(101, 23);
     this.simpleButton1.TabIndex = 1;
     this.simpleButton1.Text     = "Resim Değiştir";
     this.simpleButton1.Click   += new System.EventHandler(this.simpleButton1_Click_1);
     //
     // splitContainer2
     //
     this.splitContainer2.Dock        = System.Windows.Forms.DockStyle.Fill;
     this.splitContainer2.Location    = new System.Drawing.Point(0, 0);
     this.splitContainer2.Name        = "splitContainer2";
     this.splitContainer2.Orientation = System.Windows.Forms.Orientation.Horizontal;
     //
     // splitContainer2.Panel1
     //
     this.splitContainer2.Panel1.Controls.Add(ribbon);
     //
     // splitContainer2.Panel2
     //
     this.splitContainer2.Panel2.BackColor = System.Drawing.SystemColors.AppWorkspace;
     this.splitContainer2.Panel2.Controls.Add(this.tabControl1);
     this.splitContainer2.Size             = new System.Drawing.Size(1102, 789);
     this.splitContainer2.SplitterDistance = 100;
     this.splitContainer2.TabIndex         = 0;
     //
     // tabControl1
     //
     this.tabControl1.Controls.Add(this.tabPage1);
     this.tabControl1.Controls.Add(this.tabPage2);
     this.tabControl1.Controls.Add(this.tabPage3);
     this.tabControl1.Dock          = System.Windows.Forms.DockStyle.Fill;
     this.tabControl1.ImeMode       = System.Windows.Forms.ImeMode.NoControl;
     this.tabControl1.Location      = new System.Drawing.Point(0, 0);
     this.tabControl1.Name          = "tabControl1";
     this.tabControl1.SelectedIndex = 0;
     this.tabControl1.Size          = new System.Drawing.Size(1102, 685);
     this.tabControl1.TabIndex      = 14;
     //
     // tabPage1
     //
     this.tabPage1.BackColor = System.Drawing.Color.Gainsboro;
     this.tabPage1.Controls.Add(this.labelControl1);
     this.tabPage1.Controls.Add(this.ButGonder);
     this.tabPage1.Controls.Add(this.TxtRutbe);
     this.tabPage1.Controls.Add(this.labelControl4);
     this.tabPage1.Controls.Add(this.TxtKul);
     this.tabPage1.Controls.Add(this.labelControl3);
     this.tabPage1.Controls.Add(this.TxtMesaj);
     this.tabPage1.ForeColor = System.Drawing.SystemColors.ControlText;
     this.tabPage1.Location  = new System.Drawing.Point(4, 22);
     this.tabPage1.Name      = "tabPage1";
     this.tabPage1.Padding   = new System.Windows.Forms.Padding(3);
     this.tabPage1.Size      = new System.Drawing.Size(1094, 659);
     this.tabPage1.TabIndex  = 0;
     this.tabPage1.Text      = "Mesaj Gönder";
     //
     // labelControl1
     //
     this.labelControl1.Location = new System.Drawing.Point(21, 19);
     this.labelControl1.Name     = "labelControl1";
     this.labelControl1.Size     = new System.Drawing.Size(29, 13);
     this.labelControl1.TabIndex = 10;
     this.labelControl1.Text     = "Rütbe";
     //
     // ButGonder
     //
     this.ButGonder.Location = new System.Drawing.Point(20, 238);
     this.ButGonder.Name     = "ButGonder";
     this.ButGonder.Size     = new System.Drawing.Size(101, 23);
     this.ButGonder.TabIndex = 13;
     this.ButGonder.Text     = "Gönder";
     this.ButGonder.Click   += new System.EventHandler(this.ButGonder_Click);
     //
     // TxtRutbe
     //
     this.TxtRutbe.Location    = new System.Drawing.Point(21, 51);
     this.TxtRutbe.MenuManager = ribbon;
     this.TxtRutbe.Name        = "TxtRutbe";
     this.TxtRutbe.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
         new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)
     });
     this.TxtRutbe.Properties.Items.AddRange(new object[] {
         "Depo",
         "Yönetici",
         "Satış"
     });
     this.TxtRutbe.Size                  = new System.Drawing.Size(100, 20);
     this.TxtRutbe.TabIndex              = 7;
     this.TxtRutbe.SelectedIndexChanged += new System.EventHandler(this.TxtRutbe_SelectedIndexChanged);
     //
     // labelControl4
     //
     this.labelControl4.Location = new System.Drawing.Point(21, 83);
     this.labelControl4.Name     = "labelControl4";
     this.labelControl4.Size     = new System.Drawing.Size(39, 13);
     this.labelControl4.TabIndex = 12;
     this.labelControl4.Text     = "MESAJ :";
     //
     // TxtKul
     //
     this.TxtKul.Location    = new System.Drawing.Point(150, 51);
     this.TxtKul.MenuManager = ribbon;
     this.TxtKul.Name        = "TxtKul";
     this.TxtKul.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
         new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)
     });
     this.TxtKul.Size     = new System.Drawing.Size(100, 20);
     this.TxtKul.TabIndex = 8;
     //
     // labelControl3
     //
     this.labelControl3.Location = new System.Drawing.Point(150, 19);
     this.labelControl3.Name     = "labelControl3";
     this.labelControl3.Size     = new System.Drawing.Size(37, 13);
     this.labelControl3.TabIndex = 11;
     this.labelControl3.Text     = "Kullanıcı";
     //
     // TxtMesaj
     //
     this.TxtMesaj.Location = new System.Drawing.Point(21, 102);
     this.TxtMesaj.Name     = "TxtMesaj";
     this.TxtMesaj.Size     = new System.Drawing.Size(319, 98);
     this.TxtMesaj.TabIndex = 9;
     this.TxtMesaj.Text     = "";
     //
     // tabPage2
     //
     this.tabPage2.Controls.Add(this.gridControl1);
     this.tabPage2.Location = new System.Drawing.Point(4, 22);
     this.tabPage2.Name     = "tabPage2";
     this.tabPage2.Padding  = new System.Windows.Forms.Padding(3);
     this.tabPage2.Size     = new System.Drawing.Size(1094, 659);
     this.tabPage2.TabIndex = 1;
     this.tabPage2.Text     = "Gönderilenler";
     this.tabPage2.UseVisualStyleBackColor = true;
     //
     // gridControl1
     //
     this.gridControl1.Dock        = System.Windows.Forms.DockStyle.Fill;
     this.gridControl1.Location    = new System.Drawing.Point(3, 3);
     this.gridControl1.MainView    = this.gridView1;
     this.gridControl1.MenuManager = ribbon;
     this.gridControl1.Name        = "gridControl1";
     this.gridControl1.Size        = new System.Drawing.Size(1088, 653);
     this.gridControl1.TabIndex    = 0;
     this.gridControl1.ViewCollection.AddRange(new DevExpress.XtraGrid.Views.Base.BaseView[] {
         this.gridView1,
         this.gridView3
     });
     //
     // gridView1
     //
     this.gridView1.Columns.AddRange(new DevExpress.XtraGrid.Columns.GridColumn[] {
         this.gridColumn1,
         this.gridColumn2,
         this.gridColumn3
     });
     this.gridView1.GridControl = this.gridControl1;
     this.gridView1.Name        = "gridView1";
     this.gridView1.OptionsView.ShowGroupPanel = false;
     //
     // gridColumn1
     //
     this.gridColumn1.Caption   = "Gönderen";
     this.gridColumn1.FieldName = "Gonderenadi";
     this.gridColumn1.Name      = "gridColumn1";
     this.gridColumn1.OptionsColumn.ReadOnly = true;
     this.gridColumn1.Visible      = true;
     this.gridColumn1.VisibleIndex = 0;
     //
     // gridColumn2
     //
     this.gridColumn2.Caption   = "Gönderilen";
     this.gridColumn2.FieldName = "Alanadi";
     this.gridColumn2.Name      = "gridColumn2";
     this.gridColumn2.OptionsColumn.ReadOnly = true;
     this.gridColumn2.Visible      = true;
     this.gridColumn2.VisibleIndex = 1;
     //
     // gridColumn3
     //
     this.gridColumn3.Caption   = "Mesaj";
     this.gridColumn3.FieldName = "Text";
     this.gridColumn3.Name      = "gridColumn3";
     this.gridColumn3.OptionsColumn.ReadOnly = true;
     this.gridColumn3.Visible      = true;
     this.gridColumn3.VisibleIndex = 2;
     //
     // gridView3
     //
     this.gridView3.GridControl = this.gridControl1;
     this.gridView3.Name        = "gridView3";
     //
     // tabPage3
     //
     this.tabPage3.Controls.Add(this.gridControl2);
     this.tabPage3.Location = new System.Drawing.Point(4, 22);
     this.tabPage3.Name     = "tabPage3";
     this.tabPage3.Padding  = new System.Windows.Forms.Padding(3);
     this.tabPage3.Size     = new System.Drawing.Size(1094, 659);
     this.tabPage3.TabIndex = 2;
     this.tabPage3.Text     = "Gelenler";
     this.tabPage3.UseVisualStyleBackColor = true;
     //
     // gridControl2
     //
     this.gridControl2.Dock        = System.Windows.Forms.DockStyle.Fill;
     this.gridControl2.Location    = new System.Drawing.Point(3, 3);
     this.gridControl2.MainView    = this.gridView2;
     this.gridControl2.MenuManager = ribbon;
     this.gridControl2.Name        = "gridControl2";
     this.gridControl2.Size        = new System.Drawing.Size(1088, 653);
     this.gridControl2.TabIndex    = 1;
     this.gridControl2.ViewCollection.AddRange(new DevExpress.XtraGrid.Views.Base.BaseView[] {
         this.gridView2
     });
     //
     // gridView2
     //
     this.gridView2.Columns.AddRange(new DevExpress.XtraGrid.Columns.GridColumn[] {
         this.gridColumn4,
         this.gridColumn5,
         this.gridColumn6
     });
     this.gridView2.GridControl = this.gridControl2;
     this.gridView2.Name        = "gridView2";
     //
     // gridColumn4
     //
     this.gridColumn4.Caption   = "Gönderen";
     this.gridColumn4.FieldName = "Gonderenadi";
     this.gridColumn4.Name      = "gridColumn4";
     this.gridColumn4.OptionsColumn.ReadOnly = true;
     this.gridColumn4.Visible      = true;
     this.gridColumn4.VisibleIndex = 0;
     //
     // gridColumn5
     //
     this.gridColumn5.Caption   = "Gönderilen";
     this.gridColumn5.FieldName = "Alanadi";
     this.gridColumn5.Name      = "gridColumn5";
     this.gridColumn5.OptionsColumn.ReadOnly = true;
     this.gridColumn5.Visible      = true;
     this.gridColumn5.VisibleIndex = 1;
     //
     // gridColumn6
     //
     this.gridColumn6.Caption   = "Mesaj";
     this.gridColumn6.FieldName = "Text";
     this.gridColumn6.Name      = "gridColumn6";
     this.gridColumn6.OptionsColumn.ReadOnly = true;
     this.gridColumn6.Visible      = true;
     this.gridColumn6.VisibleIndex = 2;
     //
     // openFileDialog1
     //
     this.openFileDialog1.FileName = "openFileDialog1";
     //
     // barButtonItem9
     //
     this.barButtonItem9.Caption    = "ÜRETİLENÜRÜNLER";
     this.barButtonItem9.Id         = 18;
     this.barButtonItem9.LargeGlyph = global::Stok_Takip.Properties.Resources.GİRİS;
     this.barButtonItem9.Name       = "barButtonItem9";
     this.barButtonItem9.ItemClick += new DevExpress.XtraBars.ItemClickEventHandler(this.barButtonItem9_ItemClick);
     //
     // baslangic
     //
     this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
     this.AutoScaleMode       = System.Windows.Forms.AutoScaleMode.Font;
     this.ClientSize          = new System.Drawing.Size(1194, 793);
     this.Controls.Add(this.splitContainer1);
     this.Name        = "baslangic";
     this.Text        = "baslangic";
     this.WindowState = System.Windows.Forms.FormWindowState.Maximized;
     this.Load       += new System.EventHandler(this.baslangic_Load);
     ((System.ComponentModel.ISupportInitialize)(ribbon)).EndInit();
     this.splitContainer1.Panel1.ResumeLayout(false);
     this.splitContainer1.Panel2.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.splitContainer1)).EndInit();
     this.splitContainer1.ResumeLayout(false);
     this.splitContainer3.Panel1.ResumeLayout(false);
     this.splitContainer3.Panel2.ResumeLayout(false);
     this.splitContainer3.Panel2.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(this.splitContainer3)).EndInit();
     this.splitContainer3.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.pictureBox1)).EndInit();
     this.splitContainer2.Panel1.ResumeLayout(false);
     this.splitContainer2.Panel1.PerformLayout();
     this.splitContainer2.Panel2.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.splitContainer2)).EndInit();
     this.splitContainer2.ResumeLayout(false);
     this.tabControl1.ResumeLayout(false);
     this.tabPage1.ResumeLayout(false);
     this.tabPage1.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(this.TxtRutbe.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.TxtKul.Properties)).EndInit();
     this.tabPage2.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.gridControl1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridView1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridView3)).EndInit();
     this.tabPage3.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.gridControl2)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridView2)).EndInit();
     this.ResumeLayout(false);
 }
 /// <summary>
 /// Required method for Designer support - do not modify
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     this.ribbonStatusBar = new DevExpress.XtraBars.Ribbon.RibbonStatusBar();
     this.OK = new DevExpress.XtraBars.BarButtonItem();
     this.barButtonItem2 = new DevExpress.XtraBars.BarButtonItem();
     this.cancel = new DevExpress.XtraBars.BarButtonItem();
     this.createMovement = new DevExpress.XtraBars.BarButtonItem();
     this.ribbon = new DevExpress.XtraBars.Ribbon.RibbonControl();
     this.NomenclatureInfoButtonsBar = new DevExpress.XtraBars.Ribbon.RibbonStatusBar();
     this.panelControl = new DevExpress.XtraEditors.PanelControl();
     this.State = new DevExpress.XtraEditors.ComboBoxEdit();
     this.labelControl8 = new DevExpress.XtraEditors.LabelControl();
     this.Car = new Aramis.AramisSearchLookUpEdit();
     this.labelControl7 = new DevExpress.XtraEditors.LabelControl();
     this.Driver = new Aramis.AramisSearchLookUpEdit();
     this.labelControl6 = new DevExpress.XtraEditors.LabelControl();
     this.Carrier = new Aramis.AramisSearchLookUpEdit();
     this.labelControl5 = new DevExpress.XtraEditors.LabelControl();
     this.Contractor = new Aramis.AramisSearchLookUpEdit();
     this.labelControl4 = new DevExpress.XtraEditors.LabelControl();
     this.TypeOfShipment = new DevExpress.XtraEditors.ComboBoxEdit();
     this.labelControl3 = new DevExpress.XtraEditors.LabelControl();
     this.Date = new DevExpress.XtraEditors.DateEdit();
     this.labelControl2 = new DevExpress.XtraEditors.LabelControl();
     this.IncomeNumber = new DevExpress.XtraEditors.TextEdit();
     this.labelControl1 = new DevExpress.XtraEditors.LabelControl();
     this.panelControl1 = new DevExpress.XtraEditors.PanelControl();
     this.pictureEdit1 = new DevExpress.XtraEditors.PictureEdit();
     this.Info = new DevExpress.XtraEditors.LabelControl();
     this.barButtonItem1 = new DevExpress.XtraBars.BarButtonItem();
     this.barButtonItem3 = new DevExpress.XtraBars.BarButtonItem();
     this.barButtonItem4 = new DevExpress.XtraBars.BarButtonItem();
     this.NomenclatureInfo = new DevExpress.XtraGrid.GridControl();
     this.nomenclatureView = new DevExpress.XtraGrid.Views.Grid.GridView();
     this.barButtonItem5 = new DevExpress.XtraBars.BarButtonItem();
     this.barButtonItem6 = new DevExpress.XtraBars.BarButtonItem();
     this.barButtonItem7 = new DevExpress.XtraBars.BarButtonItem();
     this.panelControl3 = new DevExpress.XtraEditors.PanelControl();
     this.barButtonItem8 = new DevExpress.XtraBars.BarButtonItem();
     ((System.ComponentModel.ISupportInitialize)(this.ribbon)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.panelControl)).BeginInit();
     this.panelControl.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.State.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.Car.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.Driver.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.Carrier.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.Contractor.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.TypeOfShipment.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.Date.Properties.VistaTimeProperties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.Date.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.IncomeNumber.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.panelControl1)).BeginInit();
     this.panelControl1.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.pictureEdit1.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.NomenclatureInfo)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.nomenclatureView)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.panelControl3)).BeginInit();
     this.panelControl3.SuspendLayout();
     this.SuspendLayout();
     //
     // ribbonStatusBar
     //
     this.ribbonStatusBar.ItemLinks.Add(this.OK);
     this.ribbonStatusBar.ItemLinks.Add(this.barButtonItem2);
     this.ribbonStatusBar.ItemLinks.Add(this.cancel);
     this.ribbonStatusBar.ItemLinks.Add(this.createMovement);
     this.ribbonStatusBar.Location = new System.Drawing.Point(0, 544);
     this.ribbonStatusBar.Name = "ribbonStatusBar";
     this.ribbonStatusBar.Ribbon = this.ribbon;
     this.ribbonStatusBar.Size = new System.Drawing.Size(720, 31);
     //
     // OK
     //
     this.OK.Alignment = DevExpress.XtraBars.BarItemLinkAlignment.Right;
     this.OK.Caption = "OK";
     this.OK.Id = 0;
     this.OK.ImageIndex = 0;
     this.OK.Name = "OK";
     this.OK.ItemClick += new DevExpress.XtraBars.ItemClickEventHandler(this.OK_ItemClick);
     //
     // barButtonItem2
     //
     this.barButtonItem2.Alignment = DevExpress.XtraBars.BarItemLinkAlignment.Right;
     this.barButtonItem2.Caption = "��������";
     this.barButtonItem2.Id = 1;
     this.barButtonItem2.Name = "barButtonItem2";
     this.barButtonItem2.ItemClick += new DevExpress.XtraBars.ItemClickEventHandler(this.Write_ItemClick);
     //
     // cancel
     //
     this.cancel.Alignment = DevExpress.XtraBars.BarItemLinkAlignment.Right;
     this.cancel.Caption = "³����";
     this.cancel.Id = 2;
     this.cancel.ImageIndex = 1;
     this.cancel.Name = "cancel";
     this.cancel.ItemClick += new DevExpress.XtraBars.ItemClickEventHandler(this.cancel_ItemClick);
     //
     // createMovement
     //
     this.createMovement.Caption = "���������� ����������";
     this.createMovement.Id = 18;
     this.createMovement.ImageIndex = 2;
     this.createMovement.Name = "createMovement";
     this.createMovement.ItemClick += new DevExpress.XtraBars.ItemClickEventHandler(this.createMovement_ItemClick);
     //
     // ribbon
     //
     this.ribbon.ApplicationButtonText = null;
     this.ribbon.ExpandCollapseItem.Id = 0;
     this.ribbon.ExpandCollapseItem.Name = "";
     this.ribbon.Items.AddRange(new DevExpress.XtraBars.BarItem[] {
     this.ribbon.ExpandCollapseItem,
     this.OK,
     this.barButtonItem2,
     this.cancel,
     this.createMovement,
     this.barButtonItem8});
     this.ribbon.Location = new System.Drawing.Point(0, 0);
     this.ribbon.MaxItemId = 20;
     this.ribbon.Name = "ribbon";
     this.ribbon.Size = new System.Drawing.Size(720, 49);
     this.ribbon.StatusBar = this.NomenclatureInfoButtonsBar;
     this.ribbon.ToolbarLocation = DevExpress.XtraBars.Ribbon.RibbonQuickAccessToolbarLocation.Above;
     //
     // NomenclatureInfoButtonsBar
     //
     this.NomenclatureInfoButtonsBar.Dock = System.Windows.Forms.DockStyle.Top;
     this.NomenclatureInfoButtonsBar.ItemLinks.Add(this.barButtonItem8);
     this.NomenclatureInfoButtonsBar.Location = new System.Drawing.Point(2, 2);
     this.NomenclatureInfoButtonsBar.Name = "NomenclatureInfoButtonsBar";
     this.NomenclatureInfoButtonsBar.Ribbon = this.ribbon;
     this.NomenclatureInfoButtonsBar.Size = new System.Drawing.Size(716, 27);
     //
     // panelControl
     //
     this.panelControl.BorderStyle = DevExpress.XtraEditors.Controls.BorderStyles.NoBorder;
     this.panelControl.Controls.Add(this.State);
     this.panelControl.Controls.Add(this.labelControl8);
     this.panelControl.Controls.Add(this.Car);
     this.panelControl.Controls.Add(this.labelControl7);
     this.panelControl.Controls.Add(this.Driver);
     this.panelControl.Controls.Add(this.labelControl6);
     this.panelControl.Controls.Add(this.Carrier);
     this.panelControl.Controls.Add(this.labelControl5);
     this.panelControl.Controls.Add(this.Contractor);
     this.panelControl.Controls.Add(this.labelControl4);
     this.panelControl.Controls.Add(this.TypeOfShipment);
     this.panelControl.Controls.Add(this.labelControl3);
     this.panelControl.Controls.Add(this.Date);
     this.panelControl.Controls.Add(this.labelControl2);
     this.panelControl.Controls.Add(this.IncomeNumber);
     this.panelControl.Controls.Add(this.labelControl1);
     this.panelControl.Dock = System.Windows.Forms.DockStyle.Top;
     this.panelControl.Location = new System.Drawing.Point(0, 49);
     this.panelControl.Name = "panelControl";
     this.panelControl.Size = new System.Drawing.Size(720, 110);
     this.panelControl.TabIndex = 0;
     //
     // State
     //
     this.State.Location = new System.Drawing.Point(455, 31);
     this.State.MenuManager = this.ribbon;
     this.State.Name = "State";
     this.State.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.State.Size = new System.Drawing.Size(209, 20);
     this.State.TabIndex = 3;
     //
     // labelControl8
     //
     this.labelControl8.Location = new System.Drawing.Point(366, 34);
     this.labelControl8.Name = "labelControl8";
     this.labelControl8.Size = new System.Drawing.Size(82, 13);
     this.labelControl8.TabIndex = 14;
     this.labelControl8.Text = "���� ���������";
     //
     // Car
     //
     this.Car.BaseFilter = null;
     this.Car.Location = new System.Drawing.Point(455, 83);
     this.Car.MenuManager = this.ribbon;
     this.Car.Name = "Car";
     this.Car.Properties.BaseFilter = null;
     this.Car.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(),
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Delete)});
     this.Car.Properties.CloseUpKey = new DevExpress.Utils.KeyShortcut(System.Windows.Forms.Keys.None);
     this.Car.Properties.NullText = "";
     this.Car.Size = new System.Drawing.Size(209, 20);
     this.Car.TabIndex = 7;
     //
     // labelControl7
     //
     this.labelControl7.Location = new System.Drawing.Point(366, 86);
     this.labelControl7.Name = "labelControl7";
     this.labelControl7.Size = new System.Drawing.Size(40, 13);
     this.labelControl7.TabIndex = 12;
     this.labelControl7.Text = "������";
     //
     // Driver
     //
     this.Driver.BaseFilter = null;
     this.Driver.Location = new System.Drawing.Point(114, 83);
     this.Driver.MenuManager = this.ribbon;
     this.Driver.Name = "Driver";
     this.Driver.Properties.BaseFilter = null;
     this.Driver.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(),
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Delete)});
     this.Driver.Properties.CloseUpKey = new DevExpress.Utils.KeyShortcut(System.Windows.Forms.Keys.None);
     this.Driver.Properties.NullText = "";
     this.Driver.Size = new System.Drawing.Size(246, 20);
     this.Driver.TabIndex = 6;
     //
     // labelControl6
     //
     this.labelControl6.Location = new System.Drawing.Point(10, 86);
     this.labelControl6.Name = "labelControl6";
     this.labelControl6.Size = new System.Drawing.Size(28, 13);
     this.labelControl6.TabIndex = 10;
     this.labelControl6.Text = "����";
     //
     // Carrier
     //
     this.Carrier.BaseFilter = null;
     this.Carrier.Location = new System.Drawing.Point(455, 57);
     this.Carrier.MenuManager = this.ribbon;
     this.Carrier.Name = "Carrier";
     this.Carrier.Properties.BaseFilter = null;
     this.Carrier.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(),
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Delete)});
     this.Carrier.Properties.CloseUpKey = new DevExpress.Utils.KeyShortcut(System.Windows.Forms.Keys.None);
     this.Carrier.Properties.NullText = "";
     this.Carrier.Size = new System.Drawing.Size(209, 20);
     this.Carrier.TabIndex = 5;
     //
     // labelControl5
     //
     this.labelControl5.Location = new System.Drawing.Point(366, 60);
     this.labelControl5.Name = "labelControl5";
     this.labelControl5.Size = new System.Drawing.Size(57, 13);
     this.labelControl5.TabIndex = 8;
     this.labelControl5.Text = "���������";
     //
     // Contractor
     //
     this.Contractor.BaseFilter = null;
     this.Contractor.Location = new System.Drawing.Point(114, 57);
     this.Contractor.MenuManager = this.ribbon;
     this.Contractor.Name = "Contractor";
     this.Contractor.Properties.BaseFilter = null;
     this.Contractor.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(),
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Delete)});
     this.Contractor.Properties.CloseUpKey = new DevExpress.Utils.KeyShortcut(System.Windows.Forms.Keys.None);
     this.Contractor.Properties.NullText = "";
     this.Contractor.Size = new System.Drawing.Size(246, 20);
     this.Contractor.TabIndex = 4;
     //
     // labelControl4
     //
     this.labelControl4.Location = new System.Drawing.Point(10, 60);
     this.labelControl4.Name = "labelControl4";
     this.labelControl4.Size = new System.Drawing.Size(60, 13);
     this.labelControl4.TabIndex = 6;
     this.labelControl4.Text = "����������";
     //
     // TypeOfShipment
     //
     this.TypeOfShipment.Location = new System.Drawing.Point(114, 31);
     this.TypeOfShipment.MenuManager = this.ribbon;
     this.TypeOfShipment.Name = "TypeOfShipment";
     this.TypeOfShipment.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.TypeOfShipment.Size = new System.Drawing.Size(246, 20);
     this.TypeOfShipment.TabIndex = 2;
     //
     // labelControl3
     //
     this.labelControl3.Location = new System.Drawing.Point(10, 34);
     this.labelControl3.Name = "labelControl3";
     this.labelControl3.Size = new System.Drawing.Size(99, 13);
     this.labelControl3.TabIndex = 4;
     this.labelControl3.Text = "��� ������������";
     //
     // Date
     //
     this.Date.EditValue = null;
     this.Date.Location = new System.Drawing.Point(260, 6);
     this.Date.MenuManager = this.ribbon;
     this.Date.Name = "Date";
     this.Date.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.Date.Properties.VistaTimeProperties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton()});
     this.Date.Size = new System.Drawing.Size(100, 20);
     this.Date.TabIndex = 1;
     //
     // labelControl2
     //
     this.labelControl2.Location = new System.Drawing.Point(225, 8);
     this.labelControl2.Name = "labelControl2";
     this.labelControl2.Size = new System.Drawing.Size(29, 13);
     this.labelControl2.TabIndex = 2;
     this.labelControl2.Text = "���� ";
     //
     // IncomeNumber
     //
     this.IncomeNumber.Location = new System.Drawing.Point(114, 5);
     this.IncomeNumber.MenuManager = this.ribbon;
     this.IncomeNumber.Name = "IncomeNumber";
     this.IncomeNumber.Size = new System.Drawing.Size(105, 20);
     this.IncomeNumber.TabIndex = 0;
     //
     // labelControl1
     //
     this.labelControl1.Location = new System.Drawing.Point(10, 8);
     this.labelControl1.Name = "labelControl1";
     this.labelControl1.Size = new System.Drawing.Size(68, 13);
     this.labelControl1.TabIndex = 0;
     this.labelControl1.Text = "� ��������";
     //
     // panelControl1
     //
     this.panelControl1.BorderStyle = DevExpress.XtraEditors.Controls.BorderStyles.NoBorder;
     this.panelControl1.Controls.Add(this.pictureEdit1);
     this.panelControl1.Controls.Add(this.Info);
     this.panelControl1.Dock = System.Windows.Forms.DockStyle.Bottom;
     this.panelControl1.Location = new System.Drawing.Point(0, 524);
     this.panelControl1.Name = "panelControl1";
     this.panelControl1.Size = new System.Drawing.Size(720, 20);
     this.panelControl1.TabIndex = 0;
     //
     // pictureEdit1
     //
     this.pictureEdit1.Dock = System.Windows.Forms.DockStyle.Left;
     this.pictureEdit1.EditValue = global::FMCG.Properties.Resources._1317825614_information_balloon;
     this.pictureEdit1.Location = new System.Drawing.Point(0, 0);
     this.pictureEdit1.MenuManager = this.ribbon;
     this.pictureEdit1.Name = "pictureEdit1";
     this.pictureEdit1.Properties.Appearance.BackColor = System.Drawing.Color.Transparent;
     this.pictureEdit1.Properties.Appearance.Options.UseBackColor = true;
     this.pictureEdit1.Properties.BorderStyle = DevExpress.XtraEditors.Controls.BorderStyles.NoBorder;
     this.pictureEdit1.Size = new System.Drawing.Size(20, 20);
     this.pictureEdit1.TabIndex = 3;
     this.pictureEdit1.ToolTip = "��� ������� ��������� �������� �� ���� ���������� �����������";
     this.pictureEdit1.ToolTipIconType = DevExpress.Utils.ToolTipIconType.Information;
     this.pictureEdit1.ToolTipTitle = "������:";
     //
     // Info
     //
     this.Info.Appearance.ForeColor = System.Drawing.Color.Gray;
     this.Info.Location = new System.Drawing.Point(24, 3);
     this.Info.Name = "Info";
     this.Info.Size = new System.Drawing.Size(12, 13);
     this.Info.TabIndex = 1;
     this.Info.Text = "...";
     //
     // barButtonItem1
     //
     this.barButtonItem1.Alignment = DevExpress.XtraBars.BarItemLinkAlignment.Right;
     this.barButtonItem1.Caption = "OK";
     this.barButtonItem1.Id = 0;
     this.barButtonItem1.ImageIndex = 0;
     this.barButtonItem1.Name = "barButtonItem1";
     //
     // barButtonItem3
     //
     this.barButtonItem3.Alignment = DevExpress.XtraBars.BarItemLinkAlignment.Right;
     this.barButtonItem3.Caption = "��������";
     this.barButtonItem3.Id = 1;
     this.barButtonItem3.Name = "barButtonItem3";
     //
     // barButtonItem4
     //
     this.barButtonItem4.Alignment = DevExpress.XtraBars.BarItemLinkAlignment.Right;
     this.barButtonItem4.Caption = "³����";
     this.barButtonItem4.Id = 2;
     this.barButtonItem4.ImageIndex = 1;
     this.barButtonItem4.Name = "barButtonItem4";
     //
     // NomenclatureInfo
     //
     this.NomenclatureInfo.Dock = System.Windows.Forms.DockStyle.Fill;
     this.NomenclatureInfo.Location = new System.Drawing.Point(2, 29);
     this.NomenclatureInfo.MainView = this.nomenclatureView;
     this.NomenclatureInfo.MenuManager = this.ribbon;
     this.NomenclatureInfo.Name = "NomenclatureInfo";
     this.NomenclatureInfo.Size = new System.Drawing.Size(716, 334);
     this.NomenclatureInfo.TabIndex = 1;
     this.NomenclatureInfo.ViewCollection.AddRange(new DevExpress.XtraGrid.Views.Base.BaseView[] {
     this.nomenclatureView});
     //
     // nomenclatureView
     //
     this.nomenclatureView.GridControl = this.NomenclatureInfo;
     this.nomenclatureView.Name = "nomenclatureView";
     //
     // barButtonItem5
     //
     this.barButtonItem5.Alignment = DevExpress.XtraBars.BarItemLinkAlignment.Right;
     this.barButtonItem5.Caption = "OK";
     this.barButtonItem5.Id = 0;
     this.barButtonItem5.ImageIndex = 0;
     this.barButtonItem5.Name = "barButtonItem5";
     //
     // barButtonItem6
     //
     this.barButtonItem6.Alignment = DevExpress.XtraBars.BarItemLinkAlignment.Right;
     this.barButtonItem6.Caption = "��������";
     this.barButtonItem6.Id = 1;
     this.barButtonItem6.Name = "barButtonItem6";
     //
     // barButtonItem7
     //
     this.barButtonItem7.Alignment = DevExpress.XtraBars.BarItemLinkAlignment.Right;
     this.barButtonItem7.Caption = "³����";
     this.barButtonItem7.Id = 2;
     this.barButtonItem7.ImageIndex = 1;
     this.barButtonItem7.Name = "barButtonItem7";
     //
     // panelControl3
     //
     this.panelControl3.Controls.Add(this.NomenclatureInfo);
     this.panelControl3.Controls.Add(this.NomenclatureInfoButtonsBar);
     this.panelControl3.Dock = System.Windows.Forms.DockStyle.Fill;
     this.panelControl3.Location = new System.Drawing.Point(0, 159);
     this.panelControl3.Name = "panelControl3";
     this.panelControl3.Size = new System.Drawing.Size(720, 365);
     this.panelControl3.TabIndex = 25;
     //
     // barButtonItem8
     //
     this.barButtonItem8.Alignment = DevExpress.XtraBars.BarItemLinkAlignment.Right;
     this.barButtonItem8.Caption = "��������� ����";
     this.barButtonItem8.Id = 19;
     this.barButtonItem8.Name = "barButtonItem8";
     this.barButtonItem8.ItemClick += new DevExpress.XtraBars.ItemClickEventHandler(this.barButtonItem8_ItemClick);
     //
     // ShipmentPlanItemForm
     //
     this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
     this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
     this.ClientSize = new System.Drawing.Size(720, 575);
     this.Controls.Add(this.panelControl3);
     this.Controls.Add(this.panelControl1);
     this.Controls.Add(this.panelControl);
     this.Controls.Add(this.ribbonStatusBar);
     this.Controls.Add(this.ribbon);
     this.KeyPreview = true;
     this.Name = "ShipmentPlanItemForm";
     this.Ribbon = this.ribbon;
     this.StatusBar = this.ribbonStatusBar;
     this.Text = "Item form";
     this.KeyDown += new System.Windows.Forms.KeyEventHandler(this.Itemform_KeyDown);
     ((System.ComponentModel.ISupportInitialize)(this.ribbon)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.panelControl)).EndInit();
     this.panelControl.ResumeLayout(false);
     this.panelControl.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(this.State.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.Car.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.Driver.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.Carrier.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.Contractor.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.TypeOfShipment.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.Date.Properties.VistaTimeProperties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.Date.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.IncomeNumber.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.panelControl1)).EndInit();
     this.panelControl1.ResumeLayout(false);
     this.panelControl1.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(this.pictureEdit1.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.NomenclatureInfo)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.nomenclatureView)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.panelControl3)).EndInit();
     this.panelControl3.ResumeLayout(false);
     this.ResumeLayout(false);
 }
Example #18
0
 /// <summary>
 /// Required method for Designer support - do not modify
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     this.ribbonStatusBar = new DevExpress.XtraBars.Ribbon.RibbonStatusBar();
     this.OK = new DevExpress.XtraBars.BarButtonItem();
     this.barButtonItem2 = new DevExpress.XtraBars.BarButtonItem();
     this.cancel = new DevExpress.XtraBars.BarButtonItem();
     this.ribbon = new DevExpress.XtraBars.Ribbon.RibbonControl();
     this.NomenclatureInfoBar = new DevExpress.XtraBars.Ribbon.RibbonStatusBar();
     this.panelControl = new DevExpress.XtraEditors.PanelControl();
     this.IncomeDate = new DevExpress.XtraEditors.LabelControl();
     this.IncomeNumber = new DevExpress.XtraEditors.LabelControl();
     this.PickingPlan = new Aramis.AramisSearchLookUpEdit();
     this.labelControl8 = new DevExpress.XtraEditors.LabelControl();
     this.State = new DevExpress.XtraEditors.ComboBoxEdit();
     this.labelControl3 = new DevExpress.XtraEditors.LabelControl();
     this.label = new DevExpress.XtraEditors.LabelControl();
     this.labelControl1 = new DevExpress.XtraEditors.LabelControl();
     this.NomenclatureInfo = new DevExpress.XtraGrid.GridControl();
     this.nomenclatureView = new DevExpress.XtraGrid.Views.Grid.GridView();
     this.panelControl1 = new DevExpress.XtraEditors.PanelControl();
     this.pictureEdit1 = new DevExpress.XtraEditors.PictureEdit();
     this.Info = new DevExpress.XtraEditors.LabelControl();
     this.barButtonItem1 = new DevExpress.XtraBars.BarButtonItem();
     this.barButtonItem3 = new DevExpress.XtraBars.BarButtonItem();
     this.barButtonItem4 = new DevExpress.XtraBars.BarButtonItem();
     this.tablePanelControl = new DevExpress.XtraEditors.PanelControl();
     this.Date = new DevExpress.XtraEditors.DateEdit();
     this.dateLabel = new DevExpress.XtraEditors.LabelControl();
     ((System.ComponentModel.ISupportInitialize)(this.ribbon)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.panelControl)).BeginInit();
     this.panelControl.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.PickingPlan.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.State.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.NomenclatureInfo)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.nomenclatureView)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.panelControl1)).BeginInit();
     this.panelControl1.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.pictureEdit1.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.tablePanelControl)).BeginInit();
     this.tablePanelControl.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.Date.Properties.VistaTimeProperties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.Date.Properties)).BeginInit();
     this.SuspendLayout();
     //
     // ribbonStatusBar
     //
     this.ribbonStatusBar.ItemLinks.Add(this.OK);
     this.ribbonStatusBar.ItemLinks.Add(this.barButtonItem2);
     this.ribbonStatusBar.ItemLinks.Add(this.cancel);
     this.ribbonStatusBar.Location = new System.Drawing.Point(0, 572);
     this.ribbonStatusBar.Name = "ribbonStatusBar";
     this.ribbonStatusBar.Ribbon = this.ribbon;
     this.ribbonStatusBar.Size = new System.Drawing.Size(742, 31);
     //
     // OK
     //
     this.OK.Alignment = DevExpress.XtraBars.BarItemLinkAlignment.Right;
     this.OK.Caption = "OK";
     this.OK.Id = 0;
     this.OK.ImageIndex = 0;
     this.OK.Name = "OK";
     this.OK.ItemClick += new DevExpress.XtraBars.ItemClickEventHandler(this.OK_ItemClick);
     //
     // barButtonItem2
     //
     this.barButtonItem2.Alignment = DevExpress.XtraBars.BarItemLinkAlignment.Right;
     this.barButtonItem2.Caption = "��������";
     this.barButtonItem2.Id = 1;
     this.barButtonItem2.Name = "barButtonItem2";
     this.barButtonItem2.ItemClick += new DevExpress.XtraBars.ItemClickEventHandler(this.Write_ItemClick);
     //
     // cancel
     //
     this.cancel.Alignment = DevExpress.XtraBars.BarItemLinkAlignment.Right;
     this.cancel.Caption = "³����";
     this.cancel.Id = 2;
     this.cancel.ImageIndex = 1;
     this.cancel.Name = "cancel";
     this.cancel.ItemClick += new DevExpress.XtraBars.ItemClickEventHandler(this.cancel_ItemClick);
     //
     // ribbon
     //
     this.ribbon.ApplicationButtonText = null;
     this.ribbon.ExpandCollapseItem.Id = 0;
     this.ribbon.ExpandCollapseItem.Name = "";
     this.ribbon.Items.AddRange(new DevExpress.XtraBars.BarItem[] {
     this.ribbon.ExpandCollapseItem,
     this.OK,
     this.barButtonItem2,
     this.cancel});
     this.ribbon.Location = new System.Drawing.Point(0, 0);
     this.ribbon.MaxItemId = 18;
     this.ribbon.Name = "ribbon";
     this.ribbon.Size = new System.Drawing.Size(742, 49);
     this.ribbon.StatusBar = this.NomenclatureInfoBar;
     this.ribbon.ToolbarLocation = DevExpress.XtraBars.Ribbon.RibbonQuickAccessToolbarLocation.Above;
     //
     // NomenclatureInfoBar
     //
     this.NomenclatureInfoBar.Dock = System.Windows.Forms.DockStyle.Top;
     this.NomenclatureInfoBar.Location = new System.Drawing.Point(2, 2);
     this.NomenclatureInfoBar.Name = "NomenclatureInfoBar";
     this.NomenclatureInfoBar.Ribbon = this.ribbon;
     this.NomenclatureInfoBar.Size = new System.Drawing.Size(738, 27);
     //
     // panelControl
     //
     this.panelControl.BorderStyle = DevExpress.XtraEditors.Controls.BorderStyles.NoBorder;
     this.panelControl.Controls.Add(this.dateLabel);
     this.panelControl.Controls.Add(this.Date);
     this.panelControl.Controls.Add(this.IncomeDate);
     this.panelControl.Controls.Add(this.IncomeNumber);
     this.panelControl.Controls.Add(this.PickingPlan);
     this.panelControl.Controls.Add(this.labelControl8);
     this.panelControl.Controls.Add(this.State);
     this.panelControl.Controls.Add(this.labelControl3);
     this.panelControl.Controls.Add(this.label);
     this.panelControl.Controls.Add(this.labelControl1);
     this.panelControl.Dock = System.Windows.Forms.DockStyle.Top;
     this.panelControl.Location = new System.Drawing.Point(0, 49);
     this.panelControl.Name = "panelControl";
     this.panelControl.Size = new System.Drawing.Size(742, 82);
     this.panelControl.TabIndex = 2;
     //
     // IncomeDate
     //
     this.IncomeDate.Appearance.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold);
     this.IncomeDate.Location = new System.Drawing.Point(366, 34);
     this.IncomeDate.Name = "IncomeDate";
     this.IncomeDate.Size = new System.Drawing.Size(21, 13);
     this.IncomeDate.TabIndex = 20;
     this.IncomeDate.Text = "{0}";
     //
     // IncomeNumber
     //
     this.IncomeNumber.Appearance.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold);
     this.IncomeNumber.Location = new System.Drawing.Point(99, 34);
     this.IncomeNumber.Name = "IncomeNumber";
     this.IncomeNumber.Size = new System.Drawing.Size(21, 13);
     this.IncomeNumber.TabIndex = 19;
     this.IncomeNumber.Text = "{0}";
     //
     // PickingPlan
     //
     this.PickingPlan.BaseFilter = null;
     this.PickingPlan.Location = new System.Drawing.Point(366, 8);
     this.PickingPlan.MenuManager = this.ribbon;
     this.PickingPlan.Name = "PickingPlan";
     this.PickingPlan.Properties.BaseFilter = null;
     this.PickingPlan.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(),
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Delete)});
     this.PickingPlan.Properties.CloseUpKey = new DevExpress.Utils.KeyShortcut(System.Windows.Forms.Keys.None);
     this.PickingPlan.Properties.NullText = "";
     this.PickingPlan.Size = new System.Drawing.Size(364, 20);
     this.PickingPlan.TabIndex = 1;
     //
     // labelControl8
     //
     this.labelControl8.Location = new System.Drawing.Point(271, 11);
     this.labelControl8.Name = "labelControl8";
     this.labelControl8.Size = new System.Drawing.Size(68, 13);
     this.labelControl8.TabIndex = 17;
     this.labelControl8.Text = "���� ������";
     //
     // State
     //
     this.State.Location = new System.Drawing.Point(99, 8);
     this.State.MenuManager = this.ribbon;
     this.State.Name = "State";
     this.State.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.State.Size = new System.Drawing.Size(156, 20);
     this.State.TabIndex = 0;
     //
     // labelControl3
     //
     this.labelControl3.Location = new System.Drawing.Point(10, 11);
     this.labelControl3.Name = "labelControl3";
     this.labelControl3.Size = new System.Drawing.Size(82, 13);
     this.labelControl3.TabIndex = 4;
     this.labelControl3.Text = "���� ���������";
     //
     // label
     //
     this.label.Location = new System.Drawing.Point(271, 34);
     this.label.Name = "label";
     this.label.Size = new System.Drawing.Size(83, 13);
     this.label.TabIndex = 2;
     this.label.Text = "���� ���������";
     //
     // labelControl1
     //
     this.labelControl1.Location = new System.Drawing.Point(10, 34);
     this.labelControl1.Name = "labelControl1";
     this.labelControl1.Size = new System.Drawing.Size(68, 13);
     this.labelControl1.TabIndex = 0;
     this.labelControl1.Text = "� ��������";
     //
     // NomenclatureInfo
     //
     this.NomenclatureInfo.Dock = System.Windows.Forms.DockStyle.Fill;
     this.NomenclatureInfo.Location = new System.Drawing.Point(2, 29);
     this.NomenclatureInfo.MainView = this.nomenclatureView;
     this.NomenclatureInfo.MenuManager = this.ribbon;
     this.NomenclatureInfo.Name = "NomenclatureInfo";
     this.NomenclatureInfo.Size = new System.Drawing.Size(738, 390);
     this.NomenclatureInfo.TabIndex = 1;
     this.NomenclatureInfo.ViewCollection.AddRange(new DevExpress.XtraGrid.Views.Base.BaseView[] {
     this.nomenclatureView});
     //
     // nomenclatureView
     //
     this.nomenclatureView.GridControl = this.NomenclatureInfo;
     this.nomenclatureView.Name = "nomenclatureView";
     this.nomenclatureView.RowStyle += new DevExpress.XtraGrid.Views.Grid.RowStyleEventHandler(this.nomenclatureView_RowStyle);
     //
     // panelControl1
     //
     this.panelControl1.BorderStyle = DevExpress.XtraEditors.Controls.BorderStyles.NoBorder;
     this.panelControl1.Controls.Add(this.pictureEdit1);
     this.panelControl1.Controls.Add(this.Info);
     this.panelControl1.Dock = System.Windows.Forms.DockStyle.Bottom;
     this.panelControl1.Location = new System.Drawing.Point(0, 552);
     this.panelControl1.Name = "panelControl1";
     this.panelControl1.Size = new System.Drawing.Size(742, 20);
     this.panelControl1.TabIndex = 0;
     //
     // pictureEdit1
     //
     this.pictureEdit1.Dock = System.Windows.Forms.DockStyle.Left;
     this.pictureEdit1.EditValue = global::FMCG.Properties.Resources._1317825614_information_balloon;
     this.pictureEdit1.Location = new System.Drawing.Point(0, 0);
     this.pictureEdit1.MenuManager = this.ribbon;
     this.pictureEdit1.Name = "pictureEdit1";
     this.pictureEdit1.Properties.Appearance.BackColor = System.Drawing.Color.Transparent;
     this.pictureEdit1.Properties.Appearance.Options.UseBackColor = true;
     this.pictureEdit1.Properties.BorderStyle = DevExpress.XtraEditors.Controls.BorderStyles.NoBorder;
     this.pictureEdit1.Size = new System.Drawing.Size(20, 20);
     this.pictureEdit1.TabIndex = 3;
     this.pictureEdit1.ToolTip = "��� ������� ��������� �������� �� ���� ���������� �����������";
     this.pictureEdit1.ToolTipIconType = DevExpress.Utils.ToolTipIconType.Information;
     this.pictureEdit1.ToolTipTitle = "������:";
     //
     // Info
     //
     this.Info.Appearance.ForeColor = System.Drawing.Color.Gray;
     this.Info.Location = new System.Drawing.Point(24, 3);
     this.Info.Name = "Info";
     this.Info.Size = new System.Drawing.Size(12, 13);
     this.Info.TabIndex = 1;
     this.Info.Text = "...";
     //
     // barButtonItem1
     //
     this.barButtonItem1.Alignment = DevExpress.XtraBars.BarItemLinkAlignment.Right;
     this.barButtonItem1.Caption = "OK";
     this.barButtonItem1.Id = 0;
     this.barButtonItem1.ImageIndex = 0;
     this.barButtonItem1.Name = "barButtonItem1";
     //
     // barButtonItem3
     //
     this.barButtonItem3.Alignment = DevExpress.XtraBars.BarItemLinkAlignment.Right;
     this.barButtonItem3.Caption = "��������";
     this.barButtonItem3.Id = 1;
     this.barButtonItem3.Name = "barButtonItem3";
     //
     // barButtonItem4
     //
     this.barButtonItem4.Alignment = DevExpress.XtraBars.BarItemLinkAlignment.Right;
     this.barButtonItem4.Caption = "³����";
     this.barButtonItem4.Id = 2;
     this.barButtonItem4.ImageIndex = 1;
     this.barButtonItem4.Name = "barButtonItem4";
     //
     // tablePanelControl
     //
     this.tablePanelControl.Controls.Add(this.NomenclatureInfo);
     this.tablePanelControl.Controls.Add(this.NomenclatureInfoBar);
     this.tablePanelControl.Dock = System.Windows.Forms.DockStyle.Fill;
     this.tablePanelControl.Location = new System.Drawing.Point(0, 131);
     this.tablePanelControl.Name = "tablePanelControl";
     this.tablePanelControl.Size = new System.Drawing.Size(742, 421);
     this.tablePanelControl.TabIndex = 24;
     //
     // Date
     //
     this.Date.EditValue = null;
     this.Date.Location = new System.Drawing.Point(99, 53);
     this.Date.MenuManager = this.ribbon;
     this.Date.Name = "Date";
     this.Date.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.Date.Properties.VistaTimeProperties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton()});
     this.Date.Size = new System.Drawing.Size(156, 20);
     this.Date.TabIndex = 21;
     //
     // dateLabel
     //
     this.dateLabel.Location = new System.Drawing.Point(10, 57);
     this.dateLabel.Name = "dateLabel";
     this.dateLabel.Size = new System.Drawing.Size(26, 13);
     this.dateLabel.TabIndex = 22;
     this.dateLabel.Text = "����";
     //
     // MovingItemForm
     //
     this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
     this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
     this.ClientSize = new System.Drawing.Size(742, 603);
     this.Controls.Add(this.tablePanelControl);
     this.Controls.Add(this.panelControl1);
     this.Controls.Add(this.panelControl);
     this.Controls.Add(this.ribbonStatusBar);
     this.Controls.Add(this.ribbon);
     this.KeyPreview = true;
     this.Name = "MovingItemForm";
     this.Ribbon = this.ribbon;
     this.StatusBar = this.ribbonStatusBar;
     this.Text = "Item form";
     this.KeyDown += new System.Windows.Forms.KeyEventHandler(this.Itemform_KeyDown);
     ((System.ComponentModel.ISupportInitialize)(this.ribbon)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.panelControl)).EndInit();
     this.panelControl.ResumeLayout(false);
     this.panelControl.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(this.PickingPlan.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.State.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.NomenclatureInfo)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.nomenclatureView)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.panelControl1)).EndInit();
     this.panelControl1.ResumeLayout(false);
     this.panelControl1.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(this.pictureEdit1.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.tablePanelControl)).EndInit();
     this.tablePanelControl.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.Date.Properties.VistaTimeProperties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.Date.Properties)).EndInit();
     this.ResumeLayout(false);
 }
Example #19
0
 /// <summary> 
 /// Méthode requise pour la prise en charge du concepteur - ne modifiez pas 
 /// le contenu de cette méthode avec l'éditeur de code.
 /// </summary>
 private void InitializeComponent()
 {
     System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(Acceuil));
     this.ribbonControl1 = new DevExpress.XtraBars.Ribbon.RibbonControl();
     this.biNouveauDonneur = new DevExpress.XtraBars.BarButtonItem();
     this.biModifierDonneur = new DevExpress.XtraBars.BarButtonItem();
     this.biSupprimerDonneur = new DevExpress.XtraBars.BarButtonItem();
     this.biFermer = new DevExpress.XtraBars.BarButtonItem();
     this.ribbonPage1 = new DevExpress.XtraBars.Ribbon.RibbonPage();
     this.ribbonPageGroup1 = new DevExpress.XtraBars.Ribbon.RibbonPageGroup();
     this.ribbonPageGroup2 = new DevExpress.XtraBars.Ribbon.RibbonPageGroup();
     this.ribbonPageGroup3 = new DevExpress.XtraBars.Ribbon.RibbonPageGroup();
     this.ribbonPageGroup4 = new DevExpress.XtraBars.Ribbon.RibbonPageGroup();
     this.ribbonPageGroup5 = new DevExpress.XtraBars.Ribbon.RibbonPageGroup();
     this.ribbonPageGroup6 = new DevExpress.XtraBars.Ribbon.RibbonPageGroup();
     this.ribbonPageGroup7 = new DevExpress.XtraBars.Ribbon.RibbonPageGroup();
     this.ribbonPageGroup8 = new DevExpress.XtraBars.Ribbon.RibbonPageGroup();
     this.ribbonPageGroup9 = new DevExpress.XtraBars.Ribbon.RibbonPageGroup();
     this.ribbonPageGroup10 = new DevExpress.XtraBars.Ribbon.RibbonPageGroup();
     this.ribbonPageGroup11 = new DevExpress.XtraBars.Ribbon.RibbonPageGroup();
     this.gridControlDonneur = new DevExpress.XtraGrid.GridControl();
     this.gridViewDonneur = new DevExpress.XtraGrid.Views.Grid.GridView();
     ((System.ComponentModel.ISupportInitialize)(this.ribbonControl1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridControlDonneur)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridViewDonneur)).BeginInit();
     this.SuspendLayout();
     //
     // ribbonControl1
     //
     this.ribbonControl1.ExpandCollapseItem.Id = 0;
     this.ribbonControl1.Items.AddRange(new DevExpress.XtraBars.BarItem[] {
     this.ribbonControl1.ExpandCollapseItem,
     this.biNouveauDonneur,
     this.biModifierDonneur,
     this.biSupprimerDonneur,
     this.biFermer});
     this.ribbonControl1.Location = new System.Drawing.Point(0, 0);
     this.ribbonControl1.MaxItemId = 6;
     this.ribbonControl1.Name = "ribbonControl1";
     this.ribbonControl1.Pages.AddRange(new DevExpress.XtraBars.Ribbon.RibbonPage[] {
     this.ribbonPage1});
     this.ribbonControl1.Size = new System.Drawing.Size(973, 142);
     this.ribbonControl1.ItemClick += new DevExpress.XtraBars.ItemClickEventHandler(this.ribbonControl1_ItemClick);
     //
     // biNouveauDonneur
     //
     this.biNouveauDonneur.Caption = "Nouveau";
     this.biNouveauDonneur.Id = 1;
     this.biNouveauDonneur.Name = "biNouveauDonneur";
     //
     // biModifierDonneur
     //
     this.biModifierDonneur.Caption = "Modifier";
     this.biModifierDonneur.Id = 2;
     this.biModifierDonneur.LargeGlyph = global::DonDuSang.Properties.Resources.icon_edit_32;
     this.biModifierDonneur.Name = "biModifierDonneur";
     //
     // biSupprimerDonneur
     //
     this.biSupprimerDonneur.Caption = "Supprimer";
     this.biSupprimerDonneur.Id = 3;
     this.biSupprimerDonneur.LargeGlyph = global::DonDuSang.Properties.Resources.icon_delete_32;
     this.biSupprimerDonneur.Name = "biSupprimerDonneur";
     //
     // biFermer
     //
     this.biFermer.Caption = "Fermer";
     this.biFermer.Id = 5;
     this.biFermer.LargeGlyph = ((System.Drawing.Image)(resources.GetObject("biFermer.LargeGlyph")));
     this.biFermer.Name = "biFermer";
     //
     // ribbonPage1
     //
     this.ribbonPage1.Groups.AddRange(new DevExpress.XtraBars.Ribbon.RibbonPageGroup[] {
     this.ribbonPageGroup1,
     this.ribbonPageGroup2,
     this.ribbonPageGroup3});
     this.ribbonPage1.Name = "ribbonPage1";
     this.ribbonPage1.Text = "Acceuil";
     //
     // ribbonPageGroup1
     //
     this.ribbonPageGroup1.AllowTextClipping = false;
     this.ribbonPageGroup1.ItemLinks.Add(this.biNouveauDonneur);
     this.ribbonPageGroup1.Name = "ribbonPageGroup1";
     this.ribbonPageGroup1.ShowCaptionButton = false;
     this.ribbonPageGroup1.Text = "Nouveau";
     //
     // ribbonPageGroup2
     //
     this.ribbonPageGroup2.AllowTextClipping = false;
     this.ribbonPageGroup2.ItemLinks.Add(this.biModifierDonneur);
     this.ribbonPageGroup2.Name = "ribbonPageGroup2";
     this.ribbonPageGroup2.ShowCaptionButton = false;
     this.ribbonPageGroup2.Text = "Modifier";
     //
     // ribbonPageGroup3
     //
     this.ribbonPageGroup3.AllowTextClipping = false;
     this.ribbonPageGroup3.ItemLinks.Add(this.biSupprimerDonneur);
     this.ribbonPageGroup3.ItemLinks.Add(this.biFermer);
     this.ribbonPageGroup3.Name = "ribbonPageGroup3";
     this.ribbonPageGroup3.ShowCaptionButton = false;
     this.ribbonPageGroup3.Text = "Actions";
     //
     // ribbonPageGroup4
     //
     this.ribbonPageGroup4.AllowTextClipping = false;
     this.ribbonPageGroup4.Name = "ribbonPageGroup4";
     this.ribbonPageGroup4.ShowCaptionButton = false;
     this.ribbonPageGroup4.Text = "Nouveau";
     //
     // ribbonPageGroup5
     //
     this.ribbonPageGroup5.AllowTextClipping = false;
     this.ribbonPageGroup5.Name = "ribbonPageGroup5";
     this.ribbonPageGroup5.ShowCaptionButton = false;
     this.ribbonPageGroup5.Text = "Modifier";
     //
     // ribbonPageGroup6
     //
     this.ribbonPageGroup6.AllowTextClipping = false;
     this.ribbonPageGroup6.Name = "ribbonPageGroup6";
     this.ribbonPageGroup6.ShowCaptionButton = false;
     this.ribbonPageGroup6.Text = "Supprimer";
     //
     // ribbonPageGroup7
     //
     this.ribbonPageGroup7.AllowTextClipping = false;
     this.ribbonPageGroup7.Name = "ribbonPageGroup7";
     this.ribbonPageGroup7.ShowCaptionButton = false;
     this.ribbonPageGroup7.Text = "Fermer";
     //
     // ribbonPageGroup8
     //
     this.ribbonPageGroup8.AllowTextClipping = false;
     this.ribbonPageGroup8.Name = "ribbonPageGroup8";
     this.ribbonPageGroup8.ShowCaptionButton = false;
     this.ribbonPageGroup8.Text = "Nouveau";
     //
     // ribbonPageGroup9
     //
     this.ribbonPageGroup9.AllowTextClipping = false;
     this.ribbonPageGroup9.Name = "ribbonPageGroup9";
     this.ribbonPageGroup9.ShowCaptionButton = false;
     this.ribbonPageGroup9.Text = "Modifier";
     //
     // ribbonPageGroup10
     //
     this.ribbonPageGroup10.AllowTextClipping = false;
     this.ribbonPageGroup10.Name = "ribbonPageGroup10";
     this.ribbonPageGroup10.ShowCaptionButton = false;
     this.ribbonPageGroup10.Text = "Supprimer";
     //
     // ribbonPageGroup11
     //
     this.ribbonPageGroup11.AllowTextClipping = false;
     this.ribbonPageGroup11.Name = "ribbonPageGroup11";
     this.ribbonPageGroup11.ShowCaptionButton = false;
     this.ribbonPageGroup11.Text = "Fermer";
     //
     // gridControlDonneur
     //
     this.gridControlDonneur.Cursor = System.Windows.Forms.Cursors.Default;
     this.gridControlDonneur.Location = new System.Drawing.Point(69, 212);
     this.gridControlDonneur.MainView = this.gridViewDonneur;
     this.gridControlDonneur.MenuManager = this.ribbonControl1;
     this.gridControlDonneur.Name = "gridControlDonneur";
     this.gridControlDonneur.Size = new System.Drawing.Size(663, 323);
     this.gridControlDonneur.TabIndex = 4;
     this.gridControlDonneur.ViewCollection.AddRange(new DevExpress.XtraGrid.Views.Base.BaseView[] {
     this.gridViewDonneur});
     this.gridControlDonneur.DoubleClick += new System.EventHandler(this.gridControlDonneur_DoubleClick);
     //
     // gridViewDonneur
     //
     this.gridViewDonneur.GridControl = this.gridControlDonneur;
     this.gridViewDonneur.Name = "gridViewDonneur";
     this.gridViewDonneur.OptionsBehavior.Editable = false;
     this.gridViewDonneur.OptionsFind.AllowFindPanel = false;
     this.gridViewDonneur.OptionsView.ShowFooter = true;
     this.gridViewDonneur.OptionsView.ShowGroupPanel = false;
     //
     // Acceuil
     //
     this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
     this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
     this.Controls.Add(this.gridControlDonneur);
     this.Controls.Add(this.ribbonControl1);
     this.Name = "Acceuil";
     this.Size = new System.Drawing.Size(973, 568);
     this.Load += new System.EventHandler(this.Acceuil_Load);
     ((System.ComponentModel.ISupportInitialize)(this.ribbonControl1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridControlDonneur)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridViewDonneur)).EndInit();
     this.ResumeLayout(false);
     this.PerformLayout();
 }
Example #20
0
        public static List <DevExpress.XtraBars.Ribbon.RibbonPageGroup> getAllRibbonPageGroup(DevExpress.XtraBars.Ribbon.RibbonControl ribbon)
        {
            List <DevExpress.XtraBars.Ribbon.RibbonPageGroup> lstRibbonPageGroup = new List <DevExpress.XtraBars.Ribbon.RibbonPageGroup>();

            foreach (DevExpress.XtraBars.Ribbon.RibbonPage page in ribbon.Pages)
            {
                foreach (var pageGroup in page.Groups)
                {
                    if (pageGroup is DevExpress.XtraBars.Ribbon.RibbonPageGroup)
                    {
                        lstRibbonPageGroup.Add(pageGroup as DevExpress.XtraBars.Ribbon.RibbonPageGroup);
                    }
                }
            }

            return(lstRibbonPageGroup);
        }
 /// <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(frmPrincipal));
     this.ribbonControl1 = new DevExpress.XtraBars.Ribbon.RibbonControl();
     this.repositoryItemTextEdit1 = new DevExpress.XtraEditors.Repository.RepositoryItemTextEdit();
     this.panelControl1 = new DevExpress.XtraEditors.PanelControl();
     this.btnHome = new DevExpress.XtraEditors.SimpleButton();
     this.timer1 = new System.Windows.Forms.Timer(this.components);
     this.barManager1 = new DevExpress.XtraBars.BarManager(this.components);
     this.bar3 = new DevExpress.XtraBars.Bar();
     this.barStaticItem1 = new DevExpress.XtraBars.BarStaticItem();
     this.barDockControlTop = new DevExpress.XtraBars.BarDockControl();
     this.barDockControlBottom = new DevExpress.XtraBars.BarDockControl();
     this.barDockControlLeft = new DevExpress.XtraBars.BarDockControl();
     this.barDockControlRight = new DevExpress.XtraBars.BarDockControl();
     ((System.ComponentModel.ISupportInitialize)(this.ribbonControl1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemTextEdit1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.panelControl1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.barManager1)).BeginInit();
     this.SuspendLayout();
     //
     // ribbonControl1
     //
     this.ribbonControl1.ExpandCollapseItem.Id = 0;
     this.ribbonControl1.ExpandCollapseItem.Name = "";
     this.ribbonControl1.Items.AddRange(new DevExpress.XtraBars.BarItem[] {
     this.ribbonControl1.ExpandCollapseItem});
     this.ribbonControl1.Location = new System.Drawing.Point(0, 0);
     this.ribbonControl1.MaxItemId = 33;
     this.ribbonControl1.Name = "ribbonControl1";
     this.ribbonControl1.Size = new System.Drawing.Size(1362, 22);
     this.ribbonControl1.ToolbarLocation = DevExpress.XtraBars.Ribbon.RibbonQuickAccessToolbarLocation.Hidden;
     //
     // repositoryItemTextEdit1
     //
     this.repositoryItemTextEdit1.AutoHeight = false;
     this.repositoryItemTextEdit1.Name = "repositoryItemTextEdit1";
     //
     // panelControl1
     //
     this.panelControl1.Dock = System.Windows.Forms.DockStyle.Left;
     this.panelControl1.Location = new System.Drawing.Point(0, 22);
     this.panelControl1.Name = "panelControl1";
     this.panelControl1.Size = new System.Drawing.Size(410, 412);
     this.panelControl1.TabIndex = 2;
     //
     // btnHome
     //
     this.btnHome.ButtonStyle = DevExpress.XtraEditors.Controls.BorderStyles.HotFlat;
     this.btnHome.Location = new System.Drawing.Point(1186, 434);
     this.btnHome.Name = "btnHome";
     this.btnHome.Size = new System.Drawing.Size(176, 23);
     this.btnHome.TabIndex = 6;
     this.btnHome.Text = "Cambiar de módulo";
     this.btnHome.Visible = false;
     this.btnHome.Click += new System.EventHandler(this.btnHome_Click);
     //
     // timer1
     //
     this.timer1.Tick += new System.EventHandler(this.timer1_Tick);
     //
     // barManager1
     //
     this.barManager1.Bars.AddRange(new DevExpress.XtraBars.Bar[] {
     this.bar3});
     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.barStaticItem1});
     this.barManager1.MaxItemId = 2;
     this.barManager1.StatusBar = this.bar3;
     //
     // bar3
     //
     this.bar3.BarName = "Barra de estado";
     this.bar3.CanDockStyle = DevExpress.XtraBars.BarCanDockStyle.Bottom;
     this.bar3.DockCol = 0;
     this.bar3.DockRow = 0;
     this.bar3.DockStyle = DevExpress.XtraBars.BarDockStyle.Bottom;
     this.bar3.LinksPersistInfo.AddRange(new DevExpress.XtraBars.LinkPersistInfo[] {
     new DevExpress.XtraBars.LinkPersistInfo(this.barStaticItem1)});
     this.bar3.OptionsBar.AllowQuickCustomization = false;
     this.bar3.OptionsBar.DrawDragBorder = false;
     this.bar3.OptionsBar.UseWholeRow = true;
     this.bar3.Text = "Barra de estado";
     //
     // barStaticItem1
     //
     this.barStaticItem1.Caption = "No user";
     this.barStaticItem1.Id = 0;
     this.barStaticItem1.Name = "barStaticItem1";
     this.barStaticItem1.TextAlignment = System.Drawing.StringAlignment.Near;
     //
     // 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(1362, 0);
     //
     // barDockControlBottom
     //
     this.barDockControlBottom.CausesValidation = false;
     this.barDockControlBottom.Dock = System.Windows.Forms.DockStyle.Bottom;
     this.barDockControlBottom.Location = new System.Drawing.Point(0, 434);
     this.barDockControlBottom.Size = new System.Drawing.Size(1362, 23);
     //
     // barDockControlLeft
     //
     this.barDockControlLeft.CausesValidation = false;
     this.barDockControlLeft.Dock = System.Windows.Forms.DockStyle.Left;
     this.barDockControlLeft.Location = new System.Drawing.Point(0, 0);
     this.barDockControlLeft.Size = new System.Drawing.Size(0, 434);
     //
     // barDockControlRight
     //
     this.barDockControlRight.CausesValidation = false;
     this.barDockControlRight.Dock = System.Windows.Forms.DockStyle.Right;
     this.barDockControlRight.Location = new System.Drawing.Point(1362, 0);
     this.barDockControlRight.Size = new System.Drawing.Size(0, 434);
     //
     // frmPrincipal
     //
     this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
     this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
     this.ClientSize = new System.Drawing.Size(1362, 457);
     this.Controls.Add(this.btnHome);
     this.Controls.Add(this.panelControl1);
     this.Controls.Add(this.ribbonControl1);
     this.Controls.Add(this.barDockControlLeft);
     this.Controls.Add(this.barDockControlRight);
     this.Controls.Add(this.barDockControlBottom);
     this.Controls.Add(this.barDockControlTop);
     this.Icon = ((System.Drawing.Icon)(resources.GetObject("$this.Icon")));
     this.IsMdiContainer = true;
     this.LookAndFeel.SkinName = "Metropolis";
     this.Name = "frmPrincipal";
     this.Text = "Tecnologia Empresarial de Control Automatizado - TECA™ ";
     this.WindowState = System.Windows.Forms.FormWindowState.Maximized;
     this.FormClosing += new System.Windows.Forms.FormClosingEventHandler(this.frmPrincipal_FormClosing);
     this.FormClosed += new System.Windows.Forms.FormClosedEventHandler(this.frmPrincipal_FormClosed);
     this.Load += new System.EventHandler(this.frmPrincipal_Load);
     ((System.ComponentModel.ISupportInitialize)(this.ribbonControl1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemTextEdit1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.panelControl1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.barManager1)).EndInit();
     this.ResumeLayout(false);
 }
Example #22
0
 private void ribbon_UnMerge(object sender, DevExpress.XtraBars.Ribbon.RibbonMergeEventArgs e)
 {
     DevExpress.XtraBars.Ribbon.RibbonControl parentRRibbon = sender as DevExpress.XtraBars.Ribbon.RibbonControl;
     parentRRibbon.StatusBar.UnMergeStatusBar();
 }
 /// <summary>
 /// Required method for Designer support - do not modify
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     this.ribbonStatusBar = new DevExpress.XtraBars.Ribbon.RibbonStatusBar();
     this.OK = new DevExpress.XtraBars.BarButtonItem();
     this.barButtonItem2 = new DevExpress.XtraBars.BarButtonItem();
     this.cancel = new DevExpress.XtraBars.BarButtonItem();
     this.ribbon = new DevExpress.XtraBars.Ribbon.RibbonControl();
     this.NomenclatureInfoButtonsBar = new DevExpress.XtraBars.Ribbon.RibbonStatusBar();
     this.panelControl = new DevExpress.XtraEditors.PanelControl();
     this.State = new DevExpress.XtraEditors.ComboBoxEdit();
     this.labelControl4 = new DevExpress.XtraEditors.LabelControl();
     this.TypeOfInventory = new DevExpress.XtraEditors.ComboBoxEdit();
     this.labelControl3 = new DevExpress.XtraEditors.LabelControl();
     this.Date = new DevExpress.XtraEditors.DateEdit();
     this.labelControl2 = new DevExpress.XtraEditors.LabelControl();
     this.NomenclatureInfo = new DevExpress.XtraGrid.GridControl();
     this.nomenclatureView = new DevExpress.XtraGrid.Views.Grid.GridView();
     this.panelControl1 = new DevExpress.XtraEditors.PanelControl();
     this.pictureEdit1 = new DevExpress.XtraEditors.PictureEdit();
     this.Info = new DevExpress.XtraEditors.LabelControl();
     this.barButtonItem1 = new DevExpress.XtraBars.BarButtonItem();
     this.barButtonItem3 = new DevExpress.XtraBars.BarButtonItem();
     this.barButtonItem4 = new DevExpress.XtraBars.BarButtonItem();
     this.panelControl2 = new DevExpress.XtraEditors.PanelControl();
     this.barButtonItem5 = new DevExpress.XtraBars.BarButtonItem();
     ((System.ComponentModel.ISupportInitialize)(this.ribbon)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.panelControl)).BeginInit();
     this.panelControl.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.State.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.TypeOfInventory.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.Date.Properties.VistaTimeProperties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.Date.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.NomenclatureInfo)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.nomenclatureView)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.panelControl1)).BeginInit();
     this.panelControl1.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.pictureEdit1.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.panelControl2)).BeginInit();
     this.panelControl2.SuspendLayout();
     this.SuspendLayout();
     //
     // ribbonStatusBar
     //
     this.ribbonStatusBar.ItemLinks.Add(this.OK);
     this.ribbonStatusBar.ItemLinks.Add(this.barButtonItem2);
     this.ribbonStatusBar.ItemLinks.Add(this.cancel);
     this.ribbonStatusBar.Location = new System.Drawing.Point(0, 477);
     this.ribbonStatusBar.Name = "ribbonStatusBar";
     this.ribbonStatusBar.Ribbon = this.ribbon;
     this.ribbonStatusBar.Size = new System.Drawing.Size(650, 31);
     //
     // OK
     //
     this.OK.Alignment = DevExpress.XtraBars.BarItemLinkAlignment.Right;
     this.OK.Caption = "OK";
     this.OK.Id = 0;
     this.OK.ImageIndex = 0;
     this.OK.Name = "OK";
     this.OK.ItemClick += new DevExpress.XtraBars.ItemClickEventHandler(this.OK_ItemClick);
     //
     // barButtonItem2
     //
     this.barButtonItem2.Alignment = DevExpress.XtraBars.BarItemLinkAlignment.Right;
     this.barButtonItem2.Caption = "��������";
     this.barButtonItem2.Id = 1;
     this.barButtonItem2.Name = "barButtonItem2";
     this.barButtonItem2.ItemClick += new DevExpress.XtraBars.ItemClickEventHandler(this.Write_ItemClick);
     //
     // cancel
     //
     this.cancel.Alignment = DevExpress.XtraBars.BarItemLinkAlignment.Right;
     this.cancel.Caption = "³����";
     this.cancel.Id = 2;
     this.cancel.ImageIndex = 1;
     this.cancel.Name = "cancel";
     this.cancel.ItemClick += new DevExpress.XtraBars.ItemClickEventHandler(this.cancel_ItemClick);
     //
     // ribbon
     //
     this.ribbon.ApplicationButtonText = null;
     this.ribbon.ExpandCollapseItem.Id = 0;
     this.ribbon.ExpandCollapseItem.Name = "";
     this.ribbon.Items.AddRange(new DevExpress.XtraBars.BarItem[] {
     this.ribbon.ExpandCollapseItem,
     this.OK,
     this.barButtonItem2,
     this.cancel,
     this.barButtonItem5});
     this.ribbon.Location = new System.Drawing.Point(0, 0);
     this.ribbon.MaxItemId = 20;
     this.ribbon.Name = "ribbon";
     this.ribbon.Size = new System.Drawing.Size(650, 49);
     this.ribbon.StatusBar = this.NomenclatureInfoButtonsBar;
     this.ribbon.ToolbarLocation = DevExpress.XtraBars.Ribbon.RibbonQuickAccessToolbarLocation.Above;
     //
     // NomenclatureInfoButtonsBar
     //
     this.NomenclatureInfoButtonsBar.Dock = System.Windows.Forms.DockStyle.Top;
     this.NomenclatureInfoButtonsBar.ItemLinks.Add(this.barButtonItem5);
     this.NomenclatureInfoButtonsBar.Location = new System.Drawing.Point(2, 2);
     this.NomenclatureInfoButtonsBar.Name = "NomenclatureInfoButtonsBar";
     this.NomenclatureInfoButtonsBar.Ribbon = this.ribbon;
     this.NomenclatureInfoButtonsBar.Size = new System.Drawing.Size(646, 27);
     //
     // panelControl
     //
     this.panelControl.BorderStyle = DevExpress.XtraEditors.Controls.BorderStyles.NoBorder;
     this.panelControl.Controls.Add(this.State);
     this.panelControl.Controls.Add(this.labelControl4);
     this.panelControl.Controls.Add(this.TypeOfInventory);
     this.panelControl.Controls.Add(this.labelControl3);
     this.panelControl.Controls.Add(this.Date);
     this.panelControl.Controls.Add(this.labelControl2);
     this.panelControl.Dock = System.Windows.Forms.DockStyle.Top;
     this.panelControl.Location = new System.Drawing.Point(0, 49);
     this.panelControl.Name = "panelControl";
     this.panelControl.Size = new System.Drawing.Size(650, 43);
     this.panelControl.TabIndex = 0;
     //
     // State
     //
     this.State.Location = new System.Drawing.Point(484, 10);
     this.State.MenuManager = this.ribbon;
     this.State.Name = "State";
     this.State.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.State.Size = new System.Drawing.Size(132, 20);
     this.State.TabIndex = 2;
     //
     // labelControl4
     //
     this.labelControl4.Location = new System.Drawing.Point(412, 13);
     this.labelControl4.Name = "labelControl4";
     this.labelControl4.Size = new System.Drawing.Size(25, 13);
     this.labelControl4.TabIndex = 6;
     this.labelControl4.Text = "����";
     //
     // TypeOfInventory
     //
     this.TypeOfInventory.Location = new System.Drawing.Point(258, 8);
     this.TypeOfInventory.MenuManager = this.ribbon;
     this.TypeOfInventory.Name = "TypeOfInventory";
     this.TypeOfInventory.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.TypeOfInventory.Size = new System.Drawing.Size(132, 20);
     this.TypeOfInventory.TabIndex = 3;
     //
     // labelControl3
     //
     this.labelControl3.Location = new System.Drawing.Point(223, 12);
     this.labelControl3.Name = "labelControl3";
     this.labelControl3.Size = new System.Drawing.Size(18, 13);
     this.labelControl3.TabIndex = 4;
     this.labelControl3.Text = "���";
     //
     // Date
     //
     this.Date.EditValue = null;
     this.Date.Location = new System.Drawing.Point(85, 8);
     this.Date.MenuManager = this.ribbon;
     this.Date.Name = "Date";
     this.Date.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.Date.Properties.VistaTimeProperties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton()});
     this.Date.Size = new System.Drawing.Size(132, 20);
     this.Date.TabIndex = 1;
     //
     // labelControl2
     //
     this.labelControl2.Location = new System.Drawing.Point(13, 12);
     this.labelControl2.Name = "labelControl2";
     this.labelControl2.Size = new System.Drawing.Size(29, 13);
     this.labelControl2.TabIndex = 2;
     this.labelControl2.Text = "���� ";
     this.labelControl2.Click += new System.EventHandler(this.labelControl2_Click);
     //
     // NomenclatureInfo
     //
     this.NomenclatureInfo.Dock = System.Windows.Forms.DockStyle.Fill;
     this.NomenclatureInfo.Location = new System.Drawing.Point(2, 29);
     this.NomenclatureInfo.MainView = this.nomenclatureView;
     this.NomenclatureInfo.MenuManager = this.ribbon;
     this.NomenclatureInfo.Name = "NomenclatureInfo";
     this.NomenclatureInfo.Size = new System.Drawing.Size(646, 334);
     this.NomenclatureInfo.TabIndex = 1;
     this.NomenclatureInfo.ViewCollection.AddRange(new DevExpress.XtraGrid.Views.Base.BaseView[] {
     this.nomenclatureView});
     //
     // nomenclatureView
     //
     this.nomenclatureView.GridControl = this.NomenclatureInfo;
     this.nomenclatureView.Name = "nomenclatureView";
     this.nomenclatureView.RowStyle += new DevExpress.XtraGrid.Views.Grid.RowStyleEventHandler(this.gridView1_RowStyle);
     //
     // panelControl1
     //
     this.panelControl1.BorderStyle = DevExpress.XtraEditors.Controls.BorderStyles.NoBorder;
     this.panelControl1.Controls.Add(this.pictureEdit1);
     this.panelControl1.Controls.Add(this.Info);
     this.panelControl1.Dock = System.Windows.Forms.DockStyle.Bottom;
     this.panelControl1.Location = new System.Drawing.Point(0, 457);
     this.panelControl1.Name = "panelControl1";
     this.panelControl1.Size = new System.Drawing.Size(650, 20);
     this.panelControl1.TabIndex = 0;
     //
     // pictureEdit1
     //
     this.pictureEdit1.Dock = System.Windows.Forms.DockStyle.Left;
     this.pictureEdit1.EditValue = global::FMCG.Properties.Resources._1317825614_information_balloon;
     this.pictureEdit1.Location = new System.Drawing.Point(0, 0);
     this.pictureEdit1.MenuManager = this.ribbon;
     this.pictureEdit1.Name = "pictureEdit1";
     this.pictureEdit1.Properties.Appearance.BackColor = System.Drawing.Color.Transparent;
     this.pictureEdit1.Properties.Appearance.Options.UseBackColor = true;
     this.pictureEdit1.Properties.BorderStyle = DevExpress.XtraEditors.Controls.BorderStyles.NoBorder;
     this.pictureEdit1.Size = new System.Drawing.Size(20, 20);
     this.pictureEdit1.TabIndex = 3;
     this.pictureEdit1.ToolTip = "��� ������� ��������� �������� �� ���� ���������� �����������";
     this.pictureEdit1.ToolTipIconType = DevExpress.Utils.ToolTipIconType.Information;
     this.pictureEdit1.ToolTipTitle = "������:";
     //
     // Info
     //
     this.Info.Appearance.ForeColor = System.Drawing.Color.Gray;
     this.Info.Location = new System.Drawing.Point(24, 3);
     this.Info.Name = "Info";
     this.Info.Size = new System.Drawing.Size(12, 13);
     this.Info.TabIndex = 1;
     this.Info.Text = "...";
     //
     // barButtonItem1
     //
     this.barButtonItem1.Alignment = DevExpress.XtraBars.BarItemLinkAlignment.Right;
     this.barButtonItem1.Caption = "OK";
     this.barButtonItem1.Id = 0;
     this.barButtonItem1.ImageIndex = 0;
     this.barButtonItem1.Name = "barButtonItem1";
     //
     // barButtonItem3
     //
     this.barButtonItem3.Alignment = DevExpress.XtraBars.BarItemLinkAlignment.Right;
     this.barButtonItem3.Caption = "��������";
     this.barButtonItem3.Id = 1;
     this.barButtonItem3.Name = "barButtonItem3";
     //
     // barButtonItem4
     //
     this.barButtonItem4.Alignment = DevExpress.XtraBars.BarItemLinkAlignment.Right;
     this.barButtonItem4.Caption = "³����";
     this.barButtonItem4.Id = 2;
     this.barButtonItem4.ImageIndex = 1;
     this.barButtonItem4.Name = "barButtonItem4";
     //
     // panelControl2
     //
     this.panelControl2.Controls.Add(this.NomenclatureInfo);
     this.panelControl2.Controls.Add(this.NomenclatureInfoButtonsBar);
     this.panelControl2.Dock = System.Windows.Forms.DockStyle.Fill;
     this.panelControl2.Location = new System.Drawing.Point(0, 92);
     this.panelControl2.Name = "panelControl2";
     this.panelControl2.Size = new System.Drawing.Size(650, 365);
     this.panelControl2.TabIndex = 10;
     //
     // barButtonItem5
     //
     this.barButtonItem5.Alignment = DevExpress.XtraBars.BarItemLinkAlignment.Right;
     this.barButtonItem5.Caption = "��������� ������������������";
     this.barButtonItem5.Id = 19;
     this.barButtonItem5.Name = "barButtonItem5";
     this.barButtonItem5.ItemClick += new DevExpress.XtraBars.ItemClickEventHandler(this.barButtonItem5_ItemClick);
     //
     // InventoryItemForm
     //
     this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
     this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
     this.ClientSize = new System.Drawing.Size(650, 508);
     this.Controls.Add(this.panelControl2);
     this.Controls.Add(this.panelControl1);
     this.Controls.Add(this.panelControl);
     this.Controls.Add(this.ribbonStatusBar);
     this.Controls.Add(this.ribbon);
     this.KeyPreview = true;
     this.Name = "InventoryItemForm";
     this.Ribbon = this.ribbon;
     this.StatusBar = this.ribbonStatusBar;
     this.Text = "Item form";
     this.KeyDown += new System.Windows.Forms.KeyEventHandler(this.Itemform_KeyDown);
     ((System.ComponentModel.ISupportInitialize)(this.ribbon)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.panelControl)).EndInit();
     this.panelControl.ResumeLayout(false);
     this.panelControl.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(this.State.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.TypeOfInventory.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.Date.Properties.VistaTimeProperties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.Date.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.NomenclatureInfo)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.nomenclatureView)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.panelControl1)).EndInit();
     this.panelControl1.ResumeLayout(false);
     this.panelControl1.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(this.pictureEdit1.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.panelControl2)).EndInit();
     this.panelControl2.ResumeLayout(false);
     this.ResumeLayout(false);
 }
 /// <summary>
 /// Required method for Designer support - do not modify
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     this.ribbonStatusBar = new DevExpress.XtraBars.Ribbon.RibbonStatusBar();
     this.OK = new DevExpress.XtraBars.BarButtonItem();
     this.barButtonItem2 = new DevExpress.XtraBars.BarButtonItem();
     this.cancel = new DevExpress.XtraBars.BarButtonItem();
     this.ribbon = new DevExpress.XtraBars.Ribbon.RibbonControl();
     this.NomenclatureInfoButtonsBar = new DevExpress.XtraBars.Ribbon.RibbonStatusBar();
     this.panelControl = new DevExpress.XtraEditors.PanelControl();
     this.TypeOfShipment = new DevExpress.XtraEditors.ComboBoxEdit();
     this.labelControl2 = new DevExpress.XtraEditors.LabelControl();
     this.Car = new Aramis.AramisSearchLookUpEdit();
     this.Carrier = new Aramis.AramisSearchLookUpEdit();
     this.Driver = new Aramis.AramisSearchLookUpEdit();
     this.Contractor = new Aramis.AramisSearchLookUpEdit();
     this.Date = new DevExpress.XtraEditors.DateEdit();
     this.IncomeNumber = new DevExpress.XtraEditors.TextEdit();
     this.labelControl7 = new DevExpress.XtraEditors.LabelControl();
     this.labelControl6 = new DevExpress.XtraEditors.LabelControl();
     this.labelControl5 = new DevExpress.XtraEditors.LabelControl();
     this.labelControl4 = new DevExpress.XtraEditors.LabelControl();
     this.State = new DevExpress.XtraEditors.ComboBoxEdit();
     this.labelControl3 = new DevExpress.XtraEditors.LabelControl();
     this.label = new DevExpress.XtraEditors.LabelControl();
     this.labelControl1 = new DevExpress.XtraEditors.LabelControl();
     this.NomenclatureInfo = new DevExpress.XtraGrid.GridControl();
     this.nomenclatureView = new DevExpress.XtraGrid.Views.Grid.GridView();
     this.panelControl1 = new DevExpress.XtraEditors.PanelControl();
     this.pictureEdit1 = new DevExpress.XtraEditors.PictureEdit();
     this.Info = new DevExpress.XtraEditors.LabelControl();
     this.barButtonItem1 = new DevExpress.XtraBars.BarButtonItem();
     this.barButtonItem3 = new DevExpress.XtraBars.BarButtonItem();
     this.barButtonItem4 = new DevExpress.XtraBars.BarButtonItem();
     this.groupControl1 = new DevExpress.XtraEditors.GroupControl();
     this.panelControl2 = new DevExpress.XtraEditors.PanelControl();
     this.showNomenclature = new DevExpress.XtraEditors.CheckButton();
     this.showTare = new DevExpress.XtraEditors.CheckButton();
     ((System.ComponentModel.ISupportInitialize)(this.ribbon)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.panelControl)).BeginInit();
     this.panelControl.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.TypeOfShipment.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.Car.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.Carrier.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.Driver.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.Contractor.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.Date.Properties.VistaTimeProperties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.Date.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.IncomeNumber.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.State.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.NomenclatureInfo)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.nomenclatureView)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.panelControl1)).BeginInit();
     this.panelControl1.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.pictureEdit1.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.groupControl1)).BeginInit();
     this.groupControl1.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.panelControl2)).BeginInit();
     this.panelControl2.SuspendLayout();
     this.SuspendLayout();
     //
     // ribbonStatusBar
     //
     this.ribbonStatusBar.ItemLinks.Add(this.OK);
     this.ribbonStatusBar.ItemLinks.Add(this.barButtonItem2);
     this.ribbonStatusBar.ItemLinks.Add(this.cancel);
     this.ribbonStatusBar.Location = new System.Drawing.Point(0, 572);
     this.ribbonStatusBar.Name = "ribbonStatusBar";
     this.ribbonStatusBar.Ribbon = this.ribbon;
     this.ribbonStatusBar.Size = new System.Drawing.Size(879, 31);
     //
     // OK
     //
     this.OK.Alignment = DevExpress.XtraBars.BarItemLinkAlignment.Right;
     this.OK.Caption = "OK";
     this.OK.Id = 0;
     this.OK.ImageIndex = 0;
     this.OK.Name = "OK";
     this.OK.ItemClick += new DevExpress.XtraBars.ItemClickEventHandler(this.OK_ItemClick);
     //
     // barButtonItem2
     //
     this.barButtonItem2.Alignment = DevExpress.XtraBars.BarItemLinkAlignment.Right;
     this.barButtonItem2.Caption = "��������";
     this.barButtonItem2.Id = 1;
     this.barButtonItem2.Name = "barButtonItem2";
     this.barButtonItem2.ItemClick += new DevExpress.XtraBars.ItemClickEventHandler(this.Write_ItemClick);
     //
     // cancel
     //
     this.cancel.Alignment = DevExpress.XtraBars.BarItemLinkAlignment.Right;
     this.cancel.Caption = "³����";
     this.cancel.Id = 2;
     this.cancel.ImageIndex = 1;
     this.cancel.Name = "cancel";
     this.cancel.ItemClick += new DevExpress.XtraBars.ItemClickEventHandler(this.cancel_ItemClick);
     //
     // ribbon
     //
     this.ribbon.ApplicationButtonText = null;
     this.ribbon.ExpandCollapseItem.Id = 0;
     this.ribbon.ExpandCollapseItem.Name = "";
     this.ribbon.Items.AddRange(new DevExpress.XtraBars.BarItem[] {
     this.ribbon.ExpandCollapseItem,
     this.OK,
     this.barButtonItem2,
     this.cancel});
     this.ribbon.Location = new System.Drawing.Point(0, 0);
     this.ribbon.MaxItemId = 18;
     this.ribbon.Name = "ribbon";
     this.ribbon.Size = new System.Drawing.Size(879, 49);
     this.ribbon.StatusBar = this.ribbonStatusBar;
     this.ribbon.ToolbarLocation = DevExpress.XtraBars.Ribbon.RibbonQuickAccessToolbarLocation.Above;
     //
     // NomenclatureInfoButtonsBar
     //
     this.NomenclatureInfoButtonsBar.Dock = System.Windows.Forms.DockStyle.Fill;
     this.NomenclatureInfoButtonsBar.Location = new System.Drawing.Point(0, -4);
     this.NomenclatureInfoButtonsBar.Name = "NomenclatureInfoButtonsBar";
     this.NomenclatureInfoButtonsBar.Ribbon = this.ribbon;
     this.NomenclatureInfoButtonsBar.Size = new System.Drawing.Size(875, 27);
     //
     // panelControl
     //
     this.panelControl.BorderStyle = DevExpress.XtraEditors.Controls.BorderStyles.NoBorder;
     this.panelControl.Controls.Add(this.TypeOfShipment);
     this.panelControl.Controls.Add(this.labelControl2);
     this.panelControl.Controls.Add(this.Car);
     this.panelControl.Controls.Add(this.Carrier);
     this.panelControl.Controls.Add(this.Driver);
     this.panelControl.Controls.Add(this.Contractor);
     this.panelControl.Controls.Add(this.Date);
     this.panelControl.Controls.Add(this.IncomeNumber);
     this.panelControl.Controls.Add(this.labelControl7);
     this.panelControl.Controls.Add(this.labelControl6);
     this.panelControl.Controls.Add(this.labelControl5);
     this.panelControl.Controls.Add(this.labelControl4);
     this.panelControl.Controls.Add(this.State);
     this.panelControl.Controls.Add(this.labelControl3);
     this.panelControl.Controls.Add(this.label);
     this.panelControl.Controls.Add(this.labelControl1);
     this.panelControl.Dock = System.Windows.Forms.DockStyle.Top;
     this.panelControl.Location = new System.Drawing.Point(0, 49);
     this.panelControl.Name = "panelControl";
     this.panelControl.Size = new System.Drawing.Size(879, 85);
     this.panelControl.TabIndex = 2;
     //
     // TypeOfShipment
     //
     this.TypeOfShipment.Location = new System.Drawing.Point(719, 6);
     this.TypeOfShipment.MenuManager = this.ribbon;
     this.TypeOfShipment.Name = "TypeOfShipment";
     this.TypeOfShipment.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.TypeOfShipment.Size = new System.Drawing.Size(148, 20);
     this.TypeOfShipment.TabIndex = 19;
     //
     // labelControl2
     //
     this.labelControl2.Location = new System.Drawing.Point(615, 9);
     this.labelControl2.Name = "labelControl2";
     this.labelControl2.Size = new System.Drawing.Size(98, 13);
     this.labelControl2.TabIndex = 20;
     this.labelControl2.Text = "��� ������������";
     //
     // Car
     //
     this.Car.BaseFilter = null;
     this.Car.Location = new System.Drawing.Point(500, 58);
     this.Car.MenuManager = this.ribbon;
     this.Car.Name = "Car";
     this.Car.Properties.BaseFilter = null;
     this.Car.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(),
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Delete)});
     this.Car.Properties.CloseUpKey = new DevExpress.Utils.KeyShortcut(System.Windows.Forms.Keys.None);
     this.Car.Properties.NullText = "";
     this.Car.Size = new System.Drawing.Size(367, 20);
     this.Car.TabIndex = 18;
     //
     // Carrier
     //
     this.Carrier.BaseFilter = null;
     this.Carrier.Location = new System.Drawing.Point(500, 32);
     this.Carrier.MenuManager = this.ribbon;
     this.Carrier.Name = "Carrier";
     this.Carrier.Properties.BaseFilter = null;
     this.Carrier.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(),
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Delete)});
     this.Carrier.Properties.CloseUpKey = new DevExpress.Utils.KeyShortcut(System.Windows.Forms.Keys.None);
     this.Carrier.Properties.NullText = "";
     this.Carrier.Size = new System.Drawing.Size(367, 20);
     this.Carrier.TabIndex = 17;
     //
     // Driver
     //
     this.Driver.BaseFilter = null;
     this.Driver.Location = new System.Drawing.Point(83, 58);
     this.Driver.MenuManager = this.ribbon;
     this.Driver.Name = "Driver";
     this.Driver.Properties.BaseFilter = null;
     this.Driver.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(),
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Delete)});
     this.Driver.Properties.CloseUpKey = new DevExpress.Utils.KeyShortcut(System.Windows.Forms.Keys.None);
     this.Driver.Properties.NullText = "";
     this.Driver.Size = new System.Drawing.Size(322, 20);
     this.Driver.TabIndex = 16;
     //
     // Contractor
     //
     this.Contractor.BaseFilter = null;
     this.Contractor.Location = new System.Drawing.Point(83, 32);
     this.Contractor.MenuManager = this.ribbon;
     this.Contractor.Name = "Contractor";
     this.Contractor.Properties.BaseFilter = null;
     this.Contractor.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(),
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Delete)});
     this.Contractor.Properties.CloseUpKey = new DevExpress.Utils.KeyShortcut(System.Windows.Forms.Keys.None);
     this.Contractor.Properties.NullText = "";
     this.Contractor.Size = new System.Drawing.Size(322, 20);
     this.Contractor.TabIndex = 15;
     //
     // Date
     //
     this.Date.EditValue = null;
     this.Date.Location = new System.Drawing.Point(305, 6);
     this.Date.MenuManager = this.ribbon;
     this.Date.Name = "Date";
     this.Date.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.Date.Properties.VistaTimeProperties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton()});
     this.Date.Size = new System.Drawing.Size(100, 20);
     this.Date.TabIndex = 14;
     //
     // IncomeNumber
     //
     this.IncomeNumber.Location = new System.Drawing.Point(83, 6);
     this.IncomeNumber.MenuManager = this.ribbon;
     this.IncomeNumber.Name = "IncomeNumber";
     this.IncomeNumber.Size = new System.Drawing.Size(104, 20);
     this.IncomeNumber.TabIndex = 13;
     //
     // labelControl7
     //
     this.labelControl7.Location = new System.Drawing.Point(411, 61);
     this.labelControl7.Name = "labelControl7";
     this.labelControl7.Size = new System.Drawing.Size(40, 13);
     this.labelControl7.TabIndex = 12;
     this.labelControl7.Text = "������";
     //
     // labelControl6
     //
     this.labelControl6.Location = new System.Drawing.Point(10, 61);
     this.labelControl6.Name = "labelControl6";
     this.labelControl6.Size = new System.Drawing.Size(27, 13);
     this.labelControl6.TabIndex = 10;
     this.labelControl6.Text = "����";
     //
     // labelControl5
     //
     this.labelControl5.Location = new System.Drawing.Point(411, 35);
     this.labelControl5.Name = "labelControl5";
     this.labelControl5.Size = new System.Drawing.Size(56, 13);
     this.labelControl5.TabIndex = 8;
     this.labelControl5.Text = "���������";
     //
     // labelControl4
     //
     this.labelControl4.Location = new System.Drawing.Point(10, 35);
     this.labelControl4.Name = "labelControl4";
     this.labelControl4.Size = new System.Drawing.Size(60, 13);
     this.labelControl4.TabIndex = 6;
     this.labelControl4.Text = "����������";
     //
     // State
     //
     this.State.Location = new System.Drawing.Point(500, 6);
     this.State.MenuManager = this.ribbon;
     this.State.Name = "State";
     this.State.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.State.Size = new System.Drawing.Size(109, 20);
     this.State.TabIndex = 0;
     //
     // labelControl3
     //
     this.labelControl3.Location = new System.Drawing.Point(411, 9);
     this.labelControl3.Name = "labelControl3";
     this.labelControl3.Size = new System.Drawing.Size(83, 13);
     this.labelControl3.TabIndex = 4;
     this.labelControl3.Text = "���� ���������";
     //
     // label
     //
     this.label.Location = new System.Drawing.Point(193, 9);
     this.label.Name = "label";
     this.label.Size = new System.Drawing.Size(106, 13);
     this.label.TabIndex = 2;
     this.label.Text = "���� ������������";
     //
     // labelControl1
     //
     this.labelControl1.Location = new System.Drawing.Point(10, 9);
     this.labelControl1.Name = "labelControl1";
     this.labelControl1.Size = new System.Drawing.Size(67, 13);
     this.labelControl1.TabIndex = 0;
     this.labelControl1.Text = "� ��������";
     //
     // NomenclatureInfo
     //
     this.NomenclatureInfo.Dock = System.Windows.Forms.DockStyle.Fill;
     this.NomenclatureInfo.Location = new System.Drawing.Point(2, 44);
     this.NomenclatureInfo.MainView = this.nomenclatureView;
     this.NomenclatureInfo.MenuManager = this.ribbon;
     this.NomenclatureInfo.Name = "NomenclatureInfo";
     this.NomenclatureInfo.Size = new System.Drawing.Size(875, 372);
     this.NomenclatureInfo.TabIndex = 1;
     this.NomenclatureInfo.ViewCollection.AddRange(new DevExpress.XtraGrid.Views.Base.BaseView[] {
     this.nomenclatureView});
     //
     // nomenclatureView
     //
     this.nomenclatureView.GridControl = this.NomenclatureInfo;
     this.nomenclatureView.Name = "nomenclatureView";
     //
     // panelControl1
     //
     this.panelControl1.BorderStyle = DevExpress.XtraEditors.Controls.BorderStyles.NoBorder;
     this.panelControl1.Controls.Add(this.pictureEdit1);
     this.panelControl1.Controls.Add(this.Info);
     this.panelControl1.Dock = System.Windows.Forms.DockStyle.Bottom;
     this.panelControl1.Location = new System.Drawing.Point(0, 552);
     this.panelControl1.Name = "panelControl1";
     this.panelControl1.Size = new System.Drawing.Size(879, 20);
     this.panelControl1.TabIndex = 0;
     //
     // pictureEdit1
     //
     this.pictureEdit1.Dock = System.Windows.Forms.DockStyle.Left;
     this.pictureEdit1.EditValue = global::FMCG.Properties.Resources._1317825614_information_balloon;
     this.pictureEdit1.Location = new System.Drawing.Point(0, 0);
     this.pictureEdit1.MenuManager = this.ribbon;
     this.pictureEdit1.Name = "pictureEdit1";
     this.pictureEdit1.Properties.Appearance.BackColor = System.Drawing.Color.Transparent;
     this.pictureEdit1.Properties.Appearance.Options.UseBackColor = true;
     this.pictureEdit1.Properties.BorderStyle = DevExpress.XtraEditors.Controls.BorderStyles.NoBorder;
     this.pictureEdit1.Size = new System.Drawing.Size(20, 20);
     this.pictureEdit1.TabIndex = 3;
     this.pictureEdit1.ToolTip = "��� ������� ��������� �������� �� ���� ���������� �����������";
     this.pictureEdit1.ToolTipIconType = DevExpress.Utils.ToolTipIconType.Information;
     this.pictureEdit1.ToolTipTitle = "������:";
     //
     // Info
     //
     this.Info.Appearance.ForeColor = System.Drawing.Color.Gray;
     this.Info.Location = new System.Drawing.Point(24, 3);
     this.Info.Name = "Info";
     this.Info.Size = new System.Drawing.Size(12, 13);
     this.Info.TabIndex = 1;
     this.Info.Text = "...";
     //
     // barButtonItem1
     //
     this.barButtonItem1.Alignment = DevExpress.XtraBars.BarItemLinkAlignment.Right;
     this.barButtonItem1.Caption = "OK";
     this.barButtonItem1.Id = 0;
     this.barButtonItem1.ImageIndex = 0;
     this.barButtonItem1.Name = "barButtonItem1";
     //
     // barButtonItem3
     //
     this.barButtonItem3.Alignment = DevExpress.XtraBars.BarItemLinkAlignment.Right;
     this.barButtonItem3.Caption = "��������";
     this.barButtonItem3.Id = 1;
     this.barButtonItem3.Name = "barButtonItem3";
     //
     // barButtonItem4
     //
     this.barButtonItem4.Alignment = DevExpress.XtraBars.BarItemLinkAlignment.Right;
     this.barButtonItem4.Caption = "³����";
     this.barButtonItem4.Id = 2;
     this.barButtonItem4.ImageIndex = 1;
     this.barButtonItem4.Name = "barButtonItem4";
     //
     // groupControl1
     //
     this.groupControl1.Controls.Add(this.NomenclatureInfo);
     this.groupControl1.Controls.Add(this.panelControl2);
     this.groupControl1.Dock = System.Windows.Forms.DockStyle.Fill;
     this.groupControl1.Location = new System.Drawing.Point(0, 134);
     this.groupControl1.Name = "groupControl1";
     this.groupControl1.Size = new System.Drawing.Size(879, 418);
     this.groupControl1.TabIndex = 21;
     this.groupControl1.Text = "������������";
     //
     // panelControl2
     //
     this.panelControl2.BorderStyle = DevExpress.XtraEditors.Controls.BorderStyles.NoBorder;
     this.panelControl2.Controls.Add(this.showNomenclature);
     this.panelControl2.Controls.Add(this.showTare);
     this.panelControl2.Controls.Add(this.NomenclatureInfoButtonsBar);
     this.panelControl2.Dock = System.Windows.Forms.DockStyle.Top;
     this.panelControl2.Location = new System.Drawing.Point(2, 21);
     this.panelControl2.Name = "panelControl2";
     this.panelControl2.Size = new System.Drawing.Size(875, 23);
     this.panelControl2.TabIndex = 6;
     //
     // showNomenclature
     //
     this.showNomenclature.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
     | System.Windows.Forms.AnchorStyles.Right)));
     this.showNomenclature.Location = new System.Drawing.Point(699, 0);
     this.showNomenclature.Name = "showNomenclature";
     this.showNomenclature.Size = new System.Drawing.Size(88, 23);
     this.showNomenclature.TabIndex = 4;
     this.showNomenclature.Text = "������������";
     this.showNomenclature.CheckedChanged += new System.EventHandler(this.showNomenclature_CheckedChanged);
     //
     // showTare
     //
     this.showTare.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
     | System.Windows.Forms.AnchorStyles.Right)));
     this.showTare.Location = new System.Drawing.Point(795, 0);
     this.showTare.Name = "showTare";
     this.showTare.Size = new System.Drawing.Size(75, 23);
     this.showTare.TabIndex = 3;
     this.showTare.Text = "����";
     this.showTare.CheckedChanged += new System.EventHandler(this.showTare_CheckedChanged);
     //
     // ShipmentItemForm
     //
     this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
     this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
     this.ClientSize = new System.Drawing.Size(879, 603);
     this.Controls.Add(this.groupControl1);
     this.Controls.Add(this.panelControl1);
     this.Controls.Add(this.panelControl);
     this.Controls.Add(this.ribbonStatusBar);
     this.Controls.Add(this.ribbon);
     this.KeyPreview = true;
     this.Name = "ShipmentItemForm";
     this.Ribbon = this.ribbon;
     this.StatusBar = this.ribbonStatusBar;
     this.Text = "Item form";
     this.KeyDown += new System.Windows.Forms.KeyEventHandler(this.Itemform_KeyDown);
     ((System.ComponentModel.ISupportInitialize)(this.ribbon)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.panelControl)).EndInit();
     this.panelControl.ResumeLayout(false);
     this.panelControl.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(this.TypeOfShipment.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.Car.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.Carrier.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.Driver.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.Contractor.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.Date.Properties.VistaTimeProperties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.Date.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.IncomeNumber.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.State.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.NomenclatureInfo)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.nomenclatureView)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.panelControl1)).EndInit();
     this.panelControl1.ResumeLayout(false);
     this.panelControl1.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(this.pictureEdit1.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.groupControl1)).EndInit();
     this.groupControl1.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.panelControl2)).EndInit();
     this.panelControl2.ResumeLayout(false);
     this.ResumeLayout(false);
 }
 /// <summary>
 /// Required method for Designer support - do not modify
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     this.components = new System.ComponentModel.Container();
     this.ribbon = new DevExpress.XtraBars.Ribbon.RibbonControl();
     this.barButtonItem1 = new DevExpress.XtraBars.BarButtonItem();
     this.barMdiChildrenListItem1 = new DevExpress.XtraBars.BarMdiChildrenListItem();
     this.barStaticItem1 = new DevExpress.XtraBars.BarStaticItem();
     this.barStaticItem2 = new DevExpress.XtraBars.BarStaticItem();
     this.ribbonPage1 = new DevExpress.XtraBars.Ribbon.RibbonPage();
     this.ribbonPageGroup1 = new DevExpress.XtraBars.Ribbon.RibbonPageGroup();
     this.ribbonStatusBar = new DevExpress.XtraBars.Ribbon.RibbonStatusBar();
     this.skinDefaultLook = new DevExpress.LookAndFeel.DefaultLookAndFeel(this.components);
     this.xtraTabbedMdiManager = new DevExpress.XtraTabbedMdi.XtraTabbedMdiManager(this.components);
     ((System.ComponentModel.ISupportInitialize)(this.ribbon)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.xtraTabbedMdiManager)).BeginInit();
     this.SuspendLayout();
     //
     // ribbon
     //
     this.ribbon.ApplicationButtonText = null;
     this.ribbon.Items.AddRange(new DevExpress.XtraBars.BarItem[] {
     this.barButtonItem1,
     this.barMdiChildrenListItem1,
     this.barStaticItem1,
     this.barStaticItem2});
     this.ribbon.Location = new System.Drawing.Point(0, 0);
     this.ribbon.MaxItemId = 5;
     this.ribbon.MdiMergeStyle = DevExpress.XtraBars.Ribbon.RibbonMdiMergeStyle.Always;
     this.ribbon.Name = "ribbon";
     this.ribbon.Pages.AddRange(new DevExpress.XtraBars.Ribbon.RibbonPage[] {
     this.ribbonPage1});
     this.ribbon.RibbonStyle = DevExpress.XtraBars.Ribbon.RibbonControlStyle.Office2010;
     this.ribbon.SelectedPage = this.ribbonPage1;
     this.ribbon.ShowExpandCollapseButton = DevExpress.Utils.DefaultBoolean.False;
     this.ribbon.ShowToolbarCustomizeItem = false;
     this.ribbon.Size = new System.Drawing.Size(1006, 143);
     this.ribbon.StatusBar = this.ribbonStatusBar;
     this.ribbon.Toolbar.ShowCustomizeItem = false;
     this.ribbon.ToolbarLocation = DevExpress.XtraBars.Ribbon.RibbonQuickAccessToolbarLocation.Hidden;
     //
     // barButtonItem1
     //
     this.barButtonItem1.Caption = "barButtonItem1";
     this.barButtonItem1.Id = 1;
     this.barButtonItem1.Name = "barButtonItem1";
     this.barButtonItem1.ItemClick += new DevExpress.XtraBars.ItemClickEventHandler(this.barButtonItem1_ItemClick);
     //
     // barMdiChildrenListItem1
     //
     this.barMdiChildrenListItem1.Caption = "barMdiChildrenListItem1";
     this.barMdiChildrenListItem1.Id = 2;
     this.barMdiChildrenListItem1.Name = "barMdiChildrenListItem1";
     //
     // barStaticItem1
     //
     this.barStaticItem1.Alignment = DevExpress.XtraBars.BarItemLinkAlignment.Right;
     this.barStaticItem1.Caption = "barStaticItem1";
     this.barStaticItem1.Id = 3;
     this.barStaticItem1.Name = "barStaticItem1";
     this.barStaticItem1.TextAlignment = System.Drawing.StringAlignment.Near;
     //
     // barStaticItem2
     //
     this.barStaticItem2.Caption = "barStaticItem2";
     this.barStaticItem2.Id = 4;
     this.barStaticItem2.Name = "barStaticItem2";
     this.barStaticItem2.TextAlignment = System.Drawing.StringAlignment.Near;
     //
     // ribbonPage1
     //
     this.ribbonPage1.Groups.AddRange(new DevExpress.XtraBars.Ribbon.RibbonPageGroup[] {
     this.ribbonPageGroup1});
     this.ribbonPage1.Name = "ribbonPage1";
     this.ribbonPage1.Text = "ribbonPage1";
     //
     // ribbonPageGroup1
     //
     this.ribbonPageGroup1.ItemLinks.Add(this.barButtonItem1);
     this.ribbonPageGroup1.Name = "ribbonPageGroup1";
     this.ribbonPageGroup1.Text = "ribbonPageGroup1";
     //
     // ribbonStatusBar
     //
     this.ribbonStatusBar.ItemLinks.Add(this.barStaticItem1);
     this.ribbonStatusBar.ItemLinks.Add(this.barStaticItem2);
     this.ribbonStatusBar.Location = new System.Drawing.Point(0, 546);
     this.ribbonStatusBar.Name = "ribbonStatusBar";
     this.ribbonStatusBar.Ribbon = this.ribbon;
     this.ribbonStatusBar.Size = new System.Drawing.Size(1006, 25);
     //
     // xtraTabbedMdiManager
     //
     this.xtraTabbedMdiManager.BorderStyle = DevExpress.XtraEditors.Controls.BorderStyles.NoBorder;
     this.xtraTabbedMdiManager.FloatOnDoubleClick = DevExpress.Utils.DefaultBoolean.False;
     this.xtraTabbedMdiManager.FloatOnDrag = DevExpress.Utils.DefaultBoolean.False;
     this.xtraTabbedMdiManager.HeaderButtons = ((DevExpress.XtraTab.TabButtons)((DevExpress.XtraTab.TabButtons.Prev | DevExpress.XtraTab.TabButtons.Next)));
     this.xtraTabbedMdiManager.HeaderButtonsShowMode = DevExpress.XtraTab.TabButtonShowMode.Always;
     this.xtraTabbedMdiManager.MdiParent = this;
     this.xtraTabbedMdiManager.SetNextMdiChildMode = DevExpress.XtraTabbedMdi.SetNextMdiChildMode.TabControl;
     this.xtraTabbedMdiManager.ShowHeaderFocus = DevExpress.Utils.DefaultBoolean.True;
     //
     // frmMain
     //
     this.AllowFormGlass = DevExpress.Utils.DefaultBoolean.False;
     this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
     this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
     this.ClientSize = new System.Drawing.Size(1006, 571);
     this.Controls.Add(this.ribbonStatusBar);
     this.Controls.Add(this.ribbon);
     this.IsMdiContainer = true;
     this.Name = "frmMain";
     this.Ribbon = this.ribbon;
     this.StatusBar = this.ribbonStatusBar;
     this.Text = "Smart Sim Tech Control Panel";
     this.Load += new System.EventHandler(this.frmMain_Load);
     ((System.ComponentModel.ISupportInitialize)(this.ribbon)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.xtraTabbedMdiManager)).EndInit();
     this.ResumeLayout(false);
 }
Example #26
0
 /// <summary>
 /// Required method for Designer support - do not modify
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(f003_main_PM));
     this.ribbonControl1 = new DevExpress.XtraBars.Ribbon.RibbonControl();
     this.barButtonItem1 = new DevExpress.XtraBars.BarButtonItem();
     this.barButtonItem2 = new DevExpress.XtraBars.BarButtonItem();
     this.barButtonItem3 = new DevExpress.XtraBars.BarButtonItem();
     this.barButtonItem4 = new DevExpress.XtraBars.BarButtonItem();
     this.barButtonItem5 = new DevExpress.XtraBars.BarButtonItem();
     this.barButtonItem6 = new DevExpress.XtraBars.BarButtonItem();
     this.barButtonItem7 = new DevExpress.XtraBars.BarButtonItem();
     this.barButtonItem8 = new DevExpress.XtraBars.BarButtonItem();
     this.ribbonPage1 = new DevExpress.XtraBars.Ribbon.RibbonPage();
     this.ribbonPageGroup1 = new DevExpress.XtraBars.Ribbon.RibbonPageGroup();
     this.ribbonPage2 = new DevExpress.XtraBars.Ribbon.RibbonPage();
     this.ribbonPageGroup2 = new DevExpress.XtraBars.Ribbon.RibbonPageGroup();
     this.ribbonPage3 = new DevExpress.XtraBars.Ribbon.RibbonPage();
     this.ribbonPageGroup3 = new DevExpress.XtraBars.Ribbon.RibbonPageGroup();
     this.xtraTabbedMdiManager1 = new DevExpress.XtraTabbedMdi.XtraTabbedMdiManager();
     ((System.ComponentModel.ISupportInitialize)(this.ribbonControl1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.xtraTabbedMdiManager1)).BeginInit();
     this.SuspendLayout();
     //
     // ribbonControl1
     //
     this.ribbonControl1.ExpandCollapseItem.Id = 0;
     this.ribbonControl1.Items.AddRange(new DevExpress.XtraBars.BarItem[] {
     this.ribbonControl1.ExpandCollapseItem,
     this.barButtonItem1,
     this.barButtonItem2,
     this.barButtonItem3,
     this.barButtonItem4,
     this.barButtonItem5,
     this.barButtonItem6,
     this.barButtonItem7,
     this.barButtonItem8});
     this.ribbonControl1.Location = new System.Drawing.Point(0, 0);
     this.ribbonControl1.MaxItemId = 9;
     this.ribbonControl1.Name = "ribbonControl1";
     this.ribbonControl1.Pages.AddRange(new DevExpress.XtraBars.Ribbon.RibbonPage[] {
     this.ribbonPage1,
     this.ribbonPage2,
     this.ribbonPage3});
     this.ribbonControl1.Size = new System.Drawing.Size(798, 161);
     //
     // barButtonItem1
     //
     this.barButtonItem1.Caption = "Danh sách đơn hàng hoàn thành";
     this.barButtonItem1.Glyph = ((System.Drawing.Image)(resources.GetObject("barButtonItem1.Glyph")));
     this.barButtonItem1.Id = 1;
     this.barButtonItem1.LargeGlyph = ((System.Drawing.Image)(resources.GetObject("barButtonItem1.LargeGlyph")));
     this.barButtonItem1.Name = "barButtonItem1";
     this.barButtonItem1.ItemClick += new DevExpress.XtraBars.ItemClickEventHandler(this.barButtonItem1_ItemClick);
     //
     // barButtonItem2
     //
     this.barButtonItem2.Caption = "Danh sách đơn hàng cần điều hướng";
     this.barButtonItem2.Glyph = ((System.Drawing.Image)(resources.GetObject("barButtonItem2.Glyph")));
     this.barButtonItem2.Id = 2;
     this.barButtonItem2.LargeGlyph = ((System.Drawing.Image)(resources.GetObject("barButtonItem2.LargeGlyph")));
     this.barButtonItem2.Name = "barButtonItem2";
     //
     // barButtonItem3
     //
     this.barButtonItem3.Caption = "Infomation";
     this.barButtonItem3.Glyph = ((System.Drawing.Image)(resources.GetObject("barButtonItem3.Glyph")));
     this.barButtonItem3.Id = 3;
     this.barButtonItem3.LargeGlyph = ((System.Drawing.Image)(resources.GetObject("barButtonItem3.LargeGlyph")));
     this.barButtonItem3.Name = "barButtonItem3";
     this.barButtonItem3.ItemClick += new DevExpress.XtraBars.ItemClickEventHandler(this.barButtonItem3_ItemClick);
     //
     // barButtonItem4
     //
     this.barButtonItem4.Caption = "Chỉnh sửa thông tin ";
     this.barButtonItem4.Glyph = ((System.Drawing.Image)(resources.GetObject("barButtonItem4.Glyph")));
     this.barButtonItem4.Id = 4;
     this.barButtonItem4.LargeGlyph = ((System.Drawing.Image)(resources.GetObject("barButtonItem4.LargeGlyph")));
     this.barButtonItem4.Name = "barButtonItem4";
     //
     // barButtonItem5
     //
     this.barButtonItem5.Caption = "Đổi mật khẩu";
     this.barButtonItem5.Glyph = ((System.Drawing.Image)(resources.GetObject("barButtonItem5.Glyph")));
     this.barButtonItem5.Id = 5;
     this.barButtonItem5.LargeGlyph = ((System.Drawing.Image)(resources.GetObject("barButtonItem5.LargeGlyph")));
     this.barButtonItem5.Name = "barButtonItem5";
     //
     // barButtonItem6
     //
     this.barButtonItem6.Caption = "Báo cáo tiếp nhận";
     this.barButtonItem6.Glyph = ((System.Drawing.Image)(resources.GetObject("barButtonItem6.Glyph")));
     this.barButtonItem6.Id = 6;
     this.barButtonItem6.LargeGlyph = ((System.Drawing.Image)(resources.GetObject("barButtonItem6.LargeGlyph")));
     this.barButtonItem6.Name = "barButtonItem6";
     this.barButtonItem6.ItemClick += new DevExpress.XtraBars.ItemClickEventHandler(this.barButtonItem6_ItemClick);
     //
     // barButtonItem7
     //
     this.barButtonItem7.Caption = "Báo cáo xử lý";
     this.barButtonItem7.Glyph = ((System.Drawing.Image)(resources.GetObject("barButtonItem7.Glyph")));
     this.barButtonItem7.Id = 7;
     this.barButtonItem7.LargeGlyph = ((System.Drawing.Image)(resources.GetObject("barButtonItem7.LargeGlyph")));
     this.barButtonItem7.Name = "barButtonItem7";
     this.barButtonItem7.ItemClick += new DevExpress.XtraBars.ItemClickEventHandler(this.barButtonItem7_ItemClick);
     //
     // barButtonItem8
     //
     this.barButtonItem8.Caption = "Báo cáo đánh giá";
     this.barButtonItem8.Glyph = ((System.Drawing.Image)(resources.GetObject("barButtonItem8.Glyph")));
     this.barButtonItem8.Id = 8;
     this.barButtonItem8.LargeGlyph = ((System.Drawing.Image)(resources.GetObject("barButtonItem8.LargeGlyph")));
     this.barButtonItem8.Name = "barButtonItem8";
     this.barButtonItem8.ItemClick += new DevExpress.XtraBars.ItemClickEventHandler(this.barButtonItem8_ItemClick);
     //
     // ribbonPage1
     //
     this.ribbonPage1.Groups.AddRange(new DevExpress.XtraBars.Ribbon.RibbonPageGroup[] {
     this.ribbonPageGroup1});
     this.ribbonPage1.Image = ((System.Drawing.Image)(resources.GetObject("ribbonPage1.Image")));
     this.ribbonPage1.Name = "ribbonPage1";
     this.ribbonPage1.Text = "Thông tin người dùng";
     //
     // ribbonPageGroup1
     //
     this.ribbonPageGroup1.ItemLinks.Add(this.barButtonItem3);
     this.ribbonPageGroup1.ItemLinks.Add(this.barButtonItem4);
     this.ribbonPageGroup1.ItemLinks.Add(this.barButtonItem5);
     this.ribbonPageGroup1.Name = "ribbonPageGroup1";
     this.ribbonPageGroup1.Text = "ribbonPageGroup1";
     //
     // ribbonPage2
     //
     this.ribbonPage2.Groups.AddRange(new DevExpress.XtraBars.Ribbon.RibbonPageGroup[] {
     this.ribbonPageGroup2});
     this.ribbonPage2.Image = ((System.Drawing.Image)(resources.GetObject("ribbonPage2.Image")));
     this.ribbonPage2.Name = "ribbonPage2";
     this.ribbonPage2.Text = "Công việc";
     //
     // ribbonPageGroup2
     //
     this.ribbonPageGroup2.ItemLinks.Add(this.barButtonItem1);
     this.ribbonPageGroup2.ItemLinks.Add(this.barButtonItem2);
     this.ribbonPageGroup2.Name = "ribbonPageGroup2";
     this.ribbonPageGroup2.Text = "Công việc";
     //
     // ribbonPage3
     //
     this.ribbonPage3.Groups.AddRange(new DevExpress.XtraBars.Ribbon.RibbonPageGroup[] {
     this.ribbonPageGroup3});
     this.ribbonPage3.Image = ((System.Drawing.Image)(resources.GetObject("ribbonPage3.Image")));
     this.ribbonPage3.Name = "ribbonPage3";
     this.ribbonPage3.Text = "Báo cáo";
     //
     // ribbonPageGroup3
     //
     this.ribbonPageGroup3.ItemLinks.Add(this.barButtonItem6);
     this.ribbonPageGroup3.ItemLinks.Add(this.barButtonItem7);
     this.ribbonPageGroup3.ItemLinks.Add(this.barButtonItem8);
     this.ribbonPageGroup3.Name = "ribbonPageGroup3";
     this.ribbonPageGroup3.Text = "ribbonPageGroup3";
     //
     // xtraTabbedMdiManager1
     //
     this.xtraTabbedMdiManager1.MdiParent = this;
     //
     // f003_main_PM
     //
     this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
     this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
     this.ClientSize = new System.Drawing.Size(798, 432);
     this.Controls.Add(this.ribbonControl1);
     this.Name = "f003_main_PM";
     this.Text = "main_03_PM";
     ((System.ComponentModel.ISupportInitialize)(this.ribbonControl1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.xtraTabbedMdiManager1)).EndInit();
     this.ResumeLayout(false);
     this.PerformLayout();
 }
 /// <summary>
 /// Required method for Designer support - do not modify
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     this.components = new System.ComponentModel.Container();
     this.ribbon = new DevExpress.XtraBars.Ribbon.RibbonControl();
     this.ribbonPage1 = new DevExpress.XtraBars.Ribbon.RibbonPage();
     this.ribbonPageGroup1 = new DevExpress.XtraBars.Ribbon.RibbonPageGroup();
     this.ribbonStatusBar = new DevExpress.XtraBars.Ribbon.RibbonStatusBar();
     this.gridControl1 = new DevExpress.XtraGrid.GridControl();
     this.gridView1 = new DevExpress.XtraGrid.Views.Grid.GridView();
     this.button1 = new System.Windows.Forms.Button();
     this.button2 = new System.Windows.Forms.Button();
     this.sqlDataSource1 = new DevExpress.DataAccess.Sql.SqlDataSource(this.components);
     ((System.ComponentModel.ISupportInitialize)(this.ribbon)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridControl1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridView1)).BeginInit();
     this.SuspendLayout();
     //
     // ribbon
     //
     this.ribbon.ColorScheme = DevExpress.XtraBars.Ribbon.RibbonControlColorScheme.Blue;
     this.ribbon.ExpandCollapseItem.Id = 0;
     this.ribbon.Items.AddRange(new DevExpress.XtraBars.BarItem[] {
     this.ribbon.ExpandCollapseItem});
     this.ribbon.Location = new System.Drawing.Point(0, 0);
     this.ribbon.MaxItemId = 1;
     this.ribbon.Name = "ribbon";
     this.ribbon.Pages.AddRange(new DevExpress.XtraBars.Ribbon.RibbonPage[] {
     this.ribbonPage1});
     this.ribbon.Size = new System.Drawing.Size(1378, 177);
     this.ribbon.StatusBar = this.ribbonStatusBar;
     //
     // ribbonPage1
     //
     this.ribbonPage1.Groups.AddRange(new DevExpress.XtraBars.Ribbon.RibbonPageGroup[] {
     this.ribbonPageGroup1});
     this.ribbonPage1.Name = "ribbonPage1";
     this.ribbonPage1.Text = "ribbonPage1";
     //
     // ribbonPageGroup1
     //
     this.ribbonPageGroup1.Name = "ribbonPageGroup1";
     this.ribbonPageGroup1.Text = "ribbonPageGroup1";
     //
     // ribbonStatusBar
     //
     this.ribbonStatusBar.Location = new System.Drawing.Point(0, 735);
     this.ribbonStatusBar.Name = "ribbonStatusBar";
     this.ribbonStatusBar.Ribbon = this.ribbon;
     this.ribbonStatusBar.Size = new System.Drawing.Size(1378, 42);
     //
     // gridControl1
     //
     this.gridControl1.Dock = System.Windows.Forms.DockStyle.Left;
     this.gridControl1.Location = new System.Drawing.Point(0, 177);
     this.gridControl1.MainView = this.gridView1;
     this.gridControl1.MenuManager = this.ribbon;
     this.gridControl1.Name = "gridControl1";
     this.gridControl1.Size = new System.Drawing.Size(400, 558);
     this.gridControl1.TabIndex = 2;
     this.gridControl1.ViewCollection.AddRange(new DevExpress.XtraGrid.Views.Base.BaseView[] {
     this.gridView1});
     //
     // gridView1
     //
     this.gridView1.GridControl = this.gridControl1;
     this.gridView1.Name = "gridView1";
     //
     // button1
     //
     this.button1.Location = new System.Drawing.Point(564, 424);
     this.button1.Name = "button1";
     this.button1.Size = new System.Drawing.Size(75, 23);
     this.button1.TabIndex = 5;
     this.button1.Text = "button1";
     this.button1.UseVisualStyleBackColor = true;
     this.button1.Click += new System.EventHandler(this.button1_Click);
     //
     // button2
     //
     this.button2.Location = new System.Drawing.Point(564, 499);
     this.button2.Name = "button2";
     this.button2.Size = new System.Drawing.Size(75, 23);
     this.button2.TabIndex = 5;
     this.button2.Text = "button2";
     this.button2.UseVisualStyleBackColor = true;
     this.button2.Click += new System.EventHandler(this.button2_Click);
     //
     // sqlDataSource1
     //
     this.sqlDataSource1.Name = "sqlDataSource1";
     //
     // DataGridTrial
     //
     this.AutoScaleDimensions = new System.Drawing.SizeF(7F, 16F);
     this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
     this.ClientSize = new System.Drawing.Size(1378, 777);
     this.Controls.Add(this.button2);
     this.Controls.Add(this.button1);
     this.Controls.Add(this.gridControl1);
     this.Controls.Add(this.ribbonStatusBar);
     this.Controls.Add(this.ribbon);
     this.Name = "DataGridTrial";
     this.Ribbon = this.ribbon;
     this.StatusBar = this.ribbonStatusBar;
     this.Text = "DataGridTrial";
     this.Load += new System.EventHandler(this.DataGridTrial_Load);
     ((System.ComponentModel.ISupportInitialize)(this.ribbon)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridControl1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridView1)).EndInit();
     this.ResumeLayout(false);
     this.PerformLayout();
 }
 private void InitializeComponent()
 {
     this.components = new System.ComponentModel.Container();
     System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(FrmMain));
     DevExpress.Utils.SuperToolTip superToolTip1 = new DevExpress.Utils.SuperToolTip();
     DevExpress.Utils.ToolTipItem toolTipItem1 = new DevExpress.Utils.ToolTipItem();
     DevExpress.Utils.SuperToolTip superToolTip2 = new DevExpress.Utils.SuperToolTip();
     DevExpress.Utils.ToolTipItem toolTipItem2 = new DevExpress.Utils.ToolTipItem();
     DevExpress.Utils.SuperToolTip superToolTip3 = new DevExpress.Utils.SuperToolTip();
     DevExpress.Utils.ToolTipItem toolTipItem3 = new DevExpress.Utils.ToolTipItem();
     DevExpress.Utils.SuperToolTip superToolTip4 = new DevExpress.Utils.SuperToolTip();
     DevExpress.Utils.ToolTipItem toolTipItem4 = new DevExpress.Utils.ToolTipItem();
     DevExpress.Utils.SuperToolTip superToolTip5 = new DevExpress.Utils.SuperToolTip();
     DevExpress.Utils.ToolTipItem toolTipItem5 = new DevExpress.Utils.ToolTipItem();
     DevExpress.Utils.SuperToolTip superToolTip6 = new DevExpress.Utils.SuperToolTip();
     DevExpress.Utils.ToolTipItem toolTipItem6 = new DevExpress.Utils.ToolTipItem();
     DevExpress.Utils.SuperToolTip superToolTip7 = new DevExpress.Utils.SuperToolTip();
     DevExpress.Utils.ToolTipTitleItem toolTipTitleItem1 = new DevExpress.Utils.ToolTipTitleItem();
     DevExpress.Utils.ToolTipItem toolTipItem7 = new DevExpress.Utils.ToolTipItem();
     DevExpress.Utils.SuperToolTip superToolTip8 = new DevExpress.Utils.SuperToolTip();
     DevExpress.Utils.ToolTipTitleItem toolTipTitleItem2 = new DevExpress.Utils.ToolTipTitleItem();
     DevExpress.Utils.ToolTipItem toolTipItem8 = new DevExpress.Utils.ToolTipItem();
     this.rbcMain = new DevExpress.XtraBars.Ribbon.RibbonControl();
     this.imgCollection = new DevExpress.Utils.ImageCollection(this.components);
     this.bbiKhachHang = new DevExpress.XtraBars.BarButtonItem();
     this.bbiHangHoa = new DevExpress.XtraBars.BarButtonItem();
     this.bbiNhomHang = new DevExpress.XtraBars.BarButtonItem();
     this.bbiKho = new DevExpress.XtraBars.BarButtonItem();
     this.bbiAuthor = new DevExpress.XtraBars.BarButtonItem();
     this.bbiKhuVuc = new DevExpress.XtraBars.BarButtonItem();
     this.bbiNhapKho = new DevExpress.XtraBars.BarButtonItem();
     this.bbiXuatKho = new DevExpress.XtraBars.BarButtonItem();
     this.bbiTonKho = new DevExpress.XtraBars.BarButtonItem();
     this.lblServer = new DevExpress.XtraBars.BarStaticItem();
     this.lblDatabase = new DevExpress.XtraBars.BarStaticItem();
     this.ISystem = new DevExpress.XtraBars.BarButtonItem();
     this.IInit = new DevExpress.XtraBars.BarButtonItem();
     this.IInward = new DevExpress.XtraBars.BarButtonItem();
     this.IOutward = new DevExpress.XtraBars.BarButtonItem();
     this.ITransfer = new DevExpress.XtraBars.BarButtonItem();
     this.IAdjustment = new DevExpress.XtraBars.BarButtonItem();
     this.IInventory = new DevExpress.XtraBars.BarButtonItem();
     this.IPacket = new DevExpress.XtraBars.BarButtonItem();
     this.bbiClose = new DevExpress.XtraBars.BarButtonItem();
     this.bbiUserGroup = new DevExpress.XtraBars.BarButtonItem();
     this.bbiUsers = new DevExpress.XtraBars.BarButtonItem();
     this.bbiUpdateOnline = new DevExpress.XtraBars.BarButtonItem();
     this.bbiUpdateOffline = new DevExpress.XtraBars.BarButtonItem();
     this.biiHelpNormal = new DevExpress.XtraBars.BarButtonItem();
     this.biiHelpVideo = new DevExpress.XtraBars.BarButtonItem();
     this.bbiSaoLuu = new DevExpress.XtraBars.BarButtonItem();
     this.bbiPhucHoi = new DevExpress.XtraBars.BarButtonItem();
     this.bbiXuatNhapTon = new DevExpress.XtraBars.BarButtonItem();
     this.bbiLichSu = new DevExpress.XtraBars.BarButtonItem();
     this.bbiTheKho = new DevExpress.XtraBars.BarButtonItem();
     this.bbiNhanVien = new DevExpress.XtraBars.BarButtonItem();
     this.bbiCuaHang = new DevExpress.XtraBars.BarButtonItem();
     this.bbiThuChi = new DevExpress.XtraBars.BarButtonItem();
     this.bbiCongNo = new DevExpress.XtraBars.BarButtonItem();
     this.bbiTheNo = new DevExpress.XtraBars.BarButtonItem();
     this.bbiDoanhThu = new DevExpress.XtraBars.BarButtonItem();
     this.bbiCongNoChungTu = new DevExpress.XtraBars.BarButtonItem();
     this.rbpHeThong = new DevExpress.XtraBars.Ribbon.RibbonPage();
     this.rbpgDong = new DevExpress.XtraBars.Ribbon.RibbonPageGroup();
     this.rbpDanhMuc = new DevExpress.XtraBars.Ribbon.RibbonPage();
     this.rbpgDoiTac = new DevExpress.XtraBars.Ribbon.RibbonPageGroup();
     this.rbpgKhoHang = new DevExpress.XtraBars.Ribbon.RibbonPageGroup();
     this.rbpgThongTinCuaHang = new DevExpress.XtraBars.Ribbon.RibbonPageGroup();
     this.rbpKhoHang = new DevExpress.XtraBars.Ribbon.RibbonPage();
     this.rbpgQuanLyKho = new DevExpress.XtraBars.Ribbon.RibbonPageGroup();
     this.rbpgBaoCao = new DevExpress.XtraBars.Ribbon.RibbonPageGroup();
     this.rpbgCongNo = new DevExpress.XtraBars.Ribbon.RibbonPageGroup();
     this.rpbgDoanhThu = new DevExpress.XtraBars.Ribbon.RibbonPageGroup();
     this.repositoryItemTextEdit1 = new DevExpress.XtraEditors.Repository.RepositoryItemTextEdit();
     this.rbsMain = new DevExpress.XtraBars.Ribbon.RibbonStatusBar();
     this.tabMdi = new DevExpress.XtraTabbedMdi.XtraTabbedMdiManager(this.components);
     this.ImgSmall = new DevExpress.Utils.ImageCollection(this.components);
     ((System.ComponentModel.ISupportInitialize)(this.rbcMain)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.imgCollection)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemTextEdit1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.tabMdi)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.ImgSmall)).BeginInit();
     this.SuspendLayout();
     //
     // rbcMain
     //
     this.rbcMain.ApplicationCaption = "Phần Mềm Quản Lý Kho";
     this.rbcMain.ApplicationIcon = global::Do_An_Quan_Ly_Kho.Properties.Resources._1438776525_deliverables;
     this.rbcMain.AutoSizeItems = true;
     this.rbcMain.ExpandCollapseItem.Id = 0;
     this.rbcMain.Images = this.imgCollection;
     this.rbcMain.Items.AddRange(new DevExpress.XtraBars.BarItem[] {
     this.rbcMain.ExpandCollapseItem,
     this.bbiKhachHang,
     this.bbiHangHoa,
     this.bbiNhomHang,
     this.bbiKho,
     this.bbiAuthor,
     this.bbiKhuVuc,
     this.bbiNhapKho,
     this.bbiXuatKho,
     this.bbiTonKho,
     this.lblServer,
     this.lblDatabase,
     this.ISystem,
     this.IInit,
     this.IInward,
     this.IOutward,
     this.ITransfer,
     this.IAdjustment,
     this.IInventory,
     this.IPacket,
     this.bbiClose,
     this.bbiUserGroup,
     this.bbiUsers,
     this.bbiUpdateOnline,
     this.bbiUpdateOffline,
     this.biiHelpNormal,
     this.biiHelpVideo,
     this.bbiSaoLuu,
     this.bbiPhucHoi,
     this.bbiXuatNhapTon,
     this.bbiLichSu,
     this.bbiTheKho,
     this.bbiNhanVien,
     this.bbiCuaHang,
     this.bbiThuChi,
     this.bbiCongNo,
     this.bbiTheNo,
     this.bbiDoanhThu,
     this.bbiCongNoChungTu});
     this.rbcMain.LargeImages = this.imgCollection;
     this.rbcMain.Location = new System.Drawing.Point(0, 0);
     this.rbcMain.MaxItemId = 330;
     this.rbcMain.MdiMergeStyle = DevExpress.XtraBars.Ribbon.RibbonMdiMergeStyle.Always;
     this.rbcMain.Name = "rbcMain";
     this.rbcMain.PageHeaderItemLinks.Add(this.lblServer);
     this.rbcMain.PageHeaderItemLinks.Add(this.lblDatabase);
     this.rbcMain.Pages.AddRange(new DevExpress.XtraBars.Ribbon.RibbonPage[] {
     this.rbpHeThong,
     this.rbpDanhMuc,
     this.rbpKhoHang});
     this.rbcMain.RepositoryItems.AddRange(new DevExpress.XtraEditors.Repository.RepositoryItem[] {
     this.repositoryItemTextEdit1});
     this.rbcMain.ShowCategoryInCaption = false;
     this.rbcMain.Size = new System.Drawing.Size(1016, 144);
     this.rbcMain.StatusBar = this.rbsMain;
     this.rbcMain.TransparentEditors = true;
     //
     // imgCollection
     //
     this.imgCollection.ImageSize = new System.Drawing.Size(32, 32);
     this.imgCollection.ImageStream = ((DevExpress.Utils.ImageCollectionStreamer)(resources.GetObject("imgCollection.ImageStream")));
     this.imgCollection.Images.SetKeyName(0, "Ket Thuc.png");
     this.imgCollection.Images.SetKeyName(1, "Nguoi Dung.png");
     this.imgCollection.Images.SetKeyName(2, "Phan Quyen.png");
     this.imgCollection.Images.SetKeyName(3, "Thay Doi Mat Khau.png");
     this.imgCollection.Images.SetKeyName(4, "Thong Tin.png");
     this.imgCollection.Images.SetKeyName(5, "Ton Kho.png");
     this.imgCollection.Images.SetKeyName(6, "Tuy Chon.png");
     this.imgCollection.Images.SetKeyName(7, "Import.png");
     this.imgCollection.Images.SetKeyName(8, "Khoa So.png");
     this.imgCollection.Images.SetKeyName(9, "Bo Phan.png");
     this.imgCollection.Images.SetKeyName(10, "Dinh Muc.png");
     this.imgCollection.Images.SetKeyName(11, "Don Vi Tinh.png");
     this.imgCollection.Images.SetKeyName(12, "Hang Hoa.png");
     this.imgCollection.Images.SetKeyName(13, "Khach Hang.png");
     this.imgCollection.Images.SetKeyName(14, "Kho.png");
     this.imgCollection.Images.SetKeyName(15, "Nha Phan Phoi.png");
     this.imgCollection.Images.SetKeyName(16, "Nhan Vien.png");
     this.imgCollection.Images.SetKeyName(17, "Nhom Hang.png");
     this.imgCollection.Images.SetKeyName(18, "Loai Doi Tac.png");
     this.imgCollection.Images.SetKeyName(19, "Nhom Doi Tac.png");
     this.imgCollection.Images.SetKeyName(20, "Bang Ke Chuyen Kho.png");
     this.imgCollection.Images.SetKeyName(21, "Bang Ke Kiem Ke.png");
     this.imgCollection.Images.SetKeyName(22, "Bang Ke Xuat Kho.png");
     this.imgCollection.Images.SetKeyName(23, "Bang KeNhap Kho.png");
     this.imgCollection.Images.SetKeyName(24, "Canh Bao Ton Kho.png");
     this.imgCollection.Images.SetKeyName(25, "Chuyen Kho.png");
     this.imgCollection.Images.SetKeyName(26, "Dong Goi BTP.png");
     this.imgCollection.Images.SetKeyName(27, "Kiem Ke.png");
     this.imgCollection.Images.SetKeyName(28, "Nhap Kho.png");
     this.imgCollection.Images.SetKeyName(29, "ReportWithChart256.png");
     this.imgCollection.Images.SetKeyName(30, "Ton Kho.png");
     this.imgCollection.Images.SetKeyName(31, "Xuat Kho.png");
     this.imgCollection.Images.SetKeyName(32, "Xuat Va Dong Goi.png");
     this.imgCollection.Images.SetKeyName(33, "Yeu Cau Dat Hang.png");
     this.imgCollection.Images.SetKeyName(34, "Yeu Cau Dat Hang.png");
     this.imgCollection.Images.SetKeyName(35, "Bang Ke Lap Rap.png");
     this.imgCollection.Images.SetKeyName(36, "Bang Len Ke Hoach.png");
     this.imgCollection.Images.SetKeyName(37, "Ke Hoach.png");
     this.imgCollection.Images.SetKeyName(38, "Lap Rap.png");
     this.imgCollection.Images.SetKeyName(39, "Tinh Gia Ban.png");
     this.imgCollection.Images.SetKeyName(40, "Bao Cao The Kho.png");
     this.imgCollection.Images.SetKeyName(41, "Bao Cao Ton Kho.png");
     this.imgCollection.Images.SetKeyName(42, "Duoi Dinh Muc.png");
     this.imgCollection.Images.SetKeyName(43, "Khac.png");
     this.imgCollection.Images.SetKeyName(44, "So Chi Tiet.png");
     this.imgCollection.Images.SetKeyName(45, "Vuot Dinh Muc.png");
     this.imgCollection.Images.SetKeyName(46, "Han Su Dung.png");
     this.imgCollection.Images.SetKeyName(47, "Dong Goi Thanh Pham.png");
     this.imgCollection.Images.SetKeyName(48, "Cap Nhat.png");
     this.imgCollection.Images.SetKeyName(49, "Dang Ky.png");
     this.imgCollection.Images.SetKeyName(50, "Huong Dan Su Dung.png");
     this.imgCollection.Images.SetKeyName(51, "Lien He.png");
     this.imgCollection.Images.SetKeyName(52, "Thong Tin.png");
     this.imgCollection.Images.SetKeyName(53, "Trang Chu.png");
     this.imgCollection.Images.SetKeyName(54, "Dang Ky.png");
     this.imgCollection.Images.SetKeyName(55, "databasebackup.png");
     this.imgCollection.Images.SetKeyName(56, "databaserestore.png");
     this.imgCollection.Images.SetKeyName(57, "Ban Ke Xuat Kho.png");
     this.imgCollection.Images.SetKeyName(58, "Bang Ke Nhap Kho.png");
     this.imgCollection.Images.SetKeyName(59, "Bang Ke Chuyen kho1.png");
     this.imgCollection.Images.SetKeyName(60, "Trang Chu.ico");
     this.imgCollection.Images.SetKeyName(61, "Cap Nhap Truc Tuyen.ico");
     this.imgCollection.Images.SetKeyName(62, "Huong Dan Su Dung.ico");
     this.imgCollection.Images.SetKeyName(63, "Lien He.ico");
     this.imgCollection.Images.SetKeyName(64, "Dang Xuat.png");
     this.imgCollection.Images.SetKeyName(65, "Copy of Stop.png");
     this.imgCollection.Images.SetKeyName(66, "Copy of Sync.png");
     this.imgCollection.Images.SetKeyName(67, "SuaChua.png");
     this.imgCollection.Images.SetKeyName(68, "NhatKyHeThong.png");
     this.imgCollection.Images.SetKeyName(69, "TimKiemChungTu.png");
     this.imgCollection.Images.SetKeyName(70, "16.ico");
     this.imgCollection.Images.SetKeyName(71, "database.ico");
     this.imgCollection.Images.SetKeyName(72, "StockPNG.png");
     this.imgCollection.Images.SetKeyName(73, "RibbonPrintPreview_DocumentMapLarge.png");
     this.imgCollection.Images.SetKeyName(74, "RibbonPrintPreview_CustomizeLarge.png");
     this.imgCollection.Images.SetKeyName(75, "plugin.ico");
     this.imgCollection.Images.SetKeyName(76, "Cau Hinh.png");
     this.imgCollection.Images.SetKeyName(77, "Sua Chua.png");
     this.imgCollection.Images.SetKeyName(78, "System868632.png");
     this.imgCollection.Images.SetKeyName(79, "Dossier fichier compressé32.png");
     this.imgCollection.Images.SetKeyName(80, "Barcode32.png");
     this.imgCollection.Images.SetKeyName(81, "PhanQuyen.png");
     this.imgCollection.Images.SetKeyName(82, "PhanQuyen.png");
     this.imgCollection.Images.SetKeyName(83, "1285643018_gnutella.png");
     this.imgCollection.Images.SetKeyName(84, "1285643049_network-offline.png");
     this.imgCollection.Images.SetKeyName(85, "1285643131_network-offline.png");
     this.imgCollection.Images.SetKeyName(86, "1285643150_gnutella.png");
     this.imgCollection.Images.SetKeyName(87, "1284429314_import.png");
     this.imgCollection.Images.SetKeyName(88, "1287538982_help-contents.png");
     this.imgCollection.Images.SetKeyName(89, "1287539858_page_white_world.png");
     this.imgCollection.Images.SetKeyName(90, "1287540090_video.png");
     this.imgCollection.Images.SetKeyName(91, "Lap Rap.png");
     this.imgCollection.Images.SetKeyName(92, "Yeu Cau Dat Hang.png");
     this.imgCollection.Images.SetKeyName(93, "Noi Ha.png");
     this.imgCollection.Images.SetKeyName(94, "1316226941_currencyexchange.png");
     this.imgCollection.Images.SetKeyName(95, "1323220185_home_page.png");
     this.imgCollection.Images.SetKeyName(96, "1323224048_home.png");
     this.imgCollection.Images.SetKeyName(97, "1323224110_1 - Home.png");
     this.imgCollection.Images.SetKeyName(98, "6_barcode_box.gif");
     this.imgCollection.Images.SetKeyName(99, "20-512.png");
     this.imgCollection.Images.SetKeyName(100, "1438422363_receipt.png");
     this.imgCollection.Images.SetKeyName(101, "1438776229_product.png");
     this.imgCollection.Images.SetKeyName(102, "1438776525_deliverables.png");
     this.imgCollection.Images.SetKeyName(103, "1438776535_Box_Empty.png");
     this.imgCollection.Images.SetKeyName(104, "1438776543_package-x-generic.png");
     this.imgCollection.Images.SetKeyName(105, "Address_Book.png");
     this.imgCollection.Images.SetKeyName(106, "barcode_icon (1).jpg");
     this.imgCollection.Images.SetKeyName(107, "barcode_icon.jpg");
     this.imgCollection.Images.SetKeyName(108, "connect_creating.png");
     this.imgCollection.Images.SetKeyName(109, "connect_no (1).png");
     this.imgCollection.Images.SetKeyName(110, "connect_no (2).png");
     this.imgCollection.Images.SetKeyName(111, "connect_no.png");
     this.imgCollection.Images.SetKeyName(112, "default_logo.png");
     this.imgCollection.Images.SetKeyName(113, "document-excel-icon - Copy - Copy - Copy.png");
     this.imgCollection.Images.SetKeyName(114, "document-excel-icon - Copy - Copy (2).png");
     this.imgCollection.Images.SetKeyName(115, "document-excel-icon - Copy - Copy.png");
     this.imgCollection.Images.SetKeyName(116, "document-excel-icon - Copy (2) - Copy.png");
     this.imgCollection.Images.SetKeyName(117, "document-excel-icon - Copy (2).png");
     this.imgCollection.Images.SetKeyName(118, "document-excel-icon - Copy (3).png");
     this.imgCollection.Images.SetKeyName(119, "document-excel-icon - Copy.png");
     this.imgCollection.Images.SetKeyName(120, "document-excel-icon.png");
     this.imgCollection.Images.SetKeyName(121, "Dust_factory_gas_industry_oil_plant_pollution_building_company_production_smoke-5" +
     "12 - Copy.png");
     this.imgCollection.Images.SetKeyName(122, "Dust_factory_gas_industry_oil_plant_pollution_building_company_production_smoke-5" +
     "12.png");
     this.imgCollection.Images.SetKeyName(123, "Excel-icon (1) - Copy - Copy - Copy.png");
     this.imgCollection.Images.SetKeyName(124, "Excel-icon (1) - Copy - Copy.png");
     this.imgCollection.Images.SetKeyName(125, "Excel-icon (1) - Copy.png");
     this.imgCollection.Images.SetKeyName(126, "Excel-icon (1).png");
     this.imgCollection.Images.SetKeyName(127, "Excel-icon (2) - Copy - Copy.png");
     this.imgCollection.Images.SetKeyName(128, "Excel-icon (2) - Copy.png");
     this.imgCollection.Images.SetKeyName(129, "Excel-icon (2).png");
     this.imgCollection.Images.SetKeyName(130, "Excel-icon.png");
     this.imgCollection.Images.SetKeyName(131, "file-complete-icon.png");
     this.imgCollection.Images.SetKeyName(132, "general_options.png");
     this.imgCollection.Images.SetKeyName(133, "Group-icon.png");
     this.imgCollection.Images.SetKeyName(134, "icon_company.png");
     this.imgCollection.Images.SetKeyName(135, "icon-companies.png");
     this.imgCollection.Images.SetKeyName(136, "icon-company-incorporation.png");
     this.imgCollection.Images.SetKeyName(137, "Icon-Printer.png");
     this.imgCollection.Images.SetKeyName(138, "Icon-Printer02-Black.png");
     this.imgCollection.Images.SetKeyName(139, "images.jpg");
     this.imgCollection.Images.SetKeyName(140, "location-icon-map-map-pin-icon.png");
     this.imgCollection.Images.SetKeyName(141, "map.png");
     this.imgCollection.Images.SetKeyName(142, "Multimedia_communication_flat_mobile_Technology-08-31-512.png");
     this.imgCollection.Images.SetKeyName(143, "point-512.png");
     this.imgCollection.Images.SetKeyName(144, "printer (1).png");
     this.imgCollection.Images.SetKeyName(145, "printer.png");
     this.imgCollection.Images.SetKeyName(146, "printer-icon-clip-art.jpg");
     this.imgCollection.Images.SetKeyName(147, "Receipt-2-icon.png");
     this.imgCollection.Images.SetKeyName(148, "Receipt-4-icon.png");
     this.imgCollection.Images.SetKeyName(149, "Receipt-icon.png");
     this.imgCollection.Images.SetKeyName(150, "redlaser-icon.png");
     this.imgCollection.Images.SetKeyName(151, "unnamed.png");
     this.imgCollection.Images.SetKeyName(152, "usb_port_2-512.png");
     this.imgCollection.Images.SetKeyName(153, "users-icon.png");
     this.imgCollection.Images.SetKeyName(154, "vector-printer-icon-14574274.jpg");
     this.imgCollection.Images.SetKeyName(155, "vspc-icon-256.png");
     this.imgCollection.Images.SetKeyName(156, "24-7.png");
     this.imgCollection.Images.SetKeyName(157, "A-baby-cot.png");
     this.imgCollection.Images.SetKeyName(158, "Account.png");
     this.imgCollection.Images.SetKeyName(159, "Add Event.png");
     this.imgCollection.Images.SetKeyName(160, "Alarm-clock.png");
     this.imgCollection.Images.SetKeyName(161, "A-rollaway-bed.png");
     this.imgCollection.Images.SetKeyName(162, "Autoship.png");
     this.imgCollection.Images.SetKeyName(163, "Baby.png");
     this.imgCollection.Images.SetKeyName(164, "Binary-tree.png");
     this.imgCollection.Images.SetKeyName(165, "Breakfast.png");
     this.imgCollection.Images.SetKeyName(166, "Business-info.png");
     this.imgCollection.Images.SetKeyName(167, "Calendar-selection-all.png");
     this.imgCollection.Images.SetKeyName(168, "Calendar-selection-day.png");
     this.imgCollection.Images.SetKeyName(169, "calendar-selection-month.png");
     this.imgCollection.Images.SetKeyName(170, "Calendar-selection-week.png");
     this.imgCollection.Images.SetKeyName(171, "Contact.png");
     this.imgCollection.Images.SetKeyName(172, "Couple.png");
     this.imgCollection.Images.SetKeyName(173, "Create-ticket.png");
     this.imgCollection.Images.SetKeyName(174, "Direct-walkway.png");
     this.imgCollection.Images.SetKeyName(175, "Distributor-report.png");
     this.imgCollection.Images.SetKeyName(176, "Download.png");
     this.imgCollection.Images.SetKeyName(177, "Drive.png");
     this.imgCollection.Images.SetKeyName(178, "Earning-statement.png");
     this.imgCollection.Images.SetKeyName(179, "Event-search.png");
     this.imgCollection.Images.SetKeyName(180, "Female-user-accept.png");
     this.imgCollection.Images.SetKeyName(181, "Female-user-add.png");
     this.imgCollection.Images.SetKeyName(182, "Female-user-edit.png");
     this.imgCollection.Images.SetKeyName(183, "Female-user-help.png");
     this.imgCollection.Images.SetKeyName(184, "Female-user-info.png");
     this.imgCollection.Images.SetKeyName(185, "Female-user-remove.png");
     this.imgCollection.Images.SetKeyName(186, "Female-user-search.png");
     this.imgCollection.Images.SetKeyName(187, "Female-user-warning.png");
     this.imgCollection.Images.SetKeyName(188, "Geology-view.png");
     this.imgCollection.Images.SetKeyName(189, "Globe-download.png");
     this.imgCollection.Images.SetKeyName(190, "Globe-warning.png");
     this.imgCollection.Images.SetKeyName(191, "Gift.png");
     this.imgCollection.Images.SetKeyName(192, "Insert-hyperlink.png");
     this.imgCollection.Images.SetKeyName(193, "Library.png");
     this.imgCollection.Images.SetKeyName(194, "Library2.png");
     this.imgCollection.Images.SetKeyName(195, "Link.png");
     this.imgCollection.Images.SetKeyName(196, "Mail-search.png");
     this.imgCollection.Images.SetKeyName(197, "Message-already-read.png");
     this.imgCollection.Images.SetKeyName(198, "My-tickets.png");
     this.imgCollection.Images.SetKeyName(199, "Order-history.png");
     this.imgCollection.Images.SetKeyName(200, "Ordering.png");
     this.imgCollection.Images.SetKeyName(201, "Packing1.png");
     this.imgCollection.Images.SetKeyName(202, "Payment-card.png");
     this.imgCollection.Images.SetKeyName(203, "Product-sale-report.png");
     this.imgCollection.Images.SetKeyName(204, "Rank History.png");
     this.imgCollection.Images.SetKeyName(205, "Reports.png");
     this.imgCollection.Images.SetKeyName(206, "Sales-by-payment-method.png");
     this.imgCollection.Images.SetKeyName(207, "Sales-report.png");
     this.imgCollection.Images.SetKeyName(208, "Search-globe.png");
     this.imgCollection.Images.SetKeyName(209, "Select-language.png");
     this.imgCollection.Images.SetKeyName(210, "Upline.png");
     this.imgCollection.Images.SetKeyName(211, "Upload.png");
     this.imgCollection.Images.SetKeyName(212, "Web-management.png");
     this.imgCollection.Images.SetKeyName(213, "Woman.png");
     this.imgCollection.Images.SetKeyName(214, "Zoom-in.png");
     this.imgCollection.Images.SetKeyName(215, "Zoom-out.png");
     this.imgCollection.Images.SetKeyName(216, "addons256.png");
     this.imgCollection.Images.SetKeyName(217, "analysis256.png");
     this.imgCollection.Images.SetKeyName(218, "announcements256.png");
     this.imgCollection.Images.SetKeyName(219, "attachment256.png");
     this.imgCollection.Images.SetKeyName(220, "Autocomplete256.png");
     this.imgCollection.Images.SetKeyName(221, "billboard256.png");
     this.imgCollection.Images.SetKeyName(222, "calendar-selection-all256.png");
     this.imgCollection.Images.SetKeyName(223, "calendar-selection-day256.png");
     this.imgCollection.Images.SetKeyName(224, "calendar-selection-month256.png");
     this.imgCollection.Images.SetKeyName(225, "calendar-selection-week256.png");
     this.imgCollection.Images.SetKeyName(226, "catalog256.png");
     this.imgCollection.Images.SetKeyName(227, "content256.png");
     this.imgCollection.Images.SetKeyName(228, "content-reorder256.png");
     this.imgCollection.Images.SetKeyName(229, "content-tree256.png");
     this.imgCollection.Images.SetKeyName(230, "continue256.png");
     this.imgCollection.Images.SetKeyName(231, "examples256.png");
     this.imgCollection.Images.SetKeyName(232, "file-explorer256.png");
     this.imgCollection.Images.SetKeyName(233, "Folder-Accept256.png");
     this.imgCollection.Images.SetKeyName(234, "Folder-Add256.png");
     this.imgCollection.Images.SetKeyName(235, "Folder-Delete256.png");
     this.imgCollection.Images.SetKeyName(236, "Folder-Info256.png");
     this.imgCollection.Images.SetKeyName(237, "Folder-Warning256.png");
     this.imgCollection.Images.SetKeyName(238, "glossary256.png");
     this.imgCollection.Images.SetKeyName(239, "go-into256.png");
     this.imgCollection.Images.SetKeyName(240, "hide-left256.png");
     this.imgCollection.Images.SetKeyName(241, "hide-right256.png");
     this.imgCollection.Images.SetKeyName(242, "key256.png");
     this.imgCollection.Images.SetKeyName(243, "keys256.png");
     this.imgCollection.Images.SetKeyName(244, "layout256.png");
     this.imgCollection.Images.SetKeyName(245, "locked256.png");
     this.imgCollection.Images.SetKeyName(246, "mailbox256.png");
     this.imgCollection.Images.SetKeyName(247, "maintenance256.png");
     this.imgCollection.Images.SetKeyName(248, "navigate-down256.png");
     this.imgCollection.Images.SetKeyName(249, "navigate-left256.png");
     this.imgCollection.Images.SetKeyName(250, "navigate-right256.png");
     this.imgCollection.Images.SetKeyName(251, "navigate-up256.png");
     this.imgCollection.Images.SetKeyName(252, "options256.png");
     this.imgCollection.Images.SetKeyName(253, "1438776229_product.png");
     this.imgCollection.Images.SetKeyName(254, "1438776525_deliverables.png");
     this.imgCollection.Images.SetKeyName(255, "1438776535_Box_Empty.png");
     this.imgCollection.Images.SetKeyName(256, "1438776543_package-x-generic.png");
     this.imgCollection.Images.SetKeyName(257, "1438862627_vector_65_04.png");
     this.imgCollection.Images.SetKeyName(258, "1438862630_atm-money-machine.png");
     this.imgCollection.Images.SetKeyName(259, "1438862633_atm-machine.png");
     this.imgCollection.Images.SetKeyName(260, "1438862635_Emblem-Money-64.png");
     this.imgCollection.Images.SetKeyName(261, "1438862637_safe.png");
     this.imgCollection.Images.SetKeyName(262, "1438862639_money_bag.png");
     this.imgCollection.Images.SetKeyName(263, "1438862738_7.png");
     this.imgCollection.Images.SetKeyName(264, "1438862746_list.png");
     this.imgCollection.Images.SetKeyName(265, "1438862750_download box seule.png");
     this.imgCollection.Images.SetKeyName(266, "1438862755_inventory-maintenance.png");
     this.imgCollection.Images.SetKeyName(267, "1438862762_Box.png");
     this.imgCollection.Images.SetKeyName(268, "1438862828_floppy-disk.png");
     this.imgCollection.Images.SetKeyName(269, "1438862828_vector_66_12.png");
     this.imgCollection.Images.SetKeyName(270, "1438862829_Black-Drive-Backup.png");
     this.imgCollection.Images.SetKeyName(271, "1438862831_backup.png");
     this.imgCollection.Images.SetKeyName(272, "1438862832__Drive_Restore.png");
     this.imgCollection.Images.SetKeyName(273, "1438862834_restore.png");
     this.imgCollection.Images.SetKeyName(274, "1438862836_restore_window.png");
     this.imgCollection.Images.SetKeyName(275, "Address_Book.png");
     this.imgCollection.Images.SetKeyName(276, "1438863911_box-in.png");
     this.imgCollection.Images.SetKeyName(277, "1438863913_03_In.png");
     this.imgCollection.Images.SetKeyName(278, "1438863914_open_in_browser.png");
     this.imgCollection.Images.SetKeyName(279, "1438863917_sign-out.png");
     this.imgCollection.Images.SetKeyName(280, "1438863919_sign-out.png");
     this.imgCollection.Images.SetKeyName(281, "1438863921_box-out.png");
     this.imgCollection.Images.SetKeyName(282, "1438863924_02_Out.png");
     //
     // bbiKhachHang
     //
     this.bbiKhachHang.Caption = "Khách Hàng";
     this.bbiKhachHang.Id = 25;
     this.bbiKhachHang.ImageIndex = 13;
     this.bbiKhachHang.LargeImageIndex = 198;
     this.bbiKhachHang.Name = "bbiKhachHang";
     toolTipItem1.Text = "Quản lý khách hàng";
     superToolTip1.Items.Add(toolTipItem1);
     this.bbiKhachHang.SuperTip = superToolTip1;
     this.bbiKhachHang.ItemClick += new DevExpress.XtraBars.ItemClickEventHandler(this.bbiKhachHang_ItemClick);
     //
     // bbiHangHoa
     //
     this.bbiHangHoa.Caption = "Hàng Hoá";
     this.bbiHangHoa.Id = 27;
     this.bbiHangHoa.ImageIndex = 47;
     this.bbiHangHoa.LargeImageIndex = 158;
     this.bbiHangHoa.Name = "bbiHangHoa";
     toolTipItem2.Text = "Quản lý hàng hoá, dịch vụ";
     superToolTip2.Items.Add(toolTipItem2);
     this.bbiHangHoa.SuperTip = superToolTip2;
     this.bbiHangHoa.ItemClick += new DevExpress.XtraBars.ItemClickEventHandler(this.bbiHangHoa_ItemClick);
     //
     // bbiNhomHang
     //
     this.bbiNhomHang.Caption = "Nhóm Hàng";
     this.bbiNhomHang.Id = 29;
     this.bbiNhomHang.ImageIndex = 75;
     this.bbiNhomHang.LargeImageIndex = 188;
     this.bbiNhomHang.Name = "bbiNhomHang";
     toolTipItem3.Text = "Nhóm sản phẩm";
     superToolTip3.Items.Add(toolTipItem3);
     this.bbiNhomHang.SuperTip = superToolTip3;
     this.bbiNhomHang.ItemClick += new DevExpress.XtraBars.ItemClickEventHandler(this.bbiNhomHang_ItemClick);
     //
     // bbiKho
     //
     this.bbiKho.Caption = "Kho";
     this.bbiKho.Id = 30;
     this.bbiKho.ImageIndex = 14;
     this.bbiKho.LargeImageIndex = 201;
     this.bbiKho.Name = "bbiKho";
     toolTipItem4.Text = "Quản lý kho hàng";
     superToolTip4.Items.Add(toolTipItem4);
     this.bbiKho.SuperTip = superToolTip4;
     this.bbiKho.ItemClick += new DevExpress.XtraBars.ItemClickEventHandler(this.bbiKho_ItemClick);
     //
     // bbiAuthor
     //
     this.bbiAuthor.Caption = "Tác giả";
     this.bbiAuthor.Id = 38;
     this.bbiAuthor.LargeGlyph = ((System.Drawing.Image)(resources.GetObject("bbiAuthor.LargeGlyph")));
     this.bbiAuthor.Name = "bbiAuthor";
     //
     // bbiKhuVuc
     //
     this.bbiKhuVuc.Caption = "Khu Vực";
     this.bbiKhuVuc.Id = 133;
     this.bbiKhuVuc.ImageIndex = 19;
     this.bbiKhuVuc.LargeImageIndex = 172;
     this.bbiKhuVuc.Name = "bbiKhuVuc";
     this.bbiKhuVuc.ItemClick += new DevExpress.XtraBars.ItemClickEventHandler(this.bbiKhuVuc_ItemClick);
     //
     // bbiNhapKho
     //
     this.bbiNhapKho.Caption = "Nhập";
     this.bbiNhapKho.Description = "Quản lý nhập kho";
     this.bbiNhapKho.Glyph = ((System.Drawing.Image)(resources.GetObject("bbiNhapKho.Glyph")));
     this.bbiNhapKho.Hint = "Quản lý nhập kho";
     this.bbiNhapKho.Id = 136;
     this.bbiNhapKho.LargeImageIndex = 276;
     this.bbiNhapKho.Name = "bbiNhapKho";
     toolTipItem5.Text = "Quản lý nhập kho";
     superToolTip5.Items.Add(toolTipItem5);
     this.bbiNhapKho.SuperTip = superToolTip5;
     this.bbiNhapKho.ItemClick += new DevExpress.XtraBars.ItemClickEventHandler(this.bbiNhapKho_ItemClick);
     //
     // bbiXuatKho
     //
     this.bbiXuatKho.Caption = "Xuất";
     this.bbiXuatKho.Description = "Quản lý xuất kho";
     this.bbiXuatKho.Glyph = ((System.Drawing.Image)(resources.GetObject("bbiXuatKho.Glyph")));
     this.bbiXuatKho.Hint = "Quản lý xuất kho";
     this.bbiXuatKho.Id = 138;
     this.bbiXuatKho.LargeImageIndex = 281;
     this.bbiXuatKho.Name = "bbiXuatKho";
     toolTipItem6.Text = "Quản lý xuất kho\r\n";
     superToolTip6.Items.Add(toolTipItem6);
     this.bbiXuatKho.SuperTip = superToolTip6;
     this.bbiXuatKho.ItemClick += new DevExpress.XtraBars.ItemClickEventHandler(this.bbiXuatKho_ItemClick);
     //
     // bbiTonKho
     //
     this.bbiTonKho.Caption = "Tồn Kho";
     this.bbiTonKho.Id = 187;
     this.bbiTonKho.ImageIndex = 30;
     this.bbiTonKho.LargeImageIndex = 267;
     this.bbiTonKho.Name = "bbiTonKho";
     this.bbiTonKho.ItemClick += new DevExpress.XtraBars.ItemClickEventHandler(this.bbiTonKho_ItemClick);
     //
     // lblServer
     //
     this.lblServer.Caption = "Máy Chủ: ";
     this.lblServer.Id = 227;
     this.lblServer.ImageIndex = 233;
     this.lblServer.ItemAppearance.Normal.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold);
     this.lblServer.ItemAppearance.Normal.Options.UseFont = true;
     this.lblServer.Name = "lblServer";
     toolTipTitleItem1.Text = "Nhấn đúp chuột vào để mở phần mềm quản lý cơ sở dữ liệu";
     toolTipItem7.LeftIndent = 6;
     toolTipItem7.Text = "Chú ý: mọi thao tác trên trên phần mềm quản lý cơ sở dữ liệu đều phải sao lưu dữ " +
     "liệu trước, phòng trường hợp thao tác nhằm, hoặc lỗi do sự cố ngoài ý muốn...";
     superToolTip7.Items.Add(toolTipTitleItem1);
     superToolTip7.Items.Add(toolTipItem7);
     this.lblServer.SuperTip = superToolTip7;
     this.lblServer.TextAlignment = System.Drawing.StringAlignment.Near;
     //
     // lblDatabase
     //
     this.lblDatabase.Caption = "CSDL:";
     this.lblDatabase.Id = 237;
     this.lblDatabase.ImageIndex = 273;
     this.lblDatabase.ItemAppearance.Normal.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold);
     this.lblDatabase.ItemAppearance.Normal.Options.UseFont = true;
     this.lblDatabase.Name = "lblDatabase";
     toolTipTitleItem2.Text = "Nhấn đúp chuột vào đây để sử dụng một cơ sở dữ liệu khác.";
     toolTipItem8.LeftIndent = 6;
     toolTipItem8.Text = "Chú ý: Sau khi cấu hình thành công, khởi động lại phần mềm để nạp cấu hình mới.";
     superToolTip8.Items.Add(toolTipTitleItem2);
     superToolTip8.Items.Add(toolTipItem8);
     this.lblDatabase.SuperTip = superToolTip8;
     this.lblDatabase.TextAlignment = System.Drawing.StringAlignment.Near;
     //
     // ISystem
     //
     this.ISystem.ButtonStyle = DevExpress.XtraBars.BarButtonStyle.DropDown;
     this.ISystem.Caption = "Hệ Thống";
     this.ISystem.Id = 255;
     this.ISystem.ImageIndex = 78;
     this.ISystem.LargeImageIndex = 78;
     this.ISystem.Name = "ISystem";
     this.ISystem.RibbonStyle = DevExpress.XtraBars.Ribbon.RibbonItemStyles.SmallWithText;
     //
     // IInit
     //
     this.IInit.ButtonStyle = DevExpress.XtraBars.BarButtonStyle.DropDown;
     this.IInit.Caption = "Nhập Số Dư Ban Đầu";
     this.IInit.Id = 256;
     this.IInit.ImageIndex = 79;
     this.IInit.LargeImageIndex = 79;
     this.IInit.Name = "IInit";
     this.IInit.RibbonStyle = DevExpress.XtraBars.Ribbon.RibbonItemStyles.SmallWithText;
     //
     // IInward
     //
     this.IInward.ButtonStyle = DevExpress.XtraBars.BarButtonStyle.DropDown;
     this.IInward.Caption = "Nhập Kho";
     this.IInward.Id = 257;
     this.IInward.ImageIndex = 28;
     this.IInward.LargeImageIndex = 28;
     this.IInward.Name = "IInward";
     this.IInward.RibbonStyle = DevExpress.XtraBars.Ribbon.RibbonItemStyles.SmallWithText;
     //
     // IOutward
     //
     this.IOutward.ButtonStyle = DevExpress.XtraBars.BarButtonStyle.DropDown;
     this.IOutward.Caption = "Xuất Kho";
     this.IOutward.Id = 258;
     this.IOutward.ImageIndex = 31;
     this.IOutward.LargeImageIndex = 31;
     this.IOutward.Name = "IOutward";
     this.IOutward.RibbonStyle = DevExpress.XtraBars.Ribbon.RibbonItemStyles.SmallWithText;
     //
     // ITransfer
     //
     this.ITransfer.ButtonStyle = DevExpress.XtraBars.BarButtonStyle.DropDown;
     this.ITransfer.Caption = "Chuyển Kho";
     this.ITransfer.Id = 259;
     this.ITransfer.ImageIndex = 25;
     this.ITransfer.LargeImageIndex = 25;
     this.ITransfer.Name = "ITransfer";
     this.ITransfer.RibbonStyle = DevExpress.XtraBars.Ribbon.RibbonItemStyles.SmallWithText;
     //
     // IAdjustment
     //
     this.IAdjustment.ButtonStyle = DevExpress.XtraBars.BarButtonStyle.DropDown;
     this.IAdjustment.Caption = "Kiểm Kê";
     this.IAdjustment.Id = 260;
     this.IAdjustment.ImageIndex = 27;
     this.IAdjustment.LargeImageIndex = 27;
     this.IAdjustment.Name = "IAdjustment";
     this.IAdjustment.RibbonStyle = DevExpress.XtraBars.Ribbon.RibbonItemStyles.SmallWithText;
     //
     // IInventory
     //
     this.IInventory.ButtonStyle = DevExpress.XtraBars.BarButtonStyle.DropDown;
     this.IInventory.Caption = "Tồn Kho";
     this.IInventory.Id = 261;
     this.IInventory.ImageIndex = 30;
     this.IInventory.LargeImageIndex = 30;
     this.IInventory.Name = "IInventory";
     this.IInventory.RibbonStyle = DevExpress.XtraBars.Ribbon.RibbonItemStyles.SmallWithText;
     //
     // IPacket
     //
     this.IPacket.ButtonStyle = DevExpress.XtraBars.BarButtonStyle.DropDown;
     this.IPacket.Caption = "Đóng Gói";
     this.IPacket.Id = 264;
     this.IPacket.ImageIndex = 26;
     this.IPacket.LargeImageIndex = 26;
     this.IPacket.Name = "IPacket";
     //
     // bbiClose
     //
     this.bbiClose.Caption = "Kết Thúc";
     this.bbiClose.Description = "Kết thúc";
     this.bbiClose.Hint = "Kết thúc";
     this.bbiClose.Id = 132;
     this.bbiClose.ImageIndex = 0;
     this.bbiClose.LargeImageIndex = 239;
     this.bbiClose.Name = "bbiClose";
     this.bbiClose.ItemClick += new DevExpress.XtraBars.ItemClickEventHandler(this.BbiCloseItemClick);
     //
     // bbiUserGroup
     //
     this.bbiUserGroup.Caption = "Vai Trò && Quyền Hạn";
     this.bbiUserGroup.Id = 295;
     this.bbiUserGroup.ImageIndex = 2;
     this.bbiUserGroup.LargeImageIndex = 2;
     this.bbiUserGroup.Name = "bbiUserGroup";
     this.bbiUserGroup.Visibility = DevExpress.XtraBars.BarItemVisibility.Never;
     //
     // bbiUsers
     //
     this.bbiUsers.Caption = "Người Dùng";
     this.bbiUsers.Id = 296;
     this.bbiUsers.ImageIndex = 1;
     this.bbiUsers.LargeImageIndex = 1;
     this.bbiUsers.Name = "bbiUsers";
     this.bbiUsers.Visibility = DevExpress.XtraBars.BarItemVisibility.Never;
     //
     // bbiUpdateOnline
     //
     this.bbiUpdateOnline.Caption = "Cập Nhật Trực Tuyến";
     this.bbiUpdateOnline.Id = 300;
     this.bbiUpdateOnline.ImageIndex = 86;
     this.bbiUpdateOnline.Name = "bbiUpdateOnline";
     //
     // bbiUpdateOffline
     //
     this.bbiUpdateOffline.Caption = "Cập Nhật Thông Thường";
     this.bbiUpdateOffline.Id = 301;
     this.bbiUpdateOffline.ImageIndex = 85;
     this.bbiUpdateOffline.Name = "bbiUpdateOffline";
     //
     // biiHelpNormal
     //
     this.biiHelpNormal.Caption = "Tài Liệu Hướng Dẫn";
     this.biiHelpNormal.Id = 306;
     this.biiHelpNormal.ImageIndex = 89;
     this.biiHelpNormal.LargeImageIndex = 89;
     this.biiHelpNormal.Name = "biiHelpNormal";
     //
     // biiHelpVideo
     //
     this.biiHelpVideo.Caption = "Video Hướng Dẫn";
     this.biiHelpVideo.Id = 307;
     this.biiHelpVideo.ImageIndex = 90;
     this.biiHelpVideo.LargeImageIndex = 90;
     this.biiHelpVideo.Name = "biiHelpVideo";
     //
     // bbiSaoLuu
     //
     this.bbiSaoLuu.Caption = "Sao Lưu";
     this.bbiSaoLuu.Id = 315;
     this.bbiSaoLuu.ImageIndex = 55;
     this.bbiSaoLuu.LargeImageIndex = 177;
     this.bbiSaoLuu.Name = "bbiSaoLuu";
     this.bbiSaoLuu.ItemClick += new DevExpress.XtraBars.ItemClickEventHandler(this.bbiBackUp_ItemClick);
     //
     // bbiPhucHoi
     //
     this.bbiPhucHoi.Caption = "Phục Hồi";
     this.bbiPhucHoi.Id = 316;
     this.bbiPhucHoi.ImageIndex = 56;
     this.bbiPhucHoi.LargeImageIndex = 271;
     this.bbiPhucHoi.Name = "bbiPhucHoi";
     this.bbiPhucHoi.ItemClick += new DevExpress.XtraBars.ItemClickEventHandler(this.bbiPhucHoi_ItemClick);
     //
     // bbiXuatNhapTon
     //
     this.bbiXuatNhapTon.Caption = "Xuất Nhập Tồn";
     this.bbiXuatNhapTon.Id = 318;
     this.bbiXuatNhapTon.ImageIndex = 33;
     this.bbiXuatNhapTon.LargeImageIndex = 103;
     this.bbiXuatNhapTon.Name = "bbiXuatNhapTon";
     this.bbiXuatNhapTon.ItemClick += new DevExpress.XtraBars.ItemClickEventHandler(this.bbiXuatNhapTon_ItemClick);
     //
     // bbiLichSu
     //
     this.bbiLichSu.Caption = "Lịch Sử";
     this.bbiLichSu.Id = 319;
     this.bbiLichSu.ImageIndex = 68;
     this.bbiLichSu.LargeImageIndex = 238;
     this.bbiLichSu.Name = "bbiLichSu";
     this.bbiLichSu.ItemClick += new DevExpress.XtraBars.ItemClickEventHandler(this.bbiLichSu_ItemClick);
     //
     // bbiTheKho
     //
     this.bbiTheKho.Caption = "Thẻ Kho";
     this.bbiTheKho.Id = 320;
     this.bbiTheKho.ImageIndex = 26;
     this.bbiTheKho.LargeImageIndex = 218;
     this.bbiTheKho.Name = "bbiTheKho";
     this.bbiTheKho.ItemClick += new DevExpress.XtraBars.ItemClickEventHandler(this.bbiTheKho_ItemClick);
     //
     // bbiNhanVien
     //
     this.bbiNhanVien.Caption = "Nhân Viên";
     this.bbiNhanVien.Id = 322;
     this.bbiNhanVien.LargeImageIndex = 163;
     this.bbiNhanVien.Name = "bbiNhanVien";
     this.bbiNhanVien.ItemClick += new DevExpress.XtraBars.ItemClickEventHandler(this.bbiNhanVien_ItemClick);
     //
     // bbiCuaHang
     //
     this.bbiCuaHang.Caption = "Cửa Hàng";
     this.bbiCuaHang.Id = 323;
     this.bbiCuaHang.LargeImageIndex = 246;
     this.bbiCuaHang.Name = "bbiCuaHang";
     this.bbiCuaHang.ItemClick += new DevExpress.XtraBars.ItemClickEventHandler(this.bbiCuaHang_ItemClick);
     //
     // bbiThuChi
     //
     this.bbiThuChi.Caption = "Thu Chi";
     this.bbiThuChi.Id = 324;
     this.bbiThuChi.ImageIndex = 39;
     this.bbiThuChi.LargeImageIndex = 147;
     this.bbiThuChi.Name = "bbiThuChi";
     this.bbiThuChi.ItemClick += new DevExpress.XtraBars.ItemClickEventHandler(this.bbiThuChi_ItemClick);
     //
     // bbiCongNo
     //
     this.bbiCongNo.Caption = "Công Nợ";
     this.bbiCongNo.Id = 325;
     this.bbiCongNo.LargeImageIndex = 262;
     this.bbiCongNo.Name = "bbiCongNo";
     this.bbiCongNo.ItemClick += new DevExpress.XtraBars.ItemClickEventHandler(this.bbiCongNo_ItemClick);
     //
     // bbiTheNo
     //
     this.bbiTheNo.Caption = "Thẻ Nợ";
     this.bbiTheNo.Id = 326;
     this.bbiTheNo.LargeImageIndex = 257;
     this.bbiTheNo.Name = "bbiTheNo";
     this.bbiTheNo.ItemClick += new DevExpress.XtraBars.ItemClickEventHandler(this.bbiTheNo_ItemClick);
     //
     // bbiDoanhThu
     //
     this.bbiDoanhThu.Caption = "Doanh Thu";
     this.bbiDoanhThu.Id = 328;
     this.bbiDoanhThu.LargeImageIndex = 263;
     this.bbiDoanhThu.Name = "bbiDoanhThu";
     this.bbiDoanhThu.ItemClick += new DevExpress.XtraBars.ItemClickEventHandler(this.bbiDoanhThu_ItemClick);
     //
     // bbiCongNoChungTu
     //
     this.bbiCongNoChungTu.Caption = "Công Nợ Chứng Từ";
     this.bbiCongNoChungTu.Id = 329;
     this.bbiCongNoChungTu.LargeImageIndex = 93;
     this.bbiCongNoChungTu.Name = "bbiCongNoChungTu";
     this.bbiCongNoChungTu.ItemClick += new DevExpress.XtraBars.ItemClickEventHandler(this.bbiCongNoChungTu_ItemClick);
     //
     // rbpHeThong
     //
     this.rbpHeThong.Groups.AddRange(new DevExpress.XtraBars.Ribbon.RibbonPageGroup[] {
     this.rbpgDong});
     this.rbpHeThong.Name = "rbpHeThong";
     this.rbpHeThong.Text = "Hệ Thống";
     //
     // rbpgDong
     //
     this.rbpgDong.ItemLinks.Add(this.bbiClose);
     this.rbpgDong.ItemLinks.Add(this.bbiSaoLuu);
     this.rbpgDong.ItemLinks.Add(this.bbiPhucHoi);
     this.rbpgDong.KeyTip = "KE";
     this.rbpgDong.Name = "rbpgDong";
     this.rbpgDong.ShowCaptionButton = false;
     this.rbpgDong.Text = "Hệ Thống";
     //
     // rbpDanhMuc
     //
     this.rbpDanhMuc.Groups.AddRange(new DevExpress.XtraBars.Ribbon.RibbonPageGroup[] {
     this.rbpgDoiTac,
     this.rbpgKhoHang,
     this.rbpgThongTinCuaHang});
     this.rbpDanhMuc.Name = "rbpDanhMuc";
     this.rbpDanhMuc.Text = "Danh Mục";
     //
     // rbpgDoiTac
     //
     this.rbpgDoiTac.ItemLinks.Add(this.bbiKhuVuc);
     this.rbpgDoiTac.ItemLinks.Add(this.bbiKhachHang);
     this.rbpgDoiTac.Name = "rbpgDoiTac";
     this.rbpgDoiTac.ShowCaptionButton = false;
     this.rbpgDoiTac.Text = "Đối Tác";
     //
     // rbpgKhoHang
     //
     this.rbpgKhoHang.ItemLinks.Add(this.bbiKho);
     this.rbpgKhoHang.ItemLinks.Add(this.bbiNhomHang);
     this.rbpgKhoHang.ItemLinks.Add(this.bbiHangHoa);
     this.rbpgKhoHang.Name = "rbpgKhoHang";
     this.rbpgKhoHang.ShowCaptionButton = false;
     this.rbpgKhoHang.Text = "Kho Hàng";
     //
     // rbpgThongTinCuaHang
     //
     this.rbpgThongTinCuaHang.ItemLinks.Add(this.bbiNhanVien);
     this.rbpgThongTinCuaHang.ItemLinks.Add(this.bbiCuaHang);
     this.rbpgThongTinCuaHang.Name = "rbpgThongTinCuaHang";
     this.rbpgThongTinCuaHang.Text = "Thông Tin Cửa Hàng";
     //
     // rbpKhoHang
     //
     this.rbpKhoHang.Groups.AddRange(new DevExpress.XtraBars.Ribbon.RibbonPageGroup[] {
     this.rbpgQuanLyKho,
     this.rbpgBaoCao,
     this.rpbgCongNo,
     this.rpbgDoanhThu});
     this.rbpKhoHang.Name = "rbpKhoHang";
     this.rbpKhoHang.Text = "Kho Hàng";
     //
     // rbpgQuanLyKho
     //
     this.rbpgQuanLyKho.ItemLinks.Add(this.bbiNhapKho);
     this.rbpgQuanLyKho.ItemLinks.Add(this.bbiXuatKho);
     this.rbpgQuanLyKho.Name = "rbpgQuanLyKho";
     this.rbpgQuanLyKho.ShowCaptionButton = false;
     this.rbpgQuanLyKho.Text = "Quản Lý Kho";
     //
     // rbpgBaoCao
     //
     this.rbpgBaoCao.ItemLinks.Add(this.bbiTonKho);
     this.rbpgBaoCao.ItemLinks.Add(this.bbiXuatNhapTon);
     this.rbpgBaoCao.ItemLinks.Add(this.bbiTheKho);
     this.rbpgBaoCao.ItemLinks.Add(this.bbiLichSu);
     this.rbpgBaoCao.Name = "rbpgBaoCao";
     this.rbpgBaoCao.Text = "Báo Cáo";
     //
     // rpbgCongNo
     //
     this.rpbgCongNo.ItemLinks.Add(this.bbiThuChi);
     this.rpbgCongNo.ItemLinks.Add(this.bbiCongNo);
     this.rpbgCongNo.ItemLinks.Add(this.bbiTheNo);
     this.rpbgCongNo.ItemLinks.Add(this.bbiCongNoChungTu);
     this.rpbgCongNo.Name = "rpbgCongNo";
     this.rpbgCongNo.Text = "Công Nợ";
     //
     // rpbgDoanhThu
     //
     this.rpbgDoanhThu.ItemLinks.Add(this.bbiDoanhThu);
     this.rpbgDoanhThu.Name = "rpbgDoanhThu";
     this.rpbgDoanhThu.Text = "Doanh Thu";
     //
     // repositoryItemTextEdit1
     //
     this.repositoryItemTextEdit1.AutoHeight = false;
     this.repositoryItemTextEdit1.Name = "repositoryItemTextEdit1";
     //
     // rbsMain
     //
     this.rbsMain.Location = new System.Drawing.Point(0, 736);
     this.rbsMain.Name = "rbsMain";
     this.rbsMain.Ribbon = this.rbcMain;
     this.rbsMain.Size = new System.Drawing.Size(1016, 31);
     //
     // tabMdi
     //
     this.tabMdi.ClosePageButtonShowMode = DevExpress.XtraTab.ClosePageButtonShowMode.InAllTabPagesAndTabControlHeader;
     this.tabMdi.HeaderButtons = ((DevExpress.XtraTab.TabButtons)((((DevExpress.XtraTab.TabButtons.Prev | DevExpress.XtraTab.TabButtons.Next)
     | DevExpress.XtraTab.TabButtons.Close)
     | DevExpress.XtraTab.TabButtons.Default)));
     this.tabMdi.HeaderButtonsShowMode = DevExpress.XtraTab.TabButtonShowMode.Always;
     this.tabMdi.HeaderOrientation = DevExpress.XtraTab.TabOrientation.Horizontal;
     this.tabMdi.MdiParent = this;
     this.tabMdi.SetNextMdiChildMode = DevExpress.XtraTabbedMdi.SetNextMdiChildMode.Windows;
     this.tabMdi.ShowHeaderFocus = DevExpress.Utils.DefaultBoolean.True;
     this.tabMdi.ShowToolTips = DevExpress.Utils.DefaultBoolean.True;
     //
     // ImgSmall
     //
     this.ImgSmall.ImageStream = ((DevExpress.Utils.ImageCollectionStreamer)(resources.GetObject("ImgSmall.ImageStream")));
     this.ImgSmall.Images.SetKeyName(0, "Ket Thuc.png");
     this.ImgSmall.Images.SetKeyName(1, "1285643018_gnutella.png");
     this.ImgSmall.Images.SetKeyName(2, "1285643049_network-offline.png");
     this.ImgSmall.Images.SetKeyName(3, "1284429314_import.png");
     this.ImgSmall.Images.SetKeyName(4, "1287538982_help-contents.png");
     //
     // FrmMain
     //
     this.ClientSize = new System.Drawing.Size(1016, 767);
     this.Controls.Add(this.rbsMain);
     this.Controls.Add(this.rbcMain);
     this.Icon = ((System.Drawing.Icon)(resources.GetObject("$this.Icon")));
     this.IsMdiContainer = true;
     this.Name = "FrmMain";
     this.Ribbon = this.rbcMain;
     this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen;
     this.StatusBar = this.rbsMain;
     this.Text = "Phần Mềm Quản Lý Kho";
     this.WindowState = System.Windows.Forms.FormWindowState.Maximized;
     ((System.ComponentModel.ISupportInitialize)(this.rbcMain)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.imgCollection)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemTextEdit1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.tabMdi)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.ImgSmall)).EndInit();
     this.ResumeLayout(false);
     this.PerformLayout();
 }
 /// <summary>
 /// Required method for Designer support - do not modify
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     this.components = new System.ComponentModel.Container();
     System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(RoleDetailFrm));
     this.groupControlUpdate = new DevExpress.XtraEditors.GroupControl();
     this.appMenu = new DevExpress.XtraBars.Ribbon.ApplicationMenu(this.components);
     this.popupControlContainer2 = new DevExpress.XtraBars.PopupControlContainer(this.components);
     this.buttonEdit = new DevExpress.XtraEditors.ButtonEdit();
     this.popupControlContainer1 = new DevExpress.XtraBars.PopupControlContainer(this.components);
     this.someLabelControl2 = new DevExpress.XtraEditors.LabelControl();
     this.someLabelControl1 = new DevExpress.XtraEditors.LabelControl();
     this.groupControl2 = new DevExpress.XtraEditors.GroupControl();
     this.CEUpdate = new DevExpress.XtraEditors.CheckEdit();
     this.CESelect = new DevExpress.XtraEditors.CheckEdit();
     this.CEDelete = new DevExpress.XtraEditors.CheckEdit();
     this.CEInsert = new DevExpress.XtraEditors.CheckEdit();
     this.groupControlSelect = new DevExpress.XtraEditors.GroupControl();
     this.LUEItems = new DevExpress.XtraEditors.LookUpEdit();
     this.rolesBindingSource = new System.Windows.Forms.BindingSource(this.components);
     this.dsRetirementCenter = new RetirementCenter.DataSources.dsRetirementCenter();
     this.labelControl1 = new DevExpress.XtraEditors.LabelControl();
     this.roleDetialTableAdapter = new RetirementCenter.DataSources.dsRetirementCenterTableAdapters.RoleDetialTableAdapter();
     this.rolesTableAdapter = new RetirementCenter.DataSources.dsRetirementCenterTableAdapters.RolesTableAdapter();
     this.ribbonControl = new DevExpress.XtraBars.Ribbon.RibbonControl();
     this.ribbonImageCollection = new DevExpress.Utils.ImageCollection(this.components);
     this.mbRetCenterExit = new DevExpress.XtraBars.BarButtonItem();
     this.mbRetCenterHelp = new DevExpress.XtraBars.BarButtonItem();
     this.mbRetCenterAbout = new DevExpress.XtraBars.BarButtonItem();
     this.mbRetCenterStatus = new DevExpress.XtraBars.BarStaticItem();
     this.mbRetCenterInfo = new DevExpress.XtraBars.BarStaticItem();
     this.mbRetCenterSkins = new DevExpress.XtraBars.RibbonGalleryBarItem();
     this.mbRetCenterDBChange = new DevExpress.XtraBars.BarButtonItem();
     this.mbRetCenterReports = new DevExpress.XtraBars.BarEditItem();
     this.mbRetCenterCDGov = new DevExpress.XtraBars.BarButtonItem();
     this.mbRetCenterCDMarkez = new DevExpress.XtraBars.BarButtonItem();
     this.mbRetCenterCDSyndicate = new DevExpress.XtraBars.BarButtonItem();
     this.mbRetCenterCDSubCommitte = new DevExpress.XtraBars.BarButtonItem();
     this.mbRetCenterCDJop = new DevExpress.XtraBars.BarButtonItem();
     this.mbRetCenterCDBirthPlace = new DevExpress.XtraBars.BarButtonItem();
     this.mbRetCenterCDJobDescription = new DevExpress.XtraBars.BarButtonItem();
     this.mbRetCenterCDGehaType = new DevExpress.XtraBars.BarButtonItem();
     this.mbRetCenterCDModerea = new DevExpress.XtraBars.BarButtonItem();
     this.mbRetCenterCDGeha = new DevExpress.XtraBars.BarButtonItem();
     this.mbRetCenterCDQualification = new DevExpress.XtraBars.BarButtonItem();
     this.mbRetCenterCDSpecialization = new DevExpress.XtraBars.BarButtonItem();
     this.mbRetCenterCDEDARET = new DevExpress.XtraBars.BarButtonItem();
     this.mbRetCenterCDEstefaaKed = new DevExpress.XtraBars.BarButtonItem();
     this.mbRetCenterDataMember = new DevExpress.XtraBars.BarSubItem();
     this.mbRetCenterTBLMashat = new DevExpress.XtraBars.BarButtonItem();
     this.mbRetCenterTBLMashatNIDFastEdit = new DevExpress.XtraBars.BarButtonItem();
     this.mbRetCenterTBLWarasaNIDFastEditFrm = new DevExpress.XtraBars.BarButtonItem();
     this.mbRetCenterRemoveTBLMashatNID = new DevExpress.XtraBars.BarButtonItem();
     this.mbRetCenterRemoveTBLWarasaNID = new DevExpress.XtraBars.BarButtonItem();
     this.mbRetCenterTBLWarasaFastEdit2 = new DevExpress.XtraBars.BarButtonItem();
     this.mbRetCenterJobs = new DevExpress.XtraBars.BarSubItem();
     this.mbRetCenterCDJobtitle = new DevExpress.XtraBars.BarButtonItem();
     this.mbRetCenterCDAttachmentType = new DevExpress.XtraBars.BarButtonItem();
     this.mbRetCenterRoles = new DevExpress.XtraBars.BarButtonItem();
     this.mbRetCenterUsers = new DevExpress.XtraBars.BarButtonItem();
     this.mbRetCenterUserRoles = new DevExpress.XtraBars.BarButtonItem();
     this.mbRetCenterRoleDetail = new DevExpress.XtraBars.BarButtonItem();
     this.mbRetCenterAppOptions = new DevExpress.XtraBars.BarButtonItem();
     this.mbRetCenterPasswordChanger = new DevExpress.XtraBars.BarButtonItem();
     this.mbRetCenterImportFromAccessFrm = new DevExpress.XtraBars.BarButtonItem();
     this.mbRetCenterRoleSyndicate = new DevExpress.XtraBars.BarButtonItem();
     this.mbRetCenterQry01 = new DevExpress.XtraBars.BarButtonItem();
     this.mbRetCenterQry02 = new DevExpress.XtraBars.BarButtonItem();
     this.mbRetCenterCDsarfType = new DevExpress.XtraBars.BarButtonItem();
     this.mbRetCenterTBLDofatSarf = new DevExpress.XtraBars.BarButtonItem();
     this.mbRetCenterXRep01 = new DevExpress.XtraBars.BarButtonItem();
     this.mbRetCenterQry03 = new DevExpress.XtraBars.BarButtonItem();
     this.mbRetCenterQry04 = new DevExpress.XtraBars.BarButtonItem();
     this.mbRetCenterQry05 = new DevExpress.XtraBars.BarButtonItem();
     this.mbRetCenterTBLMemberSarf = new DevExpress.XtraBars.BarButtonItem();
     this.mbRetCenterPrepareDofaa = new DevExpress.XtraBars.BarSubItem();
     this.mbRetCenterTBLWarasaSarf = new DevExpress.XtraBars.BarButtonItem();
     this.mbRetCenterTBLFrookWarasa = new DevExpress.XtraBars.BarButtonItem();
     this.mbRetCenterTBLFrookWarasaAdmin = new DevExpress.XtraBars.BarButtonItem();
     this.mbRetCenterTBLMemberSarf_arshef = new DevExpress.XtraBars.BarButtonItem();
     this.mbRetCenterTBLWarasaSarf_arshef = new DevExpress.XtraBars.BarButtonItem();
     this.mbRetCenterXRep02a = new DevExpress.XtraBars.BarButtonItem();
     this.mbRetCenterXRep03a = new DevExpress.XtraBars.BarButtonItem();
     this.mbRetCenterSarfyaA3da2 = new DevExpress.XtraBars.BarSubItem();
     this.mbRetCenterXRep02b = new DevExpress.XtraBars.BarButtonItem();
     this.mbRetCenterXRep02c = new DevExpress.XtraBars.BarButtonItem();
     this.mbRetCenterXRep02d = new DevExpress.XtraBars.BarButtonItem();
     this.mbRetCenterSarfyaWarasa = new DevExpress.XtraBars.BarSubItem();
     this.mbRetCenterXRep03b = new DevExpress.XtraBars.BarButtonItem();
     this.mbRetCenterXRep03c = new DevExpress.XtraBars.BarButtonItem();
     this.mbRetCenterXRep03d = new DevExpress.XtraBars.BarButtonItem();
     this.mbRetCenterDofatSarfActivity = new DevExpress.XtraBars.BarButtonItem();
     this.mbRetCenterXRep05 = new DevExpress.XtraBars.BarButtonItem();
     this.mbRetCenterQry06 = new DevExpress.XtraBars.BarButtonItem();
     this.mbRetCenterُErrorQry = new DevExpress.XtraBars.BarSubItem();
     this.mbRetCenterQry07 = new DevExpress.XtraBars.BarButtonItem();
     this.mbRetCenterQry08 = new DevExpress.XtraBars.BarButtonItem();
     this.mbRetCenterQry09 = new DevExpress.XtraBars.BarButtonItem();
     this.mbRetCenterQry11 = new DevExpress.XtraBars.BarButtonItem();
     this.mbRetCenterQry12 = new DevExpress.XtraBars.BarButtonItem();
     this.mbRetCenterQry13 = new DevExpress.XtraBars.BarButtonItem();
     this.mbRetCenterQry14 = new DevExpress.XtraBars.BarButtonItem();
     this.mbRetCenterQry15 = new DevExpress.XtraBars.BarButtonItem();
     this.mbRetCenterQry16 = new DevExpress.XtraBars.BarButtonItem();
     this.mbRetCenterQry17 = new DevExpress.XtraBars.BarButtonItem();
     this.mbRetCenterQry18 = new DevExpress.XtraBars.BarButtonItem();
     this.mbRetCenterQry35 = new DevExpress.XtraBars.BarButtonItem();
     this.mbRetCenterQry112 = new DevExpress.XtraBars.BarButtonItem();
     this.mbRetCenterXRep06 = new DevExpress.XtraBars.BarButtonItem();
     this.mbRetCenterQry10 = new DevExpress.XtraBars.BarButtonItem();
     this.mbRetCenterQry19 = new DevExpress.XtraBars.BarButtonItem();
     this.mbRetCenterQry20 = new DevExpress.XtraBars.BarButtonItem();
     this.mbRetCenterQry21 = new DevExpress.XtraBars.BarButtonItem();
     this.mbRetCenterXRep07 = new DevExpress.XtraBars.BarButtonItem();
     this.mbRetCenterTblMemberAmanat = new DevExpress.XtraBars.BarButtonItem();
     this.mbRetCenterTblWarasaAmanat = new DevExpress.XtraBars.BarButtonItem();
     this.mbRetCenterQry22 = new DevExpress.XtraBars.BarButtonItem();
     this.mbRetCenterQry23 = new DevExpress.XtraBars.BarButtonItem();
     this.mbRetCenterQry24 = new DevExpress.XtraBars.BarButtonItem();
     this.mbRetCenterQry25 = new DevExpress.XtraBars.BarButtonItem();
     this.mbRetCenterQry26 = new DevExpress.XtraBars.BarButtonItem();
     this.mbRetCenterQry27 = new DevExpress.XtraBars.BarButtonItem();
     this.mbRetCenterQry28 = new DevExpress.XtraBars.BarButtonItem();
     this.mbRetCenterTBLMemberSarf_arshefDelete = new DevExpress.XtraBars.BarButtonItem();
     this.mbRetCenterarchef = new DevExpress.XtraBars.BarSubItem();
     this.mbRetCenterTBLWarasaSarf_arshefDelete = new DevExpress.XtraBars.BarButtonItem();
     this.mbRetCenterXRep08 = new DevExpress.XtraBars.BarButtonItem();
     this.mbRetCenterStatis = new DevExpress.XtraBars.BarSubItem();
     this.mbRetCenterQry31 = new DevExpress.XtraBars.BarButtonItem();
     this.mbRetCenterQry32 = new DevExpress.XtraBars.BarButtonItem();
     this.mbRetCenterQry33 = new DevExpress.XtraBars.BarButtonItem();
     this.mbRetCenterQryPart1 = new DevExpress.XtraBars.BarSubItem();
     this.mbRetCenterQry55 = new DevExpress.XtraBars.BarButtonItem();
     this.mbRetCenterQry56 = new DevExpress.XtraBars.BarButtonItem();
     this.mbRetCenterQryPart2 = new DevExpress.XtraBars.BarSubItem();
     this.mbRetCenterQry34 = new DevExpress.XtraBars.BarButtonItem();
     this.mbRetCenterQry36 = new DevExpress.XtraBars.BarButtonItem();
     this.mbRetCenterQry37 = new DevExpress.XtraBars.BarButtonItem();
     this.mbRetCenterQry38 = new DevExpress.XtraBars.BarButtonItem();
     this.mbRetCenterQry39 = new DevExpress.XtraBars.BarButtonItem();
     this.mbRetCenterQry38a = new DevExpress.XtraBars.BarButtonItem();
     this.mbRetCenterQry38b = new DevExpress.XtraBars.BarButtonItem();
     this.mbRetCenterQry38c = new DevExpress.XtraBars.BarButtonItem();
     this.mbRetCenterQry40 = new DevExpress.XtraBars.BarButtonItem();
     this.mbRetCenterQry41 = new DevExpress.XtraBars.BarButtonItem();
     this.mbRetCenterQry61 = new DevExpress.XtraBars.BarButtonItem();
     this.mbRetCenterQry66 = new DevExpress.XtraBars.BarButtonItem();
     this.mbRetCenterQry62 = new DevExpress.XtraBars.BarButtonItem();
     this.mbRetCenterQry38d = new DevExpress.XtraBars.BarButtonItem();
     this.mbRetCenterQry38e = new DevExpress.XtraBars.BarButtonItem();
     this.mbRetCenterTblChekNid = new DevExpress.XtraBars.BarButtonItem();
     this.mbRetCenterQry42 = new DevExpress.XtraBars.BarButtonItem();
     this.mbRetCenterQry43 = new DevExpress.XtraBars.BarButtonItem();
     this.mbRetCenterXRep09 = new DevExpress.XtraBars.BarButtonItem();
     this.mbRetCenterTBLProofDoc = new DevExpress.XtraBars.BarButtonItem();
     this.mbRetCenterQry44 = new DevExpress.XtraBars.BarButtonItem();
     this.mbRetCenterBankQry = new DevExpress.XtraBars.BarSubItem();
     this.mbRetCenterQry45 = new DevExpress.XtraBars.BarButtonItem();
     this.mbRetCenterQry46 = new DevExpress.XtraBars.BarButtonItem();
     this.mbRetCenterQry47 = new DevExpress.XtraBars.BarButtonItem();
     this.mbRetCenterQry48 = new DevExpress.XtraBars.BarButtonItem();
     this.mbRetCenterQry48A = new DevExpress.XtraBars.BarButtonItem();
     this.mbRetCenterQry49 = new DevExpress.XtraBars.BarButtonItem();
     this.mbRetCenterQry51 = new DevExpress.XtraBars.BarButtonItem();
     this.mbRetCenterQry52 = new DevExpress.XtraBars.BarButtonItem();
     this.mbRetCenterQry53 = new DevExpress.XtraBars.BarButtonItem();
     this.mbRetCenterQry54 = new DevExpress.XtraBars.BarButtonItem();
     this.mbRetCenterQry64 = new DevExpress.XtraBars.BarButtonItem();
     this.mbRetCenterQry63 = new DevExpress.XtraBars.BarButtonItem();
     this.mbRetCenterQry68 = new DevExpress.XtraBars.BarButtonItem();
     this.mbRetCenterQry69 = new DevExpress.XtraBars.BarButtonItem();
     this.mbRetCenterQry76 = new DevExpress.XtraBars.BarButtonItem();
     this.mbRetCenterQry77 = new DevExpress.XtraBars.BarButtonItem();
     this.mbRetCenterQry61A = new DevExpress.XtraBars.BarButtonItem();
     this.mbRetCenterQry66A = new DevExpress.XtraBars.BarButtonItem();
     this.mbRetCenterQry106 = new DevExpress.XtraBars.BarButtonItem();
     this.mbRetCenterQry107 = new DevExpress.XtraBars.BarButtonItem();
     this.mbRetCenterQry50 = new DevExpress.XtraBars.BarButtonItem();
     this.mbRetCenterTBLBeanWarsa = new DevExpress.XtraBars.BarButtonItem();
     this.mbRetCenterBank = new DevExpress.XtraBars.BarSubItem();
     this.mbRetCenterActivateVisa = new DevExpress.XtraBars.BarButtonItem();
     this.mbRetCenterActivateVisaWarasa = new DevExpress.XtraBars.BarButtonItem();
     this.mbRetCenterQry60 = new DevExpress.XtraBars.BarButtonItem();
     this.mbRetCenterXRep10 = new DevExpress.XtraBars.BarButtonItem();
     this.mbRetCenterXRep11 = new DevExpress.XtraBars.BarButtonItem();
     this.mbRetCenterStopYasrefByTBLBeanWarsa = new DevExpress.XtraBars.BarButtonItem();
     this.mbRetCenterTBLBeanWarsaMenu = new DevExpress.XtraBars.BarSubItem();
     this.mbRetCenterQry67 = new DevExpress.XtraBars.BarButtonItem();
     this.mbRetCenterXRep12 = new DevExpress.XtraBars.BarButtonItem();
     this.mbRetCenterXRep13 = new DevExpress.XtraBars.BarButtonItem();
     this.mbRetCenterTBLDeathMembers = new DevExpress.XtraBars.BarButtonItem();
     this.mbRetCenterXRep14 = new DevExpress.XtraBars.BarButtonItem();
     this.mbRetCenterXRep15 = new DevExpress.XtraBars.BarButtonItem();
     this.mbRetCenterQry70 = new DevExpress.XtraBars.BarButtonItem();
     this.mbRetCenterQry71 = new DevExpress.XtraBars.BarButtonItem();
     this.mbRetCenterQryPart3 = new DevExpress.XtraBars.BarSubItem();
     this.mbRetCenterQry27a = new DevExpress.XtraBars.BarButtonItem();
     this.mbRetCenterQry28a = new DevExpress.XtraBars.BarButtonItem();
     this.mbRetCenterQry27b = new DevExpress.XtraBars.BarButtonItem();
     this.mbRetCenterQry28b = new DevExpress.XtraBars.BarButtonItem();
     this.mbRetCenterQry87 = new DevExpress.XtraBars.BarButtonItem();
     this.mbRetCenterQry74A = new DevExpress.XtraBars.BarButtonItem();
     this.mbRetCenterQry74 = new DevExpress.XtraBars.BarButtonItem();
     this.mbRetCenterQry82 = new DevExpress.XtraBars.BarButtonItem();
     this.mbRetCenterQry83 = new DevExpress.XtraBars.BarButtonItem();
     this.mbRetCenterQry85 = new DevExpress.XtraBars.BarButtonItem();
     this.mbRetCenterQry86 = new DevExpress.XtraBars.BarButtonItem();
     this.mbRetCenterQry88 = new DevExpress.XtraBars.BarButtonItem();
     this.mbRetCenterQry91 = new DevExpress.XtraBars.BarButtonItem();
     this.mbRetCenterQry89 = new DevExpress.XtraBars.BarButtonItem();
     this.mbRetCenterQry92 = new DevExpress.XtraBars.BarButtonItem();
     this.mbRetCenterQry90 = new DevExpress.XtraBars.BarButtonItem();
     this.mbRetCenterQry99 = new DevExpress.XtraBars.BarButtonItem();
     this.mbRetCenterQry100 = new DevExpress.XtraBars.BarButtonItem();
     this.mbRetCenterQry104 = new DevExpress.XtraBars.BarButtonItem();
     this.mbRetCenterQry101 = new DevExpress.XtraBars.BarButtonItem();
     this.mbRetCenterQry103 = new DevExpress.XtraBars.BarButtonItem();
     this.mbRetCenterQry105 = new DevExpress.XtraBars.BarButtonItem();
     this.mbRetCenterQry111 = new DevExpress.XtraBars.BarButtonItem();
     this.mbRetCenterQry72 = new DevExpress.XtraBars.BarButtonItem();
     this.mbRetCenterQry73 = new DevExpress.XtraBars.BarButtonItem();
     this.mbRetCenterXRep16 = new DevExpress.XtraBars.BarButtonItem();
     this.mbRetCentertbladminremarks = new DevExpress.XtraBars.BarButtonItem();
     this.mbRetCenterQry03A = new DevExpress.XtraBars.BarButtonItem();
     this.mbRetCenterQry75 = new DevExpress.XtraBars.BarButtonItem();
     this.mbRetCenterXRep17 = new DevExpress.XtraBars.BarButtonItem();
     this.mbRetCenterXRep18 = new DevExpress.XtraBars.BarButtonItem();
     this.mbRetCenterTBLEstefa = new DevExpress.XtraBars.BarButtonItem();
     this.mbRetCenterXRep19 = new DevExpress.XtraBars.BarButtonItem();
     this.mbRetCenterQry78 = new DevExpress.XtraBars.BarButtonItem();
     this.mbRetCenterTBLReprint = new DevExpress.XtraBars.BarSubItem();
     this.mbRetCenterTBLReprintMember = new DevExpress.XtraBars.BarButtonItem();
     this.mbRetCenterTBLReprintWarasa = new DevExpress.XtraBars.BarButtonItem();
     this.mbRetCenterTBLReprintMemberTaslem = new DevExpress.XtraBars.BarButtonItem();
     this.mbRetCenterTBLReprintWarasaTaslem = new DevExpress.XtraBars.BarButtonItem();
     this.mbRetCenterQry79 = new DevExpress.XtraBars.BarButtonItem();
     this.mbRetCenterQry80 = new DevExpress.XtraBars.BarButtonItem();
     this.mbRetCenterTBLremind = new DevExpress.XtraBars.BarButtonItem();
     this.mbRetCenterTBLMandoop = new DevExpress.XtraBars.BarButtonItem();
     this.mbRetCenterTBLHafzaTasleem = new DevExpress.XtraBars.BarButtonItem();
     this.mbRetCenterTBLDeathMembersPrint = new DevExpress.XtraBars.BarButtonItem();
     this.mbRetCenterTBLHafezSarf = new DevExpress.XtraBars.BarButtonItem();
     this.mbRetCenterXRep21 = new DevExpress.XtraBars.BarButtonItem();
     this.mbRetCenterXRep22 = new DevExpress.XtraBars.BarButtonItem();
     this.mbRetCenterXRep23 = new DevExpress.XtraBars.BarButtonItem();
     this.mbRetCenterTBLDeathMembersMenu = new DevExpress.XtraBars.BarSubItem();
     this.mbRetCenterTBLDeathMembersAcc = new DevExpress.XtraBars.BarButtonItem();
     this.mbRetCenterTblMemberAmanatMenu = new DevExpress.XtraBars.BarSubItem();
     this.mbRetCenterTblMemberAmanatAcc = new DevExpress.XtraBars.BarButtonItem();
     this.mbRetCenterTblMemberAmanatSarf = new DevExpress.XtraBars.BarButtonItem();
     this.mbRetCenterTblMemberAmanatCheek = new DevExpress.XtraBars.BarButtonItem();
     this.mbRetCenterTblMemberAmanat2 = new DevExpress.XtraBars.BarButtonItem();
     this.mbRetCenterQry97 = new DevExpress.XtraBars.BarButtonItem();
     this.mbRetCenterQry108 = new DevExpress.XtraBars.BarButtonItem();
     this.mbRetCenterQry109 = new DevExpress.XtraBars.BarButtonItem();
     this.mbRetCenterXRep24 = new DevExpress.XtraBars.BarButtonItem();
     this.mbRetCenterTblWarasaAmanatMenu = new DevExpress.XtraBars.BarSubItem();
     this.mbRetCenterTblWarasaAmanatSarf = new DevExpress.XtraBars.BarButtonItem();
     this.mbRetCenterTblWarasaAmanatAcc = new DevExpress.XtraBars.BarButtonItem();
     this.mbRetCenterTblWarasaAmanatCheek = new DevExpress.XtraBars.BarButtonItem();
     this.mbRetCenterTblWarasaAmanat2 = new DevExpress.XtraBars.BarButtonItem();
     this.mbRetCenterQry95 = new DevExpress.XtraBars.BarButtonItem();
     this.mbRetCenterQry96 = new DevExpress.XtraBars.BarButtonItem();
     this.mbRetCenterQry98 = new DevExpress.XtraBars.BarButtonItem();
     this.mbRetCenterXRep25 = new DevExpress.XtraBars.BarButtonItem();
     this.mbRetCenterBankExportedDataActivate = new DevExpress.XtraBars.BarButtonItem();
     this.mbRetCenterVisa = new DevExpress.XtraBars.BarSubItem();
     this.mbRetCenterBankExportedDataWarsaActivate = new DevExpress.XtraBars.BarButtonItem();
     this.mbRetCenterImportFrombamanat = new DevExpress.XtraBars.BarButtonItem();
     this.mbRetCenterXRep16A = new DevExpress.XtraBars.BarButtonItem();
     this.mbRetCenterQry93 = new DevExpress.XtraBars.BarButtonItem();
     this.mbRetCenterQry94 = new DevExpress.XtraBars.BarButtonItem();
     this.mbRetCenterCdDofaatAmanat = new DevExpress.XtraBars.BarButtonItem();
     this.mbRetCenterCDDofatSarfFrook = new DevExpress.XtraBars.BarButtonItem();
     this.mbRetCenterTBLDofatSarfMadunea = new DevExpress.XtraBars.BarButtonItem();
     this.mbRetCenterTblAttach = new DevExpress.XtraBars.BarButtonItem();
     this.mbRetCenterXRep28 = new DevExpress.XtraBars.BarButtonItem();
     this.mbRetCenterXRep29 = new DevExpress.XtraBars.BarButtonItem();
     this.ribbonImageCollectionLarge = new DevExpress.Utils.ImageCollection(this.components);
     this.DataribbonPage = new DevExpress.XtraBars.Ribbon.RibbonPage();
     this.DataribbonPageGroup = new DevExpress.XtraBars.Ribbon.RibbonPageGroup();
     this.ribbonPageGroup2 = new DevExpress.XtraBars.Ribbon.RibbonPageGroup();
     this.CodeRibbonPage = new DevExpress.XtraBars.Ribbon.RibbonPage();
     this.CoderibbonPageGroup = new DevExpress.XtraBars.Ribbon.RibbonPageGroup();
     this.QueryribbonPage = new DevExpress.XtraBars.Ribbon.RibbonPage();
     this.QryribbonPageGroup = new DevExpress.XtraBars.Ribbon.RibbonPageGroup();
     this.QueryChartribbonPage = new DevExpress.XtraBars.Ribbon.RibbonPage();
     this.ribbonPageGroup6 = new DevExpress.XtraBars.Ribbon.RibbonPageGroup();
     this.PrintribbonPage = new DevExpress.XtraBars.Ribbon.RibbonPage();
     this.ReportribbonPageGroup = new DevExpress.XtraBars.Ribbon.RibbonPageGroup();
     this.PremissionribbonPage = new DevExpress.XtraBars.Ribbon.RibbonPage();
     this.ribbonPageGroup3 = new DevExpress.XtraBars.Ribbon.RibbonPageGroup();
     this.ribbonPageGroup4 = new DevExpress.XtraBars.Ribbon.RibbonPageGroup();
     this.helpRibbonPage = new DevExpress.XtraBars.Ribbon.RibbonPage();
     this.skinsRibbonPageGroup = new DevExpress.XtraBars.Ribbon.RibbonPageGroup();
     this.helpRibbonPageGroup = new DevExpress.XtraBars.Ribbon.RibbonPageGroup();
     this.ribbonPageGroup1 = new DevExpress.XtraBars.Ribbon.RibbonPageGroup();
     ((System.ComponentModel.ISupportInitialize)(this.groupControlUpdate)).BeginInit();
     this.groupControlUpdate.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.appMenu)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.popupControlContainer2)).BeginInit();
     this.popupControlContainer2.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.buttonEdit.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.popupControlContainer1)).BeginInit();
     this.popupControlContainer1.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.groupControl2)).BeginInit();
     this.groupControl2.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.CEUpdate.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.CESelect.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.CEDelete.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.CEInsert.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.groupControlSelect)).BeginInit();
     this.groupControlSelect.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.LUEItems.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.rolesBindingSource)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.dsRetirementCenter)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.ribbonControl)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.ribbonImageCollection)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.ribbonImageCollectionLarge)).BeginInit();
     this.SuspendLayout();
     //
     // groupControlUpdate
     //
     this.groupControlUpdate.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
     | System.Windows.Forms.AnchorStyles.Right)));
     this.groupControlUpdate.AppearanceCaption.Options.UseTextOptions = true;
     this.groupControlUpdate.AppearanceCaption.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.groupControlUpdate.Controls.Add(this.ribbonControl);
     this.groupControlUpdate.Controls.Add(this.groupControl2);
     this.groupControlUpdate.Location = new System.Drawing.Point(9, 75);
     this.groupControlUpdate.Name = "groupControlUpdate";
     this.groupControlUpdate.RightToLeft = System.Windows.Forms.RightToLeft.Yes;
     this.groupControlUpdate.Size = new System.Drawing.Size(963, 251);
     this.groupControlUpdate.TabIndex = 1;
     this.groupControlUpdate.Text = "التفاصيل";
     //
     // appMenu
     //
     this.appMenu.BottomPaneControlContainer = this.popupControlContainer2;
     this.appMenu.Name = "appMenu";
     this.appMenu.RightPaneControlContainer = this.popupControlContainer1;
     this.appMenu.ShowRightPane = true;
     //
     // popupControlContainer2
     //
     this.popupControlContainer2.Appearance.BackColor = System.Drawing.Color.Transparent;
     this.popupControlContainer2.Appearance.Options.UseBackColor = true;
     this.popupControlContainer2.BorderStyle = DevExpress.XtraEditors.Controls.BorderStyles.NoBorder;
     this.popupControlContainer2.Controls.Add(this.buttonEdit);
     this.popupControlContainer2.Location = new System.Drawing.Point(127, 218);
     this.popupControlContainer2.Name = "popupControlContainer2";
     this.popupControlContainer2.Size = new System.Drawing.Size(118, 28);
     this.popupControlContainer2.TabIndex = 5;
     this.popupControlContainer2.Visible = false;
     //
     // buttonEdit
     //
     this.buttonEdit.EditValue = "No Text";
     this.buttonEdit.Location = new System.Drawing.Point(3, 5);
     this.buttonEdit.Name = "buttonEdit";
     this.buttonEdit.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton()});
     this.buttonEdit.Size = new System.Drawing.Size(100, 20);
     this.buttonEdit.TabIndex = 0;
     //
     // popupControlContainer1
     //
     this.popupControlContainer1.Appearance.BackColor = System.Drawing.Color.Transparent;
     this.popupControlContainer1.Appearance.Options.UseBackColor = true;
     this.popupControlContainer1.BorderStyle = DevExpress.XtraEditors.Controls.BorderStyles.NoBorder;
     this.popupControlContainer1.Controls.Add(this.someLabelControl2);
     this.popupControlContainer1.Controls.Add(this.someLabelControl1);
     this.popupControlContainer1.Location = new System.Drawing.Point(45, 176);
     this.popupControlContainer1.Name = "popupControlContainer1";
     this.popupControlContainer1.Size = new System.Drawing.Size(76, 70);
     this.popupControlContainer1.TabIndex = 4;
     this.popupControlContainer1.Visible = false;
     //
     // someLabelControl2
     //
     this.someLabelControl2.Location = new System.Drawing.Point(3, 57);
     this.someLabelControl2.Name = "someLabelControl2";
     this.someLabelControl2.Size = new System.Drawing.Size(36, 13);
     this.someLabelControl2.TabIndex = 0;
     this.someLabelControl2.Text = "No Info";
     //
     // someLabelControl1
     //
     this.someLabelControl1.Location = new System.Drawing.Point(3, 3);
     this.someLabelControl1.Name = "someLabelControl1";
     this.someLabelControl1.Size = new System.Drawing.Size(36, 13);
     this.someLabelControl1.TabIndex = 0;
     this.someLabelControl1.Text = "No Info";
     //
     // groupControl2
     //
     this.groupControl2.Anchor = System.Windows.Forms.AnchorStyles.Bottom;
     this.groupControl2.AppearanceCaption.Options.UseTextOptions = true;
     this.groupControl2.AppearanceCaption.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.groupControl2.Controls.Add(this.CEUpdate);
     this.groupControl2.Controls.Add(this.CESelect);
     this.groupControl2.Controls.Add(this.CEDelete);
     this.groupControl2.Controls.Add(this.CEInsert);
     this.groupControl2.Location = new System.Drawing.Point(361, 169);
     this.groupControl2.Name = "groupControl2";
     this.groupControl2.Size = new System.Drawing.Size(240, 73);
     this.groupControl2.TabIndex = 2;
     this.groupControl2.Text = "عناصر السماح";
     //
     // CEUpdate
     //
     this.CEUpdate.Location = new System.Drawing.Point(21, 49);
     this.CEUpdate.Name = "CEUpdate";
     this.CEUpdate.Properties.Caption = "تعديل";
     this.CEUpdate.Size = new System.Drawing.Size(75, 19);
     this.CEUpdate.TabIndex = 0;
     //
     // CESelect
     //
     this.CESelect.Location = new System.Drawing.Point(21, 24);
     this.CESelect.Name = "CESelect";
     this.CESelect.Properties.Caption = "عرض";
     this.CESelect.Size = new System.Drawing.Size(75, 19);
     this.CESelect.TabIndex = 0;
     //
     // CEDelete
     //
     this.CEDelete.Location = new System.Drawing.Point(144, 49);
     this.CEDelete.Name = "CEDelete";
     this.CEDelete.Properties.Caption = "حذف";
     this.CEDelete.Size = new System.Drawing.Size(75, 19);
     this.CEDelete.TabIndex = 0;
     //
     // CEInsert
     //
     this.CEInsert.Location = new System.Drawing.Point(144, 24);
     this.CEInsert.Name = "CEInsert";
     this.CEInsert.Properties.Caption = "اضافه";
     this.CEInsert.Size = new System.Drawing.Size(75, 19);
     this.CEInsert.TabIndex = 0;
     //
     // groupControlSelect
     //
     this.groupControlSelect.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
     | System.Windows.Forms.AnchorStyles.Right)));
     this.groupControlSelect.AppearanceCaption.Options.UseTextOptions = true;
     this.groupControlSelect.AppearanceCaption.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.groupControlSelect.Controls.Add(this.LUEItems);
     this.groupControlSelect.Controls.Add(this.labelControl1);
     this.groupControlSelect.Location = new System.Drawing.Point(9, 10);
     this.groupControlSelect.Name = "groupControlSelect";
     this.groupControlSelect.RightToLeft = System.Windows.Forms.RightToLeft.Yes;
     this.groupControlSelect.Size = new System.Drawing.Size(963, 59);
     this.groupControlSelect.TabIndex = 0;
     this.groupControlSelect.Text = "جميع السماحيات";
     //
     // LUEItems
     //
     this.LUEItems.Anchor = System.Windows.Forms.AnchorStyles.Top;
     this.LUEItems.Location = new System.Drawing.Point(386, 28);
     this.LUEItems.Name = "LUEItems";
     this.LUEItems.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.LUEItems.Properties.Columns.AddRange(new DevExpress.XtraEditors.Controls.LookUpColumnInfo[] {
     new DevExpress.XtraEditors.Controls.LookUpColumnInfo("RoleName", "اسم الصلاحيه", 20, DevExpress.Utils.FormatType.None, "", true, DevExpress.Utils.HorzAlignment.Center),
     new DevExpress.XtraEditors.Controls.LookUpColumnInfo("RoleDesc", "تعليق", 20, DevExpress.Utils.FormatType.None, "", true, DevExpress.Utils.HorzAlignment.Center)});
     this.LUEItems.Properties.DataSource = this.rolesBindingSource;
     this.LUEItems.Properties.DisplayMember = "RoleName";
     this.LUEItems.Properties.NullText = "";
     this.LUEItems.Properties.TextEditStyle = DevExpress.XtraEditors.Controls.TextEditStyles.Standard;
     this.LUEItems.Properties.ValueMember = "RoleID";
     this.LUEItems.Size = new System.Drawing.Size(173, 20);
     this.LUEItems.TabIndex = 0;
     this.LUEItems.EditValueChanged += new System.EventHandler(this.LUEItems_EditValueChanged);
     //
     // rolesBindingSource
     //
     this.rolesBindingSource.DataMember = "Roles";
     this.rolesBindingSource.DataSource = this.dsRetirementCenter;
     //
     // dsRetirementCenter
     //
     this.dsRetirementCenter.DataSetName = "dsTeachersUnion";
     this.dsRetirementCenter.SchemaSerializationMode = System.Data.SchemaSerializationMode.IncludeSchema;
     //
     // labelControl1
     //
     this.labelControl1.Anchor = System.Windows.Forms.AnchorStyles.Top;
     this.labelControl1.Location = new System.Drawing.Point(565, 31);
     this.labelControl1.Name = "labelControl1";
     this.labelControl1.Size = new System.Drawing.Size(62, 13);
     this.labelControl1.TabIndex = 0;
     this.labelControl1.Text = "اختار سماحيه";
     //
     // roleDetialTableAdapter
     //
     this.roleDetialTableAdapter.ClearBeforeFill = true;
     //
     // rolesTableAdapter
     //
     this.rolesTableAdapter.ClearBeforeFill = true;
     //
     // ribbonControl
     //
     this.ribbonControl.AllowCustomization = true;
     this.ribbonControl.AllowTrimPageText = false;
     this.ribbonControl.ApplicationButtonDropDownControl = this.appMenu;
     this.ribbonControl.ApplicationButtonText = null;
     this.ribbonControl.ExpandCollapseItem.Id = 0;
     this.ribbonControl.Images = this.ribbonImageCollection;
     this.ribbonControl.Items.AddRange(new DevExpress.XtraBars.BarItem[] {
     this.ribbonControl.ExpandCollapseItem,
     this.mbRetCenterExit,
     this.mbRetCenterHelp,
     this.mbRetCenterAbout,
     this.mbRetCenterStatus,
     this.mbRetCenterInfo,
     this.mbRetCenterSkins,
     this.mbRetCenterDBChange,
     this.mbRetCenterReports,
     this.mbRetCenterCDGov,
     this.mbRetCenterCDMarkez,
     this.mbRetCenterCDSyndicate,
     this.mbRetCenterCDSubCommitte,
     this.mbRetCenterCDJop,
     this.mbRetCenterCDBirthPlace,
     this.mbRetCenterCDJobDescription,
     this.mbRetCenterCDGehaType,
     this.mbRetCenterCDModerea,
     this.mbRetCenterCDGeha,
     this.mbRetCenterCDQualification,
     this.mbRetCenterCDSpecialization,
     this.mbRetCenterCDEDARET,
     this.mbRetCenterCDEstefaaKed,
     this.mbRetCenterDataMember,
     this.mbRetCenterTBLMashat,
     this.mbRetCenterJobs,
     this.mbRetCenterCDJobtitle,
     this.mbRetCenterCDAttachmentType,
     this.mbRetCenterRoles,
     this.mbRetCenterUsers,
     this.mbRetCenterUserRoles,
     this.mbRetCenterRoleDetail,
     this.mbRetCenterAppOptions,
     this.mbRetCenterPasswordChanger,
     this.mbRetCenterImportFromAccessFrm,
     this.mbRetCenterRoleSyndicate,
     this.mbRetCenterQry01,
     this.mbRetCenterQry02,
     this.mbRetCenterCDsarfType,
     this.mbRetCenterTBLDofatSarf,
     this.mbRetCenterXRep01,
     this.mbRetCenterQry03,
     this.mbRetCenterQry04,
     this.mbRetCenterQry05,
     this.mbRetCenterTBLMemberSarf,
     this.mbRetCenterTBLMashatNIDFastEdit,
     this.mbRetCenterTBLWarasaNIDFastEditFrm,
     this.mbRetCenterPrepareDofaa,
     this.mbRetCenterTBLWarasaSarf,
     this.mbRetCenterXRep02a,
     this.mbRetCenterXRep03a,
     this.mbRetCenterSarfyaA3da2,
     this.mbRetCenterXRep02b,
     this.mbRetCenterSarfyaWarasa,
     this.mbRetCenterXRep02c,
     this.mbRetCenterXRep02d,
     this.mbRetCenterXRep03c,
     this.mbRetCenterXRep03d,
     this.mbRetCenterXRep03b,
     this.mbRetCenterDofatSarfActivity,
     this.mbRetCenterXRep05,
     this.mbRetCenterQry06,
     this.mbRetCenterُErrorQry,
     this.mbRetCenterQry07,
     this.mbRetCenterQry08,
     this.mbRetCenterXRep06,
     this.mbRetCenterQry09,
     this.mbRetCenterQry10,
     this.mbRetCenterQry11,
     this.mbRetCenterQry12,
     this.mbRetCenterQry13,
     this.mbRetCenterQry14,
     this.mbRetCenterQry15,
     this.mbRetCenterQry16,
     this.mbRetCenterQry17,
     this.mbRetCenterQry18,
     this.mbRetCenterQry19,
     this.mbRetCenterQry20,
     this.mbRetCenterQry21,
     this.mbRetCenterXRep07,
     this.mbRetCenterTblMemberAmanat,
     this.mbRetCenterTblWarasaAmanat,
     this.mbRetCenterQry22,
     this.mbRetCenterQry23,
     this.mbRetCenterQry24,
     this.mbRetCenterQry25,
     this.mbRetCenterQry26,
     this.mbRetCenterQry27,
     this.mbRetCenterQry28,
     this.mbRetCenterTBLMemberSarf_arshefDelete,
     this.mbRetCenterarchef,
     this.mbRetCenterTBLWarasaSarf_arshefDelete,
     this.mbRetCenterXRep08,
     this.mbRetCenterStatis,
     this.mbRetCenterQry31,
     this.mbRetCenterQry32,
     this.mbRetCenterQry33,
     this.mbRetCenterQryPart1,
     this.mbRetCenterQryPart2,
     this.mbRetCenterQry34,
     this.mbRetCenterQry35,
     this.mbRetCenterQry36,
     this.mbRetCenterQry37,
     this.mbRetCenterRemoveTBLMashatNID,
     this.mbRetCenterRemoveTBLWarasaNID,
     this.mbRetCenterQry38,
     this.mbRetCenterQry39,
     this.mbRetCenterQry40,
     this.mbRetCenterQry41,
     this.mbRetCenterTblChekNid,
     this.mbRetCenterQry42,
     this.mbRetCenterQry43,
     this.mbRetCenterXRep09,
     this.mbRetCenterTBLProofDoc,
     this.mbRetCenterQry38a,
     this.mbRetCenterQry44,
     this.mbRetCenterBankQry,
     this.mbRetCenterQry45,
     this.mbRetCenterQry46,
     this.mbRetCenterQry38b,
     this.mbRetCenterQry47,
     this.mbRetCenterQry48,
     this.mbRetCenterQry49,
     this.mbRetCenterQry50,
     this.mbRetCenterQry51,
     this.mbRetCenterQry52,
     this.mbRetCenterQry53,
     this.mbRetCenterQry48A,
     this.mbRetCenterQry54,
     this.mbRetCenterQry55,
     this.mbRetCenterQry56,
     this.mbRetCenterTBLBeanWarsa,
     this.mbRetCenterBank,
     this.mbRetCenterActivateVisa,
     this.mbRetCenterActivateVisaWarasa,
     this.mbRetCenterQry38c,
     this.mbRetCenterQry60,
     this.mbRetCenterQry61,
     this.mbRetCenterXRep10,
     this.mbRetCenterXRep11,
     this.mbRetCenterQry62,
     this.mbRetCenterStopYasrefByTBLBeanWarsa,
     this.mbRetCenterTBLBeanWarsaMenu,
     this.mbRetCenterQry64,
     this.mbRetCenterQry63,
     this.mbRetCenterQry66,
     this.mbRetCenterQry67,
     this.mbRetCenterXRep12,
     this.mbRetCenterXRep13,
     this.mbRetCenterTBLDeathMembers,
     this.mbRetCenterQry38d,
     this.mbRetCenterQry38e,
     this.mbRetCenterXRep14,
     this.mbRetCenterXRep15,
     this.mbRetCenterQry68,
     this.mbRetCenterQry69,
     this.mbRetCenterQry70,
     this.mbRetCenterQry71,
     this.mbRetCenterQryPart3,
     this.mbRetCenterQry72,
     this.mbRetCenterQry73,
     this.mbRetCenterXRep16,
     this.mbRetCentertbladminremarks,
     this.mbRetCenterQry74,
     this.mbRetCenterQry03A,
     this.mbRetCenterQry75,
     this.mbRetCenterQry76,
     this.mbRetCenterQry77,
     this.mbRetCenterXRep17,
     this.mbRetCenterXRep18,
     this.mbRetCenterTBLEstefa,
     this.mbRetCenterXRep19,
     this.mbRetCenterQry78,
     this.mbRetCenterTBLReprint,
     this.mbRetCenterTBLReprintMember,
     this.mbRetCenterQry79,
     this.mbRetCenterTBLReprintWarasa,
     this.mbRetCenterQry80,
     this.mbRetCenterTBLremind,
     this.mbRetCenterTBLMandoop,
     this.mbRetCenterTBLHafzaTasleem,
     this.mbRetCenterQry82,
     this.mbRetCenterQry83,
     this.mbRetCenterTBLReprintMemberTaslem,
     this.mbRetCenterTBLReprintWarasaTaslem,
     this.mbRetCenterTBLFrookWarasa,
     this.mbRetCenterTBLFrookWarasaAdmin,
     this.mbRetCenterTBLDeathMembersPrint,
     this.mbRetCenterTBLHafezSarf,
     this.mbRetCenterXRep21,
     this.mbRetCenterXRep22,
     this.mbRetCenterXRep23,
     this.mbRetCenterTBLDeathMembersMenu,
     this.mbRetCenterTBLDeathMembersAcc,
     this.mbRetCenterQry85,
     this.mbRetCenterQry86,
     this.mbRetCenterTblMemberAmanatMenu,
     this.mbRetCenterTblMemberAmanatAcc,
     this.mbRetCenterQry87,
     this.mbRetCenterQry61A,
     this.mbRetCenterQry66A,
     this.mbRetCenterTblMemberAmanatSarf,
     this.mbRetCenterXRep24,
     this.mbRetCenterTBLMemberSarf_arshef,
     this.mbRetCenterTBLWarasaSarf_arshef,
     this.mbRetCenterTblWarasaAmanatMenu,
     this.mbRetCenterTblWarasaAmanatSarf,
     this.mbRetCenterTblWarasaAmanatAcc,
     this.mbRetCenterXRep25,
     this.mbRetCenterQry88,
     this.mbRetCenterQry89,
     this.mbRetCenterQry90,
     this.mbRetCenterQry91,
     this.mbRetCenterQry92,
     this.mbRetCenterBankExportedDataActivate,
     this.mbRetCenterVisa,
     this.mbRetCenterBankExportedDataWarsaActivate,
     this.mbRetCenterQry27a,
     this.mbRetCenterQry28a,
     this.mbRetCenterImportFrombamanat,
     this.mbRetCenterTblWarasaAmanatCheek,
     this.mbRetCenterTblMemberAmanatCheek,
     this.mbRetCenterXRep16A,
     this.mbRetCenterQry93,
     this.mbRetCenterQry94,
     this.mbRetCenterTblMemberAmanat2,
     this.mbRetCenterTblWarasaAmanat2,
     this.mbRetCenterQry95,
     this.mbRetCenterQry96,
     this.mbRetCenterCdDofaatAmanat,
     this.mbRetCenterCDDofatSarfFrook,
     this.mbRetCenterTBLDofatSarfMadunea,
     this.mbRetCenterQry97,
     this.mbRetCenterQry98,
     this.mbRetCenterTBLWarasaFastEdit2,
     this.mbRetCenterTblAttach,
     this.mbRetCenterQry99,
     this.mbRetCenterQry100,
     this.mbRetCenterQry27b,
     this.mbRetCenterQry28b,
     this.mbRetCenterQry101,
     this.mbRetCenterQry103,
     this.mbRetCenterQry104,
     this.mbRetCenterQry105,
     this.mbRetCenterQry74A,
     this.mbRetCenterQry106,
     this.mbRetCenterQry107,
     this.mbRetCenterQry108,
     this.mbRetCenterQry109,
     this.mbRetCenterQry111,
     this.mbRetCenterXRep28,
     this.mbRetCenterXRep29,
     this.mbRetCenterQry112});
     this.ribbonControl.LargeImages = this.ribbonImageCollectionLarge;
     this.ribbonControl.Location = new System.Drawing.Point(2, 21);
     this.ribbonControl.MaxItemId = 422;
     this.ribbonControl.Name = "ribbonControl";
     this.ribbonControl.PageHeaderItemLinks.Add(this.mbRetCenterAbout);
     this.ribbonControl.Pages.AddRange(new DevExpress.XtraBars.Ribbon.RibbonPage[] {
     this.DataribbonPage,
     this.CodeRibbonPage,
     this.QueryribbonPage,
     this.QueryChartribbonPage,
     this.PrintribbonPage,
     this.PremissionribbonPage,
     this.helpRibbonPage});
     this.ribbonControl.RibbonStyle = DevExpress.XtraBars.Ribbon.RibbonControlStyle.Office2013;
     this.ribbonControl.RightToLeft = System.Windows.Forms.RightToLeft.Yes;
     this.ribbonControl.Size = new System.Drawing.Size(959, 142);
     this.ribbonControl.Toolbar.ItemLinks.Add(this.mbRetCenterHelp);
     //
     // ribbonImageCollection
     //
     this.ribbonImageCollection.ImageStream = ((DevExpress.Utils.ImageCollectionStreamer)(resources.GetObject("ribbonImageCollection.ImageStream")));
     this.ribbonImageCollection.Images.SetKeyName(0, "Ribbon_Exit_16x16.png");
     this.ribbonImageCollection.Images.SetKeyName(1, "Ribbon_Content_16x16.png");
     this.ribbonImageCollection.Images.SetKeyName(2, "Ribbon_Info_16x16.png");
     this.ribbonImageCollection.Images.SetKeyName(3, "Connection.png");
     this.ribbonImageCollection.Images.SetKeyName(4, "CDGov.png");
     this.ribbonImageCollection.Images.SetKeyName(5, "CDMarkez.png");
     this.ribbonImageCollection.Images.SetKeyName(6, "CDSyndicate.png");
     this.ribbonImageCollection.Images.SetKeyName(7, "CDSubCommitte.png");
     this.ribbonImageCollection.Images.SetKeyName(8, "CDBirthPlace.png");
     this.ribbonImageCollection.Images.SetKeyName(9, "CDJop.png");
     this.ribbonImageCollection.Images.SetKeyName(10, "CDJobDescription.png");
     this.ribbonImageCollection.Images.SetKeyName(11, "CDGehaType.png");
     this.ribbonImageCollection.Images.SetKeyName(12, "CDModerea.png");
     this.ribbonImageCollection.Images.SetKeyName(13, "CDEDARET.png");
     this.ribbonImageCollection.Images.SetKeyName(14, "CDGeha.png");
     this.ribbonImageCollection.Images.SetKeyName(15, "CDQualification.png");
     this.ribbonImageCollection.Images.SetKeyName(16, "CDSpecialization.png");
     this.ribbonImageCollection.Images.SetKeyName(17, "TBLMembers.png");
     this.ribbonImageCollection.Images.SetKeyName(18, "CDEstefaaKed.png");
     this.ribbonImageCollection.Images.SetKeyName(19, "Qry.png");
     this.ribbonImageCollection.Images.SetKeyName(20, "TBLHafza.png");
     this.ribbonImageCollection.Images.SetKeyName(21, "TBLMemberCard.png");
     this.ribbonImageCollection.Images.SetKeyName(22, "TBLPrintCard.png");
     this.ribbonImageCollection.Images.SetKeyName(23, "TBLMandoop.png");
     this.ribbonImageCollection.Images.SetKeyName(24, "Report.png");
     this.ribbonImageCollection.Images.SetKeyName(25, "Receipts.png");
     this.ribbonImageCollection.Images.SetKeyName(26, "TblMemberAttach.png");
     this.ribbonImageCollection.Images.SetKeyName(27, "CDAttachmentType.png");
     this.ribbonImageCollection.Images.SetKeyName(28, "ImportData.png");
     this.ribbonImageCollection.Images.SetKeyName(29, "Users.png");
     this.ribbonImageCollection.Images.SetKeyName(30, "Roles.png");
     this.ribbonImageCollection.Images.SetKeyName(31, "RoleDetail.png");
     this.ribbonImageCollection.Images.SetKeyName(32, "UserRoles.png");
     this.ribbonImageCollection.Images.SetKeyName(33, "Options16.png");
     this.ribbonImageCollection.Images.SetKeyName(34, "TBLAksat.png");
     this.ribbonImageCollection.Images.SetKeyName(35, "TBLEmpWork16.png");
     this.ribbonImageCollection.Images.SetKeyName(36, "TBLUserMistake16.png");
     this.ribbonImageCollection.Images.SetKeyName(37, "Fixs16.png");
     this.ribbonImageCollection.Images.SetKeyName(38, "RoleSyndicate.png");
     this.ribbonImageCollection.Images.SetKeyName(39, "CDsarfType.png");
     this.ribbonImageCollection.Images.SetKeyName(40, "TBLDofatSarf.png");
     this.ribbonImageCollection.Images.SetKeyName(41, "TBLMemberSarf.png");
     this.ribbonImageCollection.Images.SetKeyName(42, "TblMemberAmanat.png");
     this.ribbonImageCollection.Images.SetKeyName(43, "TblWarasaAmanat.png");
     this.ribbonImageCollection.Images.SetKeyName(44, "archive16.png");
     this.ribbonImageCollection.Images.SetKeyName(45, "TblChekNid16.png");
     this.ribbonImageCollection.Images.SetKeyName(46, "TBLProofDoc16.png");
     this.ribbonImageCollection.Images.SetKeyName(47, "Bank16.png");
     this.ribbonImageCollection.Images.SetKeyName(48, "TBLDeathMembers16.png");
     this.ribbonImageCollection.Images.SetKeyName(49, "tbladminremarks16.png");
     this.ribbonImageCollection.Images.SetKeyName(50, "TBLEstefa16.png");
     this.ribbonImageCollection.Images.SetKeyName(51, "TBLremind16.png");
     this.ribbonImageCollection.Images.SetKeyName(52, "TBLMandoop16.png");
     this.ribbonImageCollection.Images.SetKeyName(53, "TBLHafzaTasleem16.png");
     this.ribbonImageCollection.Images.SetKeyName(54, "Visa16.png");
     this.ribbonImageCollection.Images.SetKeyName(55, "TblAttach16.png");
     //
     // mbRetCenterExit
     //
     this.mbRetCenterExit.Caption = "Exit";
     this.mbRetCenterExit.Description = "Closes this program after prompting you to save unsaved data.";
     this.mbRetCenterExit.Hint = "Closes this program after prompting you to save unsaved data";
     this.mbRetCenterExit.Id = 20;
     this.mbRetCenterExit.ImageIndex = 0;
     this.mbRetCenterExit.LargeImageIndex = 0;
     this.mbRetCenterExit.Name = "mbRetCenterExit";
     //
     // mbRetCenterHelp
     //
     this.mbRetCenterHelp.Caption = "Help";
     this.mbRetCenterHelp.Description = "Start the program help system.";
     this.mbRetCenterHelp.Hint = "Start the program help system";
     this.mbRetCenterHelp.Id = 22;
     this.mbRetCenterHelp.ImageIndex = 1;
     this.mbRetCenterHelp.LargeImageIndex = 1;
     this.mbRetCenterHelp.Name = "mbRetCenterHelp";
     //
     // mbRetCenterAbout
     //
     this.mbRetCenterAbout.Caption = "About";
     this.mbRetCenterAbout.Description = "Displays general program information.";
     this.mbRetCenterAbout.Hint = "Displays general program information";
     this.mbRetCenterAbout.Id = 24;
     this.mbRetCenterAbout.ImageIndex = 2;
     this.mbRetCenterAbout.LargeImageIndex = 2;
     this.mbRetCenterAbout.Name = "mbRetCenterAbout";
     //
     // mbRetCenterStatus
     //
     this.mbRetCenterStatus.Caption = "جاهز";
     this.mbRetCenterStatus.Id = 31;
     this.mbRetCenterStatus.Name = "mbRetCenterStatus";
     this.mbRetCenterStatus.TextAlignment = System.Drawing.StringAlignment.Near;
     //
     // mbRetCenterInfo
     //
     this.mbRetCenterInfo.Alignment = DevExpress.XtraBars.BarItemLinkAlignment.Right;
     this.mbRetCenterInfo.Caption = "الرسائل";
     this.mbRetCenterInfo.Id = 32;
     this.mbRetCenterInfo.Name = "mbRetCenterInfo";
     this.mbRetCenterInfo.TextAlignment = System.Drawing.StringAlignment.Near;
     //
     // mbRetCenterSkins
     //
     this.mbRetCenterSkins.Caption = "Skins";
     //
     //
     //
     this.mbRetCenterSkins.Gallery.AllowHoverImages = true;
     this.mbRetCenterSkins.Gallery.Appearance.ItemCaptionAppearance.Normal.Options.UseFont = true;
     this.mbRetCenterSkins.Gallery.Appearance.ItemCaptionAppearance.Normal.Options.UseTextOptions = true;
     this.mbRetCenterSkins.Gallery.Appearance.ItemCaptionAppearance.Normal.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.mbRetCenterSkins.Gallery.ColumnCount = 4;
     this.mbRetCenterSkins.Gallery.FixedHoverImageSize = false;
     this.mbRetCenterSkins.Gallery.ImageSize = new System.Drawing.Size(32, 17);
     this.mbRetCenterSkins.Gallery.ItemImageLocation = DevExpress.Utils.Locations.Top;
     this.mbRetCenterSkins.Gallery.RowCount = 4;
     this.mbRetCenterSkins.Id = 60;
     this.mbRetCenterSkins.Name = "mbRetCenterSkins";
     //
     // mbRetCenterDBChange
     //
     this.mbRetCenterDBChange.Caption = "الغاء الاتصال";
     this.mbRetCenterDBChange.Description = "الغاء اتصال قاعدة البيانات";
     this.mbRetCenterDBChange.Hint = "الغاء اتصال قاعدة البيانات";
     this.mbRetCenterDBChange.Id = 71;
     this.mbRetCenterDBChange.ImageIndex = 3;
     this.mbRetCenterDBChange.LargeImageIndex = 3;
     this.mbRetCenterDBChange.Name = "mbRetCenterDBChange";
     //
     // mbRetCenterReports
     //
     this.mbRetCenterReports.Caption = "التقارير";
     this.mbRetCenterReports.Description = "قائمة التقارير";
     this.mbRetCenterReports.Edit = null;
     this.mbRetCenterReports.Hint = "قائمة التقارير";
     this.mbRetCenterReports.Id = 79;
     this.mbRetCenterReports.ImageIndex = 12;
     this.mbRetCenterReports.LargeImageIndex = 12;
     this.mbRetCenterReports.Name = "mbRetCenterReports";
     this.mbRetCenterReports.Width = 150;
     //
     // mbRetCenterCDGov
     //
     this.mbRetCenterCDGov.Caption = "المحافظات";
     this.mbRetCenterCDGov.Description = "اضافة, تعديل, حذف محافظه";
     this.mbRetCenterCDGov.Hint = "اضافة, تعديل, حذف محافظه";
     this.mbRetCenterCDGov.Id = 81;
     this.mbRetCenterCDGov.ImageIndex = 4;
     this.mbRetCenterCDGov.LargeImageIndex = 4;
     this.mbRetCenterCDGov.Name = "mbRetCenterCDGov";
     //
     // mbRetCenterCDMarkez
     //
     this.mbRetCenterCDMarkez.Caption = "المراكز والاقسام";
     this.mbRetCenterCDMarkez.Description = "اضافة, تعديل, حذف مركز او قسم";
     this.mbRetCenterCDMarkez.Hint = "اضافة, تعديل, حذف مركز او قسم";
     this.mbRetCenterCDMarkez.Id = 82;
     this.mbRetCenterCDMarkez.ImageIndex = 5;
     this.mbRetCenterCDMarkez.LargeImageIndex = 5;
     this.mbRetCenterCDMarkez.Name = "mbRetCenterCDMarkez";
     //
     // mbRetCenterCDSyndicate
     //
     this.mbRetCenterCDSyndicate.Caption = "النقابات الفرعية";
     this.mbRetCenterCDSyndicate.Description = "اضافة, تعديل, حذف نقابه فرعيه";
     this.mbRetCenterCDSyndicate.Hint = "اضافة, تعديل, حذف نقابه فرعيه";
     this.mbRetCenterCDSyndicate.Id = 83;
     this.mbRetCenterCDSyndicate.ImageIndex = 6;
     this.mbRetCenterCDSyndicate.LargeImageIndex = 6;
     this.mbRetCenterCDSyndicate.Name = "mbRetCenterCDSyndicate";
     //
     // mbRetCenterCDSubCommitte
     //
     this.mbRetCenterCDSubCommitte.Caption = "اللجان النقابية";
     this.mbRetCenterCDSubCommitte.Description = "اضافة, تعديل, حذف لجنه نقابيه";
     this.mbRetCenterCDSubCommitte.Hint = "اضافة, تعديل, حذف لجنه نقابيه";
     this.mbRetCenterCDSubCommitte.Id = 84;
     this.mbRetCenterCDSubCommitte.ImageIndex = 7;
     this.mbRetCenterCDSubCommitte.LargeImageIndex = 7;
     this.mbRetCenterCDSubCommitte.Name = "mbRetCenterCDSubCommitte";
     //
     // mbRetCenterCDJop
     //
     this.mbRetCenterCDJop.Caption = "الوظائف";
     this.mbRetCenterCDJop.Description = "اضافة, تعديل, حذف وظيفه";
     this.mbRetCenterCDJop.Hint = "اضافة, تعديل, حذف وظيفه";
     this.mbRetCenterCDJop.Id = 85;
     this.mbRetCenterCDJop.ImageIndex = 9;
     this.mbRetCenterCDJop.LargeImageIndex = 9;
     this.mbRetCenterCDJop.Name = "mbRetCenterCDJop";
     //
     // mbRetCenterCDBirthPlace
     //
     this.mbRetCenterCDBirthPlace.Caption = "محل الميلاد";
     this.mbRetCenterCDBirthPlace.Description = "اضافة, تعديل, حذف محل ميلاد";
     this.mbRetCenterCDBirthPlace.Hint = "اضافة, تعديل, حذف محل ميلاد";
     this.mbRetCenterCDBirthPlace.Id = 86;
     this.mbRetCenterCDBirthPlace.ImageIndex = 8;
     this.mbRetCenterCDBirthPlace.LargeImageIndex = 8;
     this.mbRetCenterCDBirthPlace.Name = "mbRetCenterCDBirthPlace";
     //
     // mbRetCenterCDJobDescription
     //
     this.mbRetCenterCDJobDescription.Caption = "الوصف الوظيفي";
     this.mbRetCenterCDJobDescription.Description = "اضافة, تعديل, حذف وصف وظيفي";
     this.mbRetCenterCDJobDescription.Hint = "اضافة, تعديل, حذف وصف وظيفي";
     this.mbRetCenterCDJobDescription.Id = 87;
     this.mbRetCenterCDJobDescription.ImageIndex = 10;
     this.mbRetCenterCDJobDescription.LargeImageIndex = 10;
     this.mbRetCenterCDJobDescription.Name = "mbRetCenterCDJobDescription";
     //
     // mbRetCenterCDGehaType
     //
     this.mbRetCenterCDGehaType.Caption = "جهات العمل";
     this.mbRetCenterCDGehaType.Description = "اضافة, تعديل, حذف جهة عمل";
     this.mbRetCenterCDGehaType.Hint = "اضافة, تعديل, حذف جهة عمل";
     this.mbRetCenterCDGehaType.Id = 88;
     this.mbRetCenterCDGehaType.ImageIndex = 11;
     this.mbRetCenterCDGehaType.LargeImageIndex = 11;
     this.mbRetCenterCDGehaType.Name = "mbRetCenterCDGehaType";
     //
     // mbRetCenterCDModerea
     //
     this.mbRetCenterCDModerea.Caption = "المديريات ";
     this.mbRetCenterCDModerea.Description = "اضافة, تعديل, حذف مدريه";
     this.mbRetCenterCDModerea.Hint = "اضافة, تعديل, حذف مدريه";
     this.mbRetCenterCDModerea.Id = 89;
     this.mbRetCenterCDModerea.ImageIndex = 12;
     this.mbRetCenterCDModerea.LargeImageIndex = 12;
     this.mbRetCenterCDModerea.Name = "mbRetCenterCDModerea";
     //
     // mbRetCenterCDGeha
     //
     this.mbRetCenterCDGeha.Caption = "جهات العمل";
     this.mbRetCenterCDGeha.Description = "اضافة, تعديل, حذف جهة عمل";
     this.mbRetCenterCDGeha.Hint = "اضافة, تعديل, حذف جهة عمل";
     this.mbRetCenterCDGeha.Id = 90;
     this.mbRetCenterCDGeha.ImageIndex = 14;
     this.mbRetCenterCDGeha.LargeImageIndex = 14;
     this.mbRetCenterCDGeha.Name = "mbRetCenterCDGeha";
     //
     // mbRetCenterCDQualification
     //
     this.mbRetCenterCDQualification.Caption = "المؤهلات";
     this.mbRetCenterCDQualification.Description = "اضافة, تعديل, حذف مؤهل";
     this.mbRetCenterCDQualification.Hint = "اضافة, تعديل, حذف مؤهل";
     this.mbRetCenterCDQualification.Id = 91;
     this.mbRetCenterCDQualification.ImageIndex = 15;
     this.mbRetCenterCDQualification.LargeImageIndex = 15;
     this.mbRetCenterCDQualification.Name = "mbRetCenterCDQualification";
     //
     // mbRetCenterCDSpecialization
     //
     this.mbRetCenterCDSpecialization.Caption = "تخصص المؤهل";
     this.mbRetCenterCDSpecialization.Description = "اضافة, تعديل, حذف تخصص مؤهل";
     this.mbRetCenterCDSpecialization.Hint = "اضافة, تعديل, حذف تخصص مؤهل";
     this.mbRetCenterCDSpecialization.Id = 92;
     this.mbRetCenterCDSpecialization.ImageIndex = 16;
     this.mbRetCenterCDSpecialization.LargeImageIndex = 16;
     this.mbRetCenterCDSpecialization.Name = "mbRetCenterCDSpecialization";
     //
     // mbRetCenterCDEDARET
     //
     this.mbRetCenterCDEDARET.Caption = "الادارات";
     this.mbRetCenterCDEDARET.Description = "اضافة, تعديل, حذف اداره";
     this.mbRetCenterCDEDARET.Hint = "اضافة, تعديل, حذف اداره";
     this.mbRetCenterCDEDARET.Id = 93;
     this.mbRetCenterCDEDARET.ImageIndex = 13;
     this.mbRetCenterCDEDARET.LargeImageIndex = 13;
     this.mbRetCenterCDEDARET.Name = "mbRetCenterCDEDARET";
     //
     // mbRetCenterCDEstefaaKed
     //
     this.mbRetCenterCDEstefaaKed.Caption = "استيفاء العضوية";
     this.mbRetCenterCDEstefaaKed.Description = "اضافة, تعديل, حذف استيفاء عضويه";
     this.mbRetCenterCDEstefaaKed.Hint = "اضافة, تعديل, حذف استيفاء عضويه";
     this.mbRetCenterCDEstefaaKed.Id = 95;
     this.mbRetCenterCDEstefaaKed.ImageIndex = 18;
     this.mbRetCenterCDEstefaaKed.LargeImageIndex = 18;
     this.mbRetCenterCDEstefaaKed.Name = "mbRetCenterCDEstefaaKed";
     //
     // mbRetCenterDataMember
     //
     this.mbRetCenterDataMember.Caption = "بيانات الاعضاء";
     this.mbRetCenterDataMember.Id = 118;
     this.mbRetCenterDataMember.ImageIndex = 17;
     this.mbRetCenterDataMember.LargeImageIndex = 17;
     this.mbRetCenterDataMember.LinksPersistInfo.AddRange(new DevExpress.XtraBars.LinkPersistInfo[] {
     new DevExpress.XtraBars.LinkPersistInfo(this.mbRetCenterTBLMashat),
     new DevExpress.XtraBars.LinkPersistInfo(this.mbRetCenterTBLMashatNIDFastEdit),
     new DevExpress.XtraBars.LinkPersistInfo(this.mbRetCenterTBLWarasaNIDFastEditFrm),
     new DevExpress.XtraBars.LinkPersistInfo(this.mbRetCenterRemoveTBLMashatNID),
     new DevExpress.XtraBars.LinkPersistInfo(this.mbRetCenterRemoveTBLWarasaNID),
     new DevExpress.XtraBars.LinkPersistInfo(this.mbRetCenterTBLWarasaFastEdit2)});
     this.mbRetCenterDataMember.Name = "mbRetCenterDataMember";
     //
     // mbRetCenterTBLMashat
     //
     this.mbRetCenterTBLMashat.Caption = "مختصر";
     this.mbRetCenterTBLMashat.Description = "اضافة, تعديل, حذف بيانات عضو";
     this.mbRetCenterTBLMashat.Hint = "اضافة, تعديل, حذف بيانات عضو";
     this.mbRetCenterTBLMashat.Id = 119;
     this.mbRetCenterTBLMashat.ImageIndex = 17;
     this.mbRetCenterTBLMashat.LargeImageIndex = 17;
     this.mbRetCenterTBLMashat.Name = "mbRetCenterTBLMashat";
     //
     // mbRetCenterTBLMashatNIDFastEdit
     //
     this.mbRetCenterTBLMashatNIDFastEdit.Caption = "تعديل الاعضاء جدولي";
     this.mbRetCenterTBLMashatNIDFastEdit.Id = 203;
     this.mbRetCenterTBLMashatNIDFastEdit.ImageIndex = 17;
     this.mbRetCenterTBLMashatNIDFastEdit.LargeImageIndex = 17;
     this.mbRetCenterTBLMashatNIDFastEdit.Name = "mbRetCenterTBLMashatNIDFastEdit";
     //
     // mbRetCenterTBLWarasaNIDFastEditFrm
     //
     this.mbRetCenterTBLWarasaNIDFastEditFrm.Caption = "تعديل الورثة جدولي";
     this.mbRetCenterTBLWarasaNIDFastEditFrm.Id = 204;
     this.mbRetCenterTBLWarasaNIDFastEditFrm.ImageIndex = 17;
     this.mbRetCenterTBLWarasaNIDFastEditFrm.LargeImageIndex = 17;
     this.mbRetCenterTBLWarasaNIDFastEditFrm.Name = "mbRetCenterTBLWarasaNIDFastEditFrm";
     //
     // mbRetCenterRemoveTBLMashatNID
     //
     this.mbRetCenterRemoveTBLMashatNID.Caption = "حذف الرقم القومي للاعضاء";
     this.mbRetCenterRemoveTBLMashatNID.Id = 265;
     this.mbRetCenterRemoveTBLMashatNID.ImageIndex = 36;
     this.mbRetCenterRemoveTBLMashatNID.LargeImageIndex = 36;
     this.mbRetCenterRemoveTBLMashatNID.Name = "mbRetCenterRemoveTBLMashatNID";
     //
     // mbRetCenterRemoveTBLWarasaNID
     //
     this.mbRetCenterRemoveTBLWarasaNID.Caption = "حذف الرقم القومي للورثة";
     this.mbRetCenterRemoveTBLWarasaNID.Id = 266;
     this.mbRetCenterRemoveTBLWarasaNID.ImageIndex = 36;
     this.mbRetCenterRemoveTBLWarasaNID.LargeImageIndex = 36;
     this.mbRetCenterRemoveTBLWarasaNID.Name = "mbRetCenterRemoveTBLWarasaNID";
     //
     // mbRetCenterTBLWarasaFastEdit2
     //
     this.mbRetCenterTBLWarasaFastEdit2.Caption = "استثنائات الورثة";
     this.mbRetCenterTBLWarasaFastEdit2.Id = 403;
     this.mbRetCenterTBLWarasaFastEdit2.ImageIndex = 17;
     this.mbRetCenterTBLWarasaFastEdit2.LargeImageIndex = 17;
     this.mbRetCenterTBLWarasaFastEdit2.Name = "mbRetCenterTBLWarasaFastEdit2";
     //
     // mbRetCenterJobs
     //
     this.mbRetCenterJobs.Caption = "الوظائف";
     this.mbRetCenterJobs.Description = "اضافة, تعديل, حذف وظيفه";
     this.mbRetCenterJobs.Hint = "اضافة, تعديل, حذف وظيفه";
     this.mbRetCenterJobs.Id = 120;
     this.mbRetCenterJobs.ImageIndex = 9;
     this.mbRetCenterJobs.LargeImageIndex = 9;
     this.mbRetCenterJobs.LinksPersistInfo.AddRange(new DevExpress.XtraBars.LinkPersistInfo[] {
     new DevExpress.XtraBars.LinkPersistInfo(this.mbRetCenterCDJop),
     new DevExpress.XtraBars.LinkPersistInfo(this.mbRetCenterCDJobtitle),
     new DevExpress.XtraBars.LinkPersistInfo(this.mbRetCenterCDJobDescription)});
     this.mbRetCenterJobs.Name = "mbRetCenterJobs";
     //
     // mbRetCenterCDJobtitle
     //
     this.mbRetCenterCDJobtitle.Caption = "وظائف الاعضاء";
     this.mbRetCenterCDJobtitle.Description = "اضافة, تعديل, حذف وظيفه";
     this.mbRetCenterCDJobtitle.Hint = "اضافة, تعديل, حذف وظيفه";
     this.mbRetCenterCDJobtitle.Id = 121;
     this.mbRetCenterCDJobtitle.ImageIndex = 9;
     this.mbRetCenterCDJobtitle.LargeImageIndex = 9;
     this.mbRetCenterCDJobtitle.Name = "mbRetCenterCDJobtitle";
     //
     // mbRetCenterCDAttachmentType
     //
     this.mbRetCenterCDAttachmentType.Caption = "انواع المرفقات";
     this.mbRetCenterCDAttachmentType.Id = 138;
     this.mbRetCenterCDAttachmentType.ImageIndex = 27;
     this.mbRetCenterCDAttachmentType.LargeImageIndex = 27;
     this.mbRetCenterCDAttachmentType.Name = "mbRetCenterCDAttachmentType";
     //
     // mbRetCenterRoles
     //
     this.mbRetCenterRoles.Caption = "الصلاحيات";
     this.mbRetCenterRoles.Id = 142;
     this.mbRetCenterRoles.ImageIndex = 30;
     this.mbRetCenterRoles.LargeImageIndex = 30;
     this.mbRetCenterRoles.Name = "mbRetCenterRoles";
     //
     // mbRetCenterUsers
     //
     this.mbRetCenterUsers.Caption = "المستخدمين";
     this.mbRetCenterUsers.Id = 143;
     this.mbRetCenterUsers.ImageIndex = 29;
     this.mbRetCenterUsers.LargeImageIndex = 29;
     this.mbRetCenterUsers.Name = "mbRetCenterUsers";
     //
     // mbRetCenterUserRoles
     //
     this.mbRetCenterUserRoles.Caption = "صلاحيات المستخدمين";
     this.mbRetCenterUserRoles.Id = 144;
     this.mbRetCenterUserRoles.ImageIndex = 32;
     this.mbRetCenterUserRoles.LargeImageIndex = 32;
     this.mbRetCenterUserRoles.Name = "mbRetCenterUserRoles";
     //
     // mbRetCenterRoleDetail
     //
     this.mbRetCenterRoleDetail.Caption = "تفاصيل الصلاحيات";
     this.mbRetCenterRoleDetail.Id = 145;
     this.mbRetCenterRoleDetail.ImageIndex = 31;
     this.mbRetCenterRoleDetail.LargeImageIndex = 31;
     this.mbRetCenterRoleDetail.Name = "mbRetCenterRoleDetail";
     //
     // mbRetCenterAppOptions
     //
     this.mbRetCenterAppOptions.Caption = "خيارات البرنامج";
     this.mbRetCenterAppOptions.Id = 159;
     this.mbRetCenterAppOptions.ImageIndex = 33;
     this.mbRetCenterAppOptions.LargeImageIndex = 33;
     this.mbRetCenterAppOptions.Name = "mbRetCenterAppOptions";
     //
     // mbRetCenterPasswordChanger
     //
     this.mbRetCenterPasswordChanger.Caption = "تغير كلمة المرور";
     this.mbRetCenterPasswordChanger.Id = 191;
     this.mbRetCenterPasswordChanger.ImageIndex = 29;
     this.mbRetCenterPasswordChanger.LargeImageIndex = 29;
     this.mbRetCenterPasswordChanger.Name = "mbRetCenterPasswordChanger";
     //
     // mbRetCenterImportFromAccessFrm
     //
     this.mbRetCenterImportFromAccessFrm.Caption = "استيراد من الاكسس";
     this.mbRetCenterImportFromAccessFrm.Id = 192;
     this.mbRetCenterImportFromAccessFrm.ImageIndex = 28;
     this.mbRetCenterImportFromAccessFrm.LargeImageIndex = 28;
     this.mbRetCenterImportFromAccessFrm.Name = "mbRetCenterImportFromAccessFrm";
     //
     // mbRetCenterRoleSyndicate
     //
     this.mbRetCenterRoleSyndicate.Caption = "نقابات الصلاحيات";
     this.mbRetCenterRoleSyndicate.Id = 193;
     this.mbRetCenterRoleSyndicate.ImageIndex = 38;
     this.mbRetCenterRoleSyndicate.LargeImageIndex = 38;
     this.mbRetCenterRoleSyndicate.Name = "mbRetCenterRoleSyndicate";
     //
     // mbRetCenterQry01
     //
     this.mbRetCenterQry01.Caption = "تكرار الاسم";
     this.mbRetCenterQry01.Id = 194;
     this.mbRetCenterQry01.ImageIndex = 19;
     this.mbRetCenterQry01.LargeImageIndex = 19;
     this.mbRetCenterQry01.Name = "mbRetCenterQry01";
     this.mbRetCenterQry01.RibbonStyle = ((DevExpress.XtraBars.Ribbon.RibbonItemStyles)((DevExpress.XtraBars.Ribbon.RibbonItemStyles.SmallWithText | DevExpress.XtraBars.Ribbon.RibbonItemStyles.SmallWithoutText)));
     //
     // mbRetCenterQry02
     //
     this.mbRetCenterQry02.Caption = "تكرار رقم الصرف";
     this.mbRetCenterQry02.Id = 195;
     this.mbRetCenterQry02.ImageIndex = 19;
     this.mbRetCenterQry02.LargeImageIndex = 19;
     this.mbRetCenterQry02.Name = "mbRetCenterQry02";
     this.mbRetCenterQry02.RibbonStyle = ((DevExpress.XtraBars.Ribbon.RibbonItemStyles)((DevExpress.XtraBars.Ribbon.RibbonItemStyles.SmallWithText | DevExpress.XtraBars.Ribbon.RibbonItemStyles.SmallWithoutText)));
     //
     // mbRetCenterCDsarfType
     //
     this.mbRetCenterCDsarfType.Caption = "فئات الصرف";
     this.mbRetCenterCDsarfType.Id = 196;
     this.mbRetCenterCDsarfType.ImageIndex = 39;
     this.mbRetCenterCDsarfType.LargeImageIndex = 39;
     this.mbRetCenterCDsarfType.Name = "mbRetCenterCDsarfType";
     //
     // mbRetCenterTBLDofatSarf
     //
     this.mbRetCenterTBLDofatSarf.Caption = "دفعات الصرف";
     this.mbRetCenterTBLDofatSarf.Id = 197;
     this.mbRetCenterTBLDofatSarf.ImageIndex = 40;
     this.mbRetCenterTBLDofatSarf.LargeImageIndex = 40;
     this.mbRetCenterTBLDofatSarf.Name = "mbRetCenterTBLDofatSarf";
     //
     // mbRetCenterXRep01
     //
     this.mbRetCenterXRep01.Caption = "الاضافات";
     this.mbRetCenterXRep01.Id = 198;
     this.mbRetCenterXRep01.ImageIndex = 24;
     this.mbRetCenterXRep01.LargeImageIndex = 24;
     this.mbRetCenterXRep01.Name = "mbRetCenterXRep01";
     this.mbRetCenterXRep01.RibbonStyle = ((DevExpress.XtraBars.Ribbon.RibbonItemStyles)((DevExpress.XtraBars.Ribbon.RibbonItemStyles.SmallWithText | DevExpress.XtraBars.Ribbon.RibbonItemStyles.SmallWithoutText)));
     //
     // mbRetCenterQry03
     //
     this.mbRetCenterQry03.Caption = "اضافات الاعضاء";
     this.mbRetCenterQry03.Id = 199;
     this.mbRetCenterQry03.ImageIndex = 19;
     this.mbRetCenterQry03.LargeImageIndex = 19;
     this.mbRetCenterQry03.Name = "mbRetCenterQry03";
     this.mbRetCenterQry03.RibbonStyle = ((DevExpress.XtraBars.Ribbon.RibbonItemStyles)((DevExpress.XtraBars.Ribbon.RibbonItemStyles.SmallWithText | DevExpress.XtraBars.Ribbon.RibbonItemStyles.SmallWithoutText)));
     //
     // mbRetCenterQry04
     //
     this.mbRetCenterQry04.Caption = "الاعضاء";
     this.mbRetCenterQry04.Id = 200;
     this.mbRetCenterQry04.ImageIndex = 19;
     this.mbRetCenterQry04.LargeImageIndex = 19;
     this.mbRetCenterQry04.Name = "mbRetCenterQry04";
     this.mbRetCenterQry04.RibbonStyle = ((DevExpress.XtraBars.Ribbon.RibbonItemStyles)((DevExpress.XtraBars.Ribbon.RibbonItemStyles.SmallWithText | DevExpress.XtraBars.Ribbon.RibbonItemStyles.SmallWithoutText)));
     //
     // mbRetCenterQry05
     //
     this.mbRetCenterQry05.Caption = "الورئة";
     this.mbRetCenterQry05.Id = 201;
     this.mbRetCenterQry05.ImageIndex = 19;
     this.mbRetCenterQry05.LargeImageIndex = 19;
     this.mbRetCenterQry05.Name = "mbRetCenterQry05";
     this.mbRetCenterQry05.RibbonStyle = ((DevExpress.XtraBars.Ribbon.RibbonItemStyles)((DevExpress.XtraBars.Ribbon.RibbonItemStyles.SmallWithText | DevExpress.XtraBars.Ribbon.RibbonItemStyles.SmallWithoutText)));
     //
     // mbRetCenterTBLMemberSarf
     //
     this.mbRetCenterTBLMemberSarf.Caption = "اعداد دفعة الاعضاء";
     this.mbRetCenterTBLMemberSarf.Id = 202;
     this.mbRetCenterTBLMemberSarf.ImageIndex = 41;
     this.mbRetCenterTBLMemberSarf.LargeImageIndex = 41;
     this.mbRetCenterTBLMemberSarf.Name = "mbRetCenterTBLMemberSarf";
     //
     // mbRetCenterPrepareDofaa
     //
     this.mbRetCenterPrepareDofaa.Caption = "اعداد الدفعة";
     this.mbRetCenterPrepareDofaa.Id = 206;
     this.mbRetCenterPrepareDofaa.ImageIndex = 41;
     this.mbRetCenterPrepareDofaa.LargeImageIndex = 41;
     this.mbRetCenterPrepareDofaa.LinksPersistInfo.AddRange(new DevExpress.XtraBars.LinkPersistInfo[] {
     new DevExpress.XtraBars.LinkPersistInfo(this.mbRetCenterTBLMemberSarf),
     new DevExpress.XtraBars.LinkPersistInfo(this.mbRetCenterTBLWarasaSarf),
     new DevExpress.XtraBars.LinkPersistInfo(this.mbRetCenterTBLFrookWarasa),
     new DevExpress.XtraBars.LinkPersistInfo(this.mbRetCenterTBLFrookWarasaAdmin),
     new DevExpress.XtraBars.LinkPersistInfo(this.mbRetCenterTBLMemberSarf_arshef),
     new DevExpress.XtraBars.LinkPersistInfo(this.mbRetCenterTBLWarasaSarf_arshef)});
     this.mbRetCenterPrepareDofaa.Name = "mbRetCenterPrepareDofaa";
     //
     // mbRetCenterTBLWarasaSarf
     //
     this.mbRetCenterTBLWarasaSarf.Caption = "اعداد دفعة الورثه";
     this.mbRetCenterTBLWarasaSarf.Id = 208;
     this.mbRetCenterTBLWarasaSarf.ImageIndex = 41;
     this.mbRetCenterTBLWarasaSarf.LargeImageIndex = 41;
     this.mbRetCenterTBLWarasaSarf.Name = "mbRetCenterTBLWarasaSarf";
     //
     // mbRetCenterTBLFrookWarasa
     //
     this.mbRetCenterTBLFrookWarasa.Caption = "فروق الورثة";
     this.mbRetCenterTBLFrookWarasa.Id = 351;
     this.mbRetCenterTBLFrookWarasa.ImageIndex = 41;
     this.mbRetCenterTBLFrookWarasa.LargeImageIndex = 41;
     this.mbRetCenterTBLFrookWarasa.Name = "mbRetCenterTBLFrookWarasa";
     this.mbRetCenterTBLFrookWarasa.RibbonStyle = ((DevExpress.XtraBars.Ribbon.RibbonItemStyles)((DevExpress.XtraBars.Ribbon.RibbonItemStyles.SmallWithText | DevExpress.XtraBars.Ribbon.RibbonItemStyles.SmallWithoutText)));
     //
     // mbRetCenterTBLFrookWarasaAdmin
     //
     this.mbRetCenterTBLFrookWarasaAdmin.Caption = "فروق الورثة - مراجع";
     this.mbRetCenterTBLFrookWarasaAdmin.Id = 352;
     this.mbRetCenterTBLFrookWarasaAdmin.ImageIndex = 41;
     this.mbRetCenterTBLFrookWarasaAdmin.LargeImageIndex = 41;
     this.mbRetCenterTBLFrookWarasaAdmin.Name = "mbRetCenterTBLFrookWarasaAdmin";
     this.mbRetCenterTBLFrookWarasaAdmin.RibbonStyle = ((DevExpress.XtraBars.Ribbon.RibbonItemStyles)((DevExpress.XtraBars.Ribbon.RibbonItemStyles.SmallWithText | DevExpress.XtraBars.Ribbon.RibbonItemStyles.SmallWithoutText)));
     //
     // mbRetCenterTBLMemberSarf_arshef
     //
     this.mbRetCenterTBLMemberSarf_arshef.Caption = "ارشيف صرف الاعضاء";
     this.mbRetCenterTBLMemberSarf_arshef.Id = 370;
     this.mbRetCenterTBLMemberSarf_arshef.ImageIndex = 41;
     this.mbRetCenterTBLMemberSarf_arshef.LargeImageIndex = 41;
     this.mbRetCenterTBLMemberSarf_arshef.Name = "mbRetCenterTBLMemberSarf_arshef";
     this.mbRetCenterTBLMemberSarf_arshef.RibbonStyle = ((DevExpress.XtraBars.Ribbon.RibbonItemStyles)((DevExpress.XtraBars.Ribbon.RibbonItemStyles.SmallWithText | DevExpress.XtraBars.Ribbon.RibbonItemStyles.SmallWithoutText)));
     //
     // mbRetCenterTBLWarasaSarf_arshef
     //
     this.mbRetCenterTBLWarasaSarf_arshef.Caption = "ارشيف صرف الورثة";
     this.mbRetCenterTBLWarasaSarf_arshef.Id = 371;
     this.mbRetCenterTBLWarasaSarf_arshef.ImageIndex = 41;
     this.mbRetCenterTBLWarasaSarf_arshef.LargeImageIndex = 41;
     this.mbRetCenterTBLWarasaSarf_arshef.Name = "mbRetCenterTBLWarasaSarf_arshef";
     //
     // mbRetCenterXRep02a
     //
     this.mbRetCenterXRep02a.Caption = "صرفية الاعضاء";
     this.mbRetCenterXRep02a.Id = 209;
     this.mbRetCenterXRep02a.ImageIndex = 24;
     this.mbRetCenterXRep02a.LargeImageIndex = 24;
     this.mbRetCenterXRep02a.Name = "mbRetCenterXRep02a";
     this.mbRetCenterXRep02a.RibbonStyle = ((DevExpress.XtraBars.Ribbon.RibbonItemStyles)((DevExpress.XtraBars.Ribbon.RibbonItemStyles.SmallWithText | DevExpress.XtraBars.Ribbon.RibbonItemStyles.SmallWithoutText)));
     //
     // mbRetCenterXRep03a
     //
     this.mbRetCenterXRep03a.Caption = "صرفية الورثة";
     this.mbRetCenterXRep03a.Id = 210;
     this.mbRetCenterXRep03a.ImageIndex = 24;
     this.mbRetCenterXRep03a.LargeImageIndex = 24;
     this.mbRetCenterXRep03a.Name = "mbRetCenterXRep03a";
     this.mbRetCenterXRep03a.RibbonStyle = ((DevExpress.XtraBars.Ribbon.RibbonItemStyles)((DevExpress.XtraBars.Ribbon.RibbonItemStyles.SmallWithText | DevExpress.XtraBars.Ribbon.RibbonItemStyles.SmallWithoutText)));
     //
     // mbRetCenterSarfyaA3da2
     //
     this.mbRetCenterSarfyaA3da2.Caption = "صرفيات الاعضاء";
     this.mbRetCenterSarfyaA3da2.Id = 211;
     this.mbRetCenterSarfyaA3da2.ImageIndex = 24;
     this.mbRetCenterSarfyaA3da2.LargeImageIndex = 24;
     this.mbRetCenterSarfyaA3da2.LinksPersistInfo.AddRange(new DevExpress.XtraBars.LinkPersistInfo[] {
     new DevExpress.XtraBars.LinkPersistInfo(this.mbRetCenterXRep02a),
     new DevExpress.XtraBars.LinkPersistInfo(this.mbRetCenterXRep02b),
     new DevExpress.XtraBars.LinkPersistInfo(this.mbRetCenterXRep02c),
     new DevExpress.XtraBars.LinkPersistInfo(this.mbRetCenterXRep02d)});
     this.mbRetCenterSarfyaA3da2.Name = "mbRetCenterSarfyaA3da2";
     this.mbRetCenterSarfyaA3da2.RibbonStyle = ((DevExpress.XtraBars.Ribbon.RibbonItemStyles)((DevExpress.XtraBars.Ribbon.RibbonItemStyles.SmallWithText | DevExpress.XtraBars.Ribbon.RibbonItemStyles.SmallWithoutText)));
     //
     // mbRetCenterXRep02b
     //
     this.mbRetCenterXRep02b.Caption = "صرفية اضافات الاعضاء ";
     this.mbRetCenterXRep02b.Id = 212;
     this.mbRetCenterXRep02b.ImageIndex = 24;
     this.mbRetCenterXRep02b.LargeImageIndex = 24;
     this.mbRetCenterXRep02b.Name = "mbRetCenterXRep02b";
     this.mbRetCenterXRep02b.RibbonStyle = ((DevExpress.XtraBars.Ribbon.RibbonItemStyles)((DevExpress.XtraBars.Ribbon.RibbonItemStyles.SmallWithText | DevExpress.XtraBars.Ribbon.RibbonItemStyles.SmallWithoutText)));
     //
     // mbRetCenterXRep02c
     //
     this.mbRetCenterXRep02c.Caption = "صرفية الاعضاء للفرعيات";
     this.mbRetCenterXRep02c.Id = 214;
     this.mbRetCenterXRep02c.ImageIndex = 24;
     this.mbRetCenterXRep02c.LargeImageIndex = 24;
     this.mbRetCenterXRep02c.Name = "mbRetCenterXRep02c";
     this.mbRetCenterXRep02c.RibbonStyle = ((DevExpress.XtraBars.Ribbon.RibbonItemStyles)((DevExpress.XtraBars.Ribbon.RibbonItemStyles.SmallWithText | DevExpress.XtraBars.Ribbon.RibbonItemStyles.SmallWithoutText)));
     //
     // mbRetCenterXRep02d
     //
     this.mbRetCenterXRep02d.Caption = "صرفية اضافات الاعضاء للفرعيات";
     this.mbRetCenterXRep02d.Id = 215;
     this.mbRetCenterXRep02d.ImageIndex = 24;
     this.mbRetCenterXRep02d.LargeImageIndex = 24;
     this.mbRetCenterXRep02d.Name = "mbRetCenterXRep02d";
     this.mbRetCenterXRep02d.RibbonStyle = ((DevExpress.XtraBars.Ribbon.RibbonItemStyles)((DevExpress.XtraBars.Ribbon.RibbonItemStyles.SmallWithText | DevExpress.XtraBars.Ribbon.RibbonItemStyles.SmallWithoutText)));
     //
     // mbRetCenterSarfyaWarasa
     //
     this.mbRetCenterSarfyaWarasa.Caption = "صرفيات الورثة";
     this.mbRetCenterSarfyaWarasa.Id = 213;
     this.mbRetCenterSarfyaWarasa.ImageIndex = 24;
     this.mbRetCenterSarfyaWarasa.LargeImageIndex = 24;
     this.mbRetCenterSarfyaWarasa.LinksPersistInfo.AddRange(new DevExpress.XtraBars.LinkPersistInfo[] {
     new DevExpress.XtraBars.LinkPersistInfo(this.mbRetCenterXRep03a),
     new DevExpress.XtraBars.LinkPersistInfo(this.mbRetCenterXRep03b),
     new DevExpress.XtraBars.LinkPersistInfo(this.mbRetCenterXRep03c),
     new DevExpress.XtraBars.LinkPersistInfo(this.mbRetCenterXRep03d)});
     this.mbRetCenterSarfyaWarasa.Name = "mbRetCenterSarfyaWarasa";
     this.mbRetCenterSarfyaWarasa.RibbonStyle = ((DevExpress.XtraBars.Ribbon.RibbonItemStyles)((DevExpress.XtraBars.Ribbon.RibbonItemStyles.SmallWithText | DevExpress.XtraBars.Ribbon.RibbonItemStyles.SmallWithoutText)));
     //
     // mbRetCenterXRep03b
     //
     this.mbRetCenterXRep03b.Caption = "صرفية اضافات الورثة";
     this.mbRetCenterXRep03b.Id = 218;
     this.mbRetCenterXRep03b.ImageIndex = 24;
     this.mbRetCenterXRep03b.LargeImageIndex = 24;
     this.mbRetCenterXRep03b.Name = "mbRetCenterXRep03b";
     this.mbRetCenterXRep03b.RibbonStyle = ((DevExpress.XtraBars.Ribbon.RibbonItemStyles)((DevExpress.XtraBars.Ribbon.RibbonItemStyles.SmallWithText | DevExpress.XtraBars.Ribbon.RibbonItemStyles.SmallWithoutText)));
     //
     // mbRetCenterXRep03c
     //
     this.mbRetCenterXRep03c.Caption = "صرفية الورثة للفرعيات";
     this.mbRetCenterXRep03c.Id = 216;
     this.mbRetCenterXRep03c.ImageIndex = 24;
     this.mbRetCenterXRep03c.LargeImageIndex = 24;
     this.mbRetCenterXRep03c.Name = "mbRetCenterXRep03c";
     this.mbRetCenterXRep03c.RibbonStyle = ((DevExpress.XtraBars.Ribbon.RibbonItemStyles)((DevExpress.XtraBars.Ribbon.RibbonItemStyles.SmallWithText | DevExpress.XtraBars.Ribbon.RibbonItemStyles.SmallWithoutText)));
     //
     // mbRetCenterXRep03d
     //
     this.mbRetCenterXRep03d.Caption = "صرفية اضافات الورثة للفرعيات";
     this.mbRetCenterXRep03d.Id = 217;
     this.mbRetCenterXRep03d.ImageIndex = 24;
     this.mbRetCenterXRep03d.LargeImageIndex = 24;
     this.mbRetCenterXRep03d.Name = "mbRetCenterXRep03d";
     this.mbRetCenterXRep03d.RibbonStyle = ((DevExpress.XtraBars.Ribbon.RibbonItemStyles)((DevExpress.XtraBars.Ribbon.RibbonItemStyles.SmallWithText | DevExpress.XtraBars.Ribbon.RibbonItemStyles.SmallWithoutText)));
     //
     // mbRetCenterDofatSarfActivity
     //
     this.mbRetCenterDofatSarfActivity.Caption = "اغلاق الدفعات";
     this.mbRetCenterDofatSarfActivity.Id = 219;
     this.mbRetCenterDofatSarfActivity.ImageIndex = 40;
     this.mbRetCenterDofatSarfActivity.LargeImageIndex = 40;
     this.mbRetCenterDofatSarfActivity.Name = "mbRetCenterDofatSarfActivity";
     //
     // mbRetCenterXRep05
     //
     this.mbRetCenterXRep05.Caption = "بيان الشيك 1";
     this.mbRetCenterXRep05.Id = 220;
     this.mbRetCenterXRep05.ImageIndex = 24;
     this.mbRetCenterXRep05.LargeImageIndex = 24;
     this.mbRetCenterXRep05.Name = "mbRetCenterXRep05";
     this.mbRetCenterXRep05.RibbonStyle = ((DevExpress.XtraBars.Ribbon.RibbonItemStyles)((DevExpress.XtraBars.Ribbon.RibbonItemStyles.SmallWithText | DevExpress.XtraBars.Ribbon.RibbonItemStyles.SmallWithoutText)));
     //
     // mbRetCenterQry06
     //
     this.mbRetCenterQry06.Caption = "اخطاء فرعيات مسئول الصرف";
     this.mbRetCenterQry06.Id = 221;
     this.mbRetCenterQry06.ImageIndex = 19;
     this.mbRetCenterQry06.LargeImageIndex = 19;
     this.mbRetCenterQry06.Name = "mbRetCenterQry06";
     this.mbRetCenterQry06.RibbonStyle = ((DevExpress.XtraBars.Ribbon.RibbonItemStyles)((DevExpress.XtraBars.Ribbon.RibbonItemStyles.SmallWithText | DevExpress.XtraBars.Ribbon.RibbonItemStyles.SmallWithoutText)));
     //
     // mbRetCenterُErrorQry
     //
     this.mbRetCenterُErrorQry.Caption = "اخطاء الادخال";
     this.mbRetCenterُErrorQry.Id = 222;
     this.mbRetCenterُErrorQry.ImageIndex = 19;
     this.mbRetCenterُErrorQry.LargeImageIndex = 19;
     this.mbRetCenterُErrorQry.LinksPersistInfo.AddRange(new DevExpress.XtraBars.LinkPersistInfo[] {
     new DevExpress.XtraBars.LinkPersistInfo(this.mbRetCenterQry01),
     new DevExpress.XtraBars.LinkPersistInfo(this.mbRetCenterQry02),
     new DevExpress.XtraBars.LinkPersistInfo(this.mbRetCenterQry06),
     new DevExpress.XtraBars.LinkPersistInfo(this.mbRetCenterQry07),
     new DevExpress.XtraBars.LinkPersistInfo(this.mbRetCenterQry08),
     new DevExpress.XtraBars.LinkPersistInfo(this.mbRetCenterQry09),
     new DevExpress.XtraBars.LinkPersistInfo(this.mbRetCenterQry11),
     new DevExpress.XtraBars.LinkPersistInfo(this.mbRetCenterQry12),
     new DevExpress.XtraBars.LinkPersistInfo(this.mbRetCenterQry13),
     new DevExpress.XtraBars.LinkPersistInfo(this.mbRetCenterQry14),
     new DevExpress.XtraBars.LinkPersistInfo(this.mbRetCenterQry15),
     new DevExpress.XtraBars.LinkPersistInfo(this.mbRetCenterQry16),
     new DevExpress.XtraBars.LinkPersistInfo(this.mbRetCenterQry17),
     new DevExpress.XtraBars.LinkPersistInfo(this.mbRetCenterQry18),
     new DevExpress.XtraBars.LinkPersistInfo(this.mbRetCenterQry35),
     new DevExpress.XtraBars.LinkPersistInfo(this.mbRetCenterQry112)});
     this.mbRetCenterُErrorQry.Name = "mbRetCenterُErrorQry";
     this.mbRetCenterُErrorQry.RibbonStyle = ((DevExpress.XtraBars.Ribbon.RibbonItemStyles)((DevExpress.XtraBars.Ribbon.RibbonItemStyles.SmallWithText | DevExpress.XtraBars.Ribbon.RibbonItemStyles.SmallWithoutText)));
     //
     // mbRetCenterQry07
     //
     this.mbRetCenterQry07.Caption = "ورثة تصرف لاعضاء لا تصرف";
     this.mbRetCenterQry07.Id = 223;
     this.mbRetCenterQry07.ImageIndex = 19;
     this.mbRetCenterQry07.LargeImageIndex = 19;
     this.mbRetCenterQry07.Name = "mbRetCenterQry07";
     this.mbRetCenterQry07.RibbonStyle = ((DevExpress.XtraBars.Ribbon.RibbonItemStyles)((DevExpress.XtraBars.Ribbon.RibbonItemStyles.SmallWithText | DevExpress.XtraBars.Ribbon.RibbonItemStyles.SmallWithoutText)));
     //
     // mbRetCenterQry08
     //
     this.mbRetCenterQry08.Caption = "خطاء في مسئول الورثه";
     this.mbRetCenterQry08.Id = 224;
     this.mbRetCenterQry08.ImageIndex = 19;
     this.mbRetCenterQry08.LargeImageIndex = 19;
     this.mbRetCenterQry08.Name = "mbRetCenterQry08";
     this.mbRetCenterQry08.RibbonStyle = ((DevExpress.XtraBars.Ribbon.RibbonItemStyles)((DevExpress.XtraBars.Ribbon.RibbonItemStyles.SmallWithText | DevExpress.XtraBars.Ribbon.RibbonItemStyles.SmallWithoutText)));
     //
     // mbRetCenterQry09
     //
     this.mbRetCenterQry09.Caption = "ورثه ليس لهم استثناء";
     this.mbRetCenterQry09.Id = 226;
     this.mbRetCenterQry09.ImageIndex = 19;
     this.mbRetCenterQry09.LargeImageIndex = 19;
     this.mbRetCenterQry09.Name = "mbRetCenterQry09";
     this.mbRetCenterQry09.RibbonStyle = ((DevExpress.XtraBars.Ribbon.RibbonItemStyles)((DevExpress.XtraBars.Ribbon.RibbonItemStyles.SmallWithText | DevExpress.XtraBars.Ribbon.RibbonItemStyles.SmallWithoutText)));
     //
     // mbRetCenterQry11
     //
     this.mbRetCenterQry11.Caption = "الاستثنائات";
     this.mbRetCenterQry11.Id = 228;
     this.mbRetCenterQry11.ImageIndex = 19;
     this.mbRetCenterQry11.LargeImageIndex = 19;
     this.mbRetCenterQry11.Name = "mbRetCenterQry11";
     this.mbRetCenterQry11.RibbonStyle = ((DevExpress.XtraBars.Ribbon.RibbonItemStyles)((DevExpress.XtraBars.Ribbon.RibbonItemStyles.SmallWithText | DevExpress.XtraBars.Ribbon.RibbonItemStyles.SmallWithoutText)));
     //
     // mbRetCenterQry12
     //
     this.mbRetCenterQry12.Caption = "ورثة بدون مسئول صرف";
     this.mbRetCenterQry12.Id = 229;
     this.mbRetCenterQry12.ImageIndex = 19;
     this.mbRetCenterQry12.LargeImageIndex = 19;
     this.mbRetCenterQry12.Name = "mbRetCenterQry12";
     this.mbRetCenterQry12.RibbonStyle = ((DevExpress.XtraBars.Ribbon.RibbonItemStyles)((DevExpress.XtraBars.Ribbon.RibbonItemStyles.SmallWithText | DevExpress.XtraBars.Ribbon.RibbonItemStyles.SmallWithoutText)));
     //
     // mbRetCenterQry13
     //
     this.mbRetCenterQry13.Caption = "اخطاء في تقرير الورثة";
     this.mbRetCenterQry13.Id = 230;
     this.mbRetCenterQry13.ImageIndex = 19;
     this.mbRetCenterQry13.LargeImageIndex = 19;
     this.mbRetCenterQry13.Name = "mbRetCenterQry13";
     this.mbRetCenterQry13.RibbonStyle = ((DevExpress.XtraBars.Ribbon.RibbonItemStyles)((DevExpress.XtraBars.Ribbon.RibbonItemStyles.SmallWithText | DevExpress.XtraBars.Ribbon.RibbonItemStyles.SmallWithoutText)));
     //
     // mbRetCenterQry14
     //
     this.mbRetCenterQry14.Caption = "ورثة بأسماء فارغة";
     this.mbRetCenterQry14.Id = 231;
     this.mbRetCenterQry14.ImageIndex = 19;
     this.mbRetCenterQry14.LargeImageIndex = 19;
     this.mbRetCenterQry14.Name = "mbRetCenterQry14";
     this.mbRetCenterQry14.RibbonStyle = ((DevExpress.XtraBars.Ribbon.RibbonItemStyles)((DevExpress.XtraBars.Ribbon.RibbonItemStyles.SmallWithText | DevExpress.XtraBars.Ribbon.RibbonItemStyles.SmallWithoutText)));
     //
     // mbRetCenterQry15
     //
     this.mbRetCenterQry15.Caption = "اخطاء لجان الفرعيات الورثة";
     this.mbRetCenterQry15.Id = 232;
     this.mbRetCenterQry15.ImageIndex = 19;
     this.mbRetCenterQry15.LargeImageIndex = 19;
     this.mbRetCenterQry15.Name = "mbRetCenterQry15";
     this.mbRetCenterQry15.RibbonStyle = ((DevExpress.XtraBars.Ribbon.RibbonItemStyles)((DevExpress.XtraBars.Ribbon.RibbonItemStyles.SmallWithText | DevExpress.XtraBars.Ribbon.RibbonItemStyles.SmallWithoutText)));
     //
     // mbRetCenterQry16
     //
     this.mbRetCenterQry16.Caption = "مقارنة صرفية الورثة بالتقرير";
     this.mbRetCenterQry16.Id = 233;
     this.mbRetCenterQry16.ImageIndex = 19;
     this.mbRetCenterQry16.LargeImageIndex = 19;
     this.mbRetCenterQry16.Name = "mbRetCenterQry16";
     this.mbRetCenterQry16.RibbonStyle = ((DevExpress.XtraBars.Ribbon.RibbonItemStyles)((DevExpress.XtraBars.Ribbon.RibbonItemStyles.SmallWithText | DevExpress.XtraBars.Ribbon.RibbonItemStyles.SmallWithoutText)));
     //
     // mbRetCenterQry17
     //
     this.mbRetCenterQry17.Caption = "عدد الاسماء للورثة";
     this.mbRetCenterQry17.Id = 234;
     this.mbRetCenterQry17.ImageIndex = 19;
     this.mbRetCenterQry17.LargeImageIndex = 19;
     this.mbRetCenterQry17.Name = "mbRetCenterQry17";
     this.mbRetCenterQry17.RibbonStyle = ((DevExpress.XtraBars.Ribbon.RibbonItemStyles)((DevExpress.XtraBars.Ribbon.RibbonItemStyles.SmallWithText | DevExpress.XtraBars.Ribbon.RibbonItemStyles.SmallWithoutText)));
     //
     // mbRetCenterQry18
     //
     this.mbRetCenterQry18.Caption = "مقارنة الدفعة بالاكسس";
     this.mbRetCenterQry18.Id = 235;
     this.mbRetCenterQry18.ImageIndex = 19;
     this.mbRetCenterQry18.LargeImageIndex = 19;
     this.mbRetCenterQry18.Name = "mbRetCenterQry18";
     this.mbRetCenterQry18.RibbonStyle = ((DevExpress.XtraBars.Ribbon.RibbonItemStyles)((DevExpress.XtraBars.Ribbon.RibbonItemStyles.SmallWithText | DevExpress.XtraBars.Ribbon.RibbonItemStyles.SmallWithoutText)));
     //
     // mbRetCenterQry35
     //
     this.mbRetCenterQry35.Caption = "مسئول صرف لا يصرف لورثه تصرف";
     this.mbRetCenterQry35.Id = 262;
     this.mbRetCenterQry35.ImageIndex = 19;
     this.mbRetCenterQry35.LargeImageIndex = 19;
     this.mbRetCenterQry35.Name = "mbRetCenterQry35";
     this.mbRetCenterQry35.RibbonStyle = ((DevExpress.XtraBars.Ribbon.RibbonItemStyles)((DevExpress.XtraBars.Ribbon.RibbonItemStyles.SmallWithText | DevExpress.XtraBars.Ribbon.RibbonItemStyles.SmallWithoutText)));
     //
     // mbRetCenterQry112
     //
     this.mbRetCenterQry112.Caption = "ورثة لهم فيزا غير فيزا المسئول";
     this.mbRetCenterQry112.Id = 421;
     this.mbRetCenterQry112.ImageIndex = 19;
     this.mbRetCenterQry112.LargeImageIndex = 19;
     this.mbRetCenterQry112.Name = "mbRetCenterQry112";
     //
     // mbRetCenterXRep06
     //
     this.mbRetCenterXRep06.Caption = "بيان الشيك 2";
     this.mbRetCenterXRep06.Id = 225;
     this.mbRetCenterXRep06.ImageIndex = 24;
     this.mbRetCenterXRep06.LargeImageIndex = 24;
     this.mbRetCenterXRep06.Name = "mbRetCenterXRep06";
     this.mbRetCenterXRep06.RibbonStyle = ((DevExpress.XtraBars.Ribbon.RibbonItemStyles)((DevExpress.XtraBars.Ribbon.RibbonItemStyles.SmallWithText | DevExpress.XtraBars.Ribbon.RibbonItemStyles.SmallWithoutText)));
     //
     // mbRetCenterQry10
     //
     this.mbRetCenterQry10.Caption = "مبالغ الورثة";
     this.mbRetCenterQry10.Id = 227;
     this.mbRetCenterQry10.ImageIndex = 19;
     this.mbRetCenterQry10.LargeImageIndex = 19;
     this.mbRetCenterQry10.Name = "mbRetCenterQry10";
     this.mbRetCenterQry10.RibbonStyle = ((DevExpress.XtraBars.Ribbon.RibbonItemStyles)((DevExpress.XtraBars.Ribbon.RibbonItemStyles.SmallWithText | DevExpress.XtraBars.Ribbon.RibbonItemStyles.SmallWithoutText)));
     //
     // mbRetCenterQry19
     //
     this.mbRetCenterQry19.Caption = "اعضاء بدون صرف";
     this.mbRetCenterQry19.Id = 236;
     this.mbRetCenterQry19.ImageIndex = 19;
     this.mbRetCenterQry19.LargeImageIndex = 19;
     this.mbRetCenterQry19.Name = "mbRetCenterQry19";
     this.mbRetCenterQry19.RibbonStyle = ((DevExpress.XtraBars.Ribbon.RibbonItemStyles)((DevExpress.XtraBars.Ribbon.RibbonItemStyles.SmallWithText | DevExpress.XtraBars.Ribbon.RibbonItemStyles.SmallWithoutText)));
     //
     // mbRetCenterQry20
     //
     this.mbRetCenterQry20.Caption = "ورثة بدون صرف";
     this.mbRetCenterQry20.Id = 237;
     this.mbRetCenterQry20.ImageIndex = 19;
     this.mbRetCenterQry20.LargeImageIndex = 19;
     this.mbRetCenterQry20.Name = "mbRetCenterQry20";
     this.mbRetCenterQry20.RibbonStyle = ((DevExpress.XtraBars.Ribbon.RibbonItemStyles)((DevExpress.XtraBars.Ribbon.RibbonItemStyles.SmallWithText | DevExpress.XtraBars.Ribbon.RibbonItemStyles.SmallWithoutText)));
     //
     // mbRetCenterQry21
     //
     this.mbRetCenterQry21.Caption = "احصائيات الدفعات للفرعيات";
     this.mbRetCenterQry21.Id = 238;
     this.mbRetCenterQry21.ImageIndex = 19;
     this.mbRetCenterQry21.LargeImageIndex = 19;
     this.mbRetCenterQry21.Name = "mbRetCenterQry21";
     this.mbRetCenterQry21.RibbonStyle = ((DevExpress.XtraBars.Ribbon.RibbonItemStyles)((DevExpress.XtraBars.Ribbon.RibbonItemStyles.SmallWithText | DevExpress.XtraBars.Ribbon.RibbonItemStyles.SmallWithoutText)));
     //
     // mbRetCenterXRep07
     //
     this.mbRetCenterXRep07.Caption = "احصائيات الدفعات";
     this.mbRetCenterXRep07.Id = 239;
     this.mbRetCenterXRep07.ImageIndex = 24;
     this.mbRetCenterXRep07.LargeImageIndex = 24;
     this.mbRetCenterXRep07.Name = "mbRetCenterXRep07";
     this.mbRetCenterXRep07.RibbonStyle = ((DevExpress.XtraBars.Ribbon.RibbonItemStyles)((DevExpress.XtraBars.Ribbon.RibbonItemStyles.SmallWithText | DevExpress.XtraBars.Ribbon.RibbonItemStyles.SmallWithoutText)));
     //
     // mbRetCenterTblMemberAmanat
     //
     this.mbRetCenterTblMemberAmanat.Caption = "امانات الاعضاء";
     this.mbRetCenterTblMemberAmanat.Id = 240;
     this.mbRetCenterTblMemberAmanat.ImageIndex = 42;
     this.mbRetCenterTblMemberAmanat.LargeImageIndex = 42;
     this.mbRetCenterTblMemberAmanat.Name = "mbRetCenterTblMemberAmanat";
     //
     // mbRetCenterTblWarasaAmanat
     //
     this.mbRetCenterTblWarasaAmanat.Caption = "امانات الورثة";
     this.mbRetCenterTblWarasaAmanat.Id = 241;
     this.mbRetCenterTblWarasaAmanat.ImageIndex = 43;
     this.mbRetCenterTblWarasaAmanat.LargeImageIndex = 43;
     this.mbRetCenterTblWarasaAmanat.Name = "mbRetCenterTblWarasaAmanat";
     //
     // mbRetCenterQry22
     //
     this.mbRetCenterQry22.Caption = "امانات الاعضاء";
     this.mbRetCenterQry22.Id = 242;
     this.mbRetCenterQry22.ImageIndex = 19;
     this.mbRetCenterQry22.LargeImageIndex = 19;
     this.mbRetCenterQry22.Name = "mbRetCenterQry22";
     this.mbRetCenterQry22.RibbonStyle = ((DevExpress.XtraBars.Ribbon.RibbonItemStyles)((DevExpress.XtraBars.Ribbon.RibbonItemStyles.SmallWithText | DevExpress.XtraBars.Ribbon.RibbonItemStyles.SmallWithoutText)));
     //
     // mbRetCenterQry23
     //
     this.mbRetCenterQry23.Caption = "امانات الورثة";
     this.mbRetCenterQry23.Id = 243;
     this.mbRetCenterQry23.ImageIndex = 19;
     this.mbRetCenterQry23.LargeImageIndex = 19;
     this.mbRetCenterQry23.Name = "mbRetCenterQry23";
     this.mbRetCenterQry23.RibbonStyle = ((DevExpress.XtraBars.Ribbon.RibbonItemStyles)((DevExpress.XtraBars.Ribbon.RibbonItemStyles.SmallWithText | DevExpress.XtraBars.Ribbon.RibbonItemStyles.SmallWithoutText)));
     //
     // mbRetCenterQry24
     //
     this.mbRetCenterQry24.Caption = "تحويلات الاعضاء";
     this.mbRetCenterQry24.Id = 244;
     this.mbRetCenterQry24.ImageIndex = 19;
     this.mbRetCenterQry24.LargeImageIndex = 19;
     this.mbRetCenterQry24.Name = "mbRetCenterQry24";
     this.mbRetCenterQry24.RibbonStyle = ((DevExpress.XtraBars.Ribbon.RibbonItemStyles)((DevExpress.XtraBars.Ribbon.RibbonItemStyles.SmallWithText | DevExpress.XtraBars.Ribbon.RibbonItemStyles.SmallWithoutText)));
     //
     // mbRetCenterQry25
     //
     this.mbRetCenterQry25.Caption = "خطاء في الرقم القومي للاعضاء";
     this.mbRetCenterQry25.Id = 245;
     this.mbRetCenterQry25.ImageIndex = 19;
     this.mbRetCenterQry25.LargeImageIndex = 19;
     this.mbRetCenterQry25.Name = "mbRetCenterQry25";
     this.mbRetCenterQry25.RibbonStyle = ((DevExpress.XtraBars.Ribbon.RibbonItemStyles)((DevExpress.XtraBars.Ribbon.RibbonItemStyles.SmallWithText | DevExpress.XtraBars.Ribbon.RibbonItemStyles.SmallWithoutText)));
     //
     // mbRetCenterQry26
     //
     this.mbRetCenterQry26.Caption = "خطاء في الرقم القومي للورثة";
     this.mbRetCenterQry26.Id = 246;
     this.mbRetCenterQry26.ImageIndex = 19;
     this.mbRetCenterQry26.LargeImageIndex = 19;
     this.mbRetCenterQry26.Name = "mbRetCenterQry26";
     this.mbRetCenterQry26.RibbonStyle = ((DevExpress.XtraBars.Ribbon.RibbonItemStyles)((DevExpress.XtraBars.Ribbon.RibbonItemStyles.SmallWithText | DevExpress.XtraBars.Ribbon.RibbonItemStyles.SmallWithoutText)));
     //
     // mbRetCenterQry27
     //
     this.mbRetCenterQry27.Caption = "ارشيف صرف الاعضاء";
     this.mbRetCenterQry27.Id = 247;
     this.mbRetCenterQry27.ImageIndex = 19;
     this.mbRetCenterQry27.LargeImageIndex = 19;
     this.mbRetCenterQry27.Name = "mbRetCenterQry27";
     this.mbRetCenterQry27.RibbonStyle = ((DevExpress.XtraBars.Ribbon.RibbonItemStyles)((DevExpress.XtraBars.Ribbon.RibbonItemStyles.SmallWithText | DevExpress.XtraBars.Ribbon.RibbonItemStyles.SmallWithoutText)));
     //
     // mbRetCenterQry28
     //
     this.mbRetCenterQry28.Caption = "ارشيف صرف الورثة";
     this.mbRetCenterQry28.Id = 248;
     this.mbRetCenterQry28.ImageIndex = 19;
     this.mbRetCenterQry28.LargeImageIndex = 19;
     this.mbRetCenterQry28.Name = "mbRetCenterQry28";
     this.mbRetCenterQry28.RibbonStyle = ((DevExpress.XtraBars.Ribbon.RibbonItemStyles)((DevExpress.XtraBars.Ribbon.RibbonItemStyles.SmallWithText | DevExpress.XtraBars.Ribbon.RibbonItemStyles.SmallWithoutText)));
     //
     // mbRetCenterTBLMemberSarf_arshefDelete
     //
     this.mbRetCenterTBLMemberSarf_arshefDelete.Caption = "حذف من ارشيف الاعضاء";
     this.mbRetCenterTBLMemberSarf_arshefDelete.Id = 249;
     this.mbRetCenterTBLMemberSarf_arshefDelete.ImageIndex = 44;
     this.mbRetCenterTBLMemberSarf_arshefDelete.LargeImageIndex = 44;
     this.mbRetCenterTBLMemberSarf_arshefDelete.Name = "mbRetCenterTBLMemberSarf_arshefDelete";
     //
     // mbRetCenterarchef
     //
     this.mbRetCenterarchef.Caption = "ارشيف الدفعات";
     this.mbRetCenterarchef.Id = 252;
     this.mbRetCenterarchef.ImageIndex = 44;
     this.mbRetCenterarchef.LargeImageIndex = 44;
     this.mbRetCenterarchef.LinksPersistInfo.AddRange(new DevExpress.XtraBars.LinkPersistInfo[] {
     new DevExpress.XtraBars.LinkPersistInfo(this.mbRetCenterTBLMemberSarf_arshefDelete),
     new DevExpress.XtraBars.LinkPersistInfo(this.mbRetCenterTBLWarasaSarf_arshefDelete)});
     this.mbRetCenterarchef.Name = "mbRetCenterarchef";
     //
     // mbRetCenterTBLWarasaSarf_arshefDelete
     //
     this.mbRetCenterTBLWarasaSarf_arshefDelete.Caption = "حذف من ارشيف الورثة";
     this.mbRetCenterTBLWarasaSarf_arshefDelete.Id = 253;
     this.mbRetCenterTBLWarasaSarf_arshefDelete.ImageIndex = 44;
     this.mbRetCenterTBLWarasaSarf_arshefDelete.LargeImageIndex = 44;
     this.mbRetCenterTBLWarasaSarf_arshefDelete.Name = "mbRetCenterTBLWarasaSarf_arshefDelete";
     //
     // mbRetCenterXRep08
     //
     this.mbRetCenterXRep08.Caption = "بيان الشيك 2 ارشيف";
     this.mbRetCenterXRep08.Id = 254;
     this.mbRetCenterXRep08.ImageIndex = 24;
     this.mbRetCenterXRep08.LargeImageIndex = 24;
     this.mbRetCenterXRep08.Name = "mbRetCenterXRep08";
     this.mbRetCenterXRep08.RibbonStyle = ((DevExpress.XtraBars.Ribbon.RibbonItemStyles)((DevExpress.XtraBars.Ribbon.RibbonItemStyles.SmallWithText | DevExpress.XtraBars.Ribbon.RibbonItemStyles.SmallWithoutText)));
     //
     // mbRetCenterStatis
     //
     this.mbRetCenterStatis.Caption = "احصائيات";
     this.mbRetCenterStatis.Id = 255;
     this.mbRetCenterStatis.ImageIndex = 19;
     this.mbRetCenterStatis.LargeImageIndex = 19;
     this.mbRetCenterStatis.LinksPersistInfo.AddRange(new DevExpress.XtraBars.LinkPersistInfo[] {
     new DevExpress.XtraBars.LinkPersistInfo(this.mbRetCenterQry31),
     new DevExpress.XtraBars.LinkPersistInfo(this.mbRetCenterQry32)});
     this.mbRetCenterStatis.Name = "mbRetCenterStatis";
     this.mbRetCenterStatis.RibbonStyle = ((DevExpress.XtraBars.Ribbon.RibbonItemStyles)((DevExpress.XtraBars.Ribbon.RibbonItemStyles.SmallWithText | DevExpress.XtraBars.Ribbon.RibbonItemStyles.SmallWithoutText)));
     //
     // mbRetCenterQry31
     //
     this.mbRetCenterQry31.Caption = "احصائيات الاعضاء";
     this.mbRetCenterQry31.Id = 256;
     this.mbRetCenterQry31.ImageIndex = 19;
     this.mbRetCenterQry31.LargeImageIndex = 19;
     this.mbRetCenterQry31.Name = "mbRetCenterQry31";
     this.mbRetCenterQry31.RibbonStyle = ((DevExpress.XtraBars.Ribbon.RibbonItemStyles)((DevExpress.XtraBars.Ribbon.RibbonItemStyles.SmallWithText | DevExpress.XtraBars.Ribbon.RibbonItemStyles.SmallWithoutText)));
     //
     // mbRetCenterQry32
     //
     this.mbRetCenterQry32.Caption = "احصائيات الورثة";
     this.mbRetCenterQry32.Id = 257;
     this.mbRetCenterQry32.ImageIndex = 19;
     this.mbRetCenterQry32.LargeImageIndex = 19;
     this.mbRetCenterQry32.Name = "mbRetCenterQry32";
     this.mbRetCenterQry32.RibbonStyle = ((DevExpress.XtraBars.Ribbon.RibbonItemStyles)((DevExpress.XtraBars.Ribbon.RibbonItemStyles.SmallWithText | DevExpress.XtraBars.Ribbon.RibbonItemStyles.SmallWithoutText)));
     //
     // mbRetCenterQry33
     //
     this.mbRetCenterQry33.Caption = " الاعضاء مختصر بنك";
     this.mbRetCenterQry33.Id = 258;
     this.mbRetCenterQry33.ImageIndex = 19;
     this.mbRetCenterQry33.LargeImageIndex = 19;
     this.mbRetCenterQry33.Name = "mbRetCenterQry33";
     this.mbRetCenterQry33.RibbonStyle = ((DevExpress.XtraBars.Ribbon.RibbonItemStyles)((DevExpress.XtraBars.Ribbon.RibbonItemStyles.SmallWithText | DevExpress.XtraBars.Ribbon.RibbonItemStyles.SmallWithoutText)));
     //
     // mbRetCenterQryPart1
     //
     this.mbRetCenterQryPart1.Caption = "مجموعه 1";
     this.mbRetCenterQryPart1.Id = 259;
     this.mbRetCenterQryPart1.ImageIndex = 19;
     this.mbRetCenterQryPart1.LargeImageIndex = 19;
     this.mbRetCenterQryPart1.LinksPersistInfo.AddRange(new DevExpress.XtraBars.LinkPersistInfo[] {
     new DevExpress.XtraBars.LinkPersistInfo(this.mbRetCenterQry55),
     new DevExpress.XtraBars.LinkPersistInfo(this.mbRetCenterQry56)});
     this.mbRetCenterQryPart1.Name = "mbRetCenterQryPart1";
     this.mbRetCenterQryPart1.RibbonStyle = ((DevExpress.XtraBars.Ribbon.RibbonItemStyles)((DevExpress.XtraBars.Ribbon.RibbonItemStyles.SmallWithText | DevExpress.XtraBars.Ribbon.RibbonItemStyles.SmallWithoutText)));
     //
     // mbRetCenterQry55
     //
     this.mbRetCenterQry55.Caption = "الفئات العمرية للاعضاء";
     this.mbRetCenterQry55.Id = 291;
     this.mbRetCenterQry55.ImageIndex = 19;
     this.mbRetCenterQry55.LargeImageIndex = 19;
     this.mbRetCenterQry55.Name = "mbRetCenterQry55";
     this.mbRetCenterQry55.RibbonStyle = ((DevExpress.XtraBars.Ribbon.RibbonItemStyles)((DevExpress.XtraBars.Ribbon.RibbonItemStyles.SmallWithText | DevExpress.XtraBars.Ribbon.RibbonItemStyles.SmallWithoutText)));
     //
     // mbRetCenterQry56
     //
     this.mbRetCenterQry56.Caption = "الفئات العمرية للورثة";
     this.mbRetCenterQry56.Id = 292;
     this.mbRetCenterQry56.ImageIndex = 19;
     this.mbRetCenterQry56.LargeImageIndex = 19;
     this.mbRetCenterQry56.Name = "mbRetCenterQry56";
     this.mbRetCenterQry56.RibbonStyle = ((DevExpress.XtraBars.Ribbon.RibbonItemStyles)((DevExpress.XtraBars.Ribbon.RibbonItemStyles.SmallWithText | DevExpress.XtraBars.Ribbon.RibbonItemStyles.SmallWithoutText)));
     //
     // mbRetCenterQryPart2
     //
     this.mbRetCenterQryPart2.Caption = "مجموعه 2";
     this.mbRetCenterQryPart2.Id = 260;
     this.mbRetCenterQryPart2.ImageIndex = 19;
     this.mbRetCenterQryPart2.LargeImageIndex = 19;
     this.mbRetCenterQryPart2.LinksPersistInfo.AddRange(new DevExpress.XtraBars.LinkPersistInfo[] {
     new DevExpress.XtraBars.LinkPersistInfo(this.mbRetCenterQry33),
     new DevExpress.XtraBars.LinkPersistInfo(this.mbRetCenterQry34),
     new DevExpress.XtraBars.LinkPersistInfo(this.mbRetCenterQry36),
     new DevExpress.XtraBars.LinkPersistInfo(this.mbRetCenterQry37),
     new DevExpress.XtraBars.LinkPersistInfo(this.mbRetCenterQry38),
     new DevExpress.XtraBars.LinkPersistInfo(this.mbRetCenterQry39),
     new DevExpress.XtraBars.LinkPersistInfo(this.mbRetCenterQry38a),
     new DevExpress.XtraBars.LinkPersistInfo(this.mbRetCenterQry38b),
     new DevExpress.XtraBars.LinkPersistInfo(this.mbRetCenterQry38c),
     new DevExpress.XtraBars.LinkPersistInfo(this.mbRetCenterQry40),
     new DevExpress.XtraBars.LinkPersistInfo(this.mbRetCenterQry41),
     new DevExpress.XtraBars.LinkPersistInfo(this.mbRetCenterQry61),
     new DevExpress.XtraBars.LinkPersistInfo(this.mbRetCenterQry66),
     new DevExpress.XtraBars.LinkPersistInfo(this.mbRetCenterQry62),
     new DevExpress.XtraBars.LinkPersistInfo(this.mbRetCenterQry38d),
     new DevExpress.XtraBars.LinkPersistInfo(this.mbRetCenterQry38e)});
     this.mbRetCenterQryPart2.Name = "mbRetCenterQryPart2";
     this.mbRetCenterQryPart2.RibbonStyle = ((DevExpress.XtraBars.Ribbon.RibbonItemStyles)((DevExpress.XtraBars.Ribbon.RibbonItemStyles.SmallWithText | DevExpress.XtraBars.Ribbon.RibbonItemStyles.SmallWithoutText)));
     //
     // mbRetCenterQry34
     //
     this.mbRetCenterQry34.Caption = "الورثة مختصر بنك";
     this.mbRetCenterQry34.Id = 261;
     this.mbRetCenterQry34.ImageIndex = 19;
     this.mbRetCenterQry34.LargeImageIndex = 19;
     this.mbRetCenterQry34.Name = "mbRetCenterQry34";
     this.mbRetCenterQry34.RibbonStyle = ((DevExpress.XtraBars.Ribbon.RibbonItemStyles)((DevExpress.XtraBars.Ribbon.RibbonItemStyles.SmallWithText | DevExpress.XtraBars.Ribbon.RibbonItemStyles.SmallWithoutText)));
     //
     // mbRetCenterQry36
     //
     this.mbRetCenterQry36.Caption = "اعضاء لهم رقم قومي";
     this.mbRetCenterQry36.Id = 263;
     this.mbRetCenterQry36.ImageIndex = 19;
     this.mbRetCenterQry36.LargeImageIndex = 19;
     this.mbRetCenterQry36.Name = "mbRetCenterQry36";
     this.mbRetCenterQry36.RibbonStyle = ((DevExpress.XtraBars.Ribbon.RibbonItemStyles)((DevExpress.XtraBars.Ribbon.RibbonItemStyles.SmallWithText | DevExpress.XtraBars.Ribbon.RibbonItemStyles.SmallWithoutText)));
     //
     // mbRetCenterQry37
     //
     this.mbRetCenterQry37.Caption = "ورثة لهم رقم قومي";
     this.mbRetCenterQry37.Id = 264;
     this.mbRetCenterQry37.ImageIndex = 19;
     this.mbRetCenterQry37.LargeImageIndex = 19;
     this.mbRetCenterQry37.Name = "mbRetCenterQry37";
     this.mbRetCenterQry37.RibbonStyle = ((DevExpress.XtraBars.Ribbon.RibbonItemStyles)((DevExpress.XtraBars.Ribbon.RibbonItemStyles.SmallWithText | DevExpress.XtraBars.Ribbon.RibbonItemStyles.SmallWithoutText)));
     //
     // mbRetCenterQry38
     //
     this.mbRetCenterQry38.Caption = "تاريخ ميلاد الاعضاء وفقا للرقم القومي";
     this.mbRetCenterQry38.Id = 267;
     this.mbRetCenterQry38.ImageIndex = 19;
     this.mbRetCenterQry38.LargeImageIndex = 19;
     this.mbRetCenterQry38.Name = "mbRetCenterQry38";
     this.mbRetCenterQry38.RibbonStyle = ((DevExpress.XtraBars.Ribbon.RibbonItemStyles)((DevExpress.XtraBars.Ribbon.RibbonItemStyles.SmallWithText | DevExpress.XtraBars.Ribbon.RibbonItemStyles.SmallWithoutText)));
     //
     // mbRetCenterQry39
     //
     this.mbRetCenterQry39.Caption = "تاريخ ميلاد الورثة وفقا للرقم القومي";
     this.mbRetCenterQry39.Id = 268;
     this.mbRetCenterQry39.ImageIndex = 19;
     this.mbRetCenterQry39.LargeImageIndex = 19;
     this.mbRetCenterQry39.Name = "mbRetCenterQry39";
     this.mbRetCenterQry39.RibbonStyle = ((DevExpress.XtraBars.Ribbon.RibbonItemStyles)((DevExpress.XtraBars.Ribbon.RibbonItemStyles.SmallWithText | DevExpress.XtraBars.Ribbon.RibbonItemStyles.SmallWithoutText)));
     //
     // mbRetCenterQry38a
     //
     this.mbRetCenterQry38a.Caption = "بيانات اعضاء البنك- شرط سن";
     this.mbRetCenterQry38a.Id = 276;
     this.mbRetCenterQry38a.ImageIndex = 19;
     this.mbRetCenterQry38a.LargeImageIndex = 19;
     this.mbRetCenterQry38a.Name = "mbRetCenterQry38a";
     this.mbRetCenterQry38a.RibbonStyle = ((DevExpress.XtraBars.Ribbon.RibbonItemStyles)((DevExpress.XtraBars.Ribbon.RibbonItemStyles.SmallWithText | DevExpress.XtraBars.Ribbon.RibbonItemStyles.SmallWithoutText)));
     //
     // mbRetCenterQry38b
     //
     this.mbRetCenterQry38b.Caption = "بيانات ورثة البنك- شرط ارملة 25 (المسئول1)";
     this.mbRetCenterQry38b.Id = 281;
     this.mbRetCenterQry38b.ImageIndex = 19;
     this.mbRetCenterQry38b.LargeImageIndex = 19;
     this.mbRetCenterQry38b.Name = "mbRetCenterQry38b";
     this.mbRetCenterQry38b.RibbonStyle = ((DevExpress.XtraBars.Ribbon.RibbonItemStyles)((DevExpress.XtraBars.Ribbon.RibbonItemStyles.SmallWithText | DevExpress.XtraBars.Ribbon.RibbonItemStyles.SmallWithoutText)));
     //
     // mbRetCenterQry38c
     //
     this.mbRetCenterQry38c.Caption = "بيانات ورثة البنك- شرط ارملة او اكثر 25 (المسئول1)";
     this.mbRetCenterQry38c.Id = 298;
     this.mbRetCenterQry38c.ImageIndex = 19;
     this.mbRetCenterQry38c.LargeImageIndex = 19;
     this.mbRetCenterQry38c.Name = "mbRetCenterQry38c";
     this.mbRetCenterQry38c.RibbonStyle = ((DevExpress.XtraBars.Ribbon.RibbonItemStyles)((DevExpress.XtraBars.Ribbon.RibbonItemStyles.SmallWithText | DevExpress.XtraBars.Ribbon.RibbonItemStyles.SmallWithoutText)));
     //
     // mbRetCenterQry40
     //
     this.mbRetCenterQry40.Caption = "عدد الاسماء للاعضاء";
     this.mbRetCenterQry40.Id = 269;
     this.mbRetCenterQry40.ImageIndex = 19;
     this.mbRetCenterQry40.LargeImageIndex = 19;
     this.mbRetCenterQry40.Name = "mbRetCenterQry40";
     this.mbRetCenterQry40.RibbonStyle = ((DevExpress.XtraBars.Ribbon.RibbonItemStyles)((DevExpress.XtraBars.Ribbon.RibbonItemStyles.SmallWithText | DevExpress.XtraBars.Ribbon.RibbonItemStyles.SmallWithoutText)));
     //
     // mbRetCenterQry41
     //
     this.mbRetCenterQry41.Caption = "عدد الاسماء للورثة";
     this.mbRetCenterQry41.Id = 270;
     this.mbRetCenterQry41.ImageIndex = 19;
     this.mbRetCenterQry41.LargeImageIndex = 19;
     this.mbRetCenterQry41.Name = "mbRetCenterQry41";
     this.mbRetCenterQry41.RibbonStyle = ((DevExpress.XtraBars.Ribbon.RibbonItemStyles)((DevExpress.XtraBars.Ribbon.RibbonItemStyles.SmallWithText | DevExpress.XtraBars.Ribbon.RibbonItemStyles.SmallWithoutText)));
     //
     // mbRetCenterQry61
     //
     this.mbRetCenterQry61.Caption = "بيانات دفعات الاعضاء للبنك";
     this.mbRetCenterQry61.Id = 300;
     this.mbRetCenterQry61.ImageIndex = 19;
     this.mbRetCenterQry61.LargeImageIndex = 19;
     this.mbRetCenterQry61.Name = "mbRetCenterQry61";
     this.mbRetCenterQry61.RibbonStyle = ((DevExpress.XtraBars.Ribbon.RibbonItemStyles)((DevExpress.XtraBars.Ribbon.RibbonItemStyles.SmallWithText | DevExpress.XtraBars.Ribbon.RibbonItemStyles.SmallWithoutText)));
     //
     // mbRetCenterQry66
     //
     this.mbRetCenterQry66.Caption = "بيانات دفعات الورثة للبنك";
     this.mbRetCenterQry66.Id = 308;
     this.mbRetCenterQry66.ImageIndex = 19;
     this.mbRetCenterQry66.LargeImageIndex = 19;
     this.mbRetCenterQry66.Name = "mbRetCenterQry66";
     this.mbRetCenterQry66.RibbonStyle = ((DevExpress.XtraBars.Ribbon.RibbonItemStyles)((DevExpress.XtraBars.Ribbon.RibbonItemStyles.SmallWithText | DevExpress.XtraBars.Ribbon.RibbonItemStyles.SmallWithoutText)));
     //
     // mbRetCenterQry62
     //
     this.mbRetCenterQry62.Caption = "توريد الدفعات للبنك تفصيلي";
     this.mbRetCenterQry62.Id = 303;
     this.mbRetCenterQry62.ImageIndex = 19;
     this.mbRetCenterQry62.LargeImageIndex = 19;
     this.mbRetCenterQry62.Name = "mbRetCenterQry62";
     this.mbRetCenterQry62.RibbonStyle = ((DevExpress.XtraBars.Ribbon.RibbonItemStyles)((DevExpress.XtraBars.Ribbon.RibbonItemStyles.SmallWithText | DevExpress.XtraBars.Ribbon.RibbonItemStyles.SmallWithoutText)));
     //
     // mbRetCenterQry38d
     //
     this.mbRetCenterQry38d.Caption = "بيانات ورثة البنك- (المسئول1)";
     this.mbRetCenterQry38d.Id = 313;
     this.mbRetCenterQry38d.ImageIndex = 19;
     this.mbRetCenterQry38d.LargeImageIndex = 19;
     this.mbRetCenterQry38d.Name = "mbRetCenterQry38d";
     this.mbRetCenterQry38d.RibbonStyle = ((DevExpress.XtraBars.Ribbon.RibbonItemStyles)((DevExpress.XtraBars.Ribbon.RibbonItemStyles.SmallWithText | DevExpress.XtraBars.Ribbon.RibbonItemStyles.SmallWithoutText)));
     //
     // mbRetCenterQry38e
     //
     this.mbRetCenterQry38e.Caption = "بيانات ورثة البنك- (المسئول اكثر من مسئول)";
     this.mbRetCenterQry38e.Id = 314;
     this.mbRetCenterQry38e.ImageIndex = 19;
     this.mbRetCenterQry38e.LargeImageIndex = 19;
     this.mbRetCenterQry38e.Name = "mbRetCenterQry38e";
     this.mbRetCenterQry38e.RibbonStyle = ((DevExpress.XtraBars.Ribbon.RibbonItemStyles)((DevExpress.XtraBars.Ribbon.RibbonItemStyles.SmallWithText | DevExpress.XtraBars.Ribbon.RibbonItemStyles.SmallWithoutText)));
     //
     // mbRetCenterTblChekNid
     //
     this.mbRetCenterTblChekNid.Caption = "ارقام قوميه قابله للتكرار";
     this.mbRetCenterTblChekNid.Id = 271;
     this.mbRetCenterTblChekNid.ImageIndex = 45;
     this.mbRetCenterTblChekNid.LargeImageIndex = 45;
     this.mbRetCenterTblChekNid.Name = "mbRetCenterTblChekNid";
     //
     // mbRetCenterQry42
     //
     this.mbRetCenterQry42.Caption = "دفعات الورثة";
     this.mbRetCenterQry42.Id = 272;
     this.mbRetCenterQry42.ImageIndex = 19;
     this.mbRetCenterQry42.LargeImageIndex = 19;
     this.mbRetCenterQry42.Name = "mbRetCenterQry42";
     this.mbRetCenterQry42.RibbonStyle = ((DevExpress.XtraBars.Ribbon.RibbonItemStyles)((DevExpress.XtraBars.Ribbon.RibbonItemStyles.SmallWithText | DevExpress.XtraBars.Ribbon.RibbonItemStyles.SmallWithoutText)));
     //
     // mbRetCenterQry43
     //
     this.mbRetCenterQry43.Caption = "دفعات الاعضاء";
     this.mbRetCenterQry43.Id = 273;
     this.mbRetCenterQry43.ImageIndex = 19;
     this.mbRetCenterQry43.LargeImageIndex = 19;
     this.mbRetCenterQry43.Name = "mbRetCenterQry43";
     this.mbRetCenterQry43.RibbonStyle = ((DevExpress.XtraBars.Ribbon.RibbonItemStyles)((DevExpress.XtraBars.Ribbon.RibbonItemStyles.SmallWithText | DevExpress.XtraBars.Ribbon.RibbonItemStyles.SmallWithoutText)));
     //
     // mbRetCenterXRep09
     //
     this.mbRetCenterXRep09.Caption = "بيان الشيك 3";
     this.mbRetCenterXRep09.Id = 274;
     this.mbRetCenterXRep09.ImageIndex = 24;
     this.mbRetCenterXRep09.LargeImageIndex = 24;
     this.mbRetCenterXRep09.Name = "mbRetCenterXRep09";
     this.mbRetCenterXRep09.RibbonStyle = ((DevExpress.XtraBars.Ribbon.RibbonItemStyles)((DevExpress.XtraBars.Ribbon.RibbonItemStyles.SmallWithText | DevExpress.XtraBars.Ribbon.RibbonItemStyles.SmallWithoutText)));
     //
     // mbRetCenterTBLProofDoc
     //
     this.mbRetCenterTBLProofDoc.Caption = "بيان معاش";
     this.mbRetCenterTBLProofDoc.Id = 275;
     this.mbRetCenterTBLProofDoc.ImageIndex = 46;
     this.mbRetCenterTBLProofDoc.LargeImageIndex = 46;
     this.mbRetCenterTBLProofDoc.Name = "mbRetCenterTBLProofDoc";
     //
     // mbRetCenterQry44
     //
     this.mbRetCenterQry44.Caption = "البيانات المصدرة للبنك";
     this.mbRetCenterQry44.Id = 277;
     this.mbRetCenterQry44.ImageIndex = 19;
     this.mbRetCenterQry44.LargeImageIndex = 19;
     this.mbRetCenterQry44.Name = "mbRetCenterQry44";
     this.mbRetCenterQry44.RibbonStyle = ((DevExpress.XtraBars.Ribbon.RibbonItemStyles)((DevExpress.XtraBars.Ribbon.RibbonItemStyles.SmallWithText | DevExpress.XtraBars.Ribbon.RibbonItemStyles.SmallWithoutText)));
     //
     // mbRetCenterBankQry
     //
     this.mbRetCenterBankQry.Caption = "بيانات البنك";
     this.mbRetCenterBankQry.Id = 278;
     this.mbRetCenterBankQry.ImageIndex = 19;
     this.mbRetCenterBankQry.LargeImageIndex = 19;
     this.mbRetCenterBankQry.LinksPersistInfo.AddRange(new DevExpress.XtraBars.LinkPersistInfo[] {
     new DevExpress.XtraBars.LinkPersistInfo(this.mbRetCenterQry44),
     new DevExpress.XtraBars.LinkPersistInfo(this.mbRetCenterQry45),
     new DevExpress.XtraBars.LinkPersistInfo(this.mbRetCenterQry46),
     new DevExpress.XtraBars.LinkPersistInfo(this.mbRetCenterQry47),
     new DevExpress.XtraBars.LinkPersistInfo(this.mbRetCenterQry48),
     new DevExpress.XtraBars.LinkPersistInfo(this.mbRetCenterQry48A),
     new DevExpress.XtraBars.LinkPersistInfo(this.mbRetCenterQry49),
     new DevExpress.XtraBars.LinkPersistInfo(this.mbRetCenterQry51),
     new DevExpress.XtraBars.LinkPersistInfo(this.mbRetCenterQry52),
     new DevExpress.XtraBars.LinkPersistInfo(this.mbRetCenterQry53),
     new DevExpress.XtraBars.LinkPersistInfo(this.mbRetCenterQry54),
     new DevExpress.XtraBars.LinkPersistInfo(this.mbRetCenterQry64),
     new DevExpress.XtraBars.LinkPersistInfo(this.mbRetCenterQry63),
     new DevExpress.XtraBars.LinkPersistInfo(this.mbRetCenterQry68),
     new DevExpress.XtraBars.LinkPersistInfo(this.mbRetCenterQry69),
     new DevExpress.XtraBars.LinkPersistInfo(this.mbRetCenterQry76),
     new DevExpress.XtraBars.LinkPersistInfo(this.mbRetCenterQry77),
     new DevExpress.XtraBars.LinkPersistInfo(this.mbRetCenterQry61A),
     new DevExpress.XtraBars.LinkPersistInfo(this.mbRetCenterQry66A),
     new DevExpress.XtraBars.LinkPersistInfo(this.mbRetCenterQry106),
     new DevExpress.XtraBars.LinkPersistInfo(this.mbRetCenterQry107)});
     this.mbRetCenterBankQry.Name = "mbRetCenterBankQry";
     this.mbRetCenterBankQry.RibbonStyle = ((DevExpress.XtraBars.Ribbon.RibbonItemStyles)((DevExpress.XtraBars.Ribbon.RibbonItemStyles.SmallWithText | DevExpress.XtraBars.Ribbon.RibbonItemStyles.SmallWithoutText)));
     //
     // mbRetCenterQry45
     //
     this.mbRetCenterQry45.Caption = "البيانات المصدرة للبنك - احصاء";
     this.mbRetCenterQry45.Id = 279;
     this.mbRetCenterQry45.ImageIndex = 19;
     this.mbRetCenterQry45.LargeImageIndex = 19;
     this.mbRetCenterQry45.Name = "mbRetCenterQry45";
     this.mbRetCenterQry45.RibbonStyle = ((DevExpress.XtraBars.Ribbon.RibbonItemStyles)((DevExpress.XtraBars.Ribbon.RibbonItemStyles.SmallWithText | DevExpress.XtraBars.Ribbon.RibbonItemStyles.SmallWithoutText)));
     //
     // mbRetCenterQry46
     //
     this.mbRetCenterQry46.Caption = "البيانات المصدرة للبنك - احصاء 2";
     this.mbRetCenterQry46.Id = 280;
     this.mbRetCenterQry46.ImageIndex = 19;
     this.mbRetCenterQry46.LargeImageIndex = 19;
     this.mbRetCenterQry46.Name = "mbRetCenterQry46";
     this.mbRetCenterQry46.RibbonStyle = ((DevExpress.XtraBars.Ribbon.RibbonItemStyles)((DevExpress.XtraBars.Ribbon.RibbonItemStyles.SmallWithText | DevExpress.XtraBars.Ribbon.RibbonItemStyles.SmallWithoutText)));
     //
     // mbRetCenterQry47
     //
     this.mbRetCenterQry47.Caption = "البيانات المصدرة للبنك ورثة";
     this.mbRetCenterQry47.Id = 282;
     this.mbRetCenterQry47.ImageIndex = 19;
     this.mbRetCenterQry47.LargeImageIndex = 19;
     this.mbRetCenterQry47.Name = "mbRetCenterQry47";
     this.mbRetCenterQry47.RibbonStyle = ((DevExpress.XtraBars.Ribbon.RibbonItemStyles)((DevExpress.XtraBars.Ribbon.RibbonItemStyles.SmallWithText | DevExpress.XtraBars.Ribbon.RibbonItemStyles.SmallWithoutText)));
     //
     // mbRetCenterQry48
     //
     this.mbRetCenterQry48.Caption = "البيانات المصدرة للبنك ورثة - احصاء";
     this.mbRetCenterQry48.Id = 283;
     this.mbRetCenterQry48.ImageIndex = 19;
     this.mbRetCenterQry48.LargeImageIndex = 19;
     this.mbRetCenterQry48.Name = "mbRetCenterQry48";
     this.mbRetCenterQry48.RibbonStyle = ((DevExpress.XtraBars.Ribbon.RibbonItemStyles)((DevExpress.XtraBars.Ribbon.RibbonItemStyles.SmallWithText | DevExpress.XtraBars.Ribbon.RibbonItemStyles.SmallWithoutText)));
     //
     // mbRetCenterQry48A
     //
     this.mbRetCenterQry48A.Caption = "البيانات المصدرة للبنك ورثة - احصاء2";
     this.mbRetCenterQry48A.Id = 289;
     this.mbRetCenterQry48A.ImageIndex = 19;
     this.mbRetCenterQry48A.LargeImageIndex = 19;
     this.mbRetCenterQry48A.Name = "mbRetCenterQry48A";
     this.mbRetCenterQry48A.RibbonStyle = ((DevExpress.XtraBars.Ribbon.RibbonItemStyles)((DevExpress.XtraBars.Ribbon.RibbonItemStyles.SmallWithText | DevExpress.XtraBars.Ribbon.RibbonItemStyles.SmallWithoutText)));
     //
     // mbRetCenterQry49
     //
     this.mbRetCenterQry49.Caption = "حالة البيانات المصدرة للبنك";
     this.mbRetCenterQry49.Id = 284;
     this.mbRetCenterQry49.ImageIndex = 19;
     this.mbRetCenterQry49.LargeImageIndex = 19;
     this.mbRetCenterQry49.Name = "mbRetCenterQry49";
     this.mbRetCenterQry49.RibbonStyle = ((DevExpress.XtraBars.Ribbon.RibbonItemStyles)((DevExpress.XtraBars.Ribbon.RibbonItemStyles.SmallWithText | DevExpress.XtraBars.Ribbon.RibbonItemStyles.SmallWithoutText)));
     //
     // mbRetCenterQry51
     //
     this.mbRetCenterQry51.Caption = "اختبار الرقم القومي للورث";
     this.mbRetCenterQry51.Id = 286;
     this.mbRetCenterQry51.ImageIndex = 19;
     this.mbRetCenterQry51.LargeImageIndex = 19;
     this.mbRetCenterQry51.Name = "mbRetCenterQry51";
     this.mbRetCenterQry51.RibbonStyle = ((DevExpress.XtraBars.Ribbon.RibbonItemStyles)((DevExpress.XtraBars.Ribbon.RibbonItemStyles.SmallWithText | DevExpress.XtraBars.Ribbon.RibbonItemStyles.SmallWithoutText)));
     //
     // mbRetCenterQry52
     //
     this.mbRetCenterQry52.Caption = "الفرق العمر بين ابناء الورثة و الام";
     this.mbRetCenterQry52.Id = 287;
     this.mbRetCenterQry52.ImageIndex = 19;
     this.mbRetCenterQry52.LargeImageIndex = 19;
     this.mbRetCenterQry52.Name = "mbRetCenterQry52";
     this.mbRetCenterQry52.RibbonStyle = ((DevExpress.XtraBars.Ribbon.RibbonItemStyles)((DevExpress.XtraBars.Ribbon.RibbonItemStyles.SmallWithText | DevExpress.XtraBars.Ribbon.RibbonItemStyles.SmallWithoutText)));
     //
     // mbRetCenterQry53
     //
     this.mbRetCenterQry53.Caption = "اختبار تصدير البنك للورثة";
     this.mbRetCenterQry53.Id = 288;
     this.mbRetCenterQry53.ImageIndex = 19;
     this.mbRetCenterQry53.LargeImageIndex = 19;
     this.mbRetCenterQry53.Name = "mbRetCenterQry53";
     this.mbRetCenterQry53.RibbonStyle = ((DevExpress.XtraBars.Ribbon.RibbonItemStyles)((DevExpress.XtraBars.Ribbon.RibbonItemStyles.SmallWithText | DevExpress.XtraBars.Ribbon.RibbonItemStyles.SmallWithoutText)));
     //
     // mbRetCenterQry54
     //
     this.mbRetCenterQry54.Caption = "ورثة لهم اكثر من مسئول";
     this.mbRetCenterQry54.Id = 290;
     this.mbRetCenterQry54.ImageIndex = 19;
     this.mbRetCenterQry54.LargeImageIndex = 19;
     this.mbRetCenterQry54.Name = "mbRetCenterQry54";
     this.mbRetCenterQry54.RibbonStyle = ((DevExpress.XtraBars.Ribbon.RibbonItemStyles)((DevExpress.XtraBars.Ribbon.RibbonItemStyles.SmallWithText | DevExpress.XtraBars.Ribbon.RibbonItemStyles.SmallWithoutText)));
     //
     // mbRetCenterQry64
     //
     this.mbRetCenterQry64.Caption = "مسئولي صرف برقم فيزا مكرر";
     this.mbRetCenterQry64.Id = 306;
     this.mbRetCenterQry64.ImageIndex = 19;
     this.mbRetCenterQry64.LargeImageIndex = 19;
     this.mbRetCenterQry64.Name = "mbRetCenterQry64";
     this.mbRetCenterQry64.RibbonStyle = ((DevExpress.XtraBars.Ribbon.RibbonItemStyles)((DevExpress.XtraBars.Ribbon.RibbonItemStyles.SmallWithText | DevExpress.XtraBars.Ribbon.RibbonItemStyles.SmallWithoutText)));
     //
     // mbRetCenterQry63
     //
     this.mbRetCenterQry63.Caption = "مسئول بدون فيزا";
     this.mbRetCenterQry63.Id = 307;
     this.mbRetCenterQry63.ImageIndex = 19;
     this.mbRetCenterQry63.LargeImageIndex = 19;
     this.mbRetCenterQry63.Name = "mbRetCenterQry63";
     this.mbRetCenterQry63.RibbonStyle = ((DevExpress.XtraBars.Ribbon.RibbonItemStyles)((DevExpress.XtraBars.Ribbon.RibbonItemStyles.SmallWithText | DevExpress.XtraBars.Ribbon.RibbonItemStyles.SmallWithoutText)));
     //
     // mbRetCenterQry68
     //
     this.mbRetCenterQry68.Caption = "البيانات المصدرة للبنك اعضاء بالحافظة";
     this.mbRetCenterQry68.Id = 317;
     this.mbRetCenterQry68.ImageIndex = 19;
     this.mbRetCenterQry68.LargeImageIndex = 19;
     this.mbRetCenterQry68.Name = "mbRetCenterQry68";
     this.mbRetCenterQry68.RibbonStyle = ((DevExpress.XtraBars.Ribbon.RibbonItemStyles)((DevExpress.XtraBars.Ribbon.RibbonItemStyles.SmallWithText | DevExpress.XtraBars.Ribbon.RibbonItemStyles.SmallWithoutText)));
     //
     // mbRetCenterQry69
     //
     this.mbRetCenterQry69.Caption = "البيانات المصدرة للبنك ورثة بالحافظة";
     this.mbRetCenterQry69.Id = 318;
     this.mbRetCenterQry69.ImageIndex = 19;
     this.mbRetCenterQry69.LargeImageIndex = 19;
     this.mbRetCenterQry69.Name = "mbRetCenterQry69";
     this.mbRetCenterQry69.RibbonStyle = ((DevExpress.XtraBars.Ribbon.RibbonItemStyles)((DevExpress.XtraBars.Ribbon.RibbonItemStyles.SmallWithText | DevExpress.XtraBars.Ribbon.RibbonItemStyles.SmallWithoutText)));
     //
     // mbRetCenterQry76
     //
     this.mbRetCenterQry76.Caption = "أرشيف دفعات البنك - الاعضاء";
     this.mbRetCenterQry76.Id = 329;
     this.mbRetCenterQry76.ImageIndex = 19;
     this.mbRetCenterQry76.LargeImageIndex = 19;
     this.mbRetCenterQry76.Name = "mbRetCenterQry76";
     this.mbRetCenterQry76.RibbonStyle = ((DevExpress.XtraBars.Ribbon.RibbonItemStyles)((DevExpress.XtraBars.Ribbon.RibbonItemStyles.SmallWithText | DevExpress.XtraBars.Ribbon.RibbonItemStyles.SmallWithoutText)));
     //
     // mbRetCenterQry77
     //
     this.mbRetCenterQry77.Caption = "أرشيف دفعات البنك - الورثة";
     this.mbRetCenterQry77.Id = 330;
     this.mbRetCenterQry77.ImageIndex = 19;
     this.mbRetCenterQry77.LargeImageIndex = 19;
     this.mbRetCenterQry77.Name = "mbRetCenterQry77";
     this.mbRetCenterQry77.RibbonStyle = ((DevExpress.XtraBars.Ribbon.RibbonItemStyles)((DevExpress.XtraBars.Ribbon.RibbonItemStyles.SmallWithText | DevExpress.XtraBars.Ribbon.RibbonItemStyles.SmallWithoutText)));
     //
     // mbRetCenterQry61A
     //
     this.mbRetCenterQry61A.Caption = "امانات الفيزا اعضاء";
     this.mbRetCenterQry61A.Id = 366;
     this.mbRetCenterQry61A.ImageIndex = 19;
     this.mbRetCenterQry61A.LargeImageIndex = 19;
     this.mbRetCenterQry61A.Name = "mbRetCenterQry61A";
     this.mbRetCenterQry61A.RibbonStyle = ((DevExpress.XtraBars.Ribbon.RibbonItemStyles)((DevExpress.XtraBars.Ribbon.RibbonItemStyles.SmallWithText | DevExpress.XtraBars.Ribbon.RibbonItemStyles.SmallWithoutText)));
     //
     // mbRetCenterQry66A
     //
     this.mbRetCenterQry66A.Caption = "امانات الفيزا ورثة";
     this.mbRetCenterQry66A.Id = 367;
     this.mbRetCenterQry66A.ImageIndex = 19;
     this.mbRetCenterQry66A.LargeImageIndex = 19;
     this.mbRetCenterQry66A.Name = "mbRetCenterQry66A";
     this.mbRetCenterQry66A.RibbonStyle = ((DevExpress.XtraBars.Ribbon.RibbonItemStyles)((DevExpress.XtraBars.Ribbon.RibbonItemStyles.SmallWithText | DevExpress.XtraBars.Ribbon.RibbonItemStyles.SmallWithoutText)));
     //
     // mbRetCenterQry106
     //
     this.mbRetCenterQry106.Caption = "فرق الارشيف و البنك ورثه في تاريخ";
     this.mbRetCenterQry106.Id = 414;
     this.mbRetCenterQry106.ImageIndex = 19;
     this.mbRetCenterQry106.LargeImageIndex = 19;
     this.mbRetCenterQry106.Name = "mbRetCenterQry106";
     //
     // mbRetCenterQry107
     //
     this.mbRetCenterQry107.Caption = "فرق الارشيف و البنك اعضاء في تاريخ";
     this.mbRetCenterQry107.Id = 415;
     this.mbRetCenterQry107.ImageIndex = 19;
     this.mbRetCenterQry107.LargeImageIndex = 19;
     this.mbRetCenterQry107.Name = "mbRetCenterQry107";
     //
     // mbRetCenterQry50
     //
     this.mbRetCenterQry50.Caption = "ارقام قومية متكررة في الاعضاء و الورثة";
     this.mbRetCenterQry50.Id = 285;
     this.mbRetCenterQry50.ImageIndex = 19;
     this.mbRetCenterQry50.LargeImageIndex = 19;
     this.mbRetCenterQry50.Name = "mbRetCenterQry50";
     this.mbRetCenterQry50.RibbonStyle = ((DevExpress.XtraBars.Ribbon.RibbonItemStyles)((DevExpress.XtraBars.Ribbon.RibbonItemStyles.SmallWithText | DevExpress.XtraBars.Ribbon.RibbonItemStyles.SmallWithoutText)));
     //
     // mbRetCenterTBLBeanWarsa
     //
     this.mbRetCenterTBLBeanWarsa.Caption = "بيان معاش الدفعة";
     this.mbRetCenterTBLBeanWarsa.Id = 293;
     this.mbRetCenterTBLBeanWarsa.ImageIndex = 46;
     this.mbRetCenterTBLBeanWarsa.LargeImageIndex = 46;
     this.mbRetCenterTBLBeanWarsa.Name = "mbRetCenterTBLBeanWarsa";
     //
     // mbRetCenterBank
     //
     this.mbRetCenterBank.Caption = "بيانات البنك";
     this.mbRetCenterBank.Id = 295;
     this.mbRetCenterBank.ImageIndex = 47;
     this.mbRetCenterBank.LargeImageIndex = 47;
     this.mbRetCenterBank.LinksPersistInfo.AddRange(new DevExpress.XtraBars.LinkPersistInfo[] {
     new DevExpress.XtraBars.LinkPersistInfo(this.mbRetCenterActivateVisa),
     new DevExpress.XtraBars.LinkPersistInfo(this.mbRetCenterActivateVisaWarasa)});
     this.mbRetCenterBank.Name = "mbRetCenterBank";
     //
     // mbRetCenterActivateVisa
     //
     this.mbRetCenterActivateVisa.Caption = "بيانات تفعيل البطاقات - اعضاء";
     this.mbRetCenterActivateVisa.Id = 296;
     this.mbRetCenterActivateVisa.ImageIndex = 47;
     this.mbRetCenterActivateVisa.LargeImageIndex = 47;
     this.mbRetCenterActivateVisa.Name = "mbRetCenterActivateVisa";
     //
     // mbRetCenterActivateVisaWarasa
     //
     this.mbRetCenterActivateVisaWarasa.Caption = "بيانات تفعيل البطاقات - ورثة";
     this.mbRetCenterActivateVisaWarasa.Id = 297;
     this.mbRetCenterActivateVisaWarasa.ImageIndex = 47;
     this.mbRetCenterActivateVisaWarasa.LargeImageIndex = 47;
     this.mbRetCenterActivateVisaWarasa.Name = "mbRetCenterActivateVisaWarasa";
     //
     // mbRetCenterQry60
     //
     this.mbRetCenterQry60.Caption = "بيان معاش لم يرد";
     this.mbRetCenterQry60.Id = 299;
     this.mbRetCenterQry60.ImageIndex = 19;
     this.mbRetCenterQry60.LargeImageIndex = 19;
     this.mbRetCenterQry60.Name = "mbRetCenterQry60";
     this.mbRetCenterQry60.RibbonStyle = ((DevExpress.XtraBars.Ribbon.RibbonItemStyles)((DevExpress.XtraBars.Ribbon.RibbonItemStyles.SmallWithText | DevExpress.XtraBars.Ribbon.RibbonItemStyles.SmallWithoutText)));
     //
     // mbRetCenterXRep10
     //
     this.mbRetCenterXRep10.Caption = "بيان توريد الدفعات اعضاء للبنك";
     this.mbRetCenterXRep10.Id = 301;
     this.mbRetCenterXRep10.ImageIndex = 24;
     this.mbRetCenterXRep10.LargeImageIndex = 24;
     this.mbRetCenterXRep10.Name = "mbRetCenterXRep10";
     this.mbRetCenterXRep10.RibbonStyle = ((DevExpress.XtraBars.Ribbon.RibbonItemStyles)((DevExpress.XtraBars.Ribbon.RibbonItemStyles.SmallWithText | DevExpress.XtraBars.Ribbon.RibbonItemStyles.SmallWithoutText)));
     //
     // mbRetCenterXRep11
     //
     this.mbRetCenterXRep11.Caption = "بيان توريد الدفعات اعضاء للبنك تفصيلي";
     this.mbRetCenterXRep11.Id = 302;
     this.mbRetCenterXRep11.ImageIndex = 24;
     this.mbRetCenterXRep11.LargeImageIndex = 24;
     this.mbRetCenterXRep11.Name = "mbRetCenterXRep11";
     this.mbRetCenterXRep11.RibbonStyle = ((DevExpress.XtraBars.Ribbon.RibbonItemStyles)((DevExpress.XtraBars.Ribbon.RibbonItemStyles.SmallWithText | DevExpress.XtraBars.Ribbon.RibbonItemStyles.SmallWithoutText)));
     //
     // mbRetCenterStopYasrefByTBLBeanWarsa
     //
     this.mbRetCenterStopYasrefByTBLBeanWarsa.Caption = "ايقاف الصرف طبقا لبيان المعاش";
     this.mbRetCenterStopYasrefByTBLBeanWarsa.Id = 304;
     this.mbRetCenterStopYasrefByTBLBeanWarsa.ImageIndex = 46;
     this.mbRetCenterStopYasrefByTBLBeanWarsa.LargeImageIndex = 46;
     this.mbRetCenterStopYasrefByTBLBeanWarsa.Name = "mbRetCenterStopYasrefByTBLBeanWarsa";
     //
     // mbRetCenterTBLBeanWarsaMenu
     //
     this.mbRetCenterTBLBeanWarsaMenu.Caption = "بيان معاش الدفعة";
     this.mbRetCenterTBLBeanWarsaMenu.Id = 305;
     this.mbRetCenterTBLBeanWarsaMenu.ImageIndex = 46;
     this.mbRetCenterTBLBeanWarsaMenu.LargeImageIndex = 46;
     this.mbRetCenterTBLBeanWarsaMenu.LinksPersistInfo.AddRange(new DevExpress.XtraBars.LinkPersistInfo[] {
     new DevExpress.XtraBars.LinkPersistInfo(this.mbRetCenterTBLBeanWarsa),
     new DevExpress.XtraBars.LinkPersistInfo(this.mbRetCenterStopYasrefByTBLBeanWarsa)});
     this.mbRetCenterTBLBeanWarsaMenu.Name = "mbRetCenterTBLBeanWarsaMenu";
     //
     // mbRetCenterQry67
     //
     this.mbRetCenterQry67.Caption = "فيزا المسئول غير مطابق مع فيزا التابع";
     this.mbRetCenterQry67.Id = 309;
     this.mbRetCenterQry67.ImageIndex = 19;
     this.mbRetCenterQry67.LargeImageIndex = 19;
     this.mbRetCenterQry67.Name = "mbRetCenterQry67";
     this.mbRetCenterQry67.RibbonStyle = ((DevExpress.XtraBars.Ribbon.RibbonItemStyles)((DevExpress.XtraBars.Ribbon.RibbonItemStyles.SmallWithText | DevExpress.XtraBars.Ribbon.RibbonItemStyles.SmallWithoutText)));
     //
     // mbRetCenterXRep12
     //
     this.mbRetCenterXRep12.Caption = "بيان توريد الدفعات ورثة للبنك";
     this.mbRetCenterXRep12.Id = 310;
     this.mbRetCenterXRep12.ImageIndex = 24;
     this.mbRetCenterXRep12.LargeImageIndex = 24;
     this.mbRetCenterXRep12.Name = "mbRetCenterXRep12";
     this.mbRetCenterXRep12.RibbonStyle = ((DevExpress.XtraBars.Ribbon.RibbonItemStyles)((DevExpress.XtraBars.Ribbon.RibbonItemStyles.SmallWithText | DevExpress.XtraBars.Ribbon.RibbonItemStyles.SmallWithoutText)));
     //
     // mbRetCenterXRep13
     //
     this.mbRetCenterXRep13.Caption = "بيان توريد الدفعات ورثة للبنك تفصيلي";
     this.mbRetCenterXRep13.Id = 311;
     this.mbRetCenterXRep13.ImageIndex = 24;
     this.mbRetCenterXRep13.LargeImageIndex = 24;
     this.mbRetCenterXRep13.Name = "mbRetCenterXRep13";
     this.mbRetCenterXRep13.RibbonStyle = ((DevExpress.XtraBars.Ribbon.RibbonItemStyles)((DevExpress.XtraBars.Ribbon.RibbonItemStyles.SmallWithText | DevExpress.XtraBars.Ribbon.RibbonItemStyles.SmallWithoutText)));
     //
     // mbRetCenterTBLDeathMembers
     //
     this.mbRetCenterTBLDeathMembers.Caption = "وفيات الاعضاء";
     this.mbRetCenterTBLDeathMembers.Id = 312;
     this.mbRetCenterTBLDeathMembers.ImageIndex = 48;
     this.mbRetCenterTBLDeathMembers.LargeImageIndex = 48;
     this.mbRetCenterTBLDeathMembers.Name = "mbRetCenterTBLDeathMembers";
     //
     // mbRetCenterXRep14
     //
     this.mbRetCenterXRep14.Caption = "اجمالي توريد اعضاء";
     this.mbRetCenterXRep14.Id = 315;
     this.mbRetCenterXRep14.ImageIndex = 24;
     this.mbRetCenterXRep14.LargeImageIndex = 24;
     this.mbRetCenterXRep14.Name = "mbRetCenterXRep14";
     this.mbRetCenterXRep14.RibbonStyle = ((DevExpress.XtraBars.Ribbon.RibbonItemStyles)((DevExpress.XtraBars.Ribbon.RibbonItemStyles.SmallWithText | DevExpress.XtraBars.Ribbon.RibbonItemStyles.SmallWithoutText)));
     //
     // mbRetCenterXRep15
     //
     this.mbRetCenterXRep15.Caption = "اجمالي توريد ورثة";
     this.mbRetCenterXRep15.Id = 316;
     this.mbRetCenterXRep15.ImageIndex = 24;
     this.mbRetCenterXRep15.LargeImageIndex = 24;
     this.mbRetCenterXRep15.Name = "mbRetCenterXRep15";
     this.mbRetCenterXRep15.RibbonStyle = ((DevExpress.XtraBars.Ribbon.RibbonItemStyles)((DevExpress.XtraBars.Ribbon.RibbonItemStyles.SmallWithText | DevExpress.XtraBars.Ribbon.RibbonItemStyles.SmallWithoutText)));
     //
     // mbRetCenterQry70
     //
     this.mbRetCenterQry70.Caption = "مقارنة صرفيتين ورثة";
     this.mbRetCenterQry70.Id = 319;
     this.mbRetCenterQry70.ImageIndex = 19;
     this.mbRetCenterQry70.LargeImageIndex = 19;
     this.mbRetCenterQry70.Name = "mbRetCenterQry70";
     this.mbRetCenterQry70.RibbonStyle = ((DevExpress.XtraBars.Ribbon.RibbonItemStyles)((DevExpress.XtraBars.Ribbon.RibbonItemStyles.SmallWithText | DevExpress.XtraBars.Ribbon.RibbonItemStyles.SmallWithoutText)));
     //
     // mbRetCenterQry71
     //
     this.mbRetCenterQry71.Caption = "فرق بين صرفية الورثة و البنك";
     this.mbRetCenterQry71.Id = 320;
     this.mbRetCenterQry71.ImageIndex = 19;
     this.mbRetCenterQry71.LargeImageIndex = 19;
     this.mbRetCenterQry71.Name = "mbRetCenterQry71";
     this.mbRetCenterQry71.RibbonStyle = ((DevExpress.XtraBars.Ribbon.RibbonItemStyles)((DevExpress.XtraBars.Ribbon.RibbonItemStyles.SmallWithText | DevExpress.XtraBars.Ribbon.RibbonItemStyles.SmallWithoutText)));
     //
     // mbRetCenterQryPart3
     //
     this.mbRetCenterQryPart3.Caption = "استعلامات الصرفية";
     this.mbRetCenterQryPart3.Id = 321;
     this.mbRetCenterQryPart3.ImageIndex = 19;
     this.mbRetCenterQryPart3.LargeImageIndex = 19;
     this.mbRetCenterQryPart3.LinksPersistInfo.AddRange(new DevExpress.XtraBars.LinkPersistInfo[] {
     new DevExpress.XtraBars.LinkPersistInfo(this.mbRetCenterQry43),
     new DevExpress.XtraBars.LinkPersistInfo(this.mbRetCenterQry42),
     new DevExpress.XtraBars.LinkPersistInfo(this.mbRetCenterQry27),
     new DevExpress.XtraBars.LinkPersistInfo(this.mbRetCenterQry28),
     new DevExpress.XtraBars.LinkPersistInfo(this.mbRetCenterQry27a),
     new DevExpress.XtraBars.LinkPersistInfo(this.mbRetCenterQry28a),
     new DevExpress.XtraBars.LinkPersistInfo(this.mbRetCenterQry27b),
     new DevExpress.XtraBars.LinkPersistInfo(this.mbRetCenterQry28b),
     new DevExpress.XtraBars.LinkPersistInfo(this.mbRetCenterQry70),
     new DevExpress.XtraBars.LinkPersistInfo(this.mbRetCenterQry71),
     new DevExpress.XtraBars.LinkPersistInfo(this.mbRetCenterQry87),
     new DevExpress.XtraBars.LinkPersistInfo(this.mbRetCenterQry74A),
     new DevExpress.XtraBars.LinkPersistInfo(this.mbRetCenterQry74),
     new DevExpress.XtraBars.LinkPersistInfo(this.mbRetCenterQry82),
     new DevExpress.XtraBars.LinkPersistInfo(this.mbRetCenterQry83),
     new DevExpress.XtraBars.LinkPersistInfo(this.mbRetCenterQry85),
     new DevExpress.XtraBars.LinkPersistInfo(this.mbRetCenterQry86),
     new DevExpress.XtraBars.LinkPersistInfo(this.mbRetCenterQry88),
     new DevExpress.XtraBars.LinkPersistInfo(this.mbRetCenterQry91),
     new DevExpress.XtraBars.LinkPersistInfo(this.mbRetCenterQry89),
     new DevExpress.XtraBars.LinkPersistInfo(this.mbRetCenterQry92),
     new DevExpress.XtraBars.LinkPersistInfo(this.mbRetCenterQry90),
     new DevExpress.XtraBars.LinkPersistInfo(this.mbRetCenterQry99),
     new DevExpress.XtraBars.LinkPersistInfo(this.mbRetCenterQry100),
     new DevExpress.XtraBars.LinkPersistInfo(this.mbRetCenterQry104),
     new DevExpress.XtraBars.LinkPersistInfo(this.mbRetCenterQry101),
     new DevExpress.XtraBars.LinkPersistInfo(this.mbRetCenterQry103),
     new DevExpress.XtraBars.LinkPersistInfo(this.mbRetCenterQry105),
     new DevExpress.XtraBars.LinkPersistInfo(this.mbRetCenterQry111)});
     this.mbRetCenterQryPart3.Name = "mbRetCenterQryPart3";
     this.mbRetCenterQryPart3.RibbonStyle = ((DevExpress.XtraBars.Ribbon.RibbonItemStyles)((DevExpress.XtraBars.Ribbon.RibbonItemStyles.SmallWithText | DevExpress.XtraBars.Ribbon.RibbonItemStyles.SmallWithoutText)));
     //
     // mbRetCenterQry27a
     //
     this.mbRetCenterQry27a.Caption = "ارشيف صرف الاعضاء - بالدفعة";
     this.mbRetCenterQry27a.Id = 385;
     this.mbRetCenterQry27a.ImageIndex = 19;
     this.mbRetCenterQry27a.LargeImageIndex = 19;
     this.mbRetCenterQry27a.Name = "mbRetCenterQry27a";
     //
     // mbRetCenterQry28a
     //
     this.mbRetCenterQry28a.Caption = "ارشيف صرف الورثة - بالدفعة";
     this.mbRetCenterQry28a.Id = 386;
     this.mbRetCenterQry28a.ImageIndex = 19;
     this.mbRetCenterQry28a.LargeImageIndex = 19;
     this.mbRetCenterQry28a.Name = "mbRetCenterQry28a";
     //
     // mbRetCenterQry27b
     //
     this.mbRetCenterQry27b.Caption = "ارشيف صرف الاعضاء - بالكود";
     this.mbRetCenterQry27b.Id = 407;
     this.mbRetCenterQry27b.ImageIndex = 19;
     this.mbRetCenterQry27b.LargeImageIndex = 19;
     this.mbRetCenterQry27b.Name = "mbRetCenterQry27b";
     //
     // mbRetCenterQry28b
     //
     this.mbRetCenterQry28b.Caption = "ارشيف صرف الورثة - بالكود";
     this.mbRetCenterQry28b.Id = 408;
     this.mbRetCenterQry28b.ImageIndex = 19;
     this.mbRetCenterQry28b.LargeImageIndex = 19;
     this.mbRetCenterQry28b.Name = "mbRetCenterQry28b";
     //
     // mbRetCenterQry87
     //
     this.mbRetCenterQry87.Caption = "فرق بين صرفية الاعضاء و البنك";
     this.mbRetCenterQry87.Id = 365;
     this.mbRetCenterQry87.ImageIndex = 19;
     this.mbRetCenterQry87.LargeImageIndex = 19;
     this.mbRetCenterQry87.Name = "mbRetCenterQry87";
     this.mbRetCenterQry87.RibbonStyle = ((DevExpress.XtraBars.Ribbon.RibbonItemStyles)((DevExpress.XtraBars.Ribbon.RibbonItemStyles.SmallWithText | DevExpress.XtraBars.Ribbon.RibbonItemStyles.SmallWithoutText)));
     //
     // mbRetCenterQry74A
     //
     this.mbRetCenterQry74A.Caption = "عادة الصرف اعضاء";
     this.mbRetCenterQry74A.Id = 413;
     this.mbRetCenterQry74A.ImageIndex = 19;
     this.mbRetCenterQry74A.LargeImageIndex = 19;
     this.mbRetCenterQry74A.Name = "mbRetCenterQry74A";
     //
     // mbRetCenterQry74
     //
     this.mbRetCenterQry74.Caption = "اعادة الصرف ورثة";
     this.mbRetCenterQry74.Id = 326;
     this.mbRetCenterQry74.ImageIndex = 19;
     this.mbRetCenterQry74.LargeImageIndex = 19;
     this.mbRetCenterQry74.Name = "mbRetCenterQry74";
     this.mbRetCenterQry74.RibbonStyle = ((DevExpress.XtraBars.Ribbon.RibbonItemStyles)((DevExpress.XtraBars.Ribbon.RibbonItemStyles.SmallWithText | DevExpress.XtraBars.Ribbon.RibbonItemStyles.SmallWithoutText)));
     //
     // mbRetCenterQry82
     //
     this.mbRetCenterQry82.Caption = "مقارنة بين صرفيتين اعضاء";
     this.mbRetCenterQry82.Id = 347;
     this.mbRetCenterQry82.ImageIndex = 19;
     this.mbRetCenterQry82.LargeImageIndex = 19;
     this.mbRetCenterQry82.Name = "mbRetCenterQry82";
     this.mbRetCenterQry82.RibbonStyle = ((DevExpress.XtraBars.Ribbon.RibbonItemStyles)((DevExpress.XtraBars.Ribbon.RibbonItemStyles.SmallWithText | DevExpress.XtraBars.Ribbon.RibbonItemStyles.SmallWithoutText)));
     //
     // mbRetCenterQry83
     //
     this.mbRetCenterQry83.Caption = "مقارنة بين صرفيتين ورثة";
     this.mbRetCenterQry83.Id = 348;
     this.mbRetCenterQry83.ImageIndex = 19;
     this.mbRetCenterQry83.LargeImageIndex = 19;
     this.mbRetCenterQry83.Name = "mbRetCenterQry83";
     this.mbRetCenterQry83.RibbonStyle = ((DevExpress.XtraBars.Ribbon.RibbonItemStyles)((DevExpress.XtraBars.Ribbon.RibbonItemStyles.SmallWithText | DevExpress.XtraBars.Ribbon.RibbonItemStyles.SmallWithoutText)));
     //
     // mbRetCenterQry85
     //
     this.mbRetCenterQry85.Caption = "مديونية الورثة";
     this.mbRetCenterQry85.Id = 361;
     this.mbRetCenterQry85.ImageIndex = 19;
     this.mbRetCenterQry85.LargeImageIndex = 19;
     this.mbRetCenterQry85.Name = "mbRetCenterQry85";
     this.mbRetCenterQry85.RibbonStyle = ((DevExpress.XtraBars.Ribbon.RibbonItemStyles)((DevExpress.XtraBars.Ribbon.RibbonItemStyles.SmallWithText | DevExpress.XtraBars.Ribbon.RibbonItemStyles.SmallWithoutText)));
     //
     // mbRetCenterQry86
     //
     this.mbRetCenterQry86.Caption = "مديونية الاعضاء";
     this.mbRetCenterQry86.Id = 362;
     this.mbRetCenterQry86.ImageIndex = 19;
     this.mbRetCenterQry86.LargeImageIndex = 19;
     this.mbRetCenterQry86.Name = "mbRetCenterQry86";
     this.mbRetCenterQry86.RibbonStyle = ((DevExpress.XtraBars.Ribbon.RibbonItemStyles)((DevExpress.XtraBars.Ribbon.RibbonItemStyles.SmallWithText | DevExpress.XtraBars.Ribbon.RibbonItemStyles.SmallWithoutText)));
     //
     // mbRetCenterQry88
     //
     this.mbRetCenterQry88.Caption = "امانات الاعضاء منصرفة";
     this.mbRetCenterQry88.Id = 377;
     this.mbRetCenterQry88.ImageIndex = 19;
     this.mbRetCenterQry88.LargeImageIndex = 19;
     this.mbRetCenterQry88.Name = "mbRetCenterQry88";
     //
     // mbRetCenterQry91
     //
     this.mbRetCenterQry91.Caption = "امانات الاعضاء منصرفة 2";
     this.mbRetCenterQry91.Id = 380;
     this.mbRetCenterQry91.ImageIndex = 19;
     this.mbRetCenterQry91.LargeImageIndex = 19;
     this.mbRetCenterQry91.Name = "mbRetCenterQry91";
     //
     // mbRetCenterQry89
     //
     this.mbRetCenterQry89.Caption = "امانات الورثة منصرفة";
     this.mbRetCenterQry89.Id = 378;
     this.mbRetCenterQry89.ImageIndex = 19;
     this.mbRetCenterQry89.LargeImageIndex = 19;
     this.mbRetCenterQry89.Name = "mbRetCenterQry89";
     //
     // mbRetCenterQry92
     //
     this.mbRetCenterQry92.Caption = "امانات الورثة منصرفة 2";
     this.mbRetCenterQry92.Id = 381;
     this.mbRetCenterQry92.ImageIndex = 19;
     this.mbRetCenterQry92.LargeImageIndex = 19;
     this.mbRetCenterQry92.Name = "mbRetCenterQry92";
     //
     // mbRetCenterQry90
     //
     this.mbRetCenterQry90.Caption = "صرف الحافز - اللجنة";
     this.mbRetCenterQry90.Id = 379;
     this.mbRetCenterQry90.ImageIndex = 19;
     this.mbRetCenterQry90.LargeImageIndex = 19;
     this.mbRetCenterQry90.Name = "mbRetCenterQry90";
     //
     // mbRetCenterQry99
     //
     this.mbRetCenterQry99.Caption = "اجمالي الدفعات - ورثة";
     this.mbRetCenterQry99.Id = 405;
     this.mbRetCenterQry99.ImageIndex = 19;
     this.mbRetCenterQry99.LargeImageIndex = 19;
     this.mbRetCenterQry99.Name = "mbRetCenterQry99";
     //
     // mbRetCenterQry100
     //
     this.mbRetCenterQry100.Caption = "اجمالي الدفعات - اعضاء";
     this.mbRetCenterQry100.Id = 406;
     this.mbRetCenterQry100.ImageIndex = 19;
     this.mbRetCenterQry100.LargeImageIndex = 19;
     this.mbRetCenterQry100.Name = "mbRetCenterQry100";
     //
     // mbRetCenterQry104
     //
     this.mbRetCenterQry104.Caption = "اجمالي الدفعات و الامانات و البنك - اعضاء";
     this.mbRetCenterQry104.Id = 411;
     this.mbRetCenterQry104.ImageIndex = 19;
     this.mbRetCenterQry104.LargeImageIndex = 19;
     this.mbRetCenterQry104.Name = "mbRetCenterQry104";
     //
     // mbRetCenterQry101
     //
     this.mbRetCenterQry101.Caption = "اجمالي الدفعات و الامانات و البنك - ورثة";
     this.mbRetCenterQry101.Id = 409;
     this.mbRetCenterQry101.ImageIndex = 19;
     this.mbRetCenterQry101.LargeImageIndex = 19;
     this.mbRetCenterQry101.Name = "mbRetCenterQry101";
     //
     // mbRetCenterQry103
     //
     this.mbRetCenterQry103.Caption = "اعادة الصرف و الدفعه التي تقع فيها - اعضاء";
     this.mbRetCenterQry103.Id = 410;
     this.mbRetCenterQry103.ImageIndex = 19;
     this.mbRetCenterQry103.LargeImageIndex = 19;
     this.mbRetCenterQry103.Name = "mbRetCenterQry103";
     //
     // mbRetCenterQry105
     //
     this.mbRetCenterQry105.Caption = "اعادة الصرف و الدفعه التي تقع فيها - ورثة";
     this.mbRetCenterQry105.Id = 412;
     this.mbRetCenterQry105.ImageIndex = 19;
     this.mbRetCenterQry105.LargeImageIndex = 19;
     this.mbRetCenterQry105.Name = "mbRetCenterQry105";
     //
     // mbRetCenterQry111
     //
     this.mbRetCenterQry111.Caption = "اجمالي ارشيف صرف الورثه - بالاب";
     this.mbRetCenterQry111.Id = 418;
     this.mbRetCenterQry111.ImageIndex = 19;
     this.mbRetCenterQry111.LargeImageIndex = 19;
     this.mbRetCenterQry111.Name = "mbRetCenterQry111";
     //
     // mbRetCenterQry72
     //
     this.mbRetCenterQry72.Caption = "بيان معاش مفقود - احصائي";
     this.mbRetCenterQry72.Id = 322;
     this.mbRetCenterQry72.ImageIndex = 19;
     this.mbRetCenterQry72.LargeImageIndex = 19;
     this.mbRetCenterQry72.Name = "mbRetCenterQry72";
     this.mbRetCenterQry72.RibbonStyle = ((DevExpress.XtraBars.Ribbon.RibbonItemStyles)((DevExpress.XtraBars.Ribbon.RibbonItemStyles.SmallWithText | DevExpress.XtraBars.Ribbon.RibbonItemStyles.SmallWithoutText)));
     //
     // mbRetCenterQry73
     //
     this.mbRetCenterQry73.Caption = "ورثة تم ايقاف صرفهم";
     this.mbRetCenterQry73.Id = 323;
     this.mbRetCenterQry73.ImageIndex = 19;
     this.mbRetCenterQry73.LargeImageIndex = 19;
     this.mbRetCenterQry73.Name = "mbRetCenterQry73";
     this.mbRetCenterQry73.RibbonStyle = ((DevExpress.XtraBars.Ribbon.RibbonItemStyles)((DevExpress.XtraBars.Ribbon.RibbonItemStyles.SmallWithText | DevExpress.XtraBars.Ribbon.RibbonItemStyles.SmallWithoutText)));
     //
     // mbRetCenterXRep16
     //
     this.mbRetCenterXRep16.Caption = "سجل صرف المعاشات";
     this.mbRetCenterXRep16.Id = 324;
     this.mbRetCenterXRep16.ImageIndex = 24;
     this.mbRetCenterXRep16.LargeImageIndex = 24;
     this.mbRetCenterXRep16.Name = "mbRetCenterXRep16";
     this.mbRetCenterXRep16.RibbonStyle = ((DevExpress.XtraBars.Ribbon.RibbonItemStyles)((DevExpress.XtraBars.Ribbon.RibbonItemStyles.SmallWithText | DevExpress.XtraBars.Ribbon.RibbonItemStyles.SmallWithoutText)));
     //
     // mbRetCentertbladminremarks
     //
     this.mbRetCentertbladminremarks.Caption = "ملاحظات";
     this.mbRetCentertbladminremarks.Id = 325;
     this.mbRetCentertbladminremarks.ImageIndex = 49;
     this.mbRetCentertbladminremarks.LargeImageIndex = 49;
     this.mbRetCentertbladminremarks.Name = "mbRetCentertbladminremarks";
     //
     // mbRetCenterQry03A
     //
     this.mbRetCenterQry03A.Caption = "اضافات الورثة";
     this.mbRetCenterQry03A.Id = 327;
     this.mbRetCenterQry03A.ImageIndex = 19;
     this.mbRetCenterQry03A.LargeImageIndex = 19;
     this.mbRetCenterQry03A.Name = "mbRetCenterQry03A";
     this.mbRetCenterQry03A.RibbonStyle = ((DevExpress.XtraBars.Ribbon.RibbonItemStyles)((DevExpress.XtraBars.Ribbon.RibbonItemStyles.SmallWithText | DevExpress.XtraBars.Ribbon.RibbonItemStyles.SmallWithoutText)));
     //
     // mbRetCenterQry75
     //
     this.mbRetCenterQry75.Caption = "بيان الورثة تفصيلي";
     this.mbRetCenterQry75.Id = 328;
     this.mbRetCenterQry75.ImageIndex = 19;
     this.mbRetCenterQry75.LargeImageIndex = 19;
     this.mbRetCenterQry75.Name = "mbRetCenterQry75";
     this.mbRetCenterQry75.RibbonStyle = ((DevExpress.XtraBars.Ribbon.RibbonItemStyles)((DevExpress.XtraBars.Ribbon.RibbonItemStyles.SmallWithText | DevExpress.XtraBars.Ribbon.RibbonItemStyles.SmallWithoutText)));
     //
     // mbRetCenterXRep17
     //
     this.mbRetCenterXRep17.Caption = "بيان دفعات الاعضاء -حسابات";
     this.mbRetCenterXRep17.Id = 331;
     this.mbRetCenterXRep17.ImageIndex = 24;
     this.mbRetCenterXRep17.LargeImageIndex = 24;
     this.mbRetCenterXRep17.Name = "mbRetCenterXRep17";
     this.mbRetCenterXRep17.RibbonStyle = ((DevExpress.XtraBars.Ribbon.RibbonItemStyles)((DevExpress.XtraBars.Ribbon.RibbonItemStyles.SmallWithText | DevExpress.XtraBars.Ribbon.RibbonItemStyles.SmallWithoutText)));
     //
     // mbRetCenterXRep18
     //
     this.mbRetCenterXRep18.Caption = "بيان دفعات الورثة -حسابات";
     this.mbRetCenterXRep18.Id = 332;
     this.mbRetCenterXRep18.ImageIndex = 24;
     this.mbRetCenterXRep18.LargeImageIndex = 24;
     this.mbRetCenterXRep18.Name = "mbRetCenterXRep18";
     this.mbRetCenterXRep18.RibbonStyle = ((DevExpress.XtraBars.Ribbon.RibbonItemStyles)((DevExpress.XtraBars.Ribbon.RibbonItemStyles.SmallWithText | DevExpress.XtraBars.Ribbon.RibbonItemStyles.SmallWithoutText)));
     //
     // mbRetCenterTBLEstefa
     //
     this.mbRetCenterTBLEstefa.Caption = "استيفاء";
     this.mbRetCenterTBLEstefa.Id = 333;
     this.mbRetCenterTBLEstefa.ImageIndex = 50;
     this.mbRetCenterTBLEstefa.LargeImageIndex = 50;
     this.mbRetCenterTBLEstefa.Name = "mbRetCenterTBLEstefa";
     //
     // mbRetCenterXRep19
     //
     this.mbRetCenterXRep19.Caption = "تقرير اعانة الوفاة";
     this.mbRetCenterXRep19.Id = 334;
     this.mbRetCenterXRep19.ImageIndex = 24;
     this.mbRetCenterXRep19.LargeImageIndex = 24;
     this.mbRetCenterXRep19.Name = "mbRetCenterXRep19";
     this.mbRetCenterXRep19.RibbonStyle = ((DevExpress.XtraBars.Ribbon.RibbonItemStyles)((DevExpress.XtraBars.Ribbon.RibbonItemStyles.SmallWithText | DevExpress.XtraBars.Ribbon.RibbonItemStyles.SmallWithoutText)));
     //
     // mbRetCenterQry78
     //
     this.mbRetCenterQry78.Caption = "الاستيفاء";
     this.mbRetCenterQry78.Id = 335;
     this.mbRetCenterQry78.ImageIndex = 19;
     this.mbRetCenterQry78.LargeImageIndex = 19;
     this.mbRetCenterQry78.Name = "mbRetCenterQry78";
     this.mbRetCenterQry78.RibbonStyle = ((DevExpress.XtraBars.Ribbon.RibbonItemStyles)((DevExpress.XtraBars.Ribbon.RibbonItemStyles.SmallWithText | DevExpress.XtraBars.Ribbon.RibbonItemStyles.SmallWithoutText)));
     //
     // mbRetCenterTBLReprint
     //
     this.mbRetCenterTBLReprint.Caption = "اعادة اصدار الفيزا";
     this.mbRetCenterTBLReprint.Id = 337;
     this.mbRetCenterTBLReprint.ImageIndex = 34;
     this.mbRetCenterTBLReprint.LargeImageIndex = 34;
     this.mbRetCenterTBLReprint.LinksPersistInfo.AddRange(new DevExpress.XtraBars.LinkPersistInfo[] {
     new DevExpress.XtraBars.LinkPersistInfo(this.mbRetCenterTBLReprintMember),
     new DevExpress.XtraBars.LinkPersistInfo(this.mbRetCenterTBLReprintWarasa),
     new DevExpress.XtraBars.LinkPersistInfo(this.mbRetCenterTBLReprintMemberTaslem),
     new DevExpress.XtraBars.LinkPersistInfo(this.mbRetCenterTBLReprintWarasaTaslem)});
     this.mbRetCenterTBLReprint.Name = "mbRetCenterTBLReprint";
     //
     // mbRetCenterTBLReprintMember
     //
     this.mbRetCenterTBLReprintMember.Caption = "اعادة اصدار اعضاء";
     this.mbRetCenterTBLReprintMember.Id = 339;
     this.mbRetCenterTBLReprintMember.ImageIndex = 34;
     this.mbRetCenterTBLReprintMember.LargeImageIndex = 34;
     this.mbRetCenterTBLReprintMember.Name = "mbRetCenterTBLReprintMember";
     this.mbRetCenterTBLReprintMember.RibbonStyle = ((DevExpress.XtraBars.Ribbon.RibbonItemStyles)((DevExpress.XtraBars.Ribbon.RibbonItemStyles.SmallWithText | DevExpress.XtraBars.Ribbon.RibbonItemStyles.SmallWithoutText)));
     //
     // mbRetCenterTBLReprintWarasa
     //
     this.mbRetCenterTBLReprintWarasa.Caption = "اعادة اصدار الورثة";
     this.mbRetCenterTBLReprintWarasa.Id = 341;
     this.mbRetCenterTBLReprintWarasa.ImageIndex = 34;
     this.mbRetCenterTBLReprintWarasa.LargeImageIndex = 34;
     this.mbRetCenterTBLReprintWarasa.Name = "mbRetCenterTBLReprintWarasa";
     this.mbRetCenterTBLReprintWarasa.RibbonStyle = ((DevExpress.XtraBars.Ribbon.RibbonItemStyles)((DevExpress.XtraBars.Ribbon.RibbonItemStyles.SmallWithText | DevExpress.XtraBars.Ribbon.RibbonItemStyles.SmallWithoutText)));
     //
     // mbRetCenterTBLReprintMemberTaslem
     //
     this.mbRetCenterTBLReprintMemberTaslem.Caption = "تسليم الاعضاء";
     this.mbRetCenterTBLReprintMemberTaslem.Id = 349;
     this.mbRetCenterTBLReprintMemberTaslem.ImageIndex = 34;
     this.mbRetCenterTBLReprintMemberTaslem.LargeImageIndex = 34;
     this.mbRetCenterTBLReprintMemberTaslem.Name = "mbRetCenterTBLReprintMemberTaslem";
     this.mbRetCenterTBLReprintMemberTaslem.RibbonStyle = ((DevExpress.XtraBars.Ribbon.RibbonItemStyles)((DevExpress.XtraBars.Ribbon.RibbonItemStyles.SmallWithText | DevExpress.XtraBars.Ribbon.RibbonItemStyles.SmallWithoutText)));
     //
     // mbRetCenterTBLReprintWarasaTaslem
     //
     this.mbRetCenterTBLReprintWarasaTaslem.Caption = "تسليم الورثة";
     this.mbRetCenterTBLReprintWarasaTaslem.Id = 350;
     this.mbRetCenterTBLReprintWarasaTaslem.ImageIndex = 34;
     this.mbRetCenterTBLReprintWarasaTaslem.LargeImageIndex = 34;
     this.mbRetCenterTBLReprintWarasaTaslem.Name = "mbRetCenterTBLReprintWarasaTaslem";
     this.mbRetCenterTBLReprintWarasaTaslem.RibbonStyle = ((DevExpress.XtraBars.Ribbon.RibbonItemStyles)((DevExpress.XtraBars.Ribbon.RibbonItemStyles.SmallWithText | DevExpress.XtraBars.Ribbon.RibbonItemStyles.SmallWithoutText)));
     //
     // mbRetCenterQry79
     //
     this.mbRetCenterQry79.Caption = "اعادة اصدار اعضاء";
     this.mbRetCenterQry79.Id = 340;
     this.mbRetCenterQry79.ImageIndex = 19;
     this.mbRetCenterQry79.LargeImageIndex = 19;
     this.mbRetCenterQry79.Name = "mbRetCenterQry79";
     this.mbRetCenterQry79.RibbonStyle = ((DevExpress.XtraBars.Ribbon.RibbonItemStyles)((DevExpress.XtraBars.Ribbon.RibbonItemStyles.SmallWithText | DevExpress.XtraBars.Ribbon.RibbonItemStyles.SmallWithoutText)));
     //
     // mbRetCenterQry80
     //
     this.mbRetCenterQry80.Caption = "اعادة اصدار الورثة";
     this.mbRetCenterQry80.Id = 343;
     this.mbRetCenterQry80.ImageIndex = 19;
     this.mbRetCenterQry80.LargeImageIndex = 19;
     this.mbRetCenterQry80.Name = "mbRetCenterQry80";
     this.mbRetCenterQry80.RibbonStyle = ((DevExpress.XtraBars.Ribbon.RibbonItemStyles)((DevExpress.XtraBars.Ribbon.RibbonItemStyles.SmallWithText | DevExpress.XtraBars.Ribbon.RibbonItemStyles.SmallWithoutText)));
     //
     // mbRetCenterTBLremind
     //
     this.mbRetCenterTBLremind.Caption = "الاشعارات";
     this.mbRetCenterTBLremind.Id = 344;
     this.mbRetCenterTBLremind.ImageIndex = 51;
     this.mbRetCenterTBLremind.LargeImageIndex = 51;
     this.mbRetCenterTBLremind.Name = "mbRetCenterTBLremind";
     //
     // mbRetCenterTBLMandoop
     //
     this.mbRetCenterTBLMandoop.Caption = "المندوبين";
     this.mbRetCenterTBLMandoop.Id = 345;
     this.mbRetCenterTBLMandoop.ImageIndex = 52;
     this.mbRetCenterTBLMandoop.LargeImageIndex = 52;
     this.mbRetCenterTBLMandoop.Name = "mbRetCenterTBLMandoop";
     //
     // mbRetCenterTBLHafzaTasleem
     //
     this.mbRetCenterTBLHafzaTasleem.Caption = "تسليم الحوافظ";
     this.mbRetCenterTBLHafzaTasleem.Id = 346;
     this.mbRetCenterTBLHafzaTasleem.ImageIndex = 53;
     this.mbRetCenterTBLHafzaTasleem.LargeImageIndex = 53;
     this.mbRetCenterTBLHafzaTasleem.Name = "mbRetCenterTBLHafzaTasleem";
     //
     // mbRetCenterTBLDeathMembersPrint
     //
     this.mbRetCenterTBLDeathMembersPrint.Caption = "تقرير اعانة الوفاة 2";
     this.mbRetCenterTBLDeathMembersPrint.Id = 353;
     this.mbRetCenterTBLDeathMembersPrint.ImageIndex = 24;
     this.mbRetCenterTBLDeathMembersPrint.LargeImageIndex = 24;
     this.mbRetCenterTBLDeathMembersPrint.Name = "mbRetCenterTBLDeathMembersPrint";
     this.mbRetCenterTBLDeathMembersPrint.RibbonStyle = ((DevExpress.XtraBars.Ribbon.RibbonItemStyles)((DevExpress.XtraBars.Ribbon.RibbonItemStyles.SmallWithText | DevExpress.XtraBars.Ribbon.RibbonItemStyles.SmallWithoutText)));
     //
     // mbRetCenterTBLHafezSarf
     //
     this.mbRetCenterTBLHafezSarf.Caption = "صرف الحافز";
     this.mbRetCenterTBLHafezSarf.Id = 354;
     this.mbRetCenterTBLHafezSarf.ImageIndex = 53;
     this.mbRetCenterTBLHafezSarf.LargeImageIndex = 53;
     this.mbRetCenterTBLHafezSarf.Name = "mbRetCenterTBLHafezSarf";
     //
     // mbRetCenterXRep21
     //
     this.mbRetCenterXRep21.Caption = "حافز صرف المعاشات";
     this.mbRetCenterXRep21.Id = 355;
     this.mbRetCenterXRep21.ImageIndex = 24;
     this.mbRetCenterXRep21.LargeImageIndex = 24;
     this.mbRetCenterXRep21.Name = "mbRetCenterXRep21";
     this.mbRetCenterXRep21.RibbonStyle = ((DevExpress.XtraBars.Ribbon.RibbonItemStyles)((DevExpress.XtraBars.Ribbon.RibbonItemStyles.SmallWithText | DevExpress.XtraBars.Ribbon.RibbonItemStyles.SmallWithoutText)));
     //
     // mbRetCenterXRep22
     //
     this.mbRetCenterXRep22.Caption = "اجمالي صرفية الاعضاء";
     this.mbRetCenterXRep22.Id = 356;
     this.mbRetCenterXRep22.ImageIndex = 24;
     this.mbRetCenterXRep22.LargeImageIndex = 24;
     this.mbRetCenterXRep22.Name = "mbRetCenterXRep22";
     this.mbRetCenterXRep22.RibbonStyle = ((DevExpress.XtraBars.Ribbon.RibbonItemStyles)((DevExpress.XtraBars.Ribbon.RibbonItemStyles.SmallWithText | DevExpress.XtraBars.Ribbon.RibbonItemStyles.SmallWithoutText)));
     //
     // mbRetCenterXRep23
     //
     this.mbRetCenterXRep23.Caption = "اجمالي صرفية الورثة";
     this.mbRetCenterXRep23.Id = 357;
     this.mbRetCenterXRep23.ImageIndex = 24;
     this.mbRetCenterXRep23.LargeImageIndex = 24;
     this.mbRetCenterXRep23.Name = "mbRetCenterXRep23";
     this.mbRetCenterXRep23.RibbonStyle = ((DevExpress.XtraBars.Ribbon.RibbonItemStyles)((DevExpress.XtraBars.Ribbon.RibbonItemStyles.SmallWithText | DevExpress.XtraBars.Ribbon.RibbonItemStyles.SmallWithoutText)));
     //
     // mbRetCenterTBLDeathMembersMenu
     //
     this.mbRetCenterTBLDeathMembersMenu.Caption = "وفيات الاعضاء";
     this.mbRetCenterTBLDeathMembersMenu.Id = 359;
     this.mbRetCenterTBLDeathMembersMenu.ImageIndex = 48;
     this.mbRetCenterTBLDeathMembersMenu.LargeImageIndex = 48;
     this.mbRetCenterTBLDeathMembersMenu.LinksPersistInfo.AddRange(new DevExpress.XtraBars.LinkPersistInfo[] {
     new DevExpress.XtraBars.LinkPersistInfo(this.mbRetCenterTBLDeathMembers),
     new DevExpress.XtraBars.LinkPersistInfo(this.mbRetCenterTBLDeathMembersAcc)});
     this.mbRetCenterTBLDeathMembersMenu.Name = "mbRetCenterTBLDeathMembersMenu";
     //
     // mbRetCenterTBLDeathMembersAcc
     //
     this.mbRetCenterTBLDeathMembersAcc.Caption = "وفيات الاعضاء - حسابات";
     this.mbRetCenterTBLDeathMembersAcc.Id = 360;
     this.mbRetCenterTBLDeathMembersAcc.ImageIndex = 48;
     this.mbRetCenterTBLDeathMembersAcc.LargeImageIndex = 48;
     this.mbRetCenterTBLDeathMembersAcc.Name = "mbRetCenterTBLDeathMembersAcc";
     //
     // mbRetCenterTblMemberAmanatMenu
     //
     this.mbRetCenterTblMemberAmanatMenu.Caption = "امانات الاعضاء";
     this.mbRetCenterTblMemberAmanatMenu.Id = 363;
     this.mbRetCenterTblMemberAmanatMenu.ImageIndex = 42;
     this.mbRetCenterTblMemberAmanatMenu.LargeImageIndex = 42;
     this.mbRetCenterTblMemberAmanatMenu.LinksPersistInfo.AddRange(new DevExpress.XtraBars.LinkPersistInfo[] {
     new DevExpress.XtraBars.LinkPersistInfo(this.mbRetCenterTblMemberAmanat),
     new DevExpress.XtraBars.LinkPersistInfo(this.mbRetCenterTblMemberAmanatAcc),
     new DevExpress.XtraBars.LinkPersistInfo(this.mbRetCenterTblMemberAmanatSarf),
     new DevExpress.XtraBars.LinkPersistInfo(this.mbRetCenterTblMemberAmanatCheek),
     new DevExpress.XtraBars.LinkPersistInfo(this.mbRetCenterTblMemberAmanat2),
     new DevExpress.XtraBars.LinkPersistInfo(this.mbRetCenterQry97),
     new DevExpress.XtraBars.LinkPersistInfo(this.mbRetCenterQry108),
     new DevExpress.XtraBars.LinkPersistInfo(this.mbRetCenterQry109)});
     this.mbRetCenterTblMemberAmanatMenu.Name = "mbRetCenterTblMemberAmanatMenu";
     //
     // mbRetCenterTblMemberAmanatAcc
     //
     this.mbRetCenterTblMemberAmanatAcc.Caption = "امانات الاعضاء - حسابات";
     this.mbRetCenterTblMemberAmanatAcc.Id = 364;
     this.mbRetCenterTblMemberAmanatAcc.ImageIndex = 42;
     this.mbRetCenterTblMemberAmanatAcc.LargeImageIndex = 42;
     this.mbRetCenterTblMemberAmanatAcc.Name = "mbRetCenterTblMemberAmanatAcc";
     //
     // mbRetCenterTblMemberAmanatSarf
     //
     this.mbRetCenterTblMemberAmanatSarf.Caption = "امانات الاعضاء - دفعات الصرف";
     this.mbRetCenterTblMemberAmanatSarf.Id = 368;
     this.mbRetCenterTblMemberAmanatSarf.ImageIndex = 42;
     this.mbRetCenterTblMemberAmanatSarf.LargeImageIndex = 42;
     this.mbRetCenterTblMemberAmanatSarf.Name = "mbRetCenterTblMemberAmanatSarf";
     //
     // mbRetCenterTblMemberAmanatCheek
     //
     this.mbRetCenterTblMemberAmanatCheek.Caption = "امانات الاعضاء - شيكات";
     this.mbRetCenterTblMemberAmanatCheek.Id = 390;
     this.mbRetCenterTblMemberAmanatCheek.ImageIndex = 42;
     this.mbRetCenterTblMemberAmanatCheek.LargeImageIndex = 42;
     this.mbRetCenterTblMemberAmanatCheek.Name = "mbRetCenterTblMemberAmanatCheek";
     //
     // mbRetCenterTblMemberAmanat2
     //
     this.mbRetCenterTblMemberAmanat2.Caption = "امانات الاعضاء 2";
     this.mbRetCenterTblMemberAmanat2.Id = 394;
     this.mbRetCenterTblMemberAmanat2.ImageIndex = 42;
     this.mbRetCenterTblMemberAmanat2.LargeImageIndex = 42;
     this.mbRetCenterTblMemberAmanat2.Name = "mbRetCenterTblMemberAmanat2";
     //
     // mbRetCenterQry97
     //
     this.mbRetCenterQry97.Caption = "امانات لم ترحل - اعضاء";
     this.mbRetCenterQry97.Id = 401;
     this.mbRetCenterQry97.ImageIndex = 19;
     this.mbRetCenterQry97.LargeImageIndex = 19;
     this.mbRetCenterQry97.Name = "mbRetCenterQry97";
     //
     // mbRetCenterQry108
     //
     this.mbRetCenterQry108.Caption = "امانات الاعضاء";
     this.mbRetCenterQry108.Id = 416;
     this.mbRetCenterQry108.ImageIndex = 19;
     this.mbRetCenterQry108.LargeImageIndex = 19;
     this.mbRetCenterQry108.Name = "mbRetCenterQry108";
     //
     // mbRetCenterQry109
     //
     this.mbRetCenterQry109.Caption = "امانات الورثة";
     this.mbRetCenterQry109.Id = 417;
     this.mbRetCenterQry109.ImageIndex = 19;
     this.mbRetCenterQry109.LargeImageIndex = 19;
     this.mbRetCenterQry109.Name = "mbRetCenterQry109";
     //
     // mbRetCenterXRep24
     //
     this.mbRetCenterXRep24.Caption = "امانات الاعضاء";
     this.mbRetCenterXRep24.Id = 369;
     this.mbRetCenterXRep24.ImageIndex = 24;
     this.mbRetCenterXRep24.LargeImageIndex = 24;
     this.mbRetCenterXRep24.Name = "mbRetCenterXRep24";
     this.mbRetCenterXRep24.RibbonStyle = ((DevExpress.XtraBars.Ribbon.RibbonItemStyles)((DevExpress.XtraBars.Ribbon.RibbonItemStyles.SmallWithText | DevExpress.XtraBars.Ribbon.RibbonItemStyles.SmallWithoutText)));
     //
     // mbRetCenterTblWarasaAmanatMenu
     //
     this.mbRetCenterTblWarasaAmanatMenu.Caption = "امانات الورثة";
     this.mbRetCenterTblWarasaAmanatMenu.Id = 373;
     this.mbRetCenterTblWarasaAmanatMenu.ImageIndex = 43;
     this.mbRetCenterTblWarasaAmanatMenu.LargeImageIndex = 43;
     this.mbRetCenterTblWarasaAmanatMenu.LinksPersistInfo.AddRange(new DevExpress.XtraBars.LinkPersistInfo[] {
     new DevExpress.XtraBars.LinkPersistInfo(this.mbRetCenterTblWarasaAmanat),
     new DevExpress.XtraBars.LinkPersistInfo(this.mbRetCenterTblWarasaAmanatSarf),
     new DevExpress.XtraBars.LinkPersistInfo(this.mbRetCenterTblWarasaAmanatAcc),
     new DevExpress.XtraBars.LinkPersistInfo(this.mbRetCenterTblWarasaAmanatCheek),
     new DevExpress.XtraBars.LinkPersistInfo(this.mbRetCenterTblWarasaAmanat2),
     new DevExpress.XtraBars.LinkPersistInfo(this.mbRetCenterQry95),
     new DevExpress.XtraBars.LinkPersistInfo(this.mbRetCenterQry96),
     new DevExpress.XtraBars.LinkPersistInfo(this.mbRetCenterQry98)});
     this.mbRetCenterTblWarasaAmanatMenu.Name = "mbRetCenterTblWarasaAmanatMenu";
     //
     // mbRetCenterTblWarasaAmanatSarf
     //
     this.mbRetCenterTblWarasaAmanatSarf.Caption = "امانات الورثة - دفعات الصرف";
     this.mbRetCenterTblWarasaAmanatSarf.Id = 374;
     this.mbRetCenterTblWarasaAmanatSarf.ImageIndex = 43;
     this.mbRetCenterTblWarasaAmanatSarf.LargeImageIndex = 43;
     this.mbRetCenterTblWarasaAmanatSarf.Name = "mbRetCenterTblWarasaAmanatSarf";
     //
     // mbRetCenterTblWarasaAmanatAcc
     //
     this.mbRetCenterTblWarasaAmanatAcc.Caption = "امانات الورثة - حسابات";
     this.mbRetCenterTblWarasaAmanatAcc.Id = 375;
     this.mbRetCenterTblWarasaAmanatAcc.ImageIndex = 43;
     this.mbRetCenterTblWarasaAmanatAcc.LargeImageIndex = 43;
     this.mbRetCenterTblWarasaAmanatAcc.Name = "mbRetCenterTblWarasaAmanatAcc";
     //
     // mbRetCenterTblWarasaAmanatCheek
     //
     this.mbRetCenterTblWarasaAmanatCheek.Caption = "امانات الورثة - شيكات";
     this.mbRetCenterTblWarasaAmanatCheek.Id = 389;
     this.mbRetCenterTblWarasaAmanatCheek.ImageIndex = 43;
     this.mbRetCenterTblWarasaAmanatCheek.LargeImageIndex = 43;
     this.mbRetCenterTblWarasaAmanatCheek.Name = "mbRetCenterTblWarasaAmanatCheek";
     //
     // mbRetCenterTblWarasaAmanat2
     //
     this.mbRetCenterTblWarasaAmanat2.Caption = "امانات الورثة 2";
     this.mbRetCenterTblWarasaAmanat2.Id = 395;
     this.mbRetCenterTblWarasaAmanat2.ImageIndex = 43;
     this.mbRetCenterTblWarasaAmanat2.LargeImageIndex = 43;
     this.mbRetCenterTblWarasaAmanat2.Name = "mbRetCenterTblWarasaAmanat2";
     //
     // mbRetCenterQry95
     //
     this.mbRetCenterQry95.Caption = "دفعات امانات متكررة";
     this.mbRetCenterQry95.Id = 396;
     this.mbRetCenterQry95.ImageIndex = 19;
     this.mbRetCenterQry95.LargeImageIndexDisabled = 19;
     this.mbRetCenterQry95.Name = "mbRetCenterQry95";
     //
     // mbRetCenterQry96
     //
     this.mbRetCenterQry96.Caption = "ورثة لم يتم ترحلهم لاخطاء الادخال";
     this.mbRetCenterQry96.Id = 397;
     this.mbRetCenterQry96.ImageIndex = 19;
     this.mbRetCenterQry96.LargeImageIndexDisabled = 19;
     this.mbRetCenterQry96.Name = "mbRetCenterQry96";
     //
     // mbRetCenterQry98
     //
     this.mbRetCenterQry98.Caption = "امانات لم ترحل - ورثة";
     this.mbRetCenterQry98.Id = 402;
     this.mbRetCenterQry98.ImageIndex = 19;
     this.mbRetCenterQry98.LargeImageIndex = 19;
     this.mbRetCenterQry98.Name = "mbRetCenterQry98";
     //
     // mbRetCenterXRep25
     //
     this.mbRetCenterXRep25.Caption = "امانات الورثة";
     this.mbRetCenterXRep25.Id = 376;
     this.mbRetCenterXRep25.ImageIndex = 24;
     this.mbRetCenterXRep25.LargeImageIndex = 24;
     this.mbRetCenterXRep25.Name = "mbRetCenterXRep25";
     this.mbRetCenterXRep25.RibbonStyle = ((DevExpress.XtraBars.Ribbon.RibbonItemStyles)((DevExpress.XtraBars.Ribbon.RibbonItemStyles.SmallWithText | DevExpress.XtraBars.Ribbon.RibbonItemStyles.SmallWithoutText)));
     //
     // mbRetCenterBankExportedDataActivate
     //
     this.mbRetCenterBankExportedDataActivate.Caption = "تفعيل فيزا الاعضاء";
     this.mbRetCenterBankExportedDataActivate.Id = 382;
     this.mbRetCenterBankExportedDataActivate.ImageIndex = 54;
     this.mbRetCenterBankExportedDataActivate.LargeImageIndex = 54;
     this.mbRetCenterBankExportedDataActivate.Name = "mbRetCenterBankExportedDataActivate";
     //
     // mbRetCenterVisa
     //
     this.mbRetCenterVisa.Caption = "الفيزا";
     this.mbRetCenterVisa.Id = 383;
     this.mbRetCenterVisa.ImageIndex = 54;
     this.mbRetCenterVisa.LargeImageIndex = 54;
     this.mbRetCenterVisa.LinksPersistInfo.AddRange(new DevExpress.XtraBars.LinkPersistInfo[] {
     new DevExpress.XtraBars.LinkPersistInfo(this.mbRetCenterBankExportedDataActivate),
     new DevExpress.XtraBars.LinkPersistInfo(this.mbRetCenterBankExportedDataWarsaActivate)});
     this.mbRetCenterVisa.Name = "mbRetCenterVisa";
     //
     // mbRetCenterBankExportedDataWarsaActivate
     //
     this.mbRetCenterBankExportedDataWarsaActivate.Caption = "تفعيل فيزا الورثة";
     this.mbRetCenterBankExportedDataWarsaActivate.Id = 384;
     this.mbRetCenterBankExportedDataWarsaActivate.ImageIndex = 54;
     this.mbRetCenterBankExportedDataWarsaActivate.LargeImageIndex = 54;
     this.mbRetCenterBankExportedDataWarsaActivate.Name = "mbRetCenterBankExportedDataWarsaActivate";
     //
     // mbRetCenterImportFrombamanat
     //
     this.mbRetCenterImportFrombamanat.Caption = "استيراد امانات";
     this.mbRetCenterImportFrombamanat.Id = 388;
     this.mbRetCenterImportFrombamanat.ImageIndex = 28;
     this.mbRetCenterImportFrombamanat.LargeImageIndex = 28;
     this.mbRetCenterImportFrombamanat.Name = "mbRetCenterImportFrombamanat";
     //
     // mbRetCenterXRep16A
     //
     this.mbRetCenterXRep16A.Caption = "سجل صرف الورثة";
     this.mbRetCenterXRep16A.Id = 391;
     this.mbRetCenterXRep16A.ImageIndex = 24;
     this.mbRetCenterXRep16A.LargeImageIndex = 24;
     this.mbRetCenterXRep16A.Name = "mbRetCenterXRep16A";
     this.mbRetCenterXRep16A.RibbonStyle = ((DevExpress.XtraBars.Ribbon.RibbonItemStyles)((DevExpress.XtraBars.Ribbon.RibbonItemStyles.SmallWithText | DevExpress.XtraBars.Ribbon.RibbonItemStyles.SmallWithoutText)));
     //
     // mbRetCenterQry93
     //
     this.mbRetCenterQry93.Caption = "مجموع مبالغ الدفعات ورثة";
     this.mbRetCenterQry93.Id = 392;
     this.mbRetCenterQry93.ImageIndex = 19;
     this.mbRetCenterQry93.LargeImageIndex = 19;
     this.mbRetCenterQry93.Name = "mbRetCenterQry93";
     this.mbRetCenterQry93.RibbonStyle = ((DevExpress.XtraBars.Ribbon.RibbonItemStyles)((DevExpress.XtraBars.Ribbon.RibbonItemStyles.SmallWithText | DevExpress.XtraBars.Ribbon.RibbonItemStyles.SmallWithoutText)));
     //
     // mbRetCenterQry94
     //
     this.mbRetCenterQry94.Caption = "مجموع مبالغ الدفعات اعضاء";
     this.mbRetCenterQry94.Id = 393;
     this.mbRetCenterQry94.ImageIndex = 19;
     this.mbRetCenterQry94.LargeImageIndex = 19;
     this.mbRetCenterQry94.Name = "mbRetCenterQry94";
     //
     // mbRetCenterCdDofaatAmanat
     //
     this.mbRetCenterCdDofaatAmanat.Caption = "دفعات صرف الامانات";
     this.mbRetCenterCdDofaatAmanat.Id = 398;
     this.mbRetCenterCdDofaatAmanat.ImageIndex = 40;
     this.mbRetCenterCdDofaatAmanat.LargeImageIndex = 40;
     this.mbRetCenterCdDofaatAmanat.Name = "mbRetCenterCdDofaatAmanat";
     //
     // mbRetCenterCDDofatSarfFrook
     //
     this.mbRetCenterCDDofatSarfFrook.Caption = "دفعات صرف الفروق";
     this.mbRetCenterCDDofatSarfFrook.Id = 399;
     this.mbRetCenterCDDofatSarfFrook.ImageIndex = 40;
     this.mbRetCenterCDDofatSarfFrook.LargeImageIndex = 40;
     this.mbRetCenterCDDofatSarfFrook.Name = "mbRetCenterCDDofatSarfFrook";
     //
     // mbRetCenterTBLDofatSarfMadunea
     //
     this.mbRetCenterTBLDofatSarfMadunea.Caption = "دفعات صرف المديونية";
     this.mbRetCenterTBLDofatSarfMadunea.Id = 400;
     this.mbRetCenterTBLDofatSarfMadunea.ImageIndex = 40;
     this.mbRetCenterTBLDofatSarfMadunea.LargeImageIndex = 40;
     this.mbRetCenterTBLDofatSarfMadunea.Name = "mbRetCenterTBLDofatSarfMadunea";
     //
     // mbRetCenterTblAttach
     //
     this.mbRetCenterTblAttach.Caption = "المرفقات";
     this.mbRetCenterTblAttach.Id = 404;
     this.mbRetCenterTblAttach.ImageIndex = 55;
     this.mbRetCenterTblAttach.LargeImageIndex = 55;
     this.mbRetCenterTblAttach.Name = "mbRetCenterTblAttach";
     //
     // mbRetCenterXRep28
     //
     this.mbRetCenterXRep28.Caption = "حافظة استلام اعادة الاصدار اعضاء";
     this.mbRetCenterXRep28.Id = 419;
     this.mbRetCenterXRep28.ImageIndex = 24;
     this.mbRetCenterXRep28.LargeImageIndex = 24;
     this.mbRetCenterXRep28.Name = "mbRetCenterXRep28";
     this.mbRetCenterXRep28.RibbonStyle = ((DevExpress.XtraBars.Ribbon.RibbonItemStyles)((DevExpress.XtraBars.Ribbon.RibbonItemStyles.SmallWithText | DevExpress.XtraBars.Ribbon.RibbonItemStyles.SmallWithoutText)));
     //
     // mbRetCenterXRep29
     //
     this.mbRetCenterXRep29.Caption = "حافظة استلام اعادة الاصدار ورثة";
     this.mbRetCenterXRep29.Id = 420;
     this.mbRetCenterXRep29.ImageIndex = 24;
     this.mbRetCenterXRep29.LargeImageIndex = 24;
     this.mbRetCenterXRep29.Name = "mbRetCenterXRep29";
     this.mbRetCenterXRep29.RibbonStyle = ((DevExpress.XtraBars.Ribbon.RibbonItemStyles)((DevExpress.XtraBars.Ribbon.RibbonItemStyles.SmallWithText | DevExpress.XtraBars.Ribbon.RibbonItemStyles.SmallWithoutText)));
     //
     // ribbonImageCollectionLarge
     //
     this.ribbonImageCollectionLarge.ImageSize = new System.Drawing.Size(32, 32);
     this.ribbonImageCollectionLarge.ImageStream = ((DevExpress.Utils.ImageCollectionStreamer)(resources.GetObject("ribbonImageCollectionLarge.ImageStream")));
     this.ribbonImageCollectionLarge.Images.SetKeyName(0, "Ribbon_Exit_32x32.png");
     this.ribbonImageCollectionLarge.Images.SetKeyName(1, "Ribbon_Content_32x32.png");
     this.ribbonImageCollectionLarge.Images.SetKeyName(2, "Ribbon_Info_32x32.png");
     this.ribbonImageCollectionLarge.Images.SetKeyName(3, "Connection.png");
     this.ribbonImageCollectionLarge.Images.SetKeyName(4, "CDGov.png");
     this.ribbonImageCollectionLarge.Images.SetKeyName(5, "CDMarkez.png");
     this.ribbonImageCollectionLarge.Images.SetKeyName(6, "CDSyndicate.png");
     this.ribbonImageCollectionLarge.Images.SetKeyName(7, "CDSubCommitte.png");
     this.ribbonImageCollectionLarge.Images.SetKeyName(8, "CDBirthPlace.png");
     this.ribbonImageCollectionLarge.Images.SetKeyName(9, "CDJop.png");
     this.ribbonImageCollectionLarge.Images.SetKeyName(10, "CDJobDescription.png");
     this.ribbonImageCollectionLarge.Images.SetKeyName(11, "CDGehaType.png");
     this.ribbonImageCollectionLarge.Images.SetKeyName(12, "CDModerea.png");
     this.ribbonImageCollectionLarge.Images.SetKeyName(13, "CDEDARET.png");
     this.ribbonImageCollectionLarge.Images.SetKeyName(14, "CDGeha.png");
     this.ribbonImageCollectionLarge.Images.SetKeyName(15, "CDQualification.png");
     this.ribbonImageCollectionLarge.Images.SetKeyName(16, "CDSpecialization.png");
     this.ribbonImageCollectionLarge.Images.SetKeyName(17, "TBLMembers.png");
     this.ribbonImageCollectionLarge.Images.SetKeyName(18, "CDEstefaaKed.png");
     this.ribbonImageCollectionLarge.Images.SetKeyName(19, "Qry.png");
     this.ribbonImageCollectionLarge.Images.SetKeyName(20, "TBLHafza.png");
     this.ribbonImageCollectionLarge.Images.SetKeyName(21, "TBLMemberCard.png");
     this.ribbonImageCollectionLarge.Images.SetKeyName(22, "TBLPrintCard.png");
     this.ribbonImageCollectionLarge.Images.SetKeyName(23, "TBLMandoop.png");
     this.ribbonImageCollectionLarge.Images.SetKeyName(24, "Report.png");
     this.ribbonImageCollectionLarge.Images.SetKeyName(25, "Receipts.png");
     this.ribbonImageCollectionLarge.Images.SetKeyName(26, "TblMemberAttach.png");
     this.ribbonImageCollectionLarge.Images.SetKeyName(27, "CDAttachmentType.png");
     this.ribbonImageCollectionLarge.Images.SetKeyName(28, "ImportData.png");
     this.ribbonImageCollectionLarge.Images.SetKeyName(29, "Users.png");
     this.ribbonImageCollectionLarge.Images.SetKeyName(30, "Roles.png");
     this.ribbonImageCollectionLarge.Images.SetKeyName(31, "RoleDetail.png");
     this.ribbonImageCollectionLarge.Images.SetKeyName(32, "UserRoles.png");
     this.ribbonImageCollectionLarge.Images.SetKeyName(33, "Options32.png");
     this.ribbonImageCollectionLarge.Images.SetKeyName(34, "TBLAksat.png");
     this.ribbonImageCollectionLarge.Images.SetKeyName(35, "TBLEmpWork32.png");
     this.ribbonImageCollectionLarge.Images.SetKeyName(36, "TBLUserMistake32.png");
     this.ribbonImageCollectionLarge.Images.SetKeyName(37, "Fixs32.png");
     this.ribbonImageCollectionLarge.Images.SetKeyName(38, "RoleSyndicate.png");
     this.ribbonImageCollectionLarge.Images.SetKeyName(39, "CDsarfType.png");
     this.ribbonImageCollectionLarge.Images.SetKeyName(40, "TBLDofatSarf.png");
     this.ribbonImageCollectionLarge.Images.SetKeyName(41, "TBLMemberSarf.png");
     this.ribbonImageCollectionLarge.Images.SetKeyName(42, "TblMemberAmanat.png");
     this.ribbonImageCollectionLarge.Images.SetKeyName(43, "TblWarasaAmanat.png");
     this.ribbonImageCollectionLarge.Images.SetKeyName(44, "archive32.png");
     this.ribbonImageCollectionLarge.Images.SetKeyName(45, "TblChekNid32.png");
     this.ribbonImageCollectionLarge.Images.SetKeyName(46, "TBLProofDoc32.png");
     this.ribbonImageCollectionLarge.Images.SetKeyName(47, "Bank32.png");
     this.ribbonImageCollectionLarge.Images.SetKeyName(48, "TBLDeathMembers32.png");
     this.ribbonImageCollectionLarge.Images.SetKeyName(49, "tbladminremarks32.png");
     this.ribbonImageCollectionLarge.Images.SetKeyName(50, "TBLEstefa32.png");
     this.ribbonImageCollectionLarge.Images.SetKeyName(51, "TBLremind32.png");
     this.ribbonImageCollectionLarge.Images.SetKeyName(52, "TBLMandoop32.png");
     this.ribbonImageCollectionLarge.Images.SetKeyName(53, "TBLHafzaTasleem32.png");
     this.ribbonImageCollectionLarge.Images.SetKeyName(54, "Visa32.png");
     this.ribbonImageCollectionLarge.Images.SetKeyName(55, "TblAttach32.png");
     //
     // DataribbonPage
     //
     this.DataribbonPage.Groups.AddRange(new DevExpress.XtraBars.Ribbon.RibbonPageGroup[] {
     this.DataribbonPageGroup,
     this.ribbonPageGroup2});
     this.DataribbonPage.Name = "DataribbonPage";
     this.DataribbonPage.Text = "ادخال البيانات";
     //
     // DataribbonPageGroup
     //
     this.DataribbonPageGroup.ItemLinks.Add(this.mbRetCenterDataMember);
     this.DataribbonPageGroup.ItemLinks.Add(this.mbRetCenterPrepareDofaa);
     this.DataribbonPageGroup.ItemLinks.Add(this.mbRetCenterDofatSarfActivity);
     this.DataribbonPageGroup.ItemLinks.Add(this.mbRetCenterTblMemberAmanatMenu);
     this.DataribbonPageGroup.ItemLinks.Add(this.mbRetCenterTblWarasaAmanatMenu);
     this.DataribbonPageGroup.ItemLinks.Add(this.mbRetCenterarchef);
     this.DataribbonPageGroup.ItemLinks.Add(this.mbRetCenterTblChekNid);
     this.DataribbonPageGroup.ItemLinks.Add(this.mbRetCenterTBLProofDoc);
     this.DataribbonPageGroup.ItemLinks.Add(this.mbRetCenterTBLBeanWarsaMenu);
     this.DataribbonPageGroup.ItemLinks.Add(this.mbRetCenterBank);
     this.DataribbonPageGroup.ItemLinks.Add(this.mbRetCenterTBLDeathMembersMenu);
     this.DataribbonPageGroup.ItemLinks.Add(this.mbRetCentertbladminremarks);
     this.DataribbonPageGroup.ItemLinks.Add(this.mbRetCenterTBLEstefa);
     this.DataribbonPageGroup.ItemLinks.Add(this.mbRetCenterTBLReprint);
     this.DataribbonPageGroup.ItemLinks.Add(this.mbRetCenterTBLremind);
     this.DataribbonPageGroup.ItemLinks.Add(this.mbRetCenterTBLMandoop);
     this.DataribbonPageGroup.ItemLinks.Add(this.mbRetCenterTBLHafzaTasleem);
     this.DataribbonPageGroup.ItemLinks.Add(this.mbRetCenterTBLHafezSarf);
     this.DataribbonPageGroup.ItemLinks.Add(this.mbRetCenterVisa);
     this.DataribbonPageGroup.ItemLinks.Add(this.mbRetCenterTblAttach);
     this.DataribbonPageGroup.Name = "DataribbonPageGroup";
     this.DataribbonPageGroup.Text = "قائمة ادخال البيانات";
     //
     // ribbonPageGroup2
     //
     this.ribbonPageGroup2.ItemLinks.Add(this.mbRetCenterImportFromAccessFrm);
     this.ribbonPageGroup2.ItemLinks.Add(this.mbRetCenterImportFrombamanat);
     this.ribbonPageGroup2.Name = "ribbonPageGroup2";
     this.ribbonPageGroup2.Text = "استيراد البيانات";
     //
     // CodeRibbonPage
     //
     this.CodeRibbonPage.Groups.AddRange(new DevExpress.XtraBars.Ribbon.RibbonPageGroup[] {
     this.CoderibbonPageGroup});
     this.CodeRibbonPage.Name = "CodeRibbonPage";
     this.CodeRibbonPage.Text = "التعريفات الأساسية";
     //
     // CoderibbonPageGroup
     //
     this.CoderibbonPageGroup.ItemLinks.Add(this.mbRetCenterCDGov);
     this.CoderibbonPageGroup.ItemLinks.Add(this.mbRetCenterCDMarkez);
     this.CoderibbonPageGroup.ItemLinks.Add(this.mbRetCenterCDSyndicate);
     this.CoderibbonPageGroup.ItemLinks.Add(this.mbRetCenterCDSubCommitte);
     this.CoderibbonPageGroup.ItemLinks.Add(this.mbRetCenterCDBirthPlace);
     this.CoderibbonPageGroup.ItemLinks.Add(this.mbRetCenterJobs);
     this.CoderibbonPageGroup.ItemLinks.Add(this.mbRetCenterCDGehaType);
     this.CoderibbonPageGroup.ItemLinks.Add(this.mbRetCenterCDModerea);
     this.CoderibbonPageGroup.ItemLinks.Add(this.mbRetCenterCDEDARET);
     this.CoderibbonPageGroup.ItemLinks.Add(this.mbRetCenterCDGeha);
     this.CoderibbonPageGroup.ItemLinks.Add(this.mbRetCenterCDQualification);
     this.CoderibbonPageGroup.ItemLinks.Add(this.mbRetCenterCDSpecialization);
     this.CoderibbonPageGroup.ItemLinks.Add(this.mbRetCenterCDEstefaaKed);
     this.CoderibbonPageGroup.ItemLinks.Add(this.mbRetCenterCDAttachmentType);
     this.CoderibbonPageGroup.ItemLinks.Add(this.mbRetCenterCDsarfType);
     this.CoderibbonPageGroup.ItemLinks.Add(this.mbRetCenterTBLDofatSarf);
     this.CoderibbonPageGroup.ItemLinks.Add(this.mbRetCenterCdDofaatAmanat);
     this.CoderibbonPageGroup.ItemLinks.Add(this.mbRetCenterCDDofatSarfFrook);
     this.CoderibbonPageGroup.ItemLinks.Add(this.mbRetCenterTBLDofatSarfMadunea);
     this.CoderibbonPageGroup.Name = "CoderibbonPageGroup";
     this.CoderibbonPageGroup.Text = "قائمة التعريفات الأساسية";
     //
     // QueryribbonPage
     //
     this.QueryribbonPage.Groups.AddRange(new DevExpress.XtraBars.Ribbon.RibbonPageGroup[] {
     this.QryribbonPageGroup});
     this.QueryribbonPage.Name = "QueryribbonPage";
     this.QueryribbonPage.Text = "الاستعلامات ";
     //
     // QryribbonPageGroup
     //
     this.QryribbonPageGroup.AllowTextClipping = false;
     this.QryribbonPageGroup.ItemLinks.Add(this.mbRetCenterStatis);
     this.QryribbonPageGroup.ItemLinks.Add(this.mbRetCenterQryPart1);
     this.QryribbonPageGroup.ItemLinks.Add(this.mbRetCenterQryPart2);
     this.QryribbonPageGroup.ItemLinks.Add(this.mbRetCenterQry21);
     this.QryribbonPageGroup.ItemLinks.Add(this.mbRetCenterQryPart3);
     this.QryribbonPageGroup.ItemLinks.Add(this.mbRetCenterBankQry);
     this.QryribbonPageGroup.ItemLinks.Add(this.mbRetCenterُErrorQry);
     this.QryribbonPageGroup.ItemLinks.Add(this.mbRetCenterQry03);
     this.QryribbonPageGroup.ItemLinks.Add(this.mbRetCenterQry03A);
     this.QryribbonPageGroup.ItemLinks.Add(this.mbRetCenterQry04);
     this.QryribbonPageGroup.ItemLinks.Add(this.mbRetCenterQry05);
     this.QryribbonPageGroup.ItemLinks.Add(this.mbRetCenterQry10);
     this.QryribbonPageGroup.ItemLinks.Add(this.mbRetCenterQry19);
     this.QryribbonPageGroup.ItemLinks.Add(this.mbRetCenterQry20);
     this.QryribbonPageGroup.ItemLinks.Add(this.mbRetCenterQry22);
     this.QryribbonPageGroup.ItemLinks.Add(this.mbRetCenterQry23);
     this.QryribbonPageGroup.ItemLinks.Add(this.mbRetCenterQry24);
     this.QryribbonPageGroup.ItemLinks.Add(this.mbRetCenterQry25);
     this.QryribbonPageGroup.ItemLinks.Add(this.mbRetCenterQry26);
     this.QryribbonPageGroup.ItemLinks.Add(this.mbRetCenterQry50);
     this.QryribbonPageGroup.ItemLinks.Add(this.mbRetCenterQry60);
     this.QryribbonPageGroup.ItemLinks.Add(this.mbRetCenterQry72);
     this.QryribbonPageGroup.ItemLinks.Add(this.mbRetCenterQry73);
     this.QryribbonPageGroup.ItemLinks.Add(this.mbRetCenterQry75);
     this.QryribbonPageGroup.ItemLinks.Add(this.mbRetCenterQry78);
     this.QryribbonPageGroup.ItemLinks.Add(this.mbRetCenterQry79);
     this.QryribbonPageGroup.ItemLinks.Add(this.mbRetCenterQry80);
     this.QryribbonPageGroup.ItemLinks.Add(this.mbRetCenterQry93);
     this.QryribbonPageGroup.ItemLinks.Add(this.mbRetCenterQry94);
     this.QryribbonPageGroup.Name = "QryribbonPageGroup";
     this.QryribbonPageGroup.Text = "الاستعلامات";
     //
     // QueryChartribbonPage
     //
     this.QueryChartribbonPage.Groups.AddRange(new DevExpress.XtraBars.Ribbon.RibbonPageGroup[] {
     this.ribbonPageGroup6});
     this.QueryChartribbonPage.Name = "QueryChartribbonPage";
     this.QueryChartribbonPage.Text = "الاستعلامات بالرسم";
     //
     // ribbonPageGroup6
     //
     this.ribbonPageGroup6.Name = "ribbonPageGroup6";
     this.ribbonPageGroup6.Text = "الاستعلامات بالرسم";
     //
     // PrintribbonPage
     //
     this.PrintribbonPage.Groups.AddRange(new DevExpress.XtraBars.Ribbon.RibbonPageGroup[] {
     this.ReportribbonPageGroup});
     this.PrintribbonPage.Name = "PrintribbonPage";
     this.PrintribbonPage.Text = "التقارير";
     //
     // ReportribbonPageGroup
     //
     this.ReportribbonPageGroup.AllowMinimize = false;
     this.ReportribbonPageGroup.AllowTextClipping = false;
     this.ReportribbonPageGroup.ItemLinks.Add(this.mbRetCenterXRep01);
     this.ReportribbonPageGroup.ItemLinks.Add(this.mbRetCenterSarfyaA3da2);
     this.ReportribbonPageGroup.ItemLinks.Add(this.mbRetCenterSarfyaWarasa);
     this.ReportribbonPageGroup.ItemLinks.Add(this.mbRetCenterXRep05);
     this.ReportribbonPageGroup.ItemLinks.Add(this.mbRetCenterXRep06);
     this.ReportribbonPageGroup.ItemLinks.Add(this.mbRetCenterXRep09);
     this.ReportribbonPageGroup.ItemLinks.Add(this.mbRetCenterXRep07);
     this.ReportribbonPageGroup.ItemLinks.Add(this.mbRetCenterXRep08);
     this.ReportribbonPageGroup.ItemLinks.Add(this.mbRetCenterXRep10);
     this.ReportribbonPageGroup.ItemLinks.Add(this.mbRetCenterXRep11);
     this.ReportribbonPageGroup.ItemLinks.Add(this.mbRetCenterXRep12);
     this.ReportribbonPageGroup.ItemLinks.Add(this.mbRetCenterXRep13);
     this.ReportribbonPageGroup.ItemLinks.Add(this.mbRetCenterXRep14);
     this.ReportribbonPageGroup.ItemLinks.Add(this.mbRetCenterXRep15);
     this.ReportribbonPageGroup.ItemLinks.Add(this.mbRetCenterXRep16);
     this.ReportribbonPageGroup.ItemLinks.Add(this.mbRetCenterXRep16A);
     this.ReportribbonPageGroup.ItemLinks.Add(this.mbRetCenterXRep17);
     this.ReportribbonPageGroup.ItemLinks.Add(this.mbRetCenterXRep18);
     this.ReportribbonPageGroup.ItemLinks.Add(this.mbRetCenterXRep19);
     this.ReportribbonPageGroup.ItemLinks.Add(this.mbRetCenterTBLDeathMembersPrint);
     this.ReportribbonPageGroup.ItemLinks.Add(this.mbRetCenterXRep21);
     this.ReportribbonPageGroup.ItemLinks.Add(this.mbRetCenterXRep22);
     this.ReportribbonPageGroup.ItemLinks.Add(this.mbRetCenterXRep23);
     this.ReportribbonPageGroup.ItemLinks.Add(this.mbRetCenterXRep24);
     this.ReportribbonPageGroup.ItemLinks.Add(this.mbRetCenterXRep25);
     this.ReportribbonPageGroup.ItemLinks.Add(this.mbRetCenterXRep28);
     this.ReportribbonPageGroup.ItemLinks.Add(this.mbRetCenterXRep29);
     this.ReportribbonPageGroup.Name = "ReportribbonPageGroup";
     this.ReportribbonPageGroup.Text = "التقارير";
     //
     // PremissionribbonPage
     //
     this.PremissionribbonPage.Groups.AddRange(new DevExpress.XtraBars.Ribbon.RibbonPageGroup[] {
     this.ribbonPageGroup3,
     this.ribbonPageGroup4});
     this.PremissionribbonPage.Name = "PremissionribbonPage";
     this.PremissionribbonPage.Text = "صلاحيات";
     //
     // ribbonPageGroup3
     //
     this.ribbonPageGroup3.ItemLinks.Add(this.mbRetCenterUsers);
     this.ribbonPageGroup3.ItemLinks.Add(this.mbRetCenterUserRoles);
     this.ribbonPageGroup3.Name = "ribbonPageGroup3";
     this.ribbonPageGroup3.Text = "مستخدمين";
     //
     // ribbonPageGroup4
     //
     this.ribbonPageGroup4.ItemLinks.Add(this.mbRetCenterRoles);
     this.ribbonPageGroup4.ItemLinks.Add(this.mbRetCenterRoleSyndicate);
     this.ribbonPageGroup4.ItemLinks.Add(this.mbRetCenterRoleDetail);
     this.ribbonPageGroup4.Name = "ribbonPageGroup4";
     this.ribbonPageGroup4.Text = "صلاحيات";
     //
     // helpRibbonPage
     //
     this.helpRibbonPage.Groups.AddRange(new DevExpress.XtraBars.Ribbon.RibbonPageGroup[] {
     this.skinsRibbonPageGroup,
     this.helpRibbonPageGroup,
     this.ribbonPageGroup1});
     this.helpRibbonPage.Name = "helpRibbonPage";
     this.helpRibbonPage.Text = "مساعده";
     //
     // skinsRibbonPageGroup
     //
     this.skinsRibbonPageGroup.ItemLinks.Add(this.mbRetCenterSkins);
     this.skinsRibbonPageGroup.Name = "skinsRibbonPageGroup";
     this.skinsRibbonPageGroup.ShowCaptionButton = false;
     this.skinsRibbonPageGroup.Text = "Skins";
     //
     // helpRibbonPageGroup
     //
     this.helpRibbonPageGroup.ItemLinks.Add(this.mbRetCenterHelp);
     this.helpRibbonPageGroup.ItemLinks.Add(this.mbRetCenterAbout);
     this.helpRibbonPageGroup.Name = "helpRibbonPageGroup";
     this.helpRibbonPageGroup.Text = "Help";
     //
     // ribbonPageGroup1
     //
     this.ribbonPageGroup1.Name = "ribbonPageGroup1";
     this.ribbonPageGroup1.Text = "اختبار";
     //
     // RoleDetailFrm
     //
     this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
     this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
     this.ClientSize = new System.Drawing.Size(984, 330);
     this.Controls.Add(this.groupControlUpdate);
     this.Controls.Add(this.groupControlSelect);
     this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedSingle;
     this.Name = "RoleDetailFrm";
     this.Text = "السماحيات";
     this.Load += new System.EventHandler(this.EditorJobFrm_Load);
     ((System.ComponentModel.ISupportInitialize)(this.groupControlUpdate)).EndInit();
     this.groupControlUpdate.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.appMenu)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.popupControlContainer2)).EndInit();
     this.popupControlContainer2.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.buttonEdit.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.popupControlContainer1)).EndInit();
     this.popupControlContainer1.ResumeLayout(false);
     this.popupControlContainer1.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(this.groupControl2)).EndInit();
     this.groupControl2.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.CEUpdate.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.CESelect.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.CEDelete.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.CEInsert.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.groupControlSelect)).EndInit();
     this.groupControlSelect.ResumeLayout(false);
     this.groupControlSelect.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(this.LUEItems.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.rolesBindingSource)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.dsRetirementCenter)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.ribbonControl)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.ribbonImageCollection)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.ribbonImageCollectionLarge)).EndInit();
     this.ResumeLayout(false);
 }
Example #30
0
 /// <summary>
 /// Required method for Designer support - do not modify
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     this.components = new System.ComponentModel.Container();
     System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(RibbonFrmMain));
     this.ribbon = new DevExpress.XtraBars.Ribbon.RibbonControl();
     this.barButtonCreakTask = new DevExpress.XtraBars.BarButtonItem();
     this.barButtonOpenTask = new DevExpress.XtraBars.BarButtonItem();
     this.barButtonExecuteTask = new DevExpress.XtraBars.BarButtonItem();
     this.barButtonIdentify = new DevExpress.XtraBars.BarButtonItem();
     this.barStaticTask = new DevExpress.XtraBars.BarStaticItem();
     this.barButtonAutoTask = new DevExpress.XtraBars.BarButtonItem();
     this.barButtonExportToExcel = new DevExpress.XtraBars.BarButtonItem();
     this.barButtonShpToMDB = new DevExpress.XtraBars.BarButtonItem();
     this.barButtonExportToShp = new DevExpress.XtraBars.BarButtonItem();
     this.barSubExportError = new DevExpress.XtraBars.BarSubItem();
     this.barButtonExportToVCT = new DevExpress.XtraBars.BarButtonItem();
     this.barButtonPreCheck = new DevExpress.XtraBars.BarButtonItem();
     this.barButtonItem4 = new DevExpress.XtraBars.BarButtonItem();
     this.barButtonItem6 = new DevExpress.XtraBars.BarButtonItem();
     this.barButtonClearElements = new DevExpress.XtraBars.BarButtonItem();
     this.barButtonItem8 = new DevExpress.XtraBars.BarButtonItem();
     this.barButtonItem10 = new DevExpress.XtraBars.BarButtonItem();
     this.barButtonItem11 = new DevExpress.XtraBars.BarButtonItem();
     this.barButtonItem12 = new DevExpress.XtraBars.BarButtonItem();
     this.barButtonItem13 = new DevExpress.XtraBars.BarButtonItem();
     this.barButtonItem14 = new DevExpress.XtraBars.BarButtonItem();
     this.barButtonRuleTree = new DevExpress.XtraBars.BarButtonItem();
     this.barButtonSQLQuery = new DevExpress.XtraBars.BarButtonItem();
     this.barButtonItem17 = new DevExpress.XtraBars.BarButtonItem();
     this.barStaticXY = new DevExpress.XtraBars.BarStaticItem();
     this.barButtonItem19 = new DevExpress.XtraBars.BarButtonItem();
     this.barButtonItem20 = new DevExpress.XtraBars.BarButtonItem();
     this.barButtonItem21 = new DevExpress.XtraBars.BarButtonItem();
     this.barButtonItem24 = new DevExpress.XtraBars.BarButtonItem();
     this.barButtonItem25 = new DevExpress.XtraBars.BarButtonItem();
     this.barButtonItemBatch = new DevExpress.XtraBars.BarButtonItem();
     this.barButtonSettings = new DevExpress.XtraBars.BarButtonItem();
     this.barBtnItemViewLogs = new DevExpress.XtraBars.BarButtonItem();
     this.barBtnItemFeatsStat = new DevExpress.XtraBars.BarButtonItem();
     this.rpDbCheck = new DevExpress.XtraBars.Ribbon.RibbonPage();
     this.ribbonPageGroup1 = new DevExpress.XtraBars.Ribbon.RibbonPageGroup();
     this.ribbonPageGroup6 = new DevExpress.XtraBars.Ribbon.RibbonPageGroup();
     this.ribbonPageGroup7 = new DevExpress.XtraBars.Ribbon.RibbonPageGroup();
     this.ribbonPageGroup2 = new DevExpress.XtraBars.Ribbon.RibbonPageGroup();
     this.ribbonPageGroup3 = new DevExpress.XtraBars.Ribbon.RibbonPageGroup();
     this.ribbonStatusBar = new DevExpress.XtraBars.Ribbon.RibbonStatusBar();
     this.clientPanel = new DevExpress.XtraEditors.PanelControl();
     this.pnlMapCheck = new DevExpress.XtraEditors.PanelControl();
     this.defaultLookAndFeel1 = new DevExpress.LookAndFeel.DefaultLookAndFeel(this.components);
     this.ribbonPageGroup4 = new DevExpress.XtraBars.Ribbon.RibbonPageGroup();
     this.barButtonItem3 = new DevExpress.XtraBars.BarButtonItem();
     this.barButtonItem9 = new DevExpress.XtraBars.BarButtonItem();
     ((System.ComponentModel.ISupportInitialize)(this.ribbon)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.clientPanel)).BeginInit();
     this.clientPanel.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.pnlMapCheck)).BeginInit();
     this.SuspendLayout();
     //
     // ribbon
     //
     this.ribbon.ApplicationButtonText = null;
     this.ribbon.ApplicationIcon = ((System.Drawing.Bitmap)(resources.GetObject("ribbon.ApplicationIcon")));
     this.ribbon.ButtonGroupsVertAlign = DevExpress.Utils.VertAlignment.Default;
     this.ribbon.Dock = System.Windows.Forms.DockStyle.Top;
     this.ribbon.Items.AddRange(new DevExpress.XtraBars.BarItem[] {
     this.barButtonCreakTask,
     this.barButtonOpenTask,
     this.barButtonExecuteTask,
     this.barButtonIdentify,
     this.barStaticTask,
     this.barButtonAutoTask,
     this.barButtonExportToExcel,
     this.barButtonShpToMDB,
     this.barButtonExportToShp,
     this.barSubExportError,
     this.barButtonPreCheck,
     this.barButtonExportToVCT,
     this.barButtonItem4,
     this.barButtonItem6,
     this.barButtonClearElements,
     this.barButtonItem8,
     this.barButtonItem10,
     this.barButtonItem11,
     this.barButtonItem12,
     this.barButtonItem13,
     this.barButtonItem14,
     this.barButtonRuleTree,
     this.barButtonSQLQuery,
     this.barButtonItem17,
     this.barStaticXY,
     this.barButtonItem19,
     this.barButtonItem20,
     this.barButtonItem21,
     this.barButtonItem24,
     this.barButtonItem25,
     this.barButtonItemBatch,
     this.barButtonSettings,
     this.barBtnItemViewLogs,
     this.barBtnItemFeatsStat});
     this.ribbon.ItemsVertAlign = DevExpress.Utils.VertAlignment.Default;
     this.ribbon.Location = new System.Drawing.Point(0, 0);
     this.ribbon.MaxItemId = 93;
     this.ribbon.MdiMergeStyle = DevExpress.XtraBars.Ribbon.RibbonMdiMergeStyle.Default;
     this.ribbon.Name = "ribbon";
     this.ribbon.PageCategoryAlignment = DevExpress.XtraBars.Ribbon.RibbonPageCategoryAlignment.Default;
     this.ribbon.Pages.AddRange(new DevExpress.XtraBars.Ribbon.RibbonPage[] {
     this.rpDbCheck});
     this.ribbon.RibbonStyle = DevExpress.XtraBars.Ribbon.RibbonControlStyle.Default;
     this.ribbon.SelectedPage = this.rpDbCheck;
     this.ribbon.ShowExpandCollapseButton = DevExpress.Utils.DefaultBoolean.Default;
     this.ribbon.ShowPageHeadersMode = DevExpress.XtraBars.Ribbon.ShowPageHeadersMode.Default;
     this.ribbon.ShowToolbarCustomizeItem = false;
     this.ribbon.Size = new System.Drawing.Size(1429, 147);
     this.ribbon.StatusBar = this.ribbonStatusBar;
     this.ribbon.Toolbar.ItemLinks.Add(this.barButtonSettings);
     this.ribbon.Toolbar.ShowCustomizeItem = false;
     this.ribbon.ToolbarLocation = DevExpress.XtraBars.Ribbon.RibbonQuickAccessToolbarLocation.Above;
     //
     // barButtonCreakTask
     //
     this.barButtonCreakTask.Alignment = DevExpress.XtraBars.BarItemLinkAlignment.Default;
     this.barButtonCreakTask.Appearance.TextOptions.WordWrap = DevExpress.Utils.WordWrap.Default;
     this.barButtonCreakTask.AppearanceDisabled.TextOptions.WordWrap = DevExpress.Utils.WordWrap.Default;
     this.barButtonCreakTask.ButtonStyle = DevExpress.XtraBars.BarButtonStyle.Default;
     this.barButtonCreakTask.Caption = "�½�����";
     this.barButtonCreakTask.Id = 0;
     this.barButtonCreakTask.ItemClickFireMode = DevExpress.XtraBars.BarItemEventFireMode.Default;
     this.barButtonCreakTask.LargeGlyph = ((System.Drawing.Image)(resources.GetObject("barButtonCreakTask.LargeGlyph")));
     this.barButtonCreakTask.MergeType = DevExpress.XtraBars.BarMenuMerge.Add;
     this.barButtonCreakTask.Name = "barButtonCreakTask";
     this.barButtonCreakTask.Tag = "Hy.Check.Command.CustomCommand.CreateTaskCommand";
     this.barButtonCreakTask.Visibility = DevExpress.XtraBars.BarItemVisibility.Always;
     //
     // barButtonOpenTask
     //
     this.barButtonOpenTask.Alignment = DevExpress.XtraBars.BarItemLinkAlignment.Default;
     this.barButtonOpenTask.Appearance.TextOptions.WordWrap = DevExpress.Utils.WordWrap.Default;
     this.barButtonOpenTask.AppearanceDisabled.TextOptions.WordWrap = DevExpress.Utils.WordWrap.Default;
     this.barButtonOpenTask.ButtonStyle = DevExpress.XtraBars.BarButtonStyle.Default;
     this.barButtonOpenTask.Caption = "������";
     this.barButtonOpenTask.Id = 1;
     this.barButtonOpenTask.ItemClickFireMode = DevExpress.XtraBars.BarItemEventFireMode.Default;
     this.barButtonOpenTask.LargeGlyph = ((System.Drawing.Image)(resources.GetObject("barButtonOpenTask.LargeGlyph")));
     this.barButtonOpenTask.MergeType = DevExpress.XtraBars.BarMenuMerge.Add;
     this.barButtonOpenTask.Name = "barButtonOpenTask";
     this.barButtonOpenTask.Tag = "Hy.Check.Command.CustomCommand.OpenTaskCommand";
     this.barButtonOpenTask.Visibility = DevExpress.XtraBars.BarItemVisibility.Always;
     //
     // barButtonExecuteTask
     //
     this.barButtonExecuteTask.Alignment = DevExpress.XtraBars.BarItemLinkAlignment.Default;
     this.barButtonExecuteTask.Appearance.TextOptions.WordWrap = DevExpress.Utils.WordWrap.Default;
     this.barButtonExecuteTask.AppearanceDisabled.TextOptions.WordWrap = DevExpress.Utils.WordWrap.Default;
     this.barButtonExecuteTask.ButtonStyle = DevExpress.XtraBars.BarButtonStyle.Default;
     this.barButtonExecuteTask.Caption = "ִ������";
     this.barButtonExecuteTask.Id = 5;
     this.barButtonExecuteTask.ItemClickFireMode = DevExpress.XtraBars.BarItemEventFireMode.Default;
     this.barButtonExecuteTask.LargeGlyph = global::Hy.Check.Demo.Properties.Resources.ExcuteTask;
     this.barButtonExecuteTask.MergeType = DevExpress.XtraBars.BarMenuMerge.Add;
     this.barButtonExecuteTask.Name = "barButtonExecuteTask";
     this.barButtonExecuteTask.Tag = "Hy.Check.Command.CustomCommand.ExcuteTaskCommand";
     this.barButtonExecuteTask.Visibility = DevExpress.XtraBars.BarItemVisibility.Never;
     //
     // barButtonIdentify
     //
     this.barButtonIdentify.Alignment = DevExpress.XtraBars.BarItemLinkAlignment.Default;
     this.barButtonIdentify.Appearance.TextOptions.WordWrap = DevExpress.Utils.WordWrap.Default;
     this.barButtonIdentify.AppearanceDisabled.TextOptions.WordWrap = DevExpress.Utils.WordWrap.Default;
     this.barButtonIdentify.ButtonStyle = DevExpress.XtraBars.BarButtonStyle.Default;
     this.barButtonIdentify.Caption = "���Բ�ѯ";
     this.barButtonIdentify.GroupIndex = 1;
     this.barButtonIdentify.Id = 7;
     this.barButtonIdentify.ItemClickFireMode = DevExpress.XtraBars.BarItemEventFireMode.Default;
     this.barButtonIdentify.LargeGlyph = ((System.Drawing.Image)(resources.GetObject("barButtonIdentify.LargeGlyph")));
     this.barButtonIdentify.MergeType = DevExpress.XtraBars.BarMenuMerge.Add;
     this.barButtonIdentify.Name = "barButtonIdentify";
     this.barButtonIdentify.Tag = "Hy.Check.Command.CustomCommand.MapIdentifyCommand:1";
     this.barButtonIdentify.Visibility = DevExpress.XtraBars.BarItemVisibility.Always;
     //
     // barStaticTask
     //
     this.barStaticTask.Alignment = DevExpress.XtraBars.BarItemLinkAlignment.Default;
     this.barStaticTask.Appearance.TextOptions.WordWrap = DevExpress.Utils.WordWrap.Default;
     this.barStaticTask.AppearanceDisabled.TextOptions.WordWrap = DevExpress.Utils.WordWrap.Default;
     this.barStaticTask.AutoSize = DevExpress.XtraBars.BarStaticItemSize.Content;
     this.barStaticTask.Id = 10;
     this.barStaticTask.ItemClickFireMode = DevExpress.XtraBars.BarItemEventFireMode.Default;
     this.barStaticTask.MergeType = DevExpress.XtraBars.BarMenuMerge.Add;
     this.barStaticTask.Name = "barStaticTask";
     this.barStaticTask.TextAlignment = System.Drawing.StringAlignment.Near;
     this.barStaticTask.Visibility = DevExpress.XtraBars.BarItemVisibility.Always;
     //
     // barButtonAutoTask
     //
     this.barButtonAutoTask.Alignment = DevExpress.XtraBars.BarItemLinkAlignment.Default;
     this.barButtonAutoTask.Appearance.TextOptions.WordWrap = DevExpress.Utils.WordWrap.Default;
     this.barButtonAutoTask.AppearanceDisabled.TextOptions.WordWrap = DevExpress.Utils.WordWrap.Default;
     this.barButtonAutoTask.ButtonStyle = DevExpress.XtraBars.BarButtonStyle.Default;
     this.barButtonAutoTask.Caption = "�Զ����";
     this.barButtonAutoTask.Id = 19;
     this.barButtonAutoTask.ItemClickFireMode = DevExpress.XtraBars.BarItemEventFireMode.Default;
     this.barButtonAutoTask.LargeGlyph = ((System.Drawing.Image)(resources.GetObject("barButtonAutoTask.LargeGlyph")));
     this.barButtonAutoTask.MergeType = DevExpress.XtraBars.BarMenuMerge.Add;
     this.barButtonAutoTask.Name = "barButtonAutoTask";
     this.barButtonAutoTask.Tag = "Hy.Check.Command.CustomCommand.ExcuteTaskCommand";
     this.barButtonAutoTask.Visibility = DevExpress.XtraBars.BarItemVisibility.Always;
     //
     // barButtonExportToExcel
     //
     this.barButtonExportToExcel.Alignment = DevExpress.XtraBars.BarItemLinkAlignment.Default;
     this.barButtonExportToExcel.Appearance.TextOptions.WordWrap = DevExpress.Utils.WordWrap.Default;
     this.barButtonExportToExcel.AppearanceDisabled.TextOptions.WordWrap = DevExpress.Utils.WordWrap.Default;
     this.barButtonExportToExcel.ButtonStyle = DevExpress.XtraBars.BarButtonStyle.Default;
     this.barButtonExportToExcel.Caption = "���������¼(XLS)";
     this.barButtonExportToExcel.Glyph = ((System.Drawing.Image)(resources.GetObject("barButtonExportToExcel.Glyph")));
     this.barButtonExportToExcel.Id = 23;
     this.barButtonExportToExcel.ItemClickFireMode = DevExpress.XtraBars.BarItemEventFireMode.Default;
     this.barButtonExportToExcel.MergeType = DevExpress.XtraBars.BarMenuMerge.Add;
     this.barButtonExportToExcel.Name = "barButtonExportToExcel";
     this.barButtonExportToExcel.Tag = "Hy.Check.Command.CustomCommand.ExportErrosToExcelCommand";
     this.barButtonExportToExcel.Visibility = DevExpress.XtraBars.BarItemVisibility.Always;
     //
     // barButtonShpToMDB
     //
     this.barButtonShpToMDB.Alignment = DevExpress.XtraBars.BarItemLinkAlignment.Default;
     this.barButtonShpToMDB.Appearance.TextOptions.WordWrap = DevExpress.Utils.WordWrap.Default;
     this.barButtonShpToMDB.AppearanceDisabled.TextOptions.WordWrap = DevExpress.Utils.WordWrap.Default;
     this.barButtonShpToMDB.ButtonStyle = DevExpress.XtraBars.BarButtonStyle.Default;
     this.barButtonShpToMDB.Caption = "ShapeתMDB";
     this.barButtonShpToMDB.Glyph = global::Hy.Check.Demo.Properties.Resources.ShpToMDB;
     this.barButtonShpToMDB.Id = 24;
     this.barButtonShpToMDB.ItemClickFireMode = DevExpress.XtraBars.BarItemEventFireMode.Default;
     this.barButtonShpToMDB.MergeType = DevExpress.XtraBars.BarMenuMerge.Add;
     this.barButtonShpToMDB.Name = "barButtonShpToMDB";
     this.barButtonShpToMDB.Tag = "";
     this.barButtonShpToMDB.Visibility = DevExpress.XtraBars.BarItemVisibility.Always;
     //
     // barButtonExportToShp
     //
     this.barButtonExportToShp.Alignment = DevExpress.XtraBars.BarItemLinkAlignment.Default;
     this.barButtonExportToShp.Appearance.TextOptions.WordWrap = DevExpress.Utils.WordWrap.Default;
     this.barButtonExportToShp.AppearanceDisabled.TextOptions.WordWrap = DevExpress.Utils.WordWrap.Default;
     this.barButtonExportToShp.ButtonStyle = DevExpress.XtraBars.BarButtonStyle.Default;
     this.barButtonExportToShp.Caption = "������λ��Ϣ��shape�ļ�";
     this.barButtonExportToShp.Glyph = ((System.Drawing.Image)(resources.GetObject("barButtonExportToShp.Glyph")));
     this.barButtonExportToShp.Id = 25;
     this.barButtonExportToShp.ItemClickFireMode = DevExpress.XtraBars.BarItemEventFireMode.Default;
     this.barButtonExportToShp.MergeType = DevExpress.XtraBars.BarMenuMerge.Add;
     this.barButtonExportToShp.Name = "barButtonExportToShp";
     this.barButtonExportToShp.Tag = "Hy.Check.Command.CustomCommand.ExportErrorRecordCommand";
     this.barButtonExportToShp.Visibility = DevExpress.XtraBars.BarItemVisibility.Always;
     //
     // barSubExportError
     //
     this.barSubExportError.Alignment = DevExpress.XtraBars.BarItemLinkAlignment.Default;
     this.barSubExportError.Appearance.TextOptions.WordWrap = DevExpress.Utils.WordWrap.Default;
     this.barSubExportError.AppearanceDisabled.TextOptions.WordWrap = DevExpress.Utils.WordWrap.Default;
     this.barSubExportError.Caption = "��������¼";
     this.barSubExportError.Id = 26;
     this.barSubExportError.ItemClickFireMode = DevExpress.XtraBars.BarItemEventFireMode.Default;
     this.barSubExportError.LargeGlyph = ((System.Drawing.Image)(resources.GetObject("barSubExportError.LargeGlyph")));
     this.barSubExportError.LinksPersistInfo.AddRange(new DevExpress.XtraBars.LinkPersistInfo[] {
     new DevExpress.XtraBars.LinkPersistInfo(this.barButtonExportToExcel),
     new DevExpress.XtraBars.LinkPersistInfo(this.barButtonExportToShp),
     new DevExpress.XtraBars.LinkPersistInfo(this.barButtonExportToVCT)});
     this.barSubExportError.MenuAppearance.Menu.GradientMode = System.Drawing.Drawing2D.LinearGradientMode.Horizontal;
     this.barSubExportError.MenuAppearance.Menu.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Default;
     this.barSubExportError.MenuAppearance.Menu.TextOptions.HotkeyPrefix = DevExpress.Utils.HKeyPrefix.Default;
     this.barSubExportError.MenuAppearance.Menu.TextOptions.Trimming = DevExpress.Utils.Trimming.Default;
     this.barSubExportError.MenuAppearance.Menu.TextOptions.VAlignment = DevExpress.Utils.VertAlignment.Default;
     this.barSubExportError.MenuAppearance.Menu.TextOptions.WordWrap = DevExpress.Utils.WordWrap.Default;
     this.barSubExportError.MenuAppearance.MenuBar.GradientMode = System.Drawing.Drawing2D.LinearGradientMode.Horizontal;
     this.barSubExportError.MenuAppearance.MenuBar.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Default;
     this.barSubExportError.MenuAppearance.MenuBar.TextOptions.HotkeyPrefix = DevExpress.Utils.HKeyPrefix.Default;
     this.barSubExportError.MenuAppearance.MenuBar.TextOptions.Trimming = DevExpress.Utils.Trimming.Default;
     this.barSubExportError.MenuAppearance.MenuBar.TextOptions.VAlignment = DevExpress.Utils.VertAlignment.Default;
     this.barSubExportError.MenuAppearance.MenuBar.TextOptions.WordWrap = DevExpress.Utils.WordWrap.Default;
     this.barSubExportError.MenuAppearance.MenuCaption.GradientMode = System.Drawing.Drawing2D.LinearGradientMode.Horizontal;
     this.barSubExportError.MenuAppearance.MenuCaption.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Default;
     this.barSubExportError.MenuAppearance.MenuCaption.TextOptions.HotkeyPrefix = DevExpress.Utils.HKeyPrefix.Default;
     this.barSubExportError.MenuAppearance.MenuCaption.TextOptions.Trimming = DevExpress.Utils.Trimming.Default;
     this.barSubExportError.MenuAppearance.MenuCaption.TextOptions.VAlignment = DevExpress.Utils.VertAlignment.Default;
     this.barSubExportError.MenuAppearance.MenuCaption.TextOptions.WordWrap = DevExpress.Utils.WordWrap.Default;
     this.barSubExportError.MenuAppearance.SideStrip.GradientMode = System.Drawing.Drawing2D.LinearGradientMode.Horizontal;
     this.barSubExportError.MenuAppearance.SideStrip.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Default;
     this.barSubExportError.MenuAppearance.SideStrip.TextOptions.HotkeyPrefix = DevExpress.Utils.HKeyPrefix.Default;
     this.barSubExportError.MenuAppearance.SideStrip.TextOptions.Trimming = DevExpress.Utils.Trimming.Default;
     this.barSubExportError.MenuAppearance.SideStrip.TextOptions.VAlignment = DevExpress.Utils.VertAlignment.Default;
     this.barSubExportError.MenuAppearance.SideStrip.TextOptions.WordWrap = DevExpress.Utils.WordWrap.Default;
     this.barSubExportError.MenuAppearance.SideStripNonRecent.GradientMode = System.Drawing.Drawing2D.LinearGradientMode.Horizontal;
     this.barSubExportError.MenuAppearance.SideStripNonRecent.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Default;
     this.barSubExportError.MenuAppearance.SideStripNonRecent.TextOptions.HotkeyPrefix = DevExpress.Utils.HKeyPrefix.Default;
     this.barSubExportError.MenuAppearance.SideStripNonRecent.TextOptions.Trimming = DevExpress.Utils.Trimming.Default;
     this.barSubExportError.MenuAppearance.SideStripNonRecent.TextOptions.VAlignment = DevExpress.Utils.VertAlignment.Default;
     this.barSubExportError.MenuAppearance.SideStripNonRecent.TextOptions.WordWrap = DevExpress.Utils.WordWrap.Default;
     this.barSubExportError.MenuDrawMode = DevExpress.XtraBars.MenuDrawMode.Default;
     this.barSubExportError.MergeType = DevExpress.XtraBars.BarMenuMerge.Add;
     this.barSubExportError.Name = "barSubExportError";
     this.barSubExportError.Tag = "";
     this.barSubExportError.Visibility = DevExpress.XtraBars.BarItemVisibility.Always;
     //
     // barButtonExportToVCT
     //
     this.barButtonExportToVCT.Alignment = DevExpress.XtraBars.BarItemLinkAlignment.Default;
     this.barButtonExportToVCT.Appearance.TextOptions.WordWrap = DevExpress.Utils.WordWrap.Default;
     this.barButtonExportToVCT.AppearanceDisabled.TextOptions.WordWrap = DevExpress.Utils.WordWrap.Default;
     this.barButtonExportToVCT.ButtonStyle = DevExpress.XtraBars.BarButtonStyle.Default;
     this.barButtonExportToVCT.Caption = "������λ��Ϣ(VCT)";
     this.barButtonExportToVCT.Glyph = ((System.Drawing.Image)(resources.GetObject("barButtonExportToVCT.Glyph")));
     this.barButtonExportToVCT.Id = 29;
     this.barButtonExportToVCT.ItemClickFireMode = DevExpress.XtraBars.BarItemEventFireMode.Default;
     this.barButtonExportToVCT.MergeType = DevExpress.XtraBars.BarMenuMerge.Add;
     this.barButtonExportToVCT.Name = "barButtonExportToVCT";
     this.barButtonExportToVCT.Tag = "Hy.Check.Command.CustomCommand.ExportToVCTCommand";
     this.barButtonExportToVCT.Visibility = DevExpress.XtraBars.BarItemVisibility.Never;
     //
     // barButtonPreCheck
     //
     this.barButtonPreCheck.Alignment = DevExpress.XtraBars.BarItemLinkAlignment.Default;
     this.barButtonPreCheck.Appearance.TextOptions.WordWrap = DevExpress.Utils.WordWrap.Default;
     this.barButtonPreCheck.AppearanceDisabled.TextOptions.WordWrap = DevExpress.Utils.WordWrap.Default;
     this.barButtonPreCheck.ButtonStyle = DevExpress.XtraBars.BarButtonStyle.Default;
     this.barButtonPreCheck.Caption = "Ԥ��";
     this.barButtonPreCheck.Id = 28;
     this.barButtonPreCheck.ItemClickFireMode = DevExpress.XtraBars.BarItemEventFireMode.Default;
     this.barButtonPreCheck.LargeGlyph = global::Hy.Check.Demo.Properties.Resources.ExcuteTask;
     this.barButtonPreCheck.MergeType = DevExpress.XtraBars.BarMenuMerge.Add;
     this.barButtonPreCheck.Name = "barButtonPreCheck";
     this.barButtonPreCheck.Tag = "Hy.Check.Command.CustomCommand.PreCheckCommand";
     this.barButtonPreCheck.Visibility = DevExpress.XtraBars.BarItemVisibility.Always;
     //
     // barButtonItem4
     //
     this.barButtonItem4.Alignment = DevExpress.XtraBars.BarItemLinkAlignment.Default;
     this.barButtonItem4.Appearance.TextOptions.WordWrap = DevExpress.Utils.WordWrap.Default;
     this.barButtonItem4.AppearanceDisabled.TextOptions.WordWrap = DevExpress.Utils.WordWrap.Default;
     this.barButtonItem4.ButtonStyle = DevExpress.XtraBars.BarButtonStyle.Default;
     this.barButtonItem4.Caption = "�������";
     this.barButtonItem4.Hint = "�鿴��ǰ����ļ������";
     this.barButtonItem4.Id = 30;
     this.barButtonItem4.ItemClickFireMode = DevExpress.XtraBars.BarItemEventFireMode.Default;
     this.barButtonItem4.LargeGlyph = ((System.Drawing.Image)(resources.GetObject("barButtonItem4.LargeGlyph")));
     this.barButtonItem4.MergeType = DevExpress.XtraBars.BarMenuMerge.Add;
     this.barButtonItem4.Name = "barButtonItem4";
     this.barButtonItem4.Tag = "Hy.Check.Command.CustomCommand.CheckWorkFlowCommand";
     this.barButtonItem4.Visibility = DevExpress.XtraBars.BarItemVisibility.Never;
     //
     // barButtonItem6
     //
     this.barButtonItem6.Alignment = DevExpress.XtraBars.BarItemLinkAlignment.Default;
     this.barButtonItem6.Appearance.TextOptions.WordWrap = DevExpress.Utils.WordWrap.Default;
     this.barButtonItem6.AppearanceDisabled.TextOptions.WordWrap = DevExpress.Utils.WordWrap.Default;
     this.barButtonItem6.ButtonStyle = DevExpress.XtraBars.BarButtonStyle.Default;
     this.barButtonItem6.Caption = "��������";
     this.barButtonItem6.Id = 39;
     this.barButtonItem6.ItemClickFireMode = DevExpress.XtraBars.BarItemEventFireMode.Default;
     this.barButtonItem6.LargeGlyph = ((System.Drawing.Image)(resources.GetObject("barButtonItem6.LargeGlyph")));
     this.barButtonItem6.MergeType = DevExpress.XtraBars.BarMenuMerge.Add;
     this.barButtonItem6.Name = "barButtonItem6";
     this.barButtonItem6.Tag = "Hy.Check.Command.CustomCommand.CheckErrorsEvaluate";
     this.barButtonItem6.Visibility = DevExpress.XtraBars.BarItemVisibility.Always;
     //
     // barButtonClearElements
     //
     this.barButtonClearElements.Alignment = DevExpress.XtraBars.BarItemLinkAlignment.Default;
     this.barButtonClearElements.Appearance.TextOptions.WordWrap = DevExpress.Utils.WordWrap.Default;
     this.barButtonClearElements.AppearanceDisabled.TextOptions.WordWrap = DevExpress.Utils.WordWrap.Default;
     this.barButtonClearElements.ButtonStyle = DevExpress.XtraBars.BarButtonStyle.Default;
     this.barButtonClearElements.Caption = "���ѡ��";
     this.barButtonClearElements.Glyph = ((System.Drawing.Image)(resources.GetObject("barButtonClearElements.Glyph")));
     this.barButtonClearElements.Id = 31;
     this.barButtonClearElements.ItemClickFireMode = DevExpress.XtraBars.BarItemEventFireMode.Default;
     this.barButtonClearElements.MergeType = DevExpress.XtraBars.BarMenuMerge.Add;
     this.barButtonClearElements.Name = "barButtonClearElements";
     this.barButtonClearElements.Tag = "Hy.Check.Command.CustomCommand.ClearSelectionCommand";
     this.barButtonClearElements.Visibility = DevExpress.XtraBars.BarItemVisibility.Always;
     //
     // barButtonItem8
     //
     this.barButtonItem8.Alignment = DevExpress.XtraBars.BarItemLinkAlignment.Default;
     this.barButtonItem8.Appearance.TextOptions.WordWrap = DevExpress.Utils.WordWrap.Default;
     this.barButtonItem8.AppearanceDisabled.TextOptions.WordWrap = DevExpress.Utils.WordWrap.Default;
     this.barButtonItem8.ButtonStyle = DevExpress.XtraBars.BarButtonStyle.Default;
     this.barButtonItem8.Caption = "�Ŵ�";
     this.barButtonItem8.Glyph = ((System.Drawing.Image)(resources.GetObject("barButtonItem8.Glyph")));
     this.barButtonItem8.GroupIndex = 1;
     this.barButtonItem8.Id = 40;
     this.barButtonItem8.ItemClickFireMode = DevExpress.XtraBars.BarItemEventFireMode.Default;
     this.barButtonItem8.MergeType = DevExpress.XtraBars.BarMenuMerge.Add;
     this.barButtonItem8.Name = "barButtonItem8";
     this.barButtonItem8.Tag = "Hy.Check.Command.CustomCommand.MapIdentifyCommand:2";
     this.barButtonItem8.Visibility = DevExpress.XtraBars.BarItemVisibility.Always;
     //
     // barButtonItem10
     //
     this.barButtonItem10.Alignment = DevExpress.XtraBars.BarItemLinkAlignment.Default;
     this.barButtonItem10.Appearance.TextOptions.WordWrap = DevExpress.Utils.WordWrap.Default;
     this.barButtonItem10.AppearanceDisabled.TextOptions.WordWrap = DevExpress.Utils.WordWrap.Default;
     this.barButtonItem10.ButtonStyle = DevExpress.XtraBars.BarButtonStyle.Default;
     this.barButtonItem10.Caption = "��С";
     this.barButtonItem10.Glyph = ((System.Drawing.Image)(resources.GetObject("barButtonItem10.Glyph")));
     this.barButtonItem10.GroupIndex = 1;
     this.barButtonItem10.Id = 41;
     this.barButtonItem10.ItemClickFireMode = DevExpress.XtraBars.BarItemEventFireMode.Default;
     this.barButtonItem10.MergeType = DevExpress.XtraBars.BarMenuMerge.Add;
     this.barButtonItem10.Name = "barButtonItem10";
     this.barButtonItem10.Tag = "Hy.Check.Command.CustomCommand.MapIdentifyCommand:3";
     this.barButtonItem10.Visibility = DevExpress.XtraBars.BarItemVisibility.Always;
     //
     // barButtonItem11
     //
     this.barButtonItem11.Alignment = DevExpress.XtraBars.BarItemLinkAlignment.Default;
     this.barButtonItem11.Appearance.TextOptions.WordWrap = DevExpress.Utils.WordWrap.Default;
     this.barButtonItem11.AppearanceDisabled.TextOptions.WordWrap = DevExpress.Utils.WordWrap.Default;
     this.barButtonItem11.ButtonStyle = DevExpress.XtraBars.BarButtonStyle.Default;
     this.barButtonItem11.Caption = "ȫͼ";
     this.barButtonItem11.Glyph = ((System.Drawing.Image)(resources.GetObject("barButtonItem11.Glyph")));
     this.barButtonItem11.Id = 42;
     this.barButtonItem11.ItemClickFireMode = DevExpress.XtraBars.BarItemEventFireMode.Default;
     this.barButtonItem11.MergeType = DevExpress.XtraBars.BarMenuMerge.Add;
     this.barButtonItem11.Name = "barButtonItem11";
     this.barButtonItem11.Tag = "Hy.Check.Command.CustomCommand.MapIdentifyCommand:4";
     this.barButtonItem11.Visibility = DevExpress.XtraBars.BarItemVisibility.Always;
     //
     // barButtonItem12
     //
     this.barButtonItem12.Alignment = DevExpress.XtraBars.BarItemLinkAlignment.Default;
     this.barButtonItem12.Appearance.TextOptions.WordWrap = DevExpress.Utils.WordWrap.Default;
     this.barButtonItem12.AppearanceDisabled.TextOptions.WordWrap = DevExpress.Utils.WordWrap.Default;
     this.barButtonItem12.ButtonStyle = DevExpress.XtraBars.BarButtonStyle.Default;
     this.barButtonItem12.Caption = "����";
     this.barButtonItem12.Glyph = global::Hy.Check.Demo.Properties.Resources.�ƶ�;
     this.barButtonItem12.GroupIndex = 1;
     this.barButtonItem12.Id = 43;
     this.barButtonItem12.ItemClickFireMode = DevExpress.XtraBars.BarItemEventFireMode.Default;
     this.barButtonItem12.MergeType = DevExpress.XtraBars.BarMenuMerge.Add;
     this.barButtonItem12.Name = "barButtonItem12";
     this.barButtonItem12.Tag = "Hy.Check.Command.CustomCommand.MapIdentifyCommand:5";
     this.barButtonItem12.Visibility = DevExpress.XtraBars.BarItemVisibility.Always;
     //
     // barButtonItem13
     //
     this.barButtonItem13.Alignment = DevExpress.XtraBars.BarItemLinkAlignment.Default;
     this.barButtonItem13.Appearance.TextOptions.WordWrap = DevExpress.Utils.WordWrap.Default;
     this.barButtonItem13.AppearanceDisabled.TextOptions.WordWrap = DevExpress.Utils.WordWrap.Default;
     this.barButtonItem13.ButtonStyle = DevExpress.XtraBars.BarButtonStyle.Default;
     this.barButtonItem13.Caption = "ǰͼ";
     this.barButtonItem13.Glyph = global::Hy.Check.Demo.Properties.Resources.RibbonUserDesigner_HtmlBackwardLarge;
     this.barButtonItem13.Id = 44;
     this.barButtonItem13.ItemClickFireMode = DevExpress.XtraBars.BarItemEventFireMode.Default;
     this.barButtonItem13.MergeType = DevExpress.XtraBars.BarMenuMerge.Add;
     this.barButtonItem13.Name = "barButtonItem13";
     this.barButtonItem13.Tag = "Hy.Check.Command.CustomCommand.MapIdentifyCommand:7";
     this.barButtonItem13.Visibility = DevExpress.XtraBars.BarItemVisibility.Always;
     //
     // barButtonItem14
     //
     this.barButtonItem14.Alignment = DevExpress.XtraBars.BarItemLinkAlignment.Default;
     this.barButtonItem14.Appearance.TextOptions.WordWrap = DevExpress.Utils.WordWrap.Default;
     this.barButtonItem14.AppearanceDisabled.TextOptions.WordWrap = DevExpress.Utils.WordWrap.Default;
     this.barButtonItem14.ButtonStyle = DevExpress.XtraBars.BarButtonStyle.Default;
     this.barButtonItem14.Caption = "��ͼ";
     this.barButtonItem14.Glyph = global::Hy.Check.Demo.Properties.Resources.RibbonUserDesigner_HtmlForwardLarge;
     this.barButtonItem14.Id = 45;
     this.barButtonItem14.ItemClickFireMode = DevExpress.XtraBars.BarItemEventFireMode.Default;
     this.barButtonItem14.MergeType = DevExpress.XtraBars.BarMenuMerge.Add;
     this.barButtonItem14.Name = "barButtonItem14";
     this.barButtonItem14.Tag = "Hy.Check.Command.CustomCommand.MapIdentifyCommand:6";
     this.barButtonItem14.Visibility = DevExpress.XtraBars.BarItemVisibility.Always;
     //
     // barButtonRuleTree
     //
     this.barButtonRuleTree.Alignment = DevExpress.XtraBars.BarItemLinkAlignment.Default;
     this.barButtonRuleTree.Appearance.TextOptions.WordWrap = DevExpress.Utils.WordWrap.Default;
     this.barButtonRuleTree.AppearanceDisabled.TextOptions.WordWrap = DevExpress.Utils.WordWrap.Default;
     this.barButtonRuleTree.ButtonStyle = DevExpress.XtraBars.BarButtonStyle.Default;
     this.barButtonRuleTree.Caption = "�������";
     this.barButtonRuleTree.Id = 46;
     this.barButtonRuleTree.ItemClickFireMode = DevExpress.XtraBars.BarItemEventFireMode.Default;
     this.barButtonRuleTree.LargeGlyph = ((System.Drawing.Image)(resources.GetObject("barButtonRuleTree.LargeGlyph")));
     this.barButtonRuleTree.MergeType = DevExpress.XtraBars.BarMenuMerge.Add;
     this.barButtonRuleTree.Name = "barButtonRuleTree";
     this.barButtonRuleTree.Tag = "";
     this.barButtonRuleTree.Visibility = DevExpress.XtraBars.BarItemVisibility.Always;
     //
     // barButtonSQLQuery
     //
     this.barButtonSQLQuery.Alignment = DevExpress.XtraBars.BarItemLinkAlignment.Default;
     this.barButtonSQLQuery.Appearance.TextOptions.WordWrap = DevExpress.Utils.WordWrap.Default;
     this.barButtonSQLQuery.AppearanceDisabled.TextOptions.WordWrap = DevExpress.Utils.WordWrap.Default;
     this.barButtonSQLQuery.ButtonStyle = DevExpress.XtraBars.BarButtonStyle.Default;
     this.barButtonSQLQuery.Caption = "SQL��ѯ";
     this.barButtonSQLQuery.Id = 53;
     this.barButtonSQLQuery.ItemClickFireMode = DevExpress.XtraBars.BarItemEventFireMode.Default;
     this.barButtonSQLQuery.LargeGlyph = ((System.Drawing.Image)(resources.GetObject("barButtonSQLQuery.LargeGlyph")));
     this.barButtonSQLQuery.MergeType = DevExpress.XtraBars.BarMenuMerge.Add;
     this.barButtonSQLQuery.Name = "barButtonSQLQuery";
     this.barButtonSQLQuery.Tag = "Hy.Check.Command.CustomCommand.SqlQueryCommand";
     this.barButtonSQLQuery.Visibility = DevExpress.XtraBars.BarItemVisibility.Always;
     //
     // barButtonItem17
     //
     this.barButtonItem17.Alignment = DevExpress.XtraBars.BarItemLinkAlignment.Default;
     this.barButtonItem17.Appearance.TextOptions.WordWrap = DevExpress.Utils.WordWrap.Default;
     this.barButtonItem17.AppearanceDisabled.TextOptions.WordWrap = DevExpress.Utils.WordWrap.Default;
     this.barButtonItem17.ButtonStyle = DevExpress.XtraBars.BarButtonStyle.Default;
     this.barButtonItem17.Caption = "ϵͳ����";
     this.barButtonItem17.Glyph = ((System.Drawing.Image)(resources.GetObject("barButtonItem17.Glyph")));
     this.barButtonItem17.Id = 59;
     this.barButtonItem17.ItemClickFireMode = DevExpress.XtraBars.BarItemEventFireMode.Default;
     this.barButtonItem17.MergeType = DevExpress.XtraBars.BarMenuMerge.Add;
     this.barButtonItem17.Name = "barButtonItem17";
     this.barButtonItem17.Tag = "Hy.Check.Command.CustomCommand.SystemHelpCommand";
     this.barButtonItem17.Visibility = DevExpress.XtraBars.BarItemVisibility.Never;
     //
     // barStaticXY
     //
     this.barStaticXY.Alignment = DevExpress.XtraBars.BarItemLinkAlignment.Right;
     this.barStaticXY.Appearance.TextOptions.WordWrap = DevExpress.Utils.WordWrap.Default;
     this.barStaticXY.AppearanceDisabled.TextOptions.WordWrap = DevExpress.Utils.WordWrap.Default;
     this.barStaticXY.AutoSize = DevExpress.XtraBars.BarStaticItemSize.Content;
     this.barStaticXY.Id = 61;
     this.barStaticXY.ItemClickFireMode = DevExpress.XtraBars.BarItemEventFireMode.Default;
     this.barStaticXY.MergeType = DevExpress.XtraBars.BarMenuMerge.Add;
     this.barStaticXY.Name = "barStaticXY";
     this.barStaticXY.TextAlignment = System.Drawing.StringAlignment.Near;
     this.barStaticXY.Visibility = DevExpress.XtraBars.BarItemVisibility.Always;
     //
     // barButtonItem19
     //
     this.barButtonItem19.Alignment = DevExpress.XtraBars.BarItemLinkAlignment.Default;
     this.barButtonItem19.Appearance.TextOptions.WordWrap = DevExpress.Utils.WordWrap.Default;
     this.barButtonItem19.AppearanceDisabled.TextOptions.WordWrap = DevExpress.Utils.WordWrap.Default;
     this.barButtonItem19.ButtonStyle = DevExpress.XtraBars.BarButtonStyle.Default;
     this.barButtonItem19.Caption = "�鿴��־";
     this.barButtonItem19.Id = 63;
     this.barButtonItem19.ItemClickFireMode = DevExpress.XtraBars.BarItemEventFireMode.Default;
     this.barButtonItem19.MergeType = DevExpress.XtraBars.BarMenuMerge.Add;
     this.barButtonItem19.Name = "barButtonItem19";
     this.barButtonItem19.Visibility = DevExpress.XtraBars.BarItemVisibility.Always;
     //
     // barButtonItem20
     //
     this.barButtonItem20.Alignment = DevExpress.XtraBars.BarItemLinkAlignment.Default;
     this.barButtonItem20.Appearance.TextOptions.WordWrap = DevExpress.Utils.WordWrap.Default;
     this.barButtonItem20.AppearanceDisabled.TextOptions.WordWrap = DevExpress.Utils.WordWrap.Default;
     this.barButtonItem20.ButtonStyle = DevExpress.XtraBars.BarButtonStyle.Default;
     this.barButtonItem20.Caption = "�˳�ϵͳ";
     this.barButtonItem20.Id = 64;
     this.barButtonItem20.ItemClickFireMode = DevExpress.XtraBars.BarItemEventFireMode.Default;
     this.barButtonItem20.MergeType = DevExpress.XtraBars.BarMenuMerge.Add;
     this.barButtonItem20.Name = "barButtonItem20";
     this.barButtonItem20.PaintStyle = DevExpress.XtraBars.BarItemPaintStyle.Caption;
     this.barButtonItem20.Visibility = DevExpress.XtraBars.BarItemVisibility.Always;
     this.barButtonItem20.ItemClick += new DevExpress.XtraBars.ItemClickEventHandler(this.barButtonItem20_ItemClick);
     //
     // barButtonItem21
     //
     this.barButtonItem21.Alignment = DevExpress.XtraBars.BarItemLinkAlignment.Default;
     this.barButtonItem21.Appearance.TextOptions.WordWrap = DevExpress.Utils.WordWrap.Default;
     this.barButtonItem21.AppearanceDisabled.TextOptions.WordWrap = DevExpress.Utils.WordWrap.Default;
     this.barButtonItem21.ButtonStyle = DevExpress.XtraBars.BarButtonStyle.Default;
     this.barButtonItem21.Caption = "����";
     this.barButtonItem21.Glyph = ((System.Drawing.Image)(resources.GetObject("barButtonItem21.Glyph")));
     this.barButtonItem21.Id = 65;
     this.barButtonItem21.ItemClickFireMode = DevExpress.XtraBars.BarItemEventFireMode.Default;
     this.barButtonItem21.MergeType = DevExpress.XtraBars.BarMenuMerge.Add;
     this.barButtonItem21.Name = "barButtonItem21";
     this.barButtonItem21.PaintStyle = DevExpress.XtraBars.BarItemPaintStyle.Caption;
     this.barButtonItem21.Visibility = DevExpress.XtraBars.BarItemVisibility.Always;
     this.barButtonItem21.ItemClick += new DevExpress.XtraBars.ItemClickEventHandler(this.barButtonItem21_ItemClick);
     //
     // barButtonItem24
     //
     this.barButtonItem24.Alignment = DevExpress.XtraBars.BarItemLinkAlignment.Default;
     this.barButtonItem24.Appearance.TextOptions.WordWrap = DevExpress.Utils.WordWrap.Default;
     this.barButtonItem24.AppearanceDisabled.TextOptions.WordWrap = DevExpress.Utils.WordWrap.Default;
     this.barButtonItem24.ButtonStyle = DevExpress.XtraBars.BarButtonStyle.Default;
     this.barButtonItem24.Caption = "���Ȳ���";
     this.barButtonItem24.Glyph = ((System.Drawing.Image)(resources.GetObject("barButtonItem24.Glyph")));
     this.barButtonItem24.GroupIndex = 1;
     this.barButtonItem24.Id = 73;
     this.barButtonItem24.ItemClickFireMode = DevExpress.XtraBars.BarItemEventFireMode.Default;
     this.barButtonItem24.MergeType = DevExpress.XtraBars.BarMenuMerge.Add;
     this.barButtonItem24.Name = "barButtonItem24";
     this.barButtonItem24.Tag = "Hy.Check.Command.MeasureCommand.ToolMeasureLength";
     this.barButtonItem24.Visibility = DevExpress.XtraBars.BarItemVisibility.Always;
     //
     // barButtonItem25
     //
     this.barButtonItem25.Alignment = DevExpress.XtraBars.BarItemLinkAlignment.Default;
     this.barButtonItem25.Appearance.TextOptions.WordWrap = DevExpress.Utils.WordWrap.Default;
     this.barButtonItem25.AppearanceDisabled.TextOptions.WordWrap = DevExpress.Utils.WordWrap.Default;
     this.barButtonItem25.ButtonStyle = DevExpress.XtraBars.BarButtonStyle.Default;
     this.barButtonItem25.Caption = "�������";
     this.barButtonItem25.Glyph = ((System.Drawing.Image)(resources.GetObject("barButtonItem25.Glyph")));
     this.barButtonItem25.GroupIndex = 1;
     this.barButtonItem25.Id = 74;
     this.barButtonItem25.ItemClickFireMode = DevExpress.XtraBars.BarItemEventFireMode.Default;
     this.barButtonItem25.MergeType = DevExpress.XtraBars.BarMenuMerge.Add;
     this.barButtonItem25.Name = "barButtonItem25";
     this.barButtonItem25.Tag = "Hy.Check.Command.MeasureCommand.ToolMeasureArea";
     this.barButtonItem25.Visibility = DevExpress.XtraBars.BarItemVisibility.Always;
     //
     // barButtonItemBatch
     //
     this.barButtonItemBatch.Alignment = DevExpress.XtraBars.BarItemLinkAlignment.Default;
     this.barButtonItemBatch.Appearance.TextOptions.WordWrap = DevExpress.Utils.WordWrap.Default;
     this.barButtonItemBatch.AppearanceDisabled.TextOptions.WordWrap = DevExpress.Utils.WordWrap.Default;
     this.barButtonItemBatch.ButtonStyle = DevExpress.XtraBars.BarButtonStyle.Default;
     this.barButtonItemBatch.Caption = "������������";
     this.barButtonItemBatch.Id = 87;
     this.barButtonItemBatch.ItemClickFireMode = DevExpress.XtraBars.BarItemEventFireMode.Default;
     this.barButtonItemBatch.LargeGlyph = ((System.Drawing.Image)(resources.GetObject("barButtonItemBatch.LargeGlyph")));
     this.barButtonItemBatch.MergeType = DevExpress.XtraBars.BarMenuMerge.Add;
     this.barButtonItemBatch.Name = "barButtonItemBatch";
     this.barButtonItemBatch.Tag = "Hy.Check.Command.CustomCommand.BatchCreateTaskCommand";
     this.barButtonItemBatch.Visibility = DevExpress.XtraBars.BarItemVisibility.Always;
     //
     // barButtonSettings
     //
     this.barButtonSettings.Alignment = DevExpress.XtraBars.BarItemLinkAlignment.Default;
     this.barButtonSettings.Appearance.TextOptions.WordWrap = DevExpress.Utils.WordWrap.Default;
     this.barButtonSettings.AppearanceDisabled.TextOptions.WordWrap = DevExpress.Utils.WordWrap.Default;
     this.barButtonSettings.ButtonStyle = DevExpress.XtraBars.BarButtonStyle.Default;
     this.barButtonSettings.Caption = "ϵͳ����";
     this.barButtonSettings.Id = 89;
     this.barButtonSettings.ItemClickFireMode = DevExpress.XtraBars.BarItemEventFireMode.Default;
     this.barButtonSettings.MergeType = DevExpress.XtraBars.BarMenuMerge.Add;
     this.barButtonSettings.Name = "barButtonSettings";
     this.barButtonSettings.Visibility = DevExpress.XtraBars.BarItemVisibility.Always;
     //
     // barBtnItemViewLogs
     //
     this.barBtnItemViewLogs.Alignment = DevExpress.XtraBars.BarItemLinkAlignment.Default;
     this.barBtnItemViewLogs.Appearance.TextOptions.WordWrap = DevExpress.Utils.WordWrap.Default;
     this.barBtnItemViewLogs.AppearanceDisabled.TextOptions.WordWrap = DevExpress.Utils.WordWrap.Default;
     this.barBtnItemViewLogs.ButtonStyle = DevExpress.XtraBars.BarButtonStyle.Default;
     this.barBtnItemViewLogs.Caption = "�鿴��־";
     this.barBtnItemViewLogs.Id = 91;
     this.barBtnItemViewLogs.ItemClickFireMode = DevExpress.XtraBars.BarItemEventFireMode.Default;
     this.barBtnItemViewLogs.LargeGlyph = global::Hy.Check.Demo.Properties.Resources.RibbonUserDesigner_PasteLarge;
     this.barBtnItemViewLogs.MergeType = DevExpress.XtraBars.BarMenuMerge.Add;
     this.barBtnItemViewLogs.Name = "barBtnItemViewLogs";
     this.barBtnItemViewLogs.Tag = "Hy.Check.Command.CustomCommand.ViewTaskCheckLogCommand";
     this.barBtnItemViewLogs.Visibility = DevExpress.XtraBars.BarItemVisibility.Always;
     //
     // barBtnItemFeatsStat
     //
     this.barBtnItemFeatsStat.Alignment = DevExpress.XtraBars.BarItemLinkAlignment.Default;
     this.barBtnItemFeatsStat.Appearance.TextOptions.WordWrap = DevExpress.Utils.WordWrap.Default;
     this.barBtnItemFeatsStat.AppearanceDisabled.TextOptions.WordWrap = DevExpress.Utils.WordWrap.Default;
     this.barBtnItemFeatsStat.ButtonStyle = DevExpress.XtraBars.BarButtonStyle.Default;
     this.barBtnItemFeatsStat.Caption = "Ҫ�ظ���";
     this.barBtnItemFeatsStat.Id = 92;
     this.barBtnItemFeatsStat.ItemClickFireMode = DevExpress.XtraBars.BarItemEventFireMode.Default;
     this.barBtnItemFeatsStat.LargeGlyph = global::Hy.Check.Demo.Properties.Resources.RibbonUserDesigner_WindowsLarge;
     this.barBtnItemFeatsStat.MergeType = DevExpress.XtraBars.BarMenuMerge.Add;
     this.barBtnItemFeatsStat.Name = "barBtnItemFeatsStat";
     this.barBtnItemFeatsStat.Tag = "Hy.Check.Command.CustomCommand.ViewFeaturesStatisticCommand";
     this.barBtnItemFeatsStat.Visibility = DevExpress.XtraBars.BarItemVisibility.Always;
     //
     // rpDbCheck
     //
     this.rpDbCheck.Groups.AddRange(new DevExpress.XtraBars.Ribbon.RibbonPageGroup[] {
     this.ribbonPageGroup1,
     this.ribbonPageGroup6,
     this.ribbonPageGroup7,
     this.ribbonPageGroup2,
     this.ribbonPageGroup3});
     this.rpDbCheck.ImageAlign = DevExpress.Utils.HorzAlignment.Default;
     this.rpDbCheck.Name = "rpDbCheck";
     this.rpDbCheck.Text = "���ݿ���";
     //
     // ribbonPageGroup1
     //
     this.ribbonPageGroup1.ItemLinks.Add(this.barButtonCreakTask);
     this.ribbonPageGroup1.ItemLinks.Add(this.barButtonItemBatch);
     this.ribbonPageGroup1.ItemLinks.Add(this.barButtonOpenTask);
     this.ribbonPageGroup1.ItemLinks.Add(this.barButtonItem4);
     this.ribbonPageGroup1.Name = "ribbonPageGroup1";
     this.ribbonPageGroup1.Text = "�������";
     //
     // ribbonPageGroup6
     //
     this.ribbonPageGroup6.ItemLinks.Add(this.barButtonPreCheck);
     this.ribbonPageGroup6.ItemLinks.Add(this.barButtonAutoTask);
     this.ribbonPageGroup6.Name = "ribbonPageGroup6";
     this.ribbonPageGroup6.Text = "���";
     //
     // ribbonPageGroup7
     //
     this.ribbonPageGroup7.AllowMinimize = false;
     this.ribbonPageGroup7.AllowTextClipping = false;
     this.ribbonPageGroup7.ItemLinks.Add(this.barButtonItem6);
     this.ribbonPageGroup7.ItemLinks.Add(this.barSubExportError);
     this.ribbonPageGroup7.ItemLinks.Add(this.barBtnItemViewLogs);
     this.ribbonPageGroup7.ItemLinks.Add(this.barBtnItemFeatsStat);
     this.ribbonPageGroup7.Name = "ribbonPageGroup7";
     this.ribbonPageGroup7.ShowCaptionButton = false;
     this.ribbonPageGroup7.Text = "������";
     //
     // ribbonPageGroup2
     //
     this.ribbonPageGroup2.ItemLinks.Add(this.barButtonSQLQuery);
     this.ribbonPageGroup2.ItemLinks.Add(this.barButtonIdentify);
     this.ribbonPageGroup2.ItemLinks.Add(this.barButtonItem8);
     this.ribbonPageGroup2.ItemLinks.Add(this.barButtonItem10);
     this.ribbonPageGroup2.ItemLinks.Add(this.barButtonItem12);
     this.ribbonPageGroup2.ItemLinks.Add(this.barButtonItem11);
     this.ribbonPageGroup2.ItemLinks.Add(this.barButtonItem13);
     this.ribbonPageGroup2.ItemLinks.Add(this.barButtonItem14);
     this.ribbonPageGroup2.ItemLinks.Add(this.barButtonClearElements);
     this.ribbonPageGroup2.ItemLinks.Add(this.barButtonItem24);
     this.ribbonPageGroup2.ItemLinks.Add(this.barButtonItem25);
     this.ribbonPageGroup2.Name = "ribbonPageGroup2";
     this.ribbonPageGroup2.Text = "��ͼ����";
     //
     // ribbonPageGroup3
     //
     this.ribbonPageGroup3.ItemLinks.Add(this.barButtonItem17);
     this.ribbonPageGroup3.ItemLinks.Add(this.barButtonItem21);
     this.ribbonPageGroup3.Name = "ribbonPageGroup3";
     this.ribbonPageGroup3.Text = "ϵͳ����";
     //
     // ribbonStatusBar
     //
     this.ribbonStatusBar.Dock = System.Windows.Forms.DockStyle.Bottom;
     this.ribbonStatusBar.ItemLinks.Add(this.barStaticXY);
     this.ribbonStatusBar.ItemLinks.Add(this.barStaticTask);
     this.ribbonStatusBar.Location = new System.Drawing.Point(0, 744);
     this.ribbonStatusBar.Name = "ribbonStatusBar";
     this.ribbonStatusBar.Ribbon = this.ribbon;
     this.ribbonStatusBar.Size = new System.Drawing.Size(1429, 26);
     //
     // clientPanel
     //
     this.clientPanel.Appearance.GradientMode = System.Drawing.Drawing2D.LinearGradientMode.Horizontal;
     this.clientPanel.Appearance.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Default;
     this.clientPanel.Appearance.TextOptions.HotkeyPrefix = DevExpress.Utils.HKeyPrefix.Default;
     this.clientPanel.Appearance.TextOptions.Trimming = DevExpress.Utils.Trimming.Default;
     this.clientPanel.Appearance.TextOptions.VAlignment = DevExpress.Utils.VertAlignment.Default;
     this.clientPanel.Appearance.TextOptions.WordWrap = DevExpress.Utils.WordWrap.Default;
     this.clientPanel.BorderStyle = DevExpress.XtraEditors.Controls.BorderStyles.NoBorder;
     this.clientPanel.ContentImageAlignment = System.Drawing.ContentAlignment.MiddleCenter;
     this.clientPanel.Controls.Add(this.pnlMapCheck);
     this.clientPanel.Dock = System.Windows.Forms.DockStyle.Fill;
     this.clientPanel.Location = new System.Drawing.Point(0, 147);
     this.clientPanel.LookAndFeel.SkinName = "iMaginary";
     this.clientPanel.LookAndFeel.Style = DevExpress.LookAndFeel.LookAndFeelStyle.Skin;
     this.clientPanel.Name = "clientPanel";
     this.clientPanel.Size = new System.Drawing.Size(1429, 597);
     this.clientPanel.TabIndex = 0;
     //
     // pnlMapCheck
     //
     this.pnlMapCheck.Appearance.GradientMode = System.Drawing.Drawing2D.LinearGradientMode.Horizontal;
     this.pnlMapCheck.Appearance.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Default;
     this.pnlMapCheck.Appearance.TextOptions.HotkeyPrefix = DevExpress.Utils.HKeyPrefix.Default;
     this.pnlMapCheck.Appearance.TextOptions.Trimming = DevExpress.Utils.Trimming.Default;
     this.pnlMapCheck.Appearance.TextOptions.VAlignment = DevExpress.Utils.VertAlignment.Default;
     this.pnlMapCheck.Appearance.TextOptions.WordWrap = DevExpress.Utils.WordWrap.Default;
     this.pnlMapCheck.ContentImageAlignment = System.Drawing.ContentAlignment.MiddleCenter;
     this.pnlMapCheck.Location = new System.Drawing.Point(62, 75);
     this.pnlMapCheck.LookAndFeel.Style = DevExpress.LookAndFeel.LookAndFeelStyle.Skin;
     this.pnlMapCheck.Name = "pnlMapCheck";
     this.pnlMapCheck.Size = new System.Drawing.Size(422, 342);
     this.pnlMapCheck.TabIndex = 0;
     //
     // defaultLookAndFeel1
     //
     this.defaultLookAndFeel1.LookAndFeel.SkinName = "Office 2007 Blue";
     this.defaultLookAndFeel1.LookAndFeel.Style = DevExpress.LookAndFeel.LookAndFeelStyle.Skin;
     //
     // ribbonPageGroup4
     //
     this.ribbonPageGroup4.ItemLinks.Add(this.barSubExportError);
     this.ribbonPageGroup4.Name = "ribbonPageGroup4";
     this.ribbonPageGroup4.Text = "��ͼ";
     //
     // barButtonItem3
     //
     this.barButtonItem3.Alignment = DevExpress.XtraBars.BarItemLinkAlignment.Default;
     this.barButtonItem3.Appearance.TextOptions.WordWrap = DevExpress.Utils.WordWrap.Default;
     this.barButtonItem3.AppearanceDisabled.TextOptions.WordWrap = DevExpress.Utils.WordWrap.Default;
     this.barButtonItem3.ButtonStyle = DevExpress.XtraBars.BarButtonStyle.Default;
     this.barButtonItem3.Id = -1;
     this.barButtonItem3.ItemClickFireMode = DevExpress.XtraBars.BarItemEventFireMode.Default;
     this.barButtonItem3.MergeType = DevExpress.XtraBars.BarMenuMerge.Add;
     this.barButtonItem3.Name = "barButtonItem3";
     this.barButtonItem3.Visibility = DevExpress.XtraBars.BarItemVisibility.Always;
     //
     // barButtonItem9
     //
     this.barButtonItem9.Alignment = DevExpress.XtraBars.BarItemLinkAlignment.Default;
     this.barButtonItem9.Appearance.TextOptions.WordWrap = DevExpress.Utils.WordWrap.Default;
     this.barButtonItem9.AppearanceDisabled.TextOptions.WordWrap = DevExpress.Utils.WordWrap.Default;
     this.barButtonItem9.ButtonStyle = DevExpress.XtraBars.BarButtonStyle.Default;
     this.barButtonItem9.Id = -1;
     this.barButtonItem9.ItemClickFireMode = DevExpress.XtraBars.BarItemEventFireMode.Default;
     this.barButtonItem9.MergeType = DevExpress.XtraBars.BarMenuMerge.Add;
     this.barButtonItem9.Name = "barButtonItem9";
     this.barButtonItem9.Visibility = DevExpress.XtraBars.BarItemVisibility.Always;
     //
     // RibbonFrmMain
     //
     this.Appearance.GradientMode = System.Drawing.Drawing2D.LinearGradientMode.Horizontal;
     this.Appearance.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Default;
     this.Appearance.TextOptions.HotkeyPrefix = DevExpress.Utils.HKeyPrefix.Default;
     this.Appearance.TextOptions.Trimming = DevExpress.Utils.Trimming.Default;
     this.Appearance.TextOptions.VAlignment = DevExpress.Utils.VertAlignment.Default;
     this.Appearance.TextOptions.WordWrap = DevExpress.Utils.WordWrap.Default;
     this.AutoScaleDimensions = new System.Drawing.SizeF(7F, 14F);
     this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
     this.ClientSize = new System.Drawing.Size(1429, 770);
     this.Controls.Add(this.clientPanel);
     this.Controls.Add(this.ribbonStatusBar);
     this.Controls.Add(this.ribbon);
     this.Icon = ((System.Drawing.Icon)(resources.GetObject("$this.Icon")));
     this.KeyPreview = true;
     this.Name = "RibbonFrmMain";
     this.Ribbon = this.ribbon;
     this.StatusBar = this.ribbonStatusBar;
     this.Text = "�ʼ�ģ����Դ���";
     this.WindowState = System.Windows.Forms.FormWindowState.Maximized;
     this.FormClosing += new System.Windows.Forms.FormClosingEventHandler(this.RibbonFrmMain_FormClosing);
     this.FormClosed += new System.Windows.Forms.FormClosedEventHandler(this.RibbonFrmMain_FormClosed);
     ((System.ComponentModel.ISupportInitialize)(this.ribbon)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.clientPanel)).EndInit();
     this.clientPanel.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.pnlMapCheck)).EndInit();
     this.ResumeLayout(false);
 }
 /// <summary>
 /// Required method for Designer support - do not modify
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(MenuLoadForm));
     this.ribbon = new DevExpress.XtraBars.Ribbon.RibbonControl();
     this.applicationMenu1 = new DevExpress.XtraBars.Ribbon.ApplicationMenu();
     this.barButtonItem1 = new DevExpress.XtraBars.BarButtonItem();
     this.ribbonStatusBar = new DevExpress.XtraBars.Ribbon.RibbonStatusBar();
     this.xtraTabbedMdiManager = new FengSharp.OneCardAccess.Infrastructure.WinForm.Controls.ExXtraTabbedMdiManager();
     this.popupMenu = new DevExpress.XtraBars.PopupMenu();
     this.button1 = new System.Windows.Forms.Button();
     this.barButtonItem2 = new DevExpress.XtraBars.BarButtonItem();
     this.barButtonItem3 = new DevExpress.XtraBars.BarButtonItem();
     this.barButtonItem4 = new DevExpress.XtraBars.BarButtonItem();
     ((System.ComponentModel.ISupportInitialize)(this.ribbon)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.applicationMenu1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.xtraTabbedMdiManager)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.popupMenu)).BeginInit();
     this.SuspendLayout();
     //
     // ribbon
     //
     this.ribbon.ApplicationButtonDropDownControl = this.applicationMenu1;
     this.ribbon.AutoSizeItems = true;
     this.ribbon.ButtonGroupsLayout = DevExpress.XtraBars.ButtonGroupsLayout.ThreeRows;
     this.ribbon.ExpandCollapseItem.Id = 0;
     this.ribbon.Items.AddRange(new DevExpress.XtraBars.BarItem[] {
     this.ribbon.ExpandCollapseItem,
     this.barButtonItem1,
     this.barButtonItem2,
     this.barButtonItem3,
     this.barButtonItem4});
     this.ribbon.Location = new System.Drawing.Point(0, 0);
     this.ribbon.MaxItemId = 5;
     this.ribbon.Name = "ribbon";
     this.ribbon.ShowExpandCollapseButton = DevExpress.Utils.DefaultBoolean.True;
     this.ribbon.ShowToolbarCustomizeItem = false;
     this.ribbon.Size = new System.Drawing.Size(1148, 49);
     this.ribbon.StatusBar = this.ribbonStatusBar;
     this.ribbon.Toolbar.ShowCustomizeItem = false;
     //
     // applicationMenu1
     //
     this.applicationMenu1.ItemLinks.Add(this.barButtonItem1);
     this.applicationMenu1.Name = "applicationMenu1";
     this.applicationMenu1.Ribbon = this.ribbon;
     //
     // barButtonItem1
     //
     this.barButtonItem1.Caption = "barButtonItem1";
     this.barButtonItem1.Id = 1;
     this.barButtonItem1.Name = "barButtonItem1";
     this.barButtonItem1.ItemClick += new DevExpress.XtraBars.ItemClickEventHandler(this.barButtonItem1_ItemClick);
     //
     // ribbonStatusBar
     //
     this.ribbonStatusBar.Location = new System.Drawing.Point(0, 631);
     this.ribbonStatusBar.Name = "ribbonStatusBar";
     this.ribbonStatusBar.Ribbon = this.ribbon;
     this.ribbonStatusBar.Size = new System.Drawing.Size(1148, 31);
     //
     // xtraTabbedMdiManager
     //
     this.xtraTabbedMdiManager.ClosePageButtonShowMode = DevExpress.XtraTab.ClosePageButtonShowMode.InAllTabPagesAndTabControlHeader;
     this.xtraTabbedMdiManager.CloseTabOnMiddleClick = DevExpress.XtraTabbedMdi.CloseTabOnMiddleClick.OnMouseUp;
     this.xtraTabbedMdiManager.HeaderButtons = ((DevExpress.XtraTab.TabButtons)((((DevExpress.XtraTab.TabButtons.Prev | DevExpress.XtraTab.TabButtons.Next)
     | DevExpress.XtraTab.TabButtons.Close)
     | DevExpress.XtraTab.TabButtons.Default)));
     this.xtraTabbedMdiManager.HeaderButtonsShowMode = DevExpress.XtraTab.TabButtonShowMode.WhenNeeded;
     this.xtraTabbedMdiManager.MdiParent = this;
     this.xtraTabbedMdiManager.PinPageButtonShowMode = DevExpress.XtraTab.PinPageButtonShowMode.InActiveTabPageHeaderAndOnMouseHover;
     this.xtraTabbedMdiManager.UseDefaultPageImageSize = false;
     //
     // popupMenu
     //
     this.popupMenu.ItemLinks.Add(this.barButtonItem2);
     this.popupMenu.ItemLinks.Add(this.barButtonItem3);
     this.popupMenu.ItemLinks.Add(this.barButtonItem4);
     this.popupMenu.Name = "popupMenu";
     this.popupMenu.Ribbon = this.ribbon;
     //
     // button1
     //
     this.button1.Location = new System.Drawing.Point(0, 0);
     this.button1.Name = "button1";
     this.button1.Size = new System.Drawing.Size(75, 23);
     this.button1.TabIndex = 3;
     this.button1.Text = "button1";
     this.button1.UseVisualStyleBackColor = true;
     this.button1.Click += new System.EventHandler(this.button1_Click);
     //
     // barButtonItem2
     //
     this.barButtonItem2.Caption = "barButtonItem2";
     this.barButtonItem2.Id = 2;
     this.barButtonItem2.Name = "barButtonItem2";
     //
     // barButtonItem3
     //
     this.barButtonItem3.Caption = "barButtonItem3";
     this.barButtonItem3.Id = 3;
     this.barButtonItem3.Name = "barButtonItem3";
     //
     // barButtonItem4
     //
     this.barButtonItem4.Caption = "barButtonItem4";
     this.barButtonItem4.Id = 4;
     this.barButtonItem4.Name = "barButtonItem4";
     //
     // MenuLoadForm
     //
     this.AllowFormGlass = DevExpress.Utils.DefaultBoolean.False;
     this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
     this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
     this.ClientSize = new System.Drawing.Size(1148, 662);
     this.Controls.Add(this.button1);
     this.Controls.Add(this.ribbonStatusBar);
     this.Controls.Add(this.ribbon);
     this.Icon = ((System.Drawing.Icon)(resources.GetObject("$this.Icon")));
     this.IsMdiContainer = true;
     this.Name = "MenuLoadForm";
     this.Ribbon = this.ribbon;
     this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen;
     this.StatusBar = this.ribbonStatusBar;
     this.Text = "一卡通系统";
     this.FormClosing += new System.Windows.Forms.FormClosingEventHandler(this.MenuLoadForm_FormClosing);
     this.Load += new System.EventHandler(this.MenuLoadForm_Load);
     ((System.ComponentModel.ISupportInitialize)(this.ribbon)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.applicationMenu1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.xtraTabbedMdiManager)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.popupMenu)).EndInit();
     this.ResumeLayout(false);
     this.PerformLayout();
 }
Example #32
0
 /// <summary>
 /// Required method for Designer support - do not modify
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     this.components = new System.ComponentModel.Container();
     System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(frmMain));
     System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle1 = new System.Windows.Forms.DataGridViewCellStyle();
     System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle2 = new System.Windows.Forms.DataGridViewCellStyle();
     System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle3 = new System.Windows.Forms.DataGridViewCellStyle();
     System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle4 = new System.Windows.Forms.DataGridViewCellStyle();
     System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle5 = new System.Windows.Forms.DataGridViewCellStyle();
     this.splitContainerControl = new DevExpress.XtraEditors.SplitContainerControl();
     this.treeList1 = new System.Windows.Forms.TreeView();
     this.xtraTabDatabase = new DevExpress.XtraTab.XtraTabControl();
     this.tabScheme = new DevExpress.XtraTab.XtraTabPage();
     this.BindingNavigatorDesign = new System.Windows.Forms.ToolStrip();
     this.toolStripButton1 = new System.Windows.Forms.ToolStripButton();
     this.toolStripButton2 = new System.Windows.Forms.ToolStripButton();
     this.toolStripSeparator1 = new System.Windows.Forms.ToolStripSeparator();
     this.toolStripLabel1 = new System.Windows.Forms.ToolStripLabel();
     this.toolStripSeparator2 = new System.Windows.Forms.ToolStripSeparator();
     this.toolStripButton3 = new System.Windows.Forms.ToolStripButton();
     this.toolStripButton4 = new System.Windows.Forms.ToolStripButton();
     this.toolStripSeparator3 = new System.Windows.Forms.ToolStripSeparator();
     this.toolStripButton5 = new System.Windows.Forms.ToolStripButton();
     this.toolStripButton6 = new System.Windows.Forms.ToolStripButton();
     this.toolStripButton7 = new System.Windows.Forms.ToolStripButton();
     this.GridViewDesign = new System.Windows.Forms.DataGridView();
     this.PrimaryKey = new System.Windows.Forms.DataGridViewCheckBoxColumn();
     this.ColumnName = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.ColumnType = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.ColumnValueType = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.ColumnDescription = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.tabRelation = new DevExpress.XtraTab.XtraTabPage();
     this.BindingNavigatorData = new System.Windows.Forms.ToolStrip();
     this.btn_Data_Home = new System.Windows.Forms.ToolStripButton();
     this.btn_Data_Pre = new System.Windows.Forms.ToolStripButton();
     this.toolStripSeparator9 = new System.Windows.Forms.ToolStripSeparator();
     this.lblDataRowNumberIndicator = new System.Windows.Forms.ToolStripLabel();
     this.toolStripSeparator10 = new System.Windows.Forms.ToolStripSeparator();
     this.btn_Data_Next = new System.Windows.Forms.ToolStripButton();
     this.btn_Data_End = new System.Windows.Forms.ToolStripButton();
     this.toolStripSeparator11 = new System.Windows.Forms.ToolStripSeparator();
     this.Btn_Data_DeleteRow = new System.Windows.Forms.ToolStripButton();
     this.Btn_Data_ClearData = new System.Windows.Forms.ToolStripButton();
     this.Btn_Data_UpdateData = new System.Windows.Forms.ToolStripButton();
     this.GridViewData = new System.Windows.Forms.DataGridView();
     this.tabQuery = new DevExpress.XtraTab.XtraTabPage();
     this.txtQuery = new FRDB_SQLite.SyntaxRichTextBox();
     this.xtraTabQueryResult = new DevExpress.XtraTab.XtraTabControl();
     this.xtraTabResult = new DevExpress.XtraTab.XtraTabPage();
     this.GridViewResult = new System.Windows.Forms.DataGridView();
     this.xtraTabMessage = new DevExpress.XtraTab.XtraTabPage();
     this.txtMessage = new System.Windows.Forms.TextBox();
     this.tabFuzzy = new DevExpress.XtraTab.XtraTabPage();
     this.chart1 = new System.Windows.Forms.DataVisualization.Charting.Chart();
     this.ribbonControl = new DevExpress.XtraBars.Ribbon.RibbonControl();
     this.appMenu = new DevExpress.XtraBars.Ribbon.ApplicationMenu(this.components);
     this.popupControlContainer2 = new DevExpress.XtraBars.PopupControlContainer(this.components);
     this.buttonEdit = new DevExpress.XtraEditors.ButtonEdit();
     this.iNewDatabase = new DevExpress.XtraBars.BarButtonItem();
     this.iSaveAs = new DevExpress.XtraBars.BarButtonItem();
     this.iSave = new DevExpress.XtraBars.BarButtonItem();
     this.iExit = new DevExpress.XtraBars.BarButtonItem();
     this.popupControlContainer1 = new DevExpress.XtraBars.PopupControlContainer(this.components);
     this.someLabelControl2 = new DevExpress.XtraEditors.LabelControl();
     this.someLabelControl1 = new DevExpress.XtraEditors.LabelControl();
     this.ribbonImageCollection = new DevExpress.Utils.ImageCollection(this.components);
     this.iHelp = new DevExpress.XtraBars.BarButtonItem();
     this.siStatus = new DevExpress.XtraBars.BarStaticItem();
     this.siInfo = new DevExpress.XtraBars.BarStaticItem();
     this.iBoldFontStyle = new DevExpress.XtraBars.BarButtonItem();
     this.iItalicFontStyle = new DevExpress.XtraBars.BarButtonItem();
     this.iUnderlinedFontStyle = new DevExpress.XtraBars.BarButtonItem();
     this.iLeftTextAlign = new DevExpress.XtraBars.BarButtonItem();
     this.iCenterTextAlign = new DevExpress.XtraBars.BarButtonItem();
     this.iRightTextAlign = new DevExpress.XtraBars.BarButtonItem();
     this.rgbiSkins = new DevExpress.XtraBars.RibbonGalleryBarItem();
     this.iOpenExistingDatabase = new DevExpress.XtraBars.BarButtonItem();
     this.iCloseDatabase = new DevExpress.XtraBars.BarButtonItem();
     this.iRefreshDatabase = new DevExpress.XtraBars.BarButtonItem();
     this.iConnectDatabase = new DevExpress.XtraBars.BarButtonItem();
     this.iNewScheme = new DevExpress.XtraBars.BarButtonItem();
     this.iOpenScheme = new DevExpress.XtraBars.BarButtonItem();
     this.iSaveScheme = new DevExpress.XtraBars.BarButtonItem();
     this.iDeleteScheme = new DevExpress.XtraBars.BarButtonItem();
     this.iCloseCurrentScheme = new DevExpress.XtraBars.BarButtonItem();
     this.iNewRelation = new DevExpress.XtraBars.BarButtonItem();
     this.iOpenRelation = new DevExpress.XtraBars.BarButtonItem();
     this.iDeleteRelation = new DevExpress.XtraBars.BarButtonItem();
     this.iSaveRelation = new DevExpress.XtraBars.BarButtonItem();
     this.iCloseCurrentRelation = new DevExpress.XtraBars.BarButtonItem();
     this.iNewQuery = new DevExpress.XtraBars.BarButtonItem();
     this.iOpenQuery = new DevExpress.XtraBars.BarButtonItem();
     this.iSaveQuery = new DevExpress.XtraBars.BarButtonItem();
     this.iCloseCurrentQuery = new DevExpress.XtraBars.BarButtonItem();
     this.iDeleteQuery = new DevExpress.XtraBars.BarButtonItem();
     this.iExecuteQuery = new DevExpress.XtraBars.BarButtonItem();
     this.iStopExecute = new DevExpress.XtraBars.BarButtonItem();
     this.barButtonItem2 = new DevExpress.XtraBars.BarButtonItem();
     this.barButtonItem3 = new DevExpress.XtraBars.BarButtonItem();
     this.barButtonItem4 = new DevExpress.XtraBars.BarButtonItem();
     this.barButtonItem5 = new DevExpress.XtraBars.BarButtonItem();
     this.barButtonItem6 = new DevExpress.XtraBars.BarButtonItem();
     this.barButtonItem7 = new DevExpress.XtraBars.BarButtonItem();
     this.barButtonItem8 = new DevExpress.XtraBars.BarButtonItem();
     this.barButtonItem9 = new DevExpress.XtraBars.BarButtonItem();
     this.barButtonItem10 = new DevExpress.XtraBars.BarButtonItem();
     this.iAddDescrete = new DevExpress.XtraBars.BarButtonItem();
     this.barButtonItem11 = new DevExpress.XtraBars.BarButtonItem();
     this.barListItem1 = new DevExpress.XtraBars.BarListItem();
     this.barListItem2 = new DevExpress.XtraBars.BarListItem();
     this.iGetList = new DevExpress.XtraBars.BarButtonItem();
     this.iListContinuous = new DevExpress.XtraBars.BarButtonItem();
     this.barButtonItem13 = new DevExpress.XtraBars.BarButtonItem();
     this.iGetMemberships = new DevExpress.XtraBars.BarButtonItem();
     this.iOperator = new DevExpress.XtraBars.BarButtonItem();
     this.ribbonImageCollectionLarge = new DevExpress.Utils.ImageCollection(this.components);
     this.homeRibbonPage = new DevExpress.XtraBars.Ribbon.RibbonPage();
     this.fileRibbonPageGroup = new DevExpress.XtraBars.Ribbon.RibbonPageGroup();
     this.connectionRibbonPageGroup = new DevExpress.XtraBars.Ribbon.RibbonPageGroup();
     this.skinsRibbonPageGroup = new DevExpress.XtraBars.Ribbon.RibbonPageGroup();
     this.exitRibbonPageGroup = new DevExpress.XtraBars.Ribbon.RibbonPageGroup();
     this.schemeRibbonPage = new DevExpress.XtraBars.Ribbon.RibbonPage();
     this.tableRibbonPageGroup = new DevExpress.XtraBars.Ribbon.RibbonPageGroup();
     this.exitPageGroup = new DevExpress.XtraBars.Ribbon.RibbonPageGroup();
     this.relationRibbonPage = new DevExpress.XtraBars.Ribbon.RibbonPage();
     this.relationshipRibbonPageGroup = new DevExpress.XtraBars.Ribbon.RibbonPageGroup();
     this.ribbonPageGroup2 = new DevExpress.XtraBars.Ribbon.RibbonPageGroup();
     this.queryRibbonPage = new DevExpress.XtraBars.Ribbon.RibbonPage();
     this.QueryRibbonPageGroup = new DevExpress.XtraBars.Ribbon.RibbonPageGroup();
     this.commandRibbonPageGroup = new DevExpress.XtraBars.Ribbon.RibbonPageGroup();
     this.ribbonPageGroup3 = new DevExpress.XtraBars.Ribbon.RibbonPageGroup();
     this.fuzzySetRibbonPage = new DevExpress.XtraBars.Ribbon.RibbonPage();
     this.descreteFuzzySetRibbonPageGroup = new DevExpress.XtraBars.Ribbon.RibbonPageGroup();
     this.continuousFuzzySetRibbonPageGroup = new DevExpress.XtraBars.Ribbon.RibbonPageGroup();
     this.ribbonPageGroupGetMemberships = new DevExpress.XtraBars.Ribbon.RibbonPageGroup();
     this.ribbonPageGroup6 = new DevExpress.XtraBars.Ribbon.RibbonPageGroup();
     this.helpRibbonPage = new DevExpress.XtraBars.Ribbon.RibbonPage();
     this.helpRibbonPageGroup = new DevExpress.XtraBars.Ribbon.RibbonPageGroup();
     this.ribbonPageGroup4 = new DevExpress.XtraBars.Ribbon.RibbonPageGroup();
     this.ribbonPageAbout = new DevExpress.XtraBars.Ribbon.RibbonPage();
     this.About = new DevExpress.XtraBars.Ribbon.RibbonPageGroup();
     this.ribbonPageGroup5 = new DevExpress.XtraBars.Ribbon.RibbonPageGroup();
     this.ribbonStatusBar = new DevExpress.XtraBars.Ribbon.RibbonStatusBar();
     this.btn_Design_Home = new System.Windows.Forms.ToolStripButton();
     this.btn_Design_Pre = new System.Windows.Forms.ToolStripButton();
     this.toolStripSeparator5 = new System.Windows.Forms.ToolStripSeparator();
     this.lblDesignRowNumberIndicator = new System.Windows.Forms.ToolStripLabel();
     this.toolStripSeparator6 = new System.Windows.Forms.ToolStripSeparator();
     this.btn_Design_Next = new System.Windows.Forms.ToolStripButton();
     this.btn_Design_End = new System.Windows.Forms.ToolStripButton();
     this.toolStripSeparator18 = new System.Windows.Forms.ToolStripSeparator();
     this.Btn_Design_DeleteRow = new System.Windows.Forms.ToolStripButton();
     this.Btn_Design_ClearData = new System.Windows.Forms.ToolStripButton();
     this.Btn_Design_UpdateData = new System.Windows.Forms.ToolStripButton();
     this.navbarImageListLarge = new System.Windows.Forms.ImageList(this.components);
     this.navbarImageList = new System.Windows.Forms.ImageList(this.components);
     this.ribbonPageGroup1 = new DevExpress.XtraBars.Ribbon.RibbonPageGroup();
     this.barButtonItem1 = new DevExpress.XtraBars.BarButtonItem();
     this.treeListImageCollection = new System.Windows.Forms.ImageList(this.components);
     this.ContextMenu_Database = new System.Windows.Forms.ContextMenuStrip(this.components);
     this.CTMenuDB_Rename = new System.Windows.Forms.ToolStripMenuItem();
     this.CTMenuDB_CloseDB = new System.Windows.Forms.ToolStripMenuItem();
     this.ContextMenu_Relation = new System.Windows.Forms.ContextMenuStrip(this.components);
     this.CTMenuRelation_NewRelation = new System.Windows.Forms.ToolStripMenuItem();
     this.CTMenuRelation_DeleteRelations = new System.Windows.Forms.ToolStripMenuItem();
     this.ContextMenu_RelationNode = new System.Windows.Forms.ContextMenuStrip(this.components);
     this.CTMenuRelNode_OpenRelation = new System.Windows.Forms.ToolStripMenuItem();
     this.CTMenuRelNode_DeleteRelation = new System.Windows.Forms.ToolStripMenuItem();
     this.CTMenuRelNode_RenameRelation = new System.Windows.Forms.ToolStripMenuItem();
     this.ContextMenu_Schema = new System.Windows.Forms.ContextMenuStrip(this.components);
     this.CTMenuSchema_NewSchema = new System.Windows.Forms.ToolStripMenuItem();
     this.deleteAllSchemesToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
     this.ContextMenu_SchemaNode = new System.Windows.Forms.ContextMenuStrip(this.components);
     this.CTMenuSchNode_OpenSchema = new System.Windows.Forms.ToolStripMenuItem();
     this.CTMenuSchNode_DeleteSchema = new System.Windows.Forms.ToolStripMenuItem();
     this.renameSchemeToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
     this.ContextMenu_Query = new System.Windows.Forms.ContextMenuStrip(this.components);
     this.CTMenuQuery_NewQuery = new System.Windows.Forms.ToolStripMenuItem();
     this.CTMenuQuery_DeleteQueries = new System.Windows.Forms.ToolStripMenuItem();
     this.ContextMenu_QueryNode = new System.Windows.Forms.ContextMenuStrip(this.components);
     this.CTMenuQueryNode_OpenQuery = new System.Windows.Forms.ToolStripMenuItem();
     this.CTMenuQuery_DeleteQuery = new System.Windows.Forms.ToolStripMenuItem();
     this.CTMenuQuery_RenameQuery = new System.Windows.Forms.ToolStripMenuItem();
     this.executeQueryToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
     this.iAbout = new DevExpress.XtraBars.BarButtonItem();
     this.barButtonItem12 = new DevExpress.XtraBars.BarButtonItem();
     ((System.ComponentModel.ISupportInitialize)(this.splitContainerControl)).BeginInit();
     this.splitContainerControl.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.xtraTabDatabase)).BeginInit();
     this.xtraTabDatabase.SuspendLayout();
     this.tabScheme.SuspendLayout();
     this.BindingNavigatorDesign.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.GridViewDesign)).BeginInit();
     this.tabRelation.SuspendLayout();
     this.BindingNavigatorData.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.GridViewData)).BeginInit();
     this.tabQuery.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.xtraTabQueryResult)).BeginInit();
     this.xtraTabQueryResult.SuspendLayout();
     this.xtraTabResult.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.GridViewResult)).BeginInit();
     this.xtraTabMessage.SuspendLayout();
     this.tabFuzzy.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.chart1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.ribbonControl)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.appMenu)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.popupControlContainer2)).BeginInit();
     this.popupControlContainer2.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.buttonEdit.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.popupControlContainer1)).BeginInit();
     this.popupControlContainer1.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.ribbonImageCollection)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.ribbonImageCollectionLarge)).BeginInit();
     this.ContextMenu_Database.SuspendLayout();
     this.ContextMenu_Relation.SuspendLayout();
     this.ContextMenu_RelationNode.SuspendLayout();
     this.ContextMenu_Schema.SuspendLayout();
     this.ContextMenu_SchemaNode.SuspendLayout();
     this.ContextMenu_Query.SuspendLayout();
     this.ContextMenu_QueryNode.SuspendLayout();
     this.SuspendLayout();
     //
     // splitContainerControl
     //
     this.splitContainerControl.Dock = System.Windows.Forms.DockStyle.Fill;
     this.splitContainerControl.Location = new System.Drawing.Point(0, 142);
     this.splitContainerControl.Name = "splitContainerControl";
     this.splitContainerControl.Padding = new System.Windows.Forms.Padding(6);
     this.splitContainerControl.Panel1.Controls.Add(this.treeList1);
     this.splitContainerControl.Panel1.Text = "Panel1";
     this.splitContainerControl.Panel2.Controls.Add(this.xtraTabDatabase);
     this.splitContainerControl.Panel2.Text = "Panel2";
     this.splitContainerControl.Size = new System.Drawing.Size(867, 382);
     this.splitContainerControl.SplitterPosition = 229;
     this.splitContainerControl.TabIndex = 0;
     this.splitContainerControl.Text = "splitContainerControl1";
     //
     // treeList1
     //
     this.treeList1.Dock = System.Windows.Forms.DockStyle.Fill;
     this.treeList1.Location = new System.Drawing.Point(0, 0);
     this.treeList1.Name = "treeList1";
     this.treeList1.Size = new System.Drawing.Size(229, 370);
     this.treeList1.TabIndex = 0;
     this.treeList1.AfterExpand += new System.Windows.Forms.TreeViewEventHandler(this.TreeList1_AfterExpand);
     this.treeList1.NodeMouseClick += new System.Windows.Forms.TreeNodeMouseClickEventHandler(this.TreeList1_NodeMouseClick);
     this.treeList1.NodeMouseDoubleClick += new System.Windows.Forms.TreeNodeMouseClickEventHandler(this.treeList1_NodeMouseDoubleClick);
     //
     // xtraTabDatabase
     //
     this.xtraTabDatabase.AllowDrop = true;
     this.xtraTabDatabase.Appearance.BackColor = System.Drawing.Color.Gray;
     this.xtraTabDatabase.Appearance.ForeColor = System.Drawing.Color.White;
     this.xtraTabDatabase.Appearance.Options.UseBackColor = true;
     this.xtraTabDatabase.Appearance.Options.UseForeColor = true;
     this.xtraTabDatabase.BorderStyle = DevExpress.XtraEditors.Controls.BorderStyles.HotFlat;
     this.xtraTabDatabase.Dock = System.Windows.Forms.DockStyle.Fill;
     this.xtraTabDatabase.ImeMode = System.Windows.Forms.ImeMode.NoControl;
     this.xtraTabDatabase.Location = new System.Drawing.Point(0, 0);
     this.xtraTabDatabase.Name = "xtraTabDatabase";
     this.xtraTabDatabase.PaintStyleName = "PropertyView";
     this.xtraTabDatabase.SelectedTabPage = this.tabScheme;
     this.xtraTabDatabase.Size = new System.Drawing.Size(621, 370);
     this.xtraTabDatabase.TabIndex = 0;
     this.xtraTabDatabase.TabPages.AddRange(new DevExpress.XtraTab.XtraTabPage[] {
     this.tabScheme,
     this.tabRelation,
     this.tabQuery,
     this.tabFuzzy});
     //
     // tabScheme
     //
     this.tabScheme.Controls.Add(this.BindingNavigatorDesign);
     this.tabScheme.Controls.Add(this.GridViewDesign);
     this.tabScheme.Name = "tabScheme";
     this.tabScheme.Size = new System.Drawing.Size(615, 345);
     this.tabScheme.Text = "Scheme";
     //
     // BindingNavigatorDesign
     //
     this.BindingNavigatorDesign.BackColor = System.Drawing.Color.Gainsboro;
     this.BindingNavigatorDesign.Dock = System.Windows.Forms.DockStyle.Bottom;
     this.BindingNavigatorDesign.GripStyle = System.Windows.Forms.ToolStripGripStyle.Hidden;
     this.BindingNavigatorDesign.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
     this.toolStripButton1,
     this.toolStripButton2,
     this.toolStripSeparator1,
     this.toolStripLabel1,
     this.toolStripSeparator2,
     this.toolStripButton3,
     this.toolStripButton4,
     this.toolStripSeparator3,
     this.toolStripButton5,
     this.toolStripButton6,
     this.toolStripButton7});
     this.BindingNavigatorDesign.Location = new System.Drawing.Point(0, 319);
     this.BindingNavigatorDesign.Name = "BindingNavigatorDesign";
     this.BindingNavigatorDesign.Size = new System.Drawing.Size(615, 26);
     this.BindingNavigatorDesign.TabIndex = 5;
     this.BindingNavigatorDesign.Text = "toolStrip1";
     //
     // toolStripButton1
     //
     this.toolStripButton1.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
     this.toolStripButton1.Image = ((System.Drawing.Image)(resources.GetObject("toolStripButton1.Image")));
     this.toolStripButton1.ImageScaling = System.Windows.Forms.ToolStripItemImageScaling.None;
     this.toolStripButton1.ImageTransparentColor = System.Drawing.Color.Magenta;
     this.toolStripButton1.Name = "toolStripButton1";
     this.toolStripButton1.Size = new System.Drawing.Size(23, 23);
     this.toolStripButton1.Text = "toolStripButton1";
     this.toolStripButton1.ToolTipText = "Get Home";
     this.toolStripButton1.Click += new System.EventHandler(this.btn_Design_Home_Click);
     //
     // toolStripButton2
     //
     this.toolStripButton2.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
     this.toolStripButton2.Image = ((System.Drawing.Image)(resources.GetObject("toolStripButton2.Image")));
     this.toolStripButton2.ImageScaling = System.Windows.Forms.ToolStripItemImageScaling.None;
     this.toolStripButton2.ImageTransparentColor = System.Drawing.Color.Magenta;
     this.toolStripButton2.Name = "toolStripButton2";
     this.toolStripButton2.Size = new System.Drawing.Size(23, 23);
     this.toolStripButton2.Text = "toolStripButton2";
     this.toolStripButton2.ToolTipText = "Previous Row";
     this.toolStripButton2.Click += new System.EventHandler(this.btn_Design_Pre_Click);
     //
     // toolStripSeparator1
     //
     this.toolStripSeparator1.Name = "toolStripSeparator1";
     this.toolStripSeparator1.Size = new System.Drawing.Size(6, 26);
     //
     // toolStripLabel1
     //
     this.toolStripLabel1.Name = "toolStripLabel1";
     this.toolStripLabel1.Size = new System.Drawing.Size(30, 23);
     this.toolStripLabel1.Text = "0 / 0";
     this.toolStripLabel1.ToolTipText = "Row Number";
     //
     // toolStripSeparator2
     //
     this.toolStripSeparator2.Name = "toolStripSeparator2";
     this.toolStripSeparator2.Size = new System.Drawing.Size(6, 26);
     //
     // toolStripButton3
     //
     this.toolStripButton3.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
     this.toolStripButton3.Image = ((System.Drawing.Image)(resources.GetObject("toolStripButton3.Image")));
     this.toolStripButton3.ImageScaling = System.Windows.Forms.ToolStripItemImageScaling.None;
     this.toolStripButton3.ImageTransparentColor = System.Drawing.Color.Magenta;
     this.toolStripButton3.Name = "toolStripButton3";
     this.toolStripButton3.Size = new System.Drawing.Size(23, 23);
     this.toolStripButton3.Text = "toolStripButton3";
     this.toolStripButton3.ToolTipText = "Next Row";
     this.toolStripButton3.Click += new System.EventHandler(this.btn_Design_Next_Click);
     //
     // toolStripButton4
     //
     this.toolStripButton4.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
     this.toolStripButton4.Image = ((System.Drawing.Image)(resources.GetObject("toolStripButton4.Image")));
     this.toolStripButton4.ImageScaling = System.Windows.Forms.ToolStripItemImageScaling.None;
     this.toolStripButton4.ImageTransparentColor = System.Drawing.Color.Magenta;
     this.toolStripButton4.Name = "toolStripButton4";
     this.toolStripButton4.Size = new System.Drawing.Size(23, 23);
     this.toolStripButton4.Text = "toolStripButton4";
     this.toolStripButton4.ToolTipText = "Reach End";
     this.toolStripButton4.Click += new System.EventHandler(this.btn_Design_End_Click);
     //
     // toolStripSeparator3
     //
     this.toolStripSeparator3.Name = "toolStripSeparator3";
     this.toolStripSeparator3.Size = new System.Drawing.Size(6, 26);
     //
     // toolStripButton5
     //
     this.toolStripButton5.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
     this.toolStripButton5.Image = ((System.Drawing.Image)(resources.GetObject("toolStripButton5.Image")));
     this.toolStripButton5.ImageScaling = System.Windows.Forms.ToolStripItemImageScaling.None;
     this.toolStripButton5.ImageTransparentColor = System.Drawing.Color.Magenta;
     this.toolStripButton5.Name = "toolStripButton5";
     this.toolStripButton5.Size = new System.Drawing.Size(23, 23);
     this.toolStripButton5.Text = "Delete This Row";
     this.toolStripButton5.Click += new System.EventHandler(this.Btn_Design_DeleteRow_Click);
     //
     // toolStripButton6
     //
     this.toolStripButton6.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
     this.toolStripButton6.Image = ((System.Drawing.Image)(resources.GetObject("toolStripButton6.Image")));
     this.toolStripButton6.ImageTransparentColor = System.Drawing.Color.Magenta;
     this.toolStripButton6.Name = "toolStripButton6";
     this.toolStripButton6.Size = new System.Drawing.Size(23, 23);
     this.toolStripButton6.Text = "Reset Scheme";
     this.toolStripButton6.Click += new System.EventHandler(this.Btn_Design_ClearData_Click);
     //
     // toolStripButton7
     //
     this.toolStripButton7.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
     this.toolStripButton7.Image = ((System.Drawing.Image)(resources.GetObject("toolStripButton7.Image")));
     this.toolStripButton7.ImageTransparentColor = System.Drawing.Color.Magenta;
     this.toolStripButton7.Name = "toolStripButton7";
     this.toolStripButton7.Size = new System.Drawing.Size(23, 23);
     this.toolStripButton7.Text = "Save Scheme";
     this.toolStripButton7.ToolTipText = "Save Scheme";
     this.toolStripButton7.Click += new System.EventHandler(this.Btn_Design_UpdateData_Click);
     //
     // GridViewDesign
     //
     this.GridViewDesign.BackgroundColor = System.Drawing.Color.White;
     dataGridViewCellStyle1.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleCenter;
     dataGridViewCellStyle1.BackColor = System.Drawing.SystemColors.Control;
     dataGridViewCellStyle1.Font = new System.Drawing.Font("Tahoma", 8.25F);
     dataGridViewCellStyle1.ForeColor = System.Drawing.SystemColors.WindowText;
     dataGridViewCellStyle1.SelectionBackColor = System.Drawing.SystemColors.Highlight;
     dataGridViewCellStyle1.SelectionForeColor = System.Drawing.SystemColors.HighlightText;
     dataGridViewCellStyle1.WrapMode = System.Windows.Forms.DataGridViewTriState.True;
     this.GridViewDesign.ColumnHeadersDefaultCellStyle = dataGridViewCellStyle1;
     this.GridViewDesign.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.AutoSize;
     this.GridViewDesign.Columns.AddRange(new System.Windows.Forms.DataGridViewColumn[] {
     this.PrimaryKey,
     this.ColumnName,
     this.ColumnType,
     this.ColumnValueType,
     this.ColumnDescription});
     this.GridViewDesign.Dock = System.Windows.Forms.DockStyle.Fill;
     this.GridViewDesign.GridColor = System.Drawing.SystemColors.ControlDarkDark;
     this.GridViewDesign.Location = new System.Drawing.Point(0, 0);
     this.GridViewDesign.Name = "GridViewDesign";
     this.GridViewDesign.Size = new System.Drawing.Size(615, 345);
     this.GridViewDesign.TabIndex = 1;
     this.GridViewDesign.CellBeginEdit += new System.Windows.Forms.DataGridViewCellCancelEventHandler(this.GridViewDesign_CellBeginEdit);
     this.GridViewDesign.CellClick += new System.Windows.Forms.DataGridViewCellEventHandler(this.GridViewDesign_CellClick);
     this.GridViewDesign.CellDoubleClick += new System.Windows.Forms.DataGridViewCellEventHandler(this.GridViewDesign_CellDoubleClick);
     this.GridViewDesign.CellEndEdit += new System.Windows.Forms.DataGridViewCellEventHandler(this.GridViewDesign_CellEndEdit);
     this.GridViewDesign.RowsAdded += new System.Windows.Forms.DataGridViewRowsAddedEventHandler(this.GridViewDesign_RowsAdded);
     this.GridViewDesign.SelectionChanged += new System.EventHandler(this.GridViewDesign_SelectionChanged);
     this.GridViewDesign.Click += new System.EventHandler(this.GridViewDesign_Click);
     //
     // PrimaryKey
     //
     this.PrimaryKey.AutoSizeMode = System.Windows.Forms.DataGridViewAutoSizeColumnMode.None;
     this.PrimaryKey.HeaderText = "Primary Key";
     this.PrimaryKey.Name = "PrimaryKey";
     //
     // ColumnName
     //
     this.ColumnName.AutoSizeMode = System.Windows.Forms.DataGridViewAutoSizeColumnMode.Fill;
     this.ColumnName.HeaderText = "Attribute Name";
     this.ColumnName.Name = "ColumnName";
     //
     // ColumnType
     //
     this.ColumnType.AutoSizeMode = System.Windows.Forms.DataGridViewAutoSizeColumnMode.Fill;
     dataGridViewCellStyle2.BackColor = System.Drawing.Color.Silver;
     this.ColumnType.DefaultCellStyle = dataGridViewCellStyle2;
     this.ColumnType.HeaderText = "Data Type";
     this.ColumnType.Name = "ColumnType";
     this.ColumnType.ReadOnly = true;
     this.ColumnType.Resizable = System.Windows.Forms.DataGridViewTriState.True;
     this.ColumnType.SortMode = System.Windows.Forms.DataGridViewColumnSortMode.NotSortable;
     //
     // ColumnValueType
     //
     this.ColumnValueType.AutoSizeMode = System.Windows.Forms.DataGridViewAutoSizeColumnMode.Fill;
     this.ColumnValueType.HeaderText = "Domain";
     this.ColumnValueType.Name = "ColumnValueType";
     this.ColumnValueType.SortMode = System.Windows.Forms.DataGridViewColumnSortMode.NotSortable;
     //
     // ColumnDescription
     //
     this.ColumnDescription.AutoSizeMode = System.Windows.Forms.DataGridViewAutoSizeColumnMode.Fill;
     this.ColumnDescription.HeaderText = "Description";
     this.ColumnDescription.Name = "ColumnDescription";
     this.ColumnDescription.SortMode = System.Windows.Forms.DataGridViewColumnSortMode.NotSortable;
     //
     // tabRelation
     //
     this.tabRelation.Controls.Add(this.BindingNavigatorData);
     this.tabRelation.Controls.Add(this.GridViewData);
     this.tabRelation.Name = "tabRelation";
     this.tabRelation.Size = new System.Drawing.Size(615, 345);
     this.tabRelation.Text = "Relation";
     //
     // BindingNavigatorData
     //
     this.BindingNavigatorData.BackColor = System.Drawing.Color.Gainsboro;
     this.BindingNavigatorData.Dock = System.Windows.Forms.DockStyle.Bottom;
     this.BindingNavigatorData.GripStyle = System.Windows.Forms.ToolStripGripStyle.Hidden;
     this.BindingNavigatorData.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
     this.btn_Data_Home,
     this.btn_Data_Pre,
     this.toolStripSeparator9,
     this.lblDataRowNumberIndicator,
     this.toolStripSeparator10,
     this.btn_Data_Next,
     this.btn_Data_End,
     this.toolStripSeparator11,
     this.Btn_Data_DeleteRow,
     this.Btn_Data_ClearData,
     this.Btn_Data_UpdateData});
     this.BindingNavigatorData.Location = new System.Drawing.Point(0, 319);
     this.BindingNavigatorData.Name = "BindingNavigatorData";
     this.BindingNavigatorData.Size = new System.Drawing.Size(615, 26);
     this.BindingNavigatorData.TabIndex = 5;
     this.BindingNavigatorData.Text = "toolStrip1";
     //
     // btn_Data_Home
     //
     this.btn_Data_Home.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
     this.btn_Data_Home.Image = ((System.Drawing.Image)(resources.GetObject("btn_Data_Home.Image")));
     this.btn_Data_Home.ImageScaling = System.Windows.Forms.ToolStripItemImageScaling.None;
     this.btn_Data_Home.ImageTransparentColor = System.Drawing.Color.Magenta;
     this.btn_Data_Home.Name = "btn_Data_Home";
     this.btn_Data_Home.Size = new System.Drawing.Size(23, 23);
     this.btn_Data_Home.Text = "toolStripButton1";
     this.btn_Data_Home.ToolTipText = "Get Home";
     this.btn_Data_Home.Click += new System.EventHandler(this.btn_Data_Home_Click);
     //
     // btn_Data_Pre
     //
     this.btn_Data_Pre.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
     this.btn_Data_Pre.Image = ((System.Drawing.Image)(resources.GetObject("btn_Data_Pre.Image")));
     this.btn_Data_Pre.ImageScaling = System.Windows.Forms.ToolStripItemImageScaling.None;
     this.btn_Data_Pre.ImageTransparentColor = System.Drawing.Color.Magenta;
     this.btn_Data_Pre.Name = "btn_Data_Pre";
     this.btn_Data_Pre.Size = new System.Drawing.Size(23, 23);
     this.btn_Data_Pre.Text = "toolStripButton2";
     this.btn_Data_Pre.ToolTipText = "Previous Row";
     this.btn_Data_Pre.Click += new System.EventHandler(this.btn_Data_Pre_Click);
     //
     // toolStripSeparator9
     //
     this.toolStripSeparator9.Name = "toolStripSeparator9";
     this.toolStripSeparator9.Size = new System.Drawing.Size(6, 26);
     //
     // lblDataRowNumberIndicator
     //
     this.lblDataRowNumberIndicator.Name = "lblDataRowNumberIndicator";
     this.lblDataRowNumberIndicator.Size = new System.Drawing.Size(30, 23);
     this.lblDataRowNumberIndicator.Text = "0 / 0";
     this.lblDataRowNumberIndicator.ToolTipText = "Row Number";
     //
     // toolStripSeparator10
     //
     this.toolStripSeparator10.Name = "toolStripSeparator10";
     this.toolStripSeparator10.Size = new System.Drawing.Size(6, 26);
     //
     // btn_Data_Next
     //
     this.btn_Data_Next.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
     this.btn_Data_Next.Image = ((System.Drawing.Image)(resources.GetObject("btn_Data_Next.Image")));
     this.btn_Data_Next.ImageScaling = System.Windows.Forms.ToolStripItemImageScaling.None;
     this.btn_Data_Next.ImageTransparentColor = System.Drawing.Color.Magenta;
     this.btn_Data_Next.Name = "btn_Data_Next";
     this.btn_Data_Next.Size = new System.Drawing.Size(23, 23);
     this.btn_Data_Next.Text = "toolStripButton3";
     this.btn_Data_Next.ToolTipText = "Next Row";
     this.btn_Data_Next.Click += new System.EventHandler(this.btn_Data_Next_Click);
     //
     // btn_Data_End
     //
     this.btn_Data_End.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
     this.btn_Data_End.Image = ((System.Drawing.Image)(resources.GetObject("btn_Data_End.Image")));
     this.btn_Data_End.ImageScaling = System.Windows.Forms.ToolStripItemImageScaling.None;
     this.btn_Data_End.ImageTransparentColor = System.Drawing.Color.Magenta;
     this.btn_Data_End.Name = "btn_Data_End";
     this.btn_Data_End.Size = new System.Drawing.Size(23, 23);
     this.btn_Data_End.Text = "toolStripButton4";
     this.btn_Data_End.ToolTipText = "Reach End";
     this.btn_Data_End.Click += new System.EventHandler(this.btn_Data_End_Click);
     //
     // toolStripSeparator11
     //
     this.toolStripSeparator11.Name = "toolStripSeparator11";
     this.toolStripSeparator11.Size = new System.Drawing.Size(6, 26);
     //
     // Btn_Data_DeleteRow
     //
     this.Btn_Data_DeleteRow.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
     this.Btn_Data_DeleteRow.Image = ((System.Drawing.Image)(resources.GetObject("Btn_Data_DeleteRow.Image")));
     this.Btn_Data_DeleteRow.ImageScaling = System.Windows.Forms.ToolStripItemImageScaling.None;
     this.Btn_Data_DeleteRow.ImageTransparentColor = System.Drawing.Color.Magenta;
     this.Btn_Data_DeleteRow.Name = "Btn_Data_DeleteRow";
     this.Btn_Data_DeleteRow.Size = new System.Drawing.Size(23, 23);
     this.Btn_Data_DeleteRow.Text = "Delete this row";
     this.Btn_Data_DeleteRow.ToolTipText = "Delete this row";
     this.Btn_Data_DeleteRow.Click += new System.EventHandler(this.Btn_Data_DeleteRow_Click);
     //
     // Btn_Data_ClearData
     //
     this.Btn_Data_ClearData.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
     this.Btn_Data_ClearData.Image = ((System.Drawing.Image)(resources.GetObject("Btn_Data_ClearData.Image")));
     this.Btn_Data_ClearData.ImageTransparentColor = System.Drawing.Color.Magenta;
     this.Btn_Data_ClearData.Name = "Btn_Data_ClearData";
     this.Btn_Data_ClearData.Size = new System.Drawing.Size(23, 23);
     this.Btn_Data_ClearData.Text = "Clear Grid View";
     this.Btn_Data_ClearData.Click += new System.EventHandler(this.Btn_Data_ClearData_Click);
     //
     // Btn_Data_UpdateData
     //
     this.Btn_Data_UpdateData.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
     this.Btn_Data_UpdateData.Image = ((System.Drawing.Image)(resources.GetObject("Btn_Data_UpdateData.Image")));
     this.Btn_Data_UpdateData.ImageTransparentColor = System.Drawing.Color.Magenta;
     this.Btn_Data_UpdateData.Name = "Btn_Data_UpdateData";
     this.Btn_Data_UpdateData.Size = new System.Drawing.Size(23, 23);
     this.Btn_Data_UpdateData.Text = "Save Relation";
     this.Btn_Data_UpdateData.ToolTipText = "Update Relation";
     this.Btn_Data_UpdateData.Click += new System.EventHandler(this.Btn_Data_UpdateData_Click);
     //
     // GridViewData
     //
     this.GridViewData.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
     | System.Windows.Forms.AnchorStyles.Left)
     | System.Windows.Forms.AnchorStyles.Right)));
     this.GridViewData.BackgroundColor = System.Drawing.Color.White;
     dataGridViewCellStyle3.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleCenter;
     dataGridViewCellStyle3.BackColor = System.Drawing.SystemColors.Control;
     dataGridViewCellStyle3.Font = new System.Drawing.Font("Tahoma", 8.25F);
     dataGridViewCellStyle3.ForeColor = System.Drawing.SystemColors.WindowText;
     dataGridViewCellStyle3.SelectionBackColor = System.Drawing.SystemColors.Highlight;
     dataGridViewCellStyle3.SelectionForeColor = System.Drawing.SystemColors.HighlightText;
     dataGridViewCellStyle3.WrapMode = System.Windows.Forms.DataGridViewTriState.True;
     this.GridViewData.ColumnHeadersDefaultCellStyle = dataGridViewCellStyle3;
     this.GridViewData.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.AutoSize;
     this.GridViewData.Location = new System.Drawing.Point(0, 0);
     this.GridViewData.Name = "GridViewData";
     dataGridViewCellStyle4.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleCenter;
     dataGridViewCellStyle4.BackColor = System.Drawing.SystemColors.Control;
     dataGridViewCellStyle4.Font = new System.Drawing.Font("Tahoma", 8.25F);
     dataGridViewCellStyle4.ForeColor = System.Drawing.SystemColors.WindowText;
     dataGridViewCellStyle4.SelectionBackColor = System.Drawing.SystemColors.Highlight;
     dataGridViewCellStyle4.SelectionForeColor = System.Drawing.SystemColors.HighlightText;
     dataGridViewCellStyle4.WrapMode = System.Windows.Forms.DataGridViewTriState.True;
     this.GridViewData.RowHeadersDefaultCellStyle = dataGridViewCellStyle4;
     this.GridViewData.Size = new System.Drawing.Size(615, 341);
     this.GridViewData.TabIndex = 4;
     this.GridViewData.CellEndEdit += new System.Windows.Forms.DataGridViewCellEventHandler(this.GridViewData_CellEndEdit);
     this.GridViewData.CellValidating += new System.Windows.Forms.DataGridViewCellValidatingEventHandler(this.GridViewData_CellValidating);
     this.GridViewData.CurrentCellDirtyStateChanged += new System.EventHandler(this.GridViewData_CurrentCellDirtyStateChanged);
     this.GridViewData.RowsAdded += new System.Windows.Forms.DataGridViewRowsAddedEventHandler(this.GridViewData_RowsAdded);
     this.GridViewData.SelectionChanged += new System.EventHandler(this.GridViewData_SelectionChanged);
     this.GridViewData.Click += new System.EventHandler(this.GridViewData_Click);
     //
     // tabQuery
     //
     this.tabQuery.Controls.Add(this.txtQuery);
     this.tabQuery.Controls.Add(this.xtraTabQueryResult);
     this.tabQuery.Name = "tabQuery";
     this.tabQuery.Size = new System.Drawing.Size(615, 345);
     this.tabQuery.Text = "Query";
     //
     // txtQuery
     //
     this.txtQuery.Dock = System.Windows.Forms.DockStyle.Top;
     this.txtQuery.Font = new System.Drawing.Font("Lucida Sans Unicode", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.txtQuery.Location = new System.Drawing.Point(0, 0);
     this.txtQuery.Name = "txtQuery";
     this.txtQuery.Size = new System.Drawing.Size(615, 166);
     this.txtQuery.TabIndex = 5;
     this.txtQuery.Text = "";
     this.txtQuery.TextChanged += new System.EventHandler(this.txtQuery_TextChanged);
     //
     // xtraTabQueryResult
     //
     this.xtraTabQueryResult.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
     | System.Windows.Forms.AnchorStyles.Left)
     | System.Windows.Forms.AnchorStyles.Right)));
     this.xtraTabQueryResult.Appearance.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(192)))), ((int)(((byte)(192)))), ((int)(((byte)(255)))));
     this.xtraTabQueryResult.Appearance.Options.UseBackColor = true;
     this.xtraTabQueryResult.BorderStyle = DevExpress.XtraEditors.Controls.BorderStyles.HotFlat;
     this.xtraTabQueryResult.Location = new System.Drawing.Point(3, 172);
     this.xtraTabQueryResult.Name = "xtraTabQueryResult";
     this.xtraTabQueryResult.PaintStyleName = "PropertyView";
     this.xtraTabQueryResult.SelectedTabPage = this.xtraTabResult;
     this.xtraTabQueryResult.Size = new System.Drawing.Size(614, 170);
     this.xtraTabQueryResult.TabIndex = 4;
     this.xtraTabQueryResult.TabPages.AddRange(new DevExpress.XtraTab.XtraTabPage[] {
     this.xtraTabResult,
     this.xtraTabMessage});
     //
     // xtraTabResult
     //
     this.xtraTabResult.Controls.Add(this.GridViewResult);
     this.xtraTabResult.Name = "xtraTabResult";
     this.xtraTabResult.Size = new System.Drawing.Size(608, 145);
     this.xtraTabResult.Text = "Query Result";
     //
     // GridViewResult
     //
     this.GridViewResult.AllowUserToAddRows = false;
     this.GridViewResult.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
     | System.Windows.Forms.AnchorStyles.Left)
     | System.Windows.Forms.AnchorStyles.Right)));
     this.GridViewResult.BackgroundColor = System.Drawing.Color.White;
     dataGridViewCellStyle5.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleCenter;
     dataGridViewCellStyle5.BackColor = System.Drawing.SystemColors.Control;
     dataGridViewCellStyle5.Font = new System.Drawing.Font("Tahoma", 8.25F);
     dataGridViewCellStyle5.ForeColor = System.Drawing.SystemColors.WindowText;
     dataGridViewCellStyle5.SelectionBackColor = System.Drawing.SystemColors.Highlight;
     dataGridViewCellStyle5.SelectionForeColor = System.Drawing.SystemColors.HighlightText;
     dataGridViewCellStyle5.WrapMode = System.Windows.Forms.DataGridViewTriState.True;
     this.GridViewResult.ColumnHeadersDefaultCellStyle = dataGridViewCellStyle5;
     this.GridViewResult.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.AutoSize;
     this.GridViewResult.Location = new System.Drawing.Point(0, 0);
     this.GridViewResult.Name = "GridViewResult";
     this.GridViewResult.ReadOnly = true;
     this.GridViewResult.Size = new System.Drawing.Size(608, 145);
     this.GridViewResult.TabIndex = 2;
     //
     // xtraTabMessage
     //
     this.xtraTabMessage.Controls.Add(this.txtMessage);
     this.xtraTabMessage.Name = "xtraTabMessage";
     this.xtraTabMessage.Size = new System.Drawing.Size(608, 145);
     this.xtraTabMessage.Text = "Message";
     //
     // txtMessage
     //
     this.txtMessage.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
     | System.Windows.Forms.AnchorStyles.Left)
     | System.Windows.Forms.AnchorStyles.Right)));
     this.txtMessage.BackColor = System.Drawing.Color.White;
     this.txtMessage.Font = new System.Drawing.Font("Times New Roman", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.txtMessage.Location = new System.Drawing.Point(0, 0);
     this.txtMessage.Multiline = true;
     this.txtMessage.Name = "txtMessage";
     this.txtMessage.ReadOnly = true;
     this.txtMessage.Size = new System.Drawing.Size(608, 145);
     this.txtMessage.TabIndex = 1;
     //
     // tabFuzzy
     //
     this.tabFuzzy.Controls.Add(this.chart1);
     this.tabFuzzy.Name = "tabFuzzy";
     this.tabFuzzy.Size = new System.Drawing.Size(615, 345);
     this.tabFuzzy.Text = "Fuzzy Set";
     //
     // chart1
     //
     this.chart1.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
     | System.Windows.Forms.AnchorStyles.Left)
     | System.Windows.Forms.AnchorStyles.Right)));
     this.chart1.Location = new System.Drawing.Point(0, 0);
     this.chart1.Name = "chart1";
     this.chart1.Size = new System.Drawing.Size(615, 342);
     this.chart1.TabIndex = 0;
     this.chart1.Text = "Fuzzy Sets";
     //
     // ribbonControl
     //
     this.ribbonControl.ApplicationButtonDropDownControl = this.appMenu;
     this.ribbonControl.ApplicationButtonText = null;
     this.ribbonControl.ExpandCollapseItem.Id = 0;
     this.ribbonControl.Images = this.ribbonImageCollection;
     this.ribbonControl.Items.AddRange(new DevExpress.XtraBars.BarItem[] {
     this.ribbonControl.ExpandCollapseItem,
     this.iNewDatabase,
     this.iSaveAs,
     this.iSave,
     this.iHelp,
     this.siStatus,
     this.siInfo,
     this.iBoldFontStyle,
     this.iItalicFontStyle,
     this.iUnderlinedFontStyle,
     this.iLeftTextAlign,
     this.iCenterTextAlign,
     this.iRightTextAlign,
     this.rgbiSkins,
     this.iOpenExistingDatabase,
     this.iCloseDatabase,
     this.iRefreshDatabase,
     this.iConnectDatabase,
     this.iExit,
     this.iNewScheme,
     this.iOpenScheme,
     this.iSaveScheme,
     this.iDeleteScheme,
     this.iCloseCurrentScheme,
     this.iNewRelation,
     this.iOpenRelation,
     this.iDeleteRelation,
     this.iSaveRelation,
     this.iCloseCurrentRelation,
     this.iNewQuery,
     this.iOpenQuery,
     this.iSaveQuery,
     this.iCloseCurrentQuery,
     this.iDeleteQuery,
     this.iExecuteQuery,
     this.iStopExecute,
     this.barButtonItem2,
     this.barButtonItem3,
     this.barButtonItem4,
     this.barButtonItem5,
     this.barButtonItem6,
     this.barButtonItem7,
     this.barButtonItem8,
     this.barButtonItem9,
     this.barButtonItem10,
     this.iAddDescrete,
     this.barButtonItem11,
     this.barListItem1,
     this.barListItem2,
     this.iGetList,
     this.iListContinuous,
     this.barButtonItem13,
     this.iGetMemberships,
     this.iOperator});
     this.ribbonControl.LargeImages = this.ribbonImageCollectionLarge;
     this.ribbonControl.Location = new System.Drawing.Point(0, 0);
     this.ribbonControl.MaxItemId = 115;
     this.ribbonControl.Name = "ribbonControl";
     this.ribbonControl.Pages.AddRange(new DevExpress.XtraBars.Ribbon.RibbonPage[] {
     this.homeRibbonPage,
     this.schemeRibbonPage,
     this.relationRibbonPage,
     this.queryRibbonPage,
     this.fuzzySetRibbonPage,
     this.helpRibbonPage,
     this.ribbonPageAbout});
     this.ribbonControl.RibbonStyle = DevExpress.XtraBars.Ribbon.RibbonControlStyle.Office2010;
     this.ribbonControl.Size = new System.Drawing.Size(867, 142);
     this.ribbonControl.StatusBar = this.ribbonStatusBar;
     this.ribbonControl.Toolbar.ItemLinks.Add(this.iNewDatabase);
     this.ribbonControl.Toolbar.ItemLinks.Add(this.iSave);
     this.ribbonControl.Toolbar.ItemLinks.Add(this.iSaveAs);
     this.ribbonControl.Toolbar.ItemLinks.Add(this.iHelp);
     this.ribbonControl.Toolbar.ItemLinks.Add(this.iExit);
     //
     // appMenu
     //
     this.appMenu.BottomPaneControlContainer = this.popupControlContainer2;
     this.appMenu.ItemLinks.Add(this.iNewDatabase);
     this.appMenu.ItemLinks.Add(this.iSaveAs);
     this.appMenu.ItemLinks.Add(this.iSave);
     this.appMenu.ItemLinks.Add(this.iExit);
     this.appMenu.Name = "appMenu";
     this.appMenu.Ribbon = this.ribbonControl;
     this.appMenu.RightPaneControlContainer = this.popupControlContainer1;
     this.appMenu.ShowRightPane = true;
     //
     // popupControlContainer2
     //
     this.popupControlContainer2.Appearance.BackColor = System.Drawing.Color.Transparent;
     this.popupControlContainer2.Appearance.Options.UseBackColor = true;
     this.popupControlContainer2.BorderStyle = DevExpress.XtraEditors.Controls.BorderStyles.NoBorder;
     this.popupControlContainer2.Controls.Add(this.buttonEdit);
     this.popupControlContainer2.Location = new System.Drawing.Point(316, 258);
     this.popupControlContainer2.Name = "popupControlContainer2";
     this.popupControlContainer2.Ribbon = this.ribbonControl;
     this.popupControlContainer2.Size = new System.Drawing.Size(118, 28);
     this.popupControlContainer2.TabIndex = 5;
     this.popupControlContainer2.Visible = false;
     //
     // buttonEdit
     //
     this.buttonEdit.EditValue = "Some Text";
     this.buttonEdit.Location = new System.Drawing.Point(3, 3);
     this.buttonEdit.MenuManager = this.ribbonControl;
     this.buttonEdit.Name = "buttonEdit";
     this.buttonEdit.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton()});
     this.buttonEdit.Size = new System.Drawing.Size(100, 20);
     this.buttonEdit.TabIndex = 0;
     //
     // iNewDatabase
     //
     this.iNewDatabase.Caption = "New Database";
     this.iNewDatabase.Description = "Creates a new, blank database.";
     this.iNewDatabase.Hint = "Creates a new, blank database";
     this.iNewDatabase.Id = 1;
     this.iNewDatabase.ImageIndex = 0;
     this.iNewDatabase.LargeGlyph = global::FRDB_SQLite.Properties.Resources.database_add;
     this.iNewDatabase.LargeImageIndex = 5;
     this.iNewDatabase.Name = "iNewDatabase";
     this.iNewDatabase.ItemClick += new DevExpress.XtraBars.ItemClickEventHandler(this.iNewDatabase_ItemClick);
     //
     // iSaveAs
     //
     this.iSaveAs.Caption = "&Save Database As";
     this.iSaveAs.Description = "Save the database in a different format";
     this.iSaveAs.Hint = "Save the database in a different format";
     this.iSaveAs.Id = 16;
     this.iSaveAs.ImageIndex = 5;
     this.iSaveAs.LargeImageIndex = 1;
     this.iSaveAs.Name = "iSaveAs";
     this.iSaveAs.ItemClick += new DevExpress.XtraBars.ItemClickEventHandler(this.iSaveAs_ItemClick);
     //
     // iSave
     //
     this.iSave.Caption = "&Save Database";
     this.iSave.Description = "Saves the active databse";
     this.iSave.Hint = "Saves the active databse";
     this.iSave.Id = 17;
     this.iSave.ImageIndex = 4;
     this.iSave.LargeImageIndex = 6;
     this.iSave.Name = "iSave";
     this.iSave.ItemClick += new DevExpress.XtraBars.ItemClickEventHandler(this.iSave_ItemClick);
     //
     // iExit
     //
     this.iExit.Caption = "Exit";
     this.iExit.Description = "Closes this program after prompting you to save unsaved data";
     this.iExit.Glyph = global::FRDB_SQLite.Properties.Resources.Ribbon_Exit_16x16;
     this.iExit.Hint = "Closes this program after prompting you to save unsaved data";
     this.iExit.Id = 74;
     this.iExit.ImageIndex = 6;
     this.iExit.LargeGlyph = global::FRDB_SQLite.Properties.Resources.Ribbon_Exit_32x32;
     this.iExit.LargeImageIndex = 2;
     this.iExit.Name = "iExit";
     this.iExit.ItemClick += new DevExpress.XtraBars.ItemClickEventHandler(this.iExit_ItemClick);
     //
     // popupControlContainer1
     //
     this.popupControlContainer1.Appearance.BackColor = System.Drawing.Color.Transparent;
     this.popupControlContainer1.Appearance.Options.UseBackColor = true;
     this.popupControlContainer1.BorderStyle = DevExpress.XtraEditors.Controls.BorderStyles.NoBorder;
     this.popupControlContainer1.Controls.Add(this.someLabelControl2);
     this.popupControlContainer1.Controls.Add(this.someLabelControl1);
     this.popupControlContainer1.Location = new System.Drawing.Point(208, 168);
     this.popupControlContainer1.Name = "popupControlContainer1";
     this.popupControlContainer1.Ribbon = this.ribbonControl;
     this.popupControlContainer1.Size = new System.Drawing.Size(76, 70);
     this.popupControlContainer1.TabIndex = 4;
     this.popupControlContainer1.Visible = false;
     //
     // someLabelControl2
     //
     this.someLabelControl2.Location = new System.Drawing.Point(3, 57);
     this.someLabelControl2.Name = "someLabelControl2";
     this.someLabelControl2.Size = new System.Drawing.Size(49, 13);
     this.someLabelControl2.TabIndex = 0;
     this.someLabelControl2.Text = "Some Info";
     //
     // someLabelControl1
     //
     this.someLabelControl1.Location = new System.Drawing.Point(3, 3);
     this.someLabelControl1.Name = "someLabelControl1";
     this.someLabelControl1.Size = new System.Drawing.Size(49, 13);
     this.someLabelControl1.TabIndex = 0;
     this.someLabelControl1.Text = "Some Info";
     //
     // ribbonImageCollection
     //
     this.ribbonImageCollection.ImageStream = ((DevExpress.Utils.ImageCollectionStreamer)(resources.GetObject("ribbonImageCollection.ImageStream")));
     this.ribbonImageCollection.Images.SetKeyName(0, "Ribbon_New_16x16.png");
     this.ribbonImageCollection.Images.SetKeyName(1, "Ribbon_Open_16x16.png");
     this.ribbonImageCollection.Images.SetKeyName(2, "Ribbon_Close_16x16.png");
     this.ribbonImageCollection.Images.SetKeyName(3, "Ribbon_Find_16x16.png");
     this.ribbonImageCollection.Images.SetKeyName(4, "Ribbon_Save_16x16.png");
     this.ribbonImageCollection.Images.SetKeyName(5, "Ribbon_SaveAs_16x16.png");
     this.ribbonImageCollection.Images.SetKeyName(6, "Ribbon_Exit_16x16.png");
     this.ribbonImageCollection.Images.SetKeyName(7, "Ribbon_Content_16x16.png");
     this.ribbonImageCollection.Images.SetKeyName(8, "Ribbon_Info_16x16.png");
     this.ribbonImageCollection.Images.SetKeyName(9, "Ribbon_Bold_16x16.png");
     this.ribbonImageCollection.Images.SetKeyName(10, "Ribbon_Italic_16x16.png");
     this.ribbonImageCollection.Images.SetKeyName(11, "Ribbon_Underline_16x16.png");
     this.ribbonImageCollection.Images.SetKeyName(12, "Ribbon_AlignLeft_16x16.png");
     this.ribbonImageCollection.Images.SetKeyName(13, "Ribbon_AlignCenter_16x16.png");
     this.ribbonImageCollection.Images.SetKeyName(14, "Ribbon_AlignRight_16x16.png");
     this.ribbonImageCollection.Images.SetKeyName(15, "open_database1.png");
     this.ribbonImageCollection.Images.SetKeyName(16, "database_save.png");
     this.ribbonImageCollection.Images.SetKeyName(17, "back-alt-16.png");
     //
     // iHelp
     //
     this.iHelp.Caption = "Help";
     this.iHelp.Description = "Start the program help system.";
     this.iHelp.Hint = "Start the program help system";
     this.iHelp.Id = 22;
     this.iHelp.ImageIndex = 7;
     this.iHelp.LargeImageIndex = 3;
     this.iHelp.Name = "iHelp";
     this.iHelp.ItemClick += new DevExpress.XtraBars.ItemClickEventHandler(this.iHelp_ItemClick);
     //
     // siStatus
     //
     this.siStatus.Caption = "Ready";
     this.siStatus.Id = 31;
     this.siStatus.Name = "siStatus";
     this.siStatus.TextAlignment = System.Drawing.StringAlignment.Near;
     //
     // siInfo
     //
     this.siInfo.Caption = "Some Info";
     this.siInfo.Id = 32;
     this.siInfo.Name = "siInfo";
     this.siInfo.TextAlignment = System.Drawing.StringAlignment.Near;
     //
     // iBoldFontStyle
     //
     this.iBoldFontStyle.Caption = "Bold";
     this.iBoldFontStyle.Id = 53;
     this.iBoldFontStyle.ImageIndex = 9;
     this.iBoldFontStyle.Name = "iBoldFontStyle";
     //
     // iItalicFontStyle
     //
     this.iItalicFontStyle.Caption = "Italic";
     this.iItalicFontStyle.Id = 54;
     this.iItalicFontStyle.ImageIndex = 10;
     this.iItalicFontStyle.Name = "iItalicFontStyle";
     //
     // iUnderlinedFontStyle
     //
     this.iUnderlinedFontStyle.Caption = "Underlined";
     this.iUnderlinedFontStyle.Id = 55;
     this.iUnderlinedFontStyle.ImageIndex = 11;
     this.iUnderlinedFontStyle.Name = "iUnderlinedFontStyle";
     //
     // iLeftTextAlign
     //
     this.iLeftTextAlign.Caption = "Left";
     this.iLeftTextAlign.Id = 57;
     this.iLeftTextAlign.ImageIndex = 12;
     this.iLeftTextAlign.Name = "iLeftTextAlign";
     //
     // iCenterTextAlign
     //
     this.iCenterTextAlign.Caption = "Center";
     this.iCenterTextAlign.Id = 58;
     this.iCenterTextAlign.ImageIndex = 13;
     this.iCenterTextAlign.Name = "iCenterTextAlign";
     //
     // iRightTextAlign
     //
     this.iRightTextAlign.Caption = "Right";
     this.iRightTextAlign.Id = 59;
     this.iRightTextAlign.ImageIndex = 14;
     this.iRightTextAlign.Name = "iRightTextAlign";
     //
     // rgbiSkins
     //
     this.rgbiSkins.Caption = "Skins";
     //
     //
     //
     this.rgbiSkins.Gallery.AllowHoverImages = true;
     this.rgbiSkins.Gallery.Appearance.ItemCaptionAppearance.Normal.Options.UseFont = true;
     this.rgbiSkins.Gallery.Appearance.ItemCaptionAppearance.Normal.Options.UseTextOptions = true;
     this.rgbiSkins.Gallery.Appearance.ItemCaptionAppearance.Normal.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.rgbiSkins.Gallery.ColumnCount = 4;
     this.rgbiSkins.Gallery.FixedHoverImageSize = false;
     this.rgbiSkins.Gallery.ImageSize = new System.Drawing.Size(32, 17);
     this.rgbiSkins.Gallery.ItemImageLocation = DevExpress.Utils.Locations.Top;
     this.rgbiSkins.Gallery.RowCount = 4;
     this.rgbiSkins.Id = 60;
     this.rgbiSkins.Name = "rgbiSkins";
     //
     // iOpenExistingDatabase
     //
     this.iOpenExistingDatabase.Caption = "&Open Existing Database";
     this.iOpenExistingDatabase.Description = "Opens Existing Database";
     this.iOpenExistingDatabase.Hint = "Opens Existing Database";
     this.iOpenExistingDatabase.Id = 62;
     this.iOpenExistingDatabase.ImageIndex = 5;
     this.iOpenExistingDatabase.LargeImageIndex = 7;
     this.iOpenExistingDatabase.Name = "iOpenExistingDatabase";
     this.iOpenExistingDatabase.ItemClick += new DevExpress.XtraBars.ItemClickEventHandler(this.iOpenExistingDatabase_ItemClick);
     //
     // iCloseDatabase
     //
     this.iCloseDatabase.Caption = "&Close Current Database";
     this.iCloseDatabase.Id = 63;
     this.iCloseDatabase.LargeImageIndex = 9;
     this.iCloseDatabase.Name = "iCloseDatabase";
     this.iCloseDatabase.ItemClick += new DevExpress.XtraBars.ItemClickEventHandler(this.iCloseDatabase_ItemClick);
     //
     // iRefreshDatabase
     //
     this.iRefreshDatabase.Caption = "&Refresh Databse";
     this.iRefreshDatabase.Description = "Reload current database";
     this.iRefreshDatabase.Hint = "Reload current database";
     this.iRefreshDatabase.Id = 64;
     this.iRefreshDatabase.LargeImageIndex = 11;
     this.iRefreshDatabase.Name = "iRefreshDatabase";
     this.iRefreshDatabase.ItemClick += new DevExpress.XtraBars.ItemClickEventHandler(this.iRefreshDatabase_ItemClick);
     //
     // iConnectDatabase
     //
     this.iConnectDatabase.Caption = "&Connect To Database";
     this.iConnectDatabase.Description = "Test to connect to current database";
     this.iConnectDatabase.Hint = "Test to connect to current database";
     this.iConnectDatabase.Id = 65;
     this.iConnectDatabase.LargeImageIndex = 10;
     this.iConnectDatabase.Name = "iConnectDatabase";
     this.iConnectDatabase.ItemClick += new DevExpress.XtraBars.ItemClickEventHandler(this.iConnectDatabase_ItemClick);
     //
     // iNewScheme
     //
     this.iNewScheme.Caption = "New Scheme";
     this.iNewScheme.Id = 75;
     this.iNewScheme.LargeImageIndex = 17;
     this.iNewScheme.Name = "iNewScheme";
     this.iNewScheme.ItemClick += new DevExpress.XtraBars.ItemClickEventHandler(this.iNewScheme_ItemClick);
     //
     // iOpenScheme
     //
     this.iOpenScheme.Caption = "Open Scheme";
     this.iOpenScheme.Id = 77;
     this.iOpenScheme.LargeImageIndex = 30;
     this.iOpenScheme.Name = "iOpenScheme";
     this.iOpenScheme.ItemClick += new DevExpress.XtraBars.ItemClickEventHandler(this.iOpenScheme_ItemClick);
     //
     // iSaveScheme
     //
     this.iSaveScheme.Caption = "Save Scheme";
     this.iSaveScheme.Id = 78;
     this.iSaveScheme.LargeImageIndex = 33;
     this.iSaveScheme.Name = "iSaveScheme";
     this.iSaveScheme.ItemClick += new DevExpress.XtraBars.ItemClickEventHandler(this.iSaveScheme_ItemClick);
     //
     // iDeleteScheme
     //
     this.iDeleteScheme.Caption = "Delete Scheme";
     this.iDeleteScheme.Id = 79;
     this.iDeleteScheme.LargeImageIndex = 32;
     this.iDeleteScheme.Name = "iDeleteScheme";
     this.iDeleteScheme.ItemClick += new DevExpress.XtraBars.ItemClickEventHandler(this.iDeleteScheme_ItemClick);
     //
     // iCloseCurrentScheme
     //
     this.iCloseCurrentScheme.Caption = "&Close Current Scheme";
     this.iCloseCurrentScheme.Id = 80;
     this.iCloseCurrentScheme.LargeImageIndex = 31;
     this.iCloseCurrentScheme.Name = "iCloseCurrentScheme";
     this.iCloseCurrentScheme.ItemClick += new DevExpress.XtraBars.ItemClickEventHandler(this.iCloseCurrentScheme_ItemClick);
     //
     // iNewRelation
     //
     this.iNewRelation.Caption = "New Relation";
     this.iNewRelation.Id = 81;
     this.iNewRelation.LargeImageIndex = 15;
     this.iNewRelation.Name = "iNewRelation";
     this.iNewRelation.ItemClick += new DevExpress.XtraBars.ItemClickEventHandler(this.iNewRelation_ItemClick);
     //
     // iOpenRelation
     //
     this.iOpenRelation.Caption = "Open Relation";
     this.iOpenRelation.Id = 82;
     this.iOpenRelation.LargeImageIndex = 12;
     this.iOpenRelation.Name = "iOpenRelation";
     this.iOpenRelation.ItemClick += new DevExpress.XtraBars.ItemClickEventHandler(this.iOpenRelation_ItemClick);
     //
     // iDeleteRelation
     //
     this.iDeleteRelation.Caption = "Delete Relation";
     this.iDeleteRelation.Id = 83;
     this.iDeleteRelation.LargeImageIndex = 14;
     this.iDeleteRelation.Name = "iDeleteRelation";
     this.iDeleteRelation.ItemClick += new DevExpress.XtraBars.ItemClickEventHandler(this.iDeleteRelation_ItemClick);
     //
     // iSaveRelation
     //
     this.iSaveRelation.Caption = "Save Relation";
     this.iSaveRelation.Id = 84;
     this.iSaveRelation.LargeImageIndex = 13;
     this.iSaveRelation.Name = "iSaveRelation";
     this.iSaveRelation.ItemClick += new DevExpress.XtraBars.ItemClickEventHandler(this.iSaveRelation_ItemClick);
     //
     // iCloseCurrentRelation
     //
     this.iCloseCurrentRelation.Caption = "&Close Current Relation";
     this.iCloseCurrentRelation.Id = 85;
     this.iCloseCurrentRelation.LargeImageIndex = 16;
     this.iCloseCurrentRelation.Name = "iCloseCurrentRelation";
     this.iCloseCurrentRelation.ItemClick += new DevExpress.XtraBars.ItemClickEventHandler(this.iCloseCurrentRelation_ItemClick);
     //
     // iNewQuery
     //
     this.iNewQuery.Caption = "New Query";
     this.iNewQuery.Id = 86;
     this.iNewQuery.LargeImageIndex = 19;
     this.iNewQuery.Name = "iNewQuery";
     this.iNewQuery.ItemClick += new DevExpress.XtraBars.ItemClickEventHandler(this.iNewQuery_ItemClick);
     //
     // iOpenQuery
     //
     this.iOpenQuery.Caption = "Open Query";
     this.iOpenQuery.Id = 87;
     this.iOpenQuery.LargeImageIndex = 20;
     this.iOpenQuery.Name = "iOpenQuery";
     this.iOpenQuery.ItemClick += new DevExpress.XtraBars.ItemClickEventHandler(this.iOpenQuery_ItemClick);
     //
     // iSaveQuery
     //
     this.iSaveQuery.Caption = "Save Query";
     this.iSaveQuery.Id = 88;
     this.iSaveQuery.LargeImageIndex = 22;
     this.iSaveQuery.Name = "iSaveQuery";
     this.iSaveQuery.ItemClick += new DevExpress.XtraBars.ItemClickEventHandler(this.iSaveQuery_ItemClick);
     //
     // iCloseCurrentQuery
     //
     this.iCloseCurrentQuery.Caption = "Close Current Query";
     this.iCloseCurrentQuery.Id = 89;
     this.iCloseCurrentQuery.LargeImageIndex = 34;
     this.iCloseCurrentQuery.Name = "iCloseCurrentQuery";
     this.iCloseCurrentQuery.ItemClick += new DevExpress.XtraBars.ItemClickEventHandler(this.iCloseCurrentQuery_ItemClick);
     //
     // iDeleteQuery
     //
     this.iDeleteQuery.Caption = "&Delete Query";
     this.iDeleteQuery.Id = 91;
     this.iDeleteQuery.LargeImageIndex = 23;
     this.iDeleteQuery.Name = "iDeleteQuery";
     this.iDeleteQuery.ItemClick += new DevExpress.XtraBars.ItemClickEventHandler(this.iDeleteQuery_ItemClick);
     //
     // iExecuteQuery
     //
     this.iExecuteQuery.Caption = "Execute With Result";
     this.iExecuteQuery.Id = 92;
     this.iExecuteQuery.LargeImageIndex = 24;
     this.iExecuteQuery.Name = "iExecuteQuery";
     this.iExecuteQuery.ItemClick += new DevExpress.XtraBars.ItemClickEventHandler(this.iExecuteQuery_ItemClick);
     //
     // iStopExecute
     //
     this.iStopExecute.Caption = "&Stop Executing";
     this.iStopExecute.Id = 93;
     this.iStopExecute.LargeImageIndex = 25;
     this.iStopExecute.Name = "iStopExecute";
     this.iStopExecute.ItemClick += new DevExpress.XtraBars.ItemClickEventHandler(this.iStopExecute_ItemClick);
     //
     // barButtonItem2
     //
     this.barButtonItem2.Caption = "barButtonItem2";
     this.barButtonItem2.Id = 94;
     this.barButtonItem2.Name = "barButtonItem2";
     //
     // barButtonItem3
     //
     this.barButtonItem3.Caption = "barButtonItem3";
     this.barButtonItem3.Id = 95;
     this.barButtonItem3.Name = "barButtonItem3";
     //
     // barButtonItem4
     //
     this.barButtonItem4.Caption = "barButtonItem4";
     this.barButtonItem4.Id = 96;
     this.barButtonItem4.Name = "barButtonItem4";
     //
     // barButtonItem5
     //
     this.barButtonItem5.Caption = "barButtonItem5";
     this.barButtonItem5.Id = 97;
     this.barButtonItem5.Name = "barButtonItem5";
     //
     // barButtonItem6
     //
     this.barButtonItem6.Caption = "barButtonItem6";
     this.barButtonItem6.Id = 98;
     this.barButtonItem6.Name = "barButtonItem6";
     //
     // barButtonItem7
     //
     this.barButtonItem7.Caption = "barButtonItem7";
     this.barButtonItem7.Id = 99;
     this.barButtonItem7.Name = "barButtonItem7";
     //
     // barButtonItem8
     //
     this.barButtonItem8.Caption = "barButtonItem8";
     this.barButtonItem8.Id = 100;
     this.barButtonItem8.Name = "barButtonItem8";
     //
     // barButtonItem9
     //
     this.barButtonItem9.Caption = "barButtonItem9";
     this.barButtonItem9.Id = 101;
     this.barButtonItem9.Name = "barButtonItem9";
     //
     // barButtonItem10
     //
     this.barButtonItem10.Caption = "barButtonItem10";
     this.barButtonItem10.Id = 102;
     this.barButtonItem10.Name = "barButtonItem10";
     //
     // iAddDescrete
     //
     this.iAddDescrete.Caption = "&Add Descrete Fuzzy Set";
     this.iAddDescrete.Id = 103;
     this.iAddDescrete.LargeImageIndex = 26;
     this.iAddDescrete.Name = "iAddDescrete";
     this.iAddDescrete.ItemClick += new DevExpress.XtraBars.ItemClickEventHandler(this.iDiscreteFuzzySet_ItemClick);
     //
     // barButtonItem11
     //
     this.barButtonItem11.Caption = "Continuous Fuzzy Set";
     this.barButtonItem11.Id = 104;
     this.barButtonItem11.LargeImageIndex = 27;
     this.barButtonItem11.Name = "barButtonItem11";
     this.barButtonItem11.ItemClick += new DevExpress.XtraBars.ItemClickEventHandler(this.barButtonItem11_ItemClick);
     //
     // barListItem1
     //
     this.barListItem1.Caption = "Rename";
     this.barListItem1.Id = 105;
     this.barListItem1.MenuCaption = "rename";
     this.barListItem1.Name = "barListItem1";
     //
     // barListItem2
     //
     this.barListItem2.Caption = "Close current";
     this.barListItem2.Id = 106;
     this.barListItem2.MenuCaption = "closeCurrent";
     this.barListItem2.Name = "barListItem2";
     //
     // iGetList
     //
     this.iGetList.Caption = "Get List Descrete";
     this.iGetList.Id = 107;
     this.iGetList.LargeImageIndex = 28;
     this.iGetList.Name = "iGetList";
     this.iGetList.ItemClick += new DevExpress.XtraBars.ItemClickEventHandler(this.iListDescrete_ItemClick);
     //
     // iListContinuous
     //
     this.iListContinuous.Caption = "& Get List Continuous";
     this.iListContinuous.Id = 108;
     this.iListContinuous.LargeImageIndex = 29;
     this.iListContinuous.Name = "iListContinuous";
     this.iListContinuous.ItemClick += new DevExpress.XtraBars.ItemClickEventHandler(this.iListContinuous_ItemClick);
     //
     // barButtonItem13
     //
     this.barButtonItem13.Caption = "&About The Author And Software";
     this.barButtonItem13.Id = 111;
     this.barButtonItem13.LargeImageIndex = 4;
     this.barButtonItem13.Name = "barButtonItem13";
     this.barButtonItem13.ItemClick += new DevExpress.XtraBars.ItemClickEventHandler(this.barButtonItem13_ItemClick);
     //
     // iGetMemberships
     //
     this.iGetMemberships.Caption = "Get Memberships";
     this.iGetMemberships.Id = 112;
     this.iGetMemberships.LargeImageIndex = 35;
     this.iGetMemberships.Name = "iGetMemberships";
     this.iGetMemberships.ItemClick += new DevExpress.XtraBars.ItemClickEventHandler(this.iGetMemberships_ItemClick);
     //
     // iOperator
     //
     this.iOperator.Caption = "Operator";
     this.iOperator.Id = 113;
     this.iOperator.ImageIndex = 17;
     this.iOperator.Name = "iOperator";
     this.iOperator.RibbonStyle = DevExpress.XtraBars.Ribbon.RibbonItemStyles.SmallWithText;
     this.iOperator.ItemClick += new DevExpress.XtraBars.ItemClickEventHandler(this.iOperator_ItemClick);
     //
     // ribbonImageCollectionLarge
     //
     this.ribbonImageCollectionLarge.ImageSize = new System.Drawing.Size(32, 32);
     this.ribbonImageCollectionLarge.ImageStream = ((DevExpress.Utils.ImageCollectionStreamer)(resources.GetObject("ribbonImageCollectionLarge.ImageStream")));
     this.ribbonImageCollectionLarge.Images.SetKeyName(0, "Ribbon_Save_32x32.png");
     this.ribbonImageCollectionLarge.Images.SetKeyName(1, "Ribbon_SaveAs_32x32.png");
     this.ribbonImageCollectionLarge.Images.SetKeyName(2, "Ribbon_Exit_32x32.png");
     this.ribbonImageCollectionLarge.Images.SetKeyName(3, "Ribbon_Content_32x32.png");
     this.ribbonImageCollectionLarge.Images.SetKeyName(4, "Ribbon_Info_32x32.png");
     this.ribbonImageCollectionLarge.Images.SetKeyName(5, "database_add.png");
     this.ribbonImageCollectionLarge.Images.SetKeyName(6, "database_save.png");
     this.ribbonImageCollectionLarge.Images.SetKeyName(7, "open_database1.png");
     this.ribbonImageCollectionLarge.Images.SetKeyName(8, "open_database2.png");
     this.ribbonImageCollectionLarge.Images.SetKeyName(9, "remove-from-database.png");
     this.ribbonImageCollectionLarge.Images.SetKeyName(10, "database_connect.png");
     this.ribbonImageCollectionLarge.Images.SetKeyName(11, "database_refresh.png");
     this.ribbonImageCollectionLarge.Images.SetKeyName(12, "folder_table.png");
     this.ribbonImageCollectionLarge.Images.SetKeyName(13, "table_save.png");
     this.ribbonImageCollectionLarge.Images.SetKeyName(14, "table-delete.png");
     this.ribbonImageCollectionLarge.Images.SetKeyName(15, "table-star.png");
     this.ribbonImageCollectionLarge.Images.SetKeyName(16, "inbox_table.png");
     this.ribbonImageCollectionLarge.Images.SetKeyName(17, "new_relation.png");
     this.ribbonImageCollectionLarge.Images.SetKeyName(18, "save_relation.png");
     this.ribbonImageCollectionLarge.Images.SetKeyName(19, "new_query.png");
     this.ribbonImageCollectionLarge.Images.SetKeyName(20, "open1.png");
     this.ribbonImageCollectionLarge.Images.SetKeyName(21, "Ribbon_Close_32x32.png");
     this.ribbonImageCollectionLarge.Images.SetKeyName(22, "script_save.png");
     this.ribbonImageCollectionLarge.Images.SetKeyName(23, "delete_query.png");
     this.ribbonImageCollectionLarge.Images.SetKeyName(24, "execute result.png");
     this.ribbonImageCollectionLarge.Images.SetKeyName(25, "stop execute.png");
     this.ribbonImageCollectionLarge.Images.SetKeyName(26, "discrete.png");
     this.ribbonImageCollectionLarge.Images.SetKeyName(27, "trapozium.png");
     this.ribbonImageCollectionLarge.Images.SetKeyName(28, "list_nested-32.png");
     this.ribbonImageCollectionLarge.Images.SetKeyName(29, "list-32.png");
     this.ribbonImageCollectionLarge.Images.SetKeyName(30, "flow_chart-32.png");
     this.ribbonImageCollectionLarge.Images.SetKeyName(31, "Flow_block.png");
     this.ribbonImageCollectionLarge.Images.SetKeyName(32, "flow_chart-32 (1).png");
     this.ribbonImageCollectionLarge.Images.SetKeyName(33, "Save_Data.png");
     this.ribbonImageCollectionLarge.Images.SetKeyName(34, "script_record-32.png");
     this.ribbonImageCollectionLarge.Images.SetKeyName(35, "curved_arrow-32.png");
     //
     // homeRibbonPage
     //
     this.homeRibbonPage.Groups.AddRange(new DevExpress.XtraBars.Ribbon.RibbonPageGroup[] {
     this.fileRibbonPageGroup,
     this.connectionRibbonPageGroup,
     this.skinsRibbonPageGroup,
     this.exitRibbonPageGroup});
     this.homeRibbonPage.Name = "homeRibbonPage";
     this.homeRibbonPage.Text = "Home";
     //
     // fileRibbonPageGroup
     //
     this.fileRibbonPageGroup.ItemLinks.Add(this.iNewDatabase);
     this.fileRibbonPageGroup.ItemLinks.Add(this.iOpenExistingDatabase);
     this.fileRibbonPageGroup.ItemLinks.Add(this.iSave);
     this.fileRibbonPageGroup.ItemLinks.Add(this.iSaveAs);
     this.fileRibbonPageGroup.ItemLinks.Add(this.iCloseDatabase);
     this.fileRibbonPageGroup.Name = "fileRibbonPageGroup";
     this.fileRibbonPageGroup.Text = "Database";
     //
     // connectionRibbonPageGroup
     //
     this.connectionRibbonPageGroup.ItemLinks.Add(this.iRefreshDatabase);
     this.connectionRibbonPageGroup.ItemLinks.Add(this.iConnectDatabase);
     this.connectionRibbonPageGroup.Name = "connectionRibbonPageGroup";
     this.connectionRibbonPageGroup.Text = "Connection";
     //
     // skinsRibbonPageGroup
     //
     this.skinsRibbonPageGroup.ItemLinks.Add(this.rgbiSkins);
     this.skinsRibbonPageGroup.Name = "skinsRibbonPageGroup";
     this.skinsRibbonPageGroup.ShowCaptionButton = false;
     this.skinsRibbonPageGroup.Text = "Skins";
     //
     // exitRibbonPageGroup
     //
     this.exitRibbonPageGroup.ItemLinks.Add(this.iExit, true);
     this.exitRibbonPageGroup.Name = "exitRibbonPageGroup";
     this.exitRibbonPageGroup.Text = "Exit";
     //
     // schemeRibbonPage
     //
     this.schemeRibbonPage.Groups.AddRange(new DevExpress.XtraBars.Ribbon.RibbonPageGroup[] {
     this.tableRibbonPageGroup,
     this.exitPageGroup});
     this.schemeRibbonPage.Name = "schemeRibbonPage";
     this.schemeRibbonPage.Text = "Scheme";
     //
     // tableRibbonPageGroup
     //
     this.tableRibbonPageGroup.ItemLinks.Add(this.iNewScheme);
     this.tableRibbonPageGroup.ItemLinks.Add(this.iOpenScheme);
     this.tableRibbonPageGroup.ItemLinks.Add(this.iSaveScheme);
     this.tableRibbonPageGroup.ItemLinks.Add(this.iDeleteScheme);
     this.tableRibbonPageGroup.ItemLinks.Add(this.iCloseCurrentScheme);
     this.tableRibbonPageGroup.Name = "tableRibbonPageGroup";
     this.tableRibbonPageGroup.Text = "Tables of Database";
     //
     // exitPageGroup
     //
     this.exitPageGroup.ItemLinks.Add(this.iExit);
     this.exitPageGroup.Name = "exitPageGroup";
     this.exitPageGroup.Text = "Exit";
     //
     // relationRibbonPage
     //
     this.relationRibbonPage.Groups.AddRange(new DevExpress.XtraBars.Ribbon.RibbonPageGroup[] {
     this.relationshipRibbonPageGroup,
     this.ribbonPageGroup2});
     this.relationRibbonPage.Name = "relationRibbonPage";
     this.relationRibbonPage.Text = "Relation";
     //
     // relationshipRibbonPageGroup
     //
     this.relationshipRibbonPageGroup.ItemLinks.Add(this.iNewRelation);
     this.relationshipRibbonPageGroup.ItemLinks.Add(this.iOpenRelation);
     this.relationshipRibbonPageGroup.ItemLinks.Add(this.iSaveRelation);
     this.relationshipRibbonPageGroup.ItemLinks.Add(this.iDeleteRelation);
     this.relationshipRibbonPageGroup.ItemLinks.Add(this.iCloseCurrentRelation);
     this.relationshipRibbonPageGroup.Name = "relationshipRibbonPageGroup";
     this.relationshipRibbonPageGroup.Text = "ribbonPageGroup2";
     //
     // ribbonPageGroup2
     //
     this.ribbonPageGroup2.ItemLinks.Add(this.iExit);
     this.ribbonPageGroup2.Name = "ribbonPageGroup2";
     this.ribbonPageGroup2.Text = "Exit";
     //
     // queryRibbonPage
     //
     this.queryRibbonPage.Groups.AddRange(new DevExpress.XtraBars.Ribbon.RibbonPageGroup[] {
     this.QueryRibbonPageGroup,
     this.commandRibbonPageGroup,
     this.ribbonPageGroup3});
     this.queryRibbonPage.Name = "queryRibbonPage";
     this.queryRibbonPage.Text = "Query";
     //
     // QueryRibbonPageGroup
     //
     this.QueryRibbonPageGroup.ItemLinks.Add(this.iNewQuery);
     this.QueryRibbonPageGroup.ItemLinks.Add(this.iOpenQuery);
     this.QueryRibbonPageGroup.ItemLinks.Add(this.iSaveQuery);
     this.QueryRibbonPageGroup.ItemLinks.Add(this.iDeleteQuery);
     this.QueryRibbonPageGroup.ItemLinks.Add(this.iCloseCurrentQuery);
     this.QueryRibbonPageGroup.Name = "QueryRibbonPageGroup";
     this.QueryRibbonPageGroup.Text = "Query";
     //
     // commandRibbonPageGroup
     //
     this.commandRibbonPageGroup.ItemLinks.Add(this.iExecuteQuery);
     this.commandRibbonPageGroup.ItemLinks.Add(this.iStopExecute);
     this.commandRibbonPageGroup.ItemLinks.Add(this.iOperator);
     this.commandRibbonPageGroup.Name = "commandRibbonPageGroup";
     this.commandRibbonPageGroup.Text = "Command";
     //
     // ribbonPageGroup3
     //
     this.ribbonPageGroup3.ItemLinks.Add(this.iExit);
     this.ribbonPageGroup3.Name = "ribbonPageGroup3";
     this.ribbonPageGroup3.Text = "Exit";
     //
     // fuzzySetRibbonPage
     //
     this.fuzzySetRibbonPage.Groups.AddRange(new DevExpress.XtraBars.Ribbon.RibbonPageGroup[] {
     this.descreteFuzzySetRibbonPageGroup,
     this.continuousFuzzySetRibbonPageGroup,
     this.ribbonPageGroupGetMemberships,
     this.ribbonPageGroup6});
     this.fuzzySetRibbonPage.Name = "fuzzySetRibbonPage";
     this.fuzzySetRibbonPage.Text = "Fuzzy Set";
     //
     // descreteFuzzySetRibbonPageGroup
     //
     this.descreteFuzzySetRibbonPageGroup.ItemLinks.Add(this.iAddDescrete);
     this.descreteFuzzySetRibbonPageGroup.ItemLinks.Add(this.iGetList);
     this.descreteFuzzySetRibbonPageGroup.Name = "descreteFuzzySetRibbonPageGroup";
     this.descreteFuzzySetRibbonPageGroup.Text = "Descrete Fuzzy Set";
     //
     // continuousFuzzySetRibbonPageGroup
     //
     this.continuousFuzzySetRibbonPageGroup.ItemLinks.Add(this.barButtonItem11);
     this.continuousFuzzySetRibbonPageGroup.ItemLinks.Add(this.iListContinuous);
     this.continuousFuzzySetRibbonPageGroup.Name = "continuousFuzzySetRibbonPageGroup";
     this.continuousFuzzySetRibbonPageGroup.Text = "Continuous Fuzzy Set";
     //
     // ribbonPageGroupGetMemberships
     //
     this.ribbonPageGroupGetMemberships.ItemLinks.Add(this.iGetMemberships);
     this.ribbonPageGroupGetMemberships.Name = "ribbonPageGroupGetMemberships";
     this.ribbonPageGroupGetMemberships.Text = "Get Memberships";
     //
     // ribbonPageGroup6
     //
     this.ribbonPageGroup6.ItemLinks.Add(this.iExit);
     this.ribbonPageGroup6.Name = "ribbonPageGroup6";
     this.ribbonPageGroup6.Text = "Exit";
     //
     // helpRibbonPage
     //
     this.helpRibbonPage.Groups.AddRange(new DevExpress.XtraBars.Ribbon.RibbonPageGroup[] {
     this.helpRibbonPageGroup,
     this.ribbonPageGroup4});
     this.helpRibbonPage.Name = "helpRibbonPage";
     this.helpRibbonPage.Text = "Help";
     //
     // helpRibbonPageGroup
     //
     this.helpRibbonPageGroup.ItemLinks.Add(this.iHelp);
     this.helpRibbonPageGroup.Name = "helpRibbonPageGroup";
     this.helpRibbonPageGroup.Text = "Help";
     //
     // ribbonPageGroup4
     //
     this.ribbonPageGroup4.ItemLinks.Add(this.iExit);
     this.ribbonPageGroup4.Name = "ribbonPageGroup4";
     this.ribbonPageGroup4.Text = "Exit";
     //
     // ribbonPageAbout
     //
     this.ribbonPageAbout.Groups.AddRange(new DevExpress.XtraBars.Ribbon.RibbonPageGroup[] {
     this.About,
     this.ribbonPageGroup5});
     this.ribbonPageAbout.Name = "ribbonPageAbout";
     this.ribbonPageAbout.Text = "About";
     //
     // About
     //
     this.About.ItemLinks.Add(this.barButtonItem13);
     this.About.Name = "About";
     this.About.Text = "About Us";
     //
     // ribbonPageGroup5
     //
     this.ribbonPageGroup5.ItemLinks.Add(this.iExit);
     this.ribbonPageGroup5.Name = "ribbonPageGroup5";
     this.ribbonPageGroup5.Text = "Exit";
     //
     // ribbonStatusBar
     //
     this.ribbonStatusBar.ItemLinks.Add(this.siStatus);
     this.ribbonStatusBar.ItemLinks.Add(this.siInfo);
     this.ribbonStatusBar.Location = new System.Drawing.Point(0, 524);
     this.ribbonStatusBar.Name = "ribbonStatusBar";
     this.ribbonStatusBar.Ribbon = this.ribbonControl;
     this.ribbonStatusBar.Size = new System.Drawing.Size(867, 27);
     //
     // btn_Design_Home
     //
     this.btn_Design_Home.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
     this.btn_Design_Home.Image = ((System.Drawing.Image)(resources.GetObject("btn_Design_Home.Image")));
     this.btn_Design_Home.ImageScaling = System.Windows.Forms.ToolStripItemImageScaling.None;
     this.btn_Design_Home.ImageTransparentColor = System.Drawing.Color.Magenta;
     this.btn_Design_Home.Name = "btn_Design_Home";
     this.btn_Design_Home.Size = new System.Drawing.Size(23, 23);
     this.btn_Design_Home.Text = "toolStripButton1";
     this.btn_Design_Home.ToolTipText = "Get Home";
     this.btn_Design_Home.Click += new System.EventHandler(this.btn_Design_Home_Click);
     //
     // btn_Design_Pre
     //
     this.btn_Design_Pre.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
     this.btn_Design_Pre.Image = ((System.Drawing.Image)(resources.GetObject("btn_Design_Pre.Image")));
     this.btn_Design_Pre.ImageScaling = System.Windows.Forms.ToolStripItemImageScaling.None;
     this.btn_Design_Pre.ImageTransparentColor = System.Drawing.Color.Magenta;
     this.btn_Design_Pre.Name = "btn_Design_Pre";
     this.btn_Design_Pre.Size = new System.Drawing.Size(23, 23);
     this.btn_Design_Pre.Text = "toolStripButton2";
     this.btn_Design_Pre.ToolTipText = "Previous Row";
     this.btn_Design_Pre.Click += new System.EventHandler(this.btn_Design_Pre_Click);
     //
     // toolStripSeparator5
     //
     this.toolStripSeparator5.Name = "toolStripSeparator5";
     this.toolStripSeparator5.Size = new System.Drawing.Size(6, 26);
     //
     // lblDesignRowNumberIndicator
     //
     this.lblDesignRowNumberIndicator.Name = "lblDesignRowNumberIndicator";
     this.lblDesignRowNumberIndicator.Size = new System.Drawing.Size(29, 23);
     this.lblDesignRowNumberIndicator.Text = "0 / 0";
     this.lblDesignRowNumberIndicator.ToolTipText = "Row Number";
     //
     // toolStripSeparator6
     //
     this.toolStripSeparator6.Name = "toolStripSeparator6";
     this.toolStripSeparator6.Size = new System.Drawing.Size(6, 26);
     //
     // btn_Design_Next
     //
     this.btn_Design_Next.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
     this.btn_Design_Next.Image = ((System.Drawing.Image)(resources.GetObject("btn_Design_Next.Image")));
     this.btn_Design_Next.ImageScaling = System.Windows.Forms.ToolStripItemImageScaling.None;
     this.btn_Design_Next.ImageTransparentColor = System.Drawing.Color.Magenta;
     this.btn_Design_Next.Name = "btn_Design_Next";
     this.btn_Design_Next.Size = new System.Drawing.Size(23, 23);
     this.btn_Design_Next.Text = "toolStripButton3";
     this.btn_Design_Next.ToolTipText = "Next Row";
     this.btn_Design_Next.Click += new System.EventHandler(this.btn_Design_Next_Click);
     //
     // btn_Design_End
     //
     this.btn_Design_End.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
     this.btn_Design_End.Image = ((System.Drawing.Image)(resources.GetObject("btn_Design_End.Image")));
     this.btn_Design_End.ImageScaling = System.Windows.Forms.ToolStripItemImageScaling.None;
     this.btn_Design_End.ImageTransparentColor = System.Drawing.Color.Magenta;
     this.btn_Design_End.Name = "btn_Design_End";
     this.btn_Design_End.Size = new System.Drawing.Size(23, 23);
     this.btn_Design_End.Text = "toolStripButton4";
     this.btn_Design_End.ToolTipText = "Reach End";
     this.btn_Design_End.Click += new System.EventHandler(this.btn_Design_End_Click);
     //
     // toolStripSeparator18
     //
     this.toolStripSeparator18.Name = "toolStripSeparator18";
     this.toolStripSeparator18.Size = new System.Drawing.Size(6, 26);
     //
     // Btn_Design_DeleteRow
     //
     this.Btn_Design_DeleteRow.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
     this.Btn_Design_DeleteRow.Image = ((System.Drawing.Image)(resources.GetObject("Btn_Design_DeleteRow.Image")));
     this.Btn_Design_DeleteRow.ImageScaling = System.Windows.Forms.ToolStripItemImageScaling.None;
     this.Btn_Design_DeleteRow.ImageTransparentColor = System.Drawing.Color.Magenta;
     this.Btn_Design_DeleteRow.Name = "Btn_Design_DeleteRow";
     this.Btn_Design_DeleteRow.Size = new System.Drawing.Size(23, 23);
     this.Btn_Design_DeleteRow.Text = "Delete This Row";
     this.Btn_Design_DeleteRow.Click += new System.EventHandler(this.Btn_Design_DeleteRow_Click);
     //
     // Btn_Design_ClearData
     //
     this.Btn_Design_ClearData.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
     this.Btn_Design_ClearData.Image = ((System.Drawing.Image)(resources.GetObject("Btn_Design_ClearData.Image")));
     this.Btn_Design_ClearData.ImageTransparentColor = System.Drawing.Color.Magenta;
     this.Btn_Design_ClearData.Name = "Btn_Design_ClearData";
     this.Btn_Design_ClearData.Size = new System.Drawing.Size(23, 23);
     this.Btn_Design_ClearData.Text = "Reset Scheme";
     this.Btn_Design_ClearData.Click += new System.EventHandler(this.Btn_Design_ClearData_Click);
     //
     // Btn_Design_UpdateData
     //
     this.Btn_Design_UpdateData.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
     this.Btn_Design_UpdateData.Image = ((System.Drawing.Image)(resources.GetObject("Btn_Design_UpdateData.Image")));
     this.Btn_Design_UpdateData.ImageTransparentColor = System.Drawing.Color.Magenta;
     this.Btn_Design_UpdateData.Name = "Btn_Design_UpdateData";
     this.Btn_Design_UpdateData.Size = new System.Drawing.Size(23, 23);
     this.Btn_Design_UpdateData.Text = "Save Scheme";
     this.Btn_Design_UpdateData.ToolTipText = "Save Scheme";
     this.Btn_Design_UpdateData.Click += new System.EventHandler(this.Btn_Design_UpdateData_Click);
     //
     // navbarImageListLarge
     //
     this.navbarImageListLarge.ImageStream = ((System.Windows.Forms.ImageListStreamer)(resources.GetObject("navbarImageListLarge.ImageStream")));
     this.navbarImageListLarge.TransparentColor = System.Drawing.Color.Transparent;
     this.navbarImageListLarge.Images.SetKeyName(0, "Mail_16x16.png");
     this.navbarImageListLarge.Images.SetKeyName(1, "Organizer_16x16.png");
     //
     // navbarImageList
     //
     this.navbarImageList.ImageStream = ((System.Windows.Forms.ImageListStreamer)(resources.GetObject("navbarImageList.ImageStream")));
     this.navbarImageList.TransparentColor = System.Drawing.Color.Transparent;
     this.navbarImageList.Images.SetKeyName(0, "Inbox_16x16.png");
     this.navbarImageList.Images.SetKeyName(1, "Outbox_16x16.png");
     this.navbarImageList.Images.SetKeyName(2, "Drafts_16x16.png");
     this.navbarImageList.Images.SetKeyName(3, "Trash_16x16.png");
     this.navbarImageList.Images.SetKeyName(4, "Calendar_16x16.png");
     this.navbarImageList.Images.SetKeyName(5, "Tasks_16x16.png");
     //
     // ribbonPageGroup1
     //
     this.ribbonPageGroup1.Name = "ribbonPageGroup1";
     this.ribbonPageGroup1.Text = "Exit";
     //
     // barButtonItem1
     //
     this.barButtonItem1.Caption = "Exit";
     this.barButtonItem1.Description = "Closes this program after prompting you to save unsaved data.";
     this.barButtonItem1.Hint = "Closes this program after prompting you to save unsaved data";
     this.barButtonItem1.Id = 20;
     this.barButtonItem1.ImageIndex = 6;
     this.barButtonItem1.LargeImageIndex = 2;
     this.barButtonItem1.Name = "barButtonItem1";
     //
     // treeListImageCollection
     //
     this.treeListImageCollection.ImageStream = ((System.Windows.Forms.ImageListStreamer)(resources.GetObject("treeListImageCollection.ImageStream")));
     this.treeListImageCollection.TransparentColor = System.Drawing.Color.Transparent;
     this.treeListImageCollection.Images.SetKeyName(0, "small_database.png");
     this.treeListImageCollection.Images.SetKeyName(1, "Ribbon_Open_16x16.png");
     this.treeListImageCollection.Images.SetKeyName(2, "close_folder.png");
     this.treeListImageCollection.Images.SetKeyName(3, "table_small.png");
     this.treeListImageCollection.Images.SetKeyName(4, "small_query.png");
     //
     // ContextMenu_Database
     //
     this.ContextMenu_Database.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
     this.CTMenuDB_Rename,
     this.CTMenuDB_CloseDB});
     this.ContextMenu_Database.Name = "contextMenuStrip";
     this.ContextMenu_Database.RenderMode = System.Windows.Forms.ToolStripRenderMode.Professional;
     this.ContextMenu_Database.Size = new System.Drawing.Size(169, 48);
     this.ContextMenu_Database.Text = "Database Properties";
     //
     // CTMenuDB_Rename
     //
     this.CTMenuDB_Rename.Name = "CTMenuDB_Rename";
     this.CTMenuDB_Rename.Size = new System.Drawing.Size(168, 22);
     this.CTMenuDB_Rename.Text = "Re&name Database";
     this.CTMenuDB_Rename.Click += new System.EventHandler(this.CTMenuDB_Rename_Click);
     //
     // CTMenuDB_CloseDB
     //
     this.CTMenuDB_CloseDB.Name = "CTMenuDB_CloseDB";
     this.CTMenuDB_CloseDB.Size = new System.Drawing.Size(168, 22);
     this.CTMenuDB_CloseDB.Text = "&Close Database";
     this.CTMenuDB_CloseDB.Click += new System.EventHandler(this.CTMenuDB_CloseDB_Click);
     //
     // ContextMenu_Relation
     //
     this.ContextMenu_Relation.Font = new System.Drawing.Font("Lucida Sans Unicode", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.ContextMenu_Relation.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
     this.CTMenuRelation_NewRelation,
     this.CTMenuRelation_DeleteRelations});
     this.ContextMenu_Relation.Name = "ContextMenu_Table";
     this.ContextMenu_Relation.Size = new System.Drawing.Size(200, 48);
     //
     // CTMenuRelation_NewRelation
     //
     this.CTMenuRelation_NewRelation.Name = "CTMenuRelation_NewRelation";
     this.CTMenuRelation_NewRelation.Size = new System.Drawing.Size(199, 22);
     this.CTMenuRelation_NewRelation.Text = "&New Relation";
     this.CTMenuRelation_NewRelation.ToolTipText = "Tạo quan hệ mới";
     this.CTMenuRelation_NewRelation.Click += new System.EventHandler(this.CTMenuRelation_NewRelation_Click);
     //
     // CTMenuRelation_DeleteRelations
     //
     this.CTMenuRelation_DeleteRelations.Name = "CTMenuRelation_DeleteRelations";
     this.CTMenuRelation_DeleteRelations.Size = new System.Drawing.Size(199, 22);
     this.CTMenuRelation_DeleteRelations.Text = "&Delete All Relations";
     this.CTMenuRelation_DeleteRelations.ToolTipText = "Xóa toàn bộ các quan hệ";
     this.CTMenuRelation_DeleteRelations.Click += new System.EventHandler(this.CTMenuRelation_DeleteRelations_Click);
     //
     // ContextMenu_RelationNode
     //
     this.ContextMenu_RelationNode.Font = new System.Drawing.Font("Lucida Sans Unicode", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.ContextMenu_RelationNode.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
     this.CTMenuRelNode_OpenRelation,
     this.CTMenuRelNode_DeleteRelation,
     this.CTMenuRelNode_RenameRelation});
     this.ContextMenu_RelationNode.Name = "ContextMenu_Table";
     this.ContextMenu_RelationNode.Size = new System.Drawing.Size(181, 70);
     //
     // CTMenuRelNode_OpenRelation
     //
     this.CTMenuRelNode_OpenRelation.Name = "CTMenuRelNode_OpenRelation";
     this.CTMenuRelNode_OpenRelation.Size = new System.Drawing.Size(180, 22);
     this.CTMenuRelNode_OpenRelation.Text = "&Open Relation";
     this.CTMenuRelNode_OpenRelation.ToolTipText = "Tạo quan hệ mới";
     this.CTMenuRelNode_OpenRelation.Click += new System.EventHandler(this.CTMenuRelNode_OpenRelation_Click);
     //
     // CTMenuRelNode_DeleteRelation
     //
     this.CTMenuRelNode_DeleteRelation.Name = "CTMenuRelNode_DeleteRelation";
     this.CTMenuRelNode_DeleteRelation.Size = new System.Drawing.Size(180, 22);
     this.CTMenuRelNode_DeleteRelation.Text = "&Delete Relation";
     this.CTMenuRelNode_DeleteRelation.Click += new System.EventHandler(this.CTMenuRelNode_DeleteRelation_Click);
     //
     // CTMenuRelNode_RenameRelation
     //
     this.CTMenuRelNode_RenameRelation.Name = "CTMenuRelNode_RenameRelation";
     this.CTMenuRelNode_RenameRelation.Size = new System.Drawing.Size(180, 22);
     this.CTMenuRelNode_RenameRelation.Text = "&Rename Relation";
     this.CTMenuRelNode_RenameRelation.Click += new System.EventHandler(this.CTMenuRelNode_RenameRelation_Click);
     //
     // ContextMenu_Schema
     //
     this.ContextMenu_Schema.Font = new System.Drawing.Font("Lucida Sans Unicode", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.ContextMenu_Schema.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
     this.CTMenuSchema_NewSchema,
     this.deleteAllSchemesToolStripMenuItem});
     this.ContextMenu_Schema.Name = "ContextMenu_Schema";
     this.ContextMenu_Schema.Size = new System.Drawing.Size(197, 48);
     //
     // CTMenuSchema_NewSchema
     //
     this.CTMenuSchema_NewSchema.Name = "CTMenuSchema_NewSchema";
     this.CTMenuSchema_NewSchema.Size = new System.Drawing.Size(196, 22);
     this.CTMenuSchema_NewSchema.Text = "&New Scheme";
     this.CTMenuSchema_NewSchema.Click += new System.EventHandler(this.CTMenuSchema_NewSchema_Click);
     //
     // deleteAllSchemesToolStripMenuItem
     //
     this.deleteAllSchemesToolStripMenuItem.Name = "deleteAllSchemesToolStripMenuItem";
     this.deleteAllSchemesToolStripMenuItem.Size = new System.Drawing.Size(196, 22);
     this.deleteAllSchemesToolStripMenuItem.Text = "Delete All Schemes";
     this.deleteAllSchemesToolStripMenuItem.Click += new System.EventHandler(this.deleteAllSchemesToolStripMenuItem_Click);
     //
     // ContextMenu_SchemaNode
     //
     this.ContextMenu_SchemaNode.Font = new System.Drawing.Font("Lucida Sans Unicode", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.ContextMenu_SchemaNode.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
     this.CTMenuSchNode_OpenSchema,
     this.CTMenuSchNode_DeleteSchema,
     this.renameSchemeToolStripMenuItem});
     this.ContextMenu_SchemaNode.Name = "ContextMenu_Table";
     this.ContextMenu_SchemaNode.Size = new System.Drawing.Size(178, 70);
     //
     // CTMenuSchNode_OpenSchema
     //
     this.CTMenuSchNode_OpenSchema.Name = "CTMenuSchNode_OpenSchema";
     this.CTMenuSchNode_OpenSchema.Size = new System.Drawing.Size(177, 22);
     this.CTMenuSchNode_OpenSchema.Text = "&Open Scheme";
     this.CTMenuSchNode_OpenSchema.ToolTipText = "Tạo quan hệ mới";
     this.CTMenuSchNode_OpenSchema.Click += new System.EventHandler(this.CTMenuSchNode_OpenSchema_Click);
     //
     // CTMenuSchNode_DeleteSchema
     //
     this.CTMenuSchNode_DeleteSchema.Name = "CTMenuSchNode_DeleteSchema";
     this.CTMenuSchNode_DeleteSchema.Size = new System.Drawing.Size(177, 22);
     this.CTMenuSchNode_DeleteSchema.Text = "&Delete Scheme";
     this.CTMenuSchNode_DeleteSchema.Click += new System.EventHandler(this.CTMenuSchNode_DeleteSchema_Click);
     //
     // renameSchemeToolStripMenuItem
     //
     this.renameSchemeToolStripMenuItem.Name = "renameSchemeToolStripMenuItem";
     this.renameSchemeToolStripMenuItem.Size = new System.Drawing.Size(177, 22);
     this.renameSchemeToolStripMenuItem.Text = "Rename Scheme";
     this.renameSchemeToolStripMenuItem.Click += new System.EventHandler(this.renameSchemeToolStripMenuItem_Click);
     //
     // ContextMenu_Query
     //
     this.ContextMenu_Query.Font = new System.Drawing.Font("Lucida Sans Unicode", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.ContextMenu_Query.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
     this.CTMenuQuery_NewQuery,
     this.CTMenuQuery_DeleteQueries});
     this.ContextMenu_Query.Name = "ContextMenu_Query";
     this.ContextMenu_Query.Size = new System.Drawing.Size(190, 48);
     //
     // CTMenuQuery_NewQuery
     //
     this.CTMenuQuery_NewQuery.Name = "CTMenuQuery_NewQuery";
     this.CTMenuQuery_NewQuery.Size = new System.Drawing.Size(189, 22);
     this.CTMenuQuery_NewQuery.Text = "&New Query";
     this.CTMenuQuery_NewQuery.Click += new System.EventHandler(this.CTMenuQuery_NewQuery_Click);
     //
     // CTMenuQuery_DeleteQueries
     //
     this.CTMenuQuery_DeleteQueries.Name = "CTMenuQuery_DeleteQueries";
     this.CTMenuQuery_DeleteQueries.Size = new System.Drawing.Size(189, 22);
     this.CTMenuQuery_DeleteQueries.Text = "&Delete All Queries";
     this.CTMenuQuery_DeleteQueries.Click += new System.EventHandler(this.CTMenuQuery_DeleteQueries_Click);
     //
     // ContextMenu_QueryNode
     //
     this.ContextMenu_QueryNode.Font = new System.Drawing.Font("Lucida Sans Unicode", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.ContextMenu_QueryNode.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
     this.CTMenuQueryNode_OpenQuery,
     this.CTMenuQuery_DeleteQuery,
     this.CTMenuQuery_RenameQuery,
     this.executeQueryToolStripMenuItem});
     this.ContextMenu_QueryNode.Name = "ContextMenu_Query";
     this.ContextMenu_QueryNode.Size = new System.Drawing.Size(167, 92);
     //
     // CTMenuQueryNode_OpenQuery
     //
     this.CTMenuQueryNode_OpenQuery.Name = "CTMenuQueryNode_OpenQuery";
     this.CTMenuQueryNode_OpenQuery.Size = new System.Drawing.Size(166, 22);
     this.CTMenuQueryNode_OpenQuery.Text = "&Open Query";
     this.CTMenuQueryNode_OpenQuery.Click += new System.EventHandler(this.CTMenuQueryNode_OpenQuery_Click);
     //
     // CTMenuQuery_DeleteQuery
     //
     this.CTMenuQuery_DeleteQuery.Name = "CTMenuQuery_DeleteQuery";
     this.CTMenuQuery_DeleteQuery.Size = new System.Drawing.Size(166, 22);
     this.CTMenuQuery_DeleteQuery.Text = "&Delete Query";
     this.CTMenuQuery_DeleteQuery.Click += new System.EventHandler(this.CTMenuQuery_DeleteQuery_Click);
     //
     // CTMenuQuery_RenameQuery
     //
     this.CTMenuQuery_RenameQuery.Name = "CTMenuQuery_RenameQuery";
     this.CTMenuQuery_RenameQuery.Size = new System.Drawing.Size(166, 22);
     this.CTMenuQuery_RenameQuery.Text = "&Rename Query";
     this.CTMenuQuery_RenameQuery.Click += new System.EventHandler(this.CTMenuQuery_RenameQuery_Click);
     //
     // executeQueryToolStripMenuItem
     //
     this.executeQueryToolStripMenuItem.Name = "executeQueryToolStripMenuItem";
     this.executeQueryToolStripMenuItem.Size = new System.Drawing.Size(166, 22);
     this.executeQueryToolStripMenuItem.Text = "Execute Query";
     this.executeQueryToolStripMenuItem.Click += new System.EventHandler(this.executeQueryToolStripMenuItem_Click);
     //
     // iAbout
     //
     this.iAbout.Caption = "About";
     this.iAbout.Description = "Displays general program information.";
     this.iAbout.Hint = "Displays general program information";
     this.iAbout.Id = 24;
     this.iAbout.ImageIndex = 8;
     this.iAbout.LargeImageIndex = 4;
     this.iAbout.Name = "iAbout";
     //
     // barButtonItem12
     //
     this.barButtonItem12.Caption = "Exit";
     this.barButtonItem12.Description = "Closes this program after prompting you to save unsaved data";
     this.barButtonItem12.Hint = "Closes this program after prompting you to save unsaved data";
     this.barButtonItem12.Id = 74;
     this.barButtonItem12.LargeImageIndex = 2;
     this.barButtonItem12.Name = "barButtonItem12";
     //
     // frmMain
     //
     this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
     this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
     this.ClientSize = new System.Drawing.Size(867, 551);
     this.Controls.Add(this.splitContainerControl);
     this.Controls.Add(this.ribbonControl);
     this.Controls.Add(this.popupControlContainer1);
     this.Controls.Add(this.popupControlContainer2);
     this.Controls.Add(this.ribbonStatusBar);
     this.Cursor = System.Windows.Forms.Cursors.Default;
     this.Icon = ((System.Drawing.Icon)(resources.GetObject("$this.Icon")));
     this.IsMdiContainer = true;
     this.Name = "frmMain";
     this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen;
     this.Text = "Fuzzy Relational Database System";
     this.FormClosing += new System.Windows.Forms.FormClosingEventHandler(this.frmMain_FormClosing);
     this.Load += new System.EventHandler(this.frmMain_Load);
     ((System.ComponentModel.ISupportInitialize)(this.splitContainerControl)).EndInit();
     this.splitContainerControl.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.xtraTabDatabase)).EndInit();
     this.xtraTabDatabase.ResumeLayout(false);
     this.tabScheme.ResumeLayout(false);
     this.tabScheme.PerformLayout();
     this.BindingNavigatorDesign.ResumeLayout(false);
     this.BindingNavigatorDesign.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(this.GridViewDesign)).EndInit();
     this.tabRelation.ResumeLayout(false);
     this.tabRelation.PerformLayout();
     this.BindingNavigatorData.ResumeLayout(false);
     this.BindingNavigatorData.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(this.GridViewData)).EndInit();
     this.tabQuery.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.xtraTabQueryResult)).EndInit();
     this.xtraTabQueryResult.ResumeLayout(false);
     this.xtraTabResult.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.GridViewResult)).EndInit();
     this.xtraTabMessage.ResumeLayout(false);
     this.xtraTabMessage.PerformLayout();
     this.tabFuzzy.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.chart1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.ribbonControl)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.appMenu)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.popupControlContainer2)).EndInit();
     this.popupControlContainer2.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.buttonEdit.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.popupControlContainer1)).EndInit();
     this.popupControlContainer1.ResumeLayout(false);
     this.popupControlContainer1.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(this.ribbonImageCollection)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.ribbonImageCollectionLarge)).EndInit();
     this.ContextMenu_Database.ResumeLayout(false);
     this.ContextMenu_Relation.ResumeLayout(false);
     this.ContextMenu_RelationNode.ResumeLayout(false);
     this.ContextMenu_Schema.ResumeLayout(false);
     this.ContextMenu_SchemaNode.ResumeLayout(false);
     this.ContextMenu_Query.ResumeLayout(false);
     this.ContextMenu_QueryNode.ResumeLayout(false);
     this.ResumeLayout(false);
 }
Example #33
0
        public static void PhanQuyenRibon(System.Windows.Forms.Form frm, NhanVien objnhanvien, DevExpress.XtraBars.Ribbon.RibbonControl ribbon)
        {
            if (objnhanvien.IsLock.Value)
            {
                return;
            }
            else
            {
                using (DatabaseDataContext db = new DatabaseDataContext())
                {
                    var objNhomNhanVien = db.pqNhomNhanViens.Where(p => p.MaNV == objnhanvien.ID).Select(p => p.GroupID);

                    var ModuleHasPermisson = db.pqAccessRights.Where(p => objNhomNhanVien.Contains(p.GroupID) & p.IsAccessRight == true).Select(p => p.pqModule);

                    var permissionOnModule = db.pqModule_FormControls.Where(p => p.pqModule == ModuleHasPermisson).Select(p => p.ControlName);

                    if (permissionOnModule.Count() <= 0 & frm.Name != "frmMain")
                    {
                        frm.Close();
                    }
                    else
                    {
                        var lstModuleHasPermisson = ModuleHasPermisson.ToList();
                        var ControlHasPermisson   = db.pqModule_FormControls.Where(p => lstModuleHasPermisson.Contains(p.pqModule)).Select(p => p.ControlName).ToList();

                        var nlstRibbobPage      = getAllRibbonPage(ribbon).Where(p => ControlHasPermisson.Contains(p.Name)).ToList();
                        var nlstRibbobPageGroup = getAllRibbonPageGroup(ribbon).Where(p => ControlHasPermisson.Contains(p.Name)).ToList();
                        var nlstBarButtonItem   = getAllBarButtonItem(ribbon).Where(p => ControlHasPermisson.Contains(p.Name)).ToList();

                        #region Invisble All
                        getAllRibbonPage(ribbon).ForEach(item =>
                        {
                            item.Visible = false;
                        });

                        getAllRibbonPageGroup(ribbon).ForEach(item =>
                        {
                            item.Visible = false;
                        });

                        getAllBarButtonItem(ribbon).ForEach(item =>
                        {
                            item.Enabled = false;
                        });

                        #endregion

                        foreach (DevExpress.XtraBars.BarButtonItem item in nlstBarButtonItem)
                        {
                            item.Enabled = true;
                        }
                        foreach (DevExpress.XtraBars.Ribbon.RibbonPage item in nlstRibbobPage)
                        {
                            item.Visible = true;
                        }
                        foreach (DevExpress.XtraBars.Ribbon.RibbonPageGroup item in nlstRibbobPageGroup)
                        {
                            item.Visible = true;
                        }
                    }
                }
            }
        }
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()
 {
     this.ribbon = new DevExpress.XtraBars.Ribbon.RibbonControl();
     this.barButtonItem1 = new DevExpress.XtraBars.BarButtonItem();
     this.ribbonGalleryBarItem1 = new DevExpress.XtraBars.RibbonGalleryBarItem();
     this.barButtonItem2 = new DevExpress.XtraBars.BarButtonItem();
     this.barButtonItem3 = new DevExpress.XtraBars.BarButtonItem();
     this.barButtonItem4 = new DevExpress.XtraBars.BarButtonItem();
     this.barButtonItem5 = new DevExpress.XtraBars.BarButtonItem();
     this.barButtonItem6 = new DevExpress.XtraBars.BarButtonItem();
     this.barButtonItem7 = new DevExpress.XtraBars.BarButtonItem();
     this.barButtonItem8 = new DevExpress.XtraBars.BarButtonItem();
     this.barButtonItem9 = new DevExpress.XtraBars.BarButtonItem();
     this.barButtonItem10 = new DevExpress.XtraBars.BarButtonItem();
     this.barButtonItem11 = new DevExpress.XtraBars.BarButtonItem();
     this.barButtonItem12 = new DevExpress.XtraBars.BarButtonItem();
     this.barButtonItem13 = new DevExpress.XtraBars.BarButtonItem();
     this.barButtonItem14 = new DevExpress.XtraBars.BarButtonItem();
     this.barButtonItem15 = new DevExpress.XtraBars.BarButtonItem();
     this.ribbonPage1 = new DevExpress.XtraBars.Ribbon.RibbonPage();
     this.ribbonPageGroup1 = new DevExpress.XtraBars.Ribbon.RibbonPageGroup();
     this.ribbonPageGroup2 = new DevExpress.XtraBars.Ribbon.RibbonPageGroup();
     this.ribbonPageGroup9 = new DevExpress.XtraBars.Ribbon.RibbonPageGroup();
     this.ribbonPageGroup11 = new DevExpress.XtraBars.Ribbon.RibbonPageGroup();
     this.ribbonPageGroup12 = new DevExpress.XtraBars.Ribbon.RibbonPageGroup();
     this.ribbonPage2 = new DevExpress.XtraBars.Ribbon.RibbonPage();
     this.ribbonPageGroup13 = new DevExpress.XtraBars.Ribbon.RibbonPageGroup();
     this.ribbonPageGroup4 = new DevExpress.XtraBars.Ribbon.RibbonPageGroup();
     this.ribbonPageGroup5 = new DevExpress.XtraBars.Ribbon.RibbonPageGroup();
     this.ribbonPageGroup6 = new DevExpress.XtraBars.Ribbon.RibbonPageGroup();
     this.ribbonPageGroup7 = new DevExpress.XtraBars.Ribbon.RibbonPageGroup();
     this.ribbonPageGroup10 = new DevExpress.XtraBars.Ribbon.RibbonPageGroup();
     this.ribbonPageGroup8 = new DevExpress.XtraBars.Ribbon.RibbonPageGroup();
     this.ribbonPageGroup3 = new DevExpress.XtraBars.Ribbon.RibbonPageGroup();
     this.ribbonPage4 = new DevExpress.XtraBars.Ribbon.RibbonPage();
     this.ribbonPage6 = new DevExpress.XtraBars.Ribbon.RibbonPage();
     this.ribbonPage7 = new DevExpress.XtraBars.Ribbon.RibbonPage();
     this.ribbonStatusBar = new DevExpress.XtraBars.Ribbon.RibbonStatusBar();
     this.ribbonPageGroup14 = new DevExpress.XtraBars.Ribbon.RibbonPageGroup();
     this.barButtonItem16 = new DevExpress.XtraBars.BarButtonItem();
     ((System.ComponentModel.ISupportInitialize)(this.ribbon)).BeginInit();
     this.SuspendLayout();
     //
     // ribbon
     //
     this.ribbon.ApplicationButtonText = null;
     this.ribbon.ApplicationIcon = global::SmartCity.Properties.Resources.light;
     this.ribbon.ExpandCollapseItem.Id = 0;
     this.ribbon.ExpandCollapseItem.Name = "";
     this.ribbon.Items.AddRange(new DevExpress.XtraBars.BarItem[] {
     this.ribbon.ExpandCollapseItem,
     this.barButtonItem1,
     this.ribbonGalleryBarItem1,
     this.barButtonItem2,
     this.barButtonItem3,
     this.barButtonItem4,
     this.barButtonItem5,
     this.barButtonItem6,
     this.barButtonItem7,
     this.barButtonItem8,
     this.barButtonItem9,
     this.barButtonItem10,
     this.barButtonItem11,
     this.barButtonItem12,
     this.barButtonItem13,
     this.barButtonItem14,
     this.barButtonItem15,
     this.barButtonItem16});
     this.ribbon.Location = new System.Drawing.Point(0, 0);
     this.ribbon.MaxItemId = 26;
     this.ribbon.Name = "ribbon";
     this.ribbon.Pages.AddRange(new DevExpress.XtraBars.Ribbon.RibbonPage[] {
     this.ribbonPage1,
     this.ribbonPage2,
     this.ribbonPage4,
     this.ribbonPage6,
     this.ribbonPage7});
     this.ribbon.Size = new System.Drawing.Size(774, 144);
     this.ribbon.StatusBar = this.ribbonStatusBar;
     //
     // barButtonItem1
     //
     this.barButtonItem1.Caption = "地图控制";
     this.barButtonItem1.Id = 1;
     this.barButtonItem1.LargeGlyph = global::SmartCity.Properties.Resources.light;
     this.barButtonItem1.Name = "barButtonItem1";
     this.barButtonItem1.ItemClick += new DevExpress.XtraBars.ItemClickEventHandler(this.barButtonItem1_ItemClick);
     //
     // ribbonGalleryBarItem1
     //
     this.ribbonGalleryBarItem1.Caption = "ribbonGalleryBarItem1";
     this.ribbonGalleryBarItem1.Id = 2;
     this.ribbonGalleryBarItem1.Name = "ribbonGalleryBarItem1";
     //
     // barButtonItem2
     //
     this.barButtonItem2.Caption = "场景管理";
     this.barButtonItem2.Id = 9;
     this.barButtonItem2.LargeGlyph = global::SmartCity.Properties.Resources.light;
     this.barButtonItem2.Name = "barButtonItem2";
     this.barButtonItem2.ItemClick += new DevExpress.XtraBars.ItemClickEventHandler(this.barButtonItem2_ItemClick);
     //
     // barButtonItem3
     //
     this.barButtonItem3.Caption = "照明属性";
     this.barButtonItem3.Id = 10;
     this.barButtonItem3.LargeGlyph = global::SmartCity.Properties.Resources.light;
     this.barButtonItem3.Name = "barButtonItem3";
     this.barButtonItem3.PaintStyle = DevExpress.XtraBars.BarItemPaintStyle.CaptionGlyph;
     //
     // barButtonItem4
     //
     this.barButtonItem4.Caption = "实时控制";
     this.barButtonItem4.Id = 11;
     this.barButtonItem4.LargeGlyph = global::SmartCity.Properties.Resources.light;
     this.barButtonItem4.Name = "barButtonItem4";
     //
     // barButtonItem5
     //
     this.barButtonItem5.Caption = "路灯产品";
     this.barButtonItem5.Id = 12;
     this.barButtonItem5.Name = "barButtonItem5";
     this.barButtonItem5.ItemClick += new DevExpress.XtraBars.ItemClickEventHandler(this.barButtonItem5_ItemClick);
     //
     // barButtonItem6
     //
     this.barButtonItem6.Caption = "区域维护";
     this.barButtonItem6.Id = 13;
     this.barButtonItem6.Name = "barButtonItem6";
     this.barButtonItem6.ItemClick += new DevExpress.XtraBars.ItemClickEventHandler(this.barButtonItem6_ItemClick);
     //
     // barButtonItem7
     //
     this.barButtonItem7.Caption = "控制器维护";
     this.barButtonItem7.Id = 14;
     this.barButtonItem7.Name = "barButtonItem7";
     this.barButtonItem7.ItemClick += new DevExpress.XtraBars.ItemClickEventHandler(this.barButtonItem7_ItemClick);
     //
     // barButtonItem8
     //
     this.barButtonItem8.Caption = "路灯定义";
     this.barButtonItem8.Id = 15;
     this.barButtonItem8.Name = "barButtonItem8";
     this.barButtonItem8.ItemClick += new DevExpress.XtraBars.ItemClickEventHandler(this.barButtonItem8_ItemClick);
     //
     // barButtonItem9
     //
     this.barButtonItem9.Caption = "场景定义";
     this.barButtonItem9.Id = 16;
     this.barButtonItem9.Name = "barButtonItem9";
     //
     // barButtonItem10
     //
     this.barButtonItem10.Caption = "设备新建";
     this.barButtonItem10.Id = 17;
     this.barButtonItem10.LargeGlyph = global::SmartCity.Properties.Resources.light;
     this.barButtonItem10.Name = "barButtonItem10";
     //
     // barButtonItem11
     //
     this.barButtonItem11.Caption = "查看操作日志";
     this.barButtonItem11.Id = 18;
     this.barButtonItem11.LargeGlyph = global::SmartCity.Properties.Resources.light;
     this.barButtonItem11.Name = "barButtonItem11";
     //
     // barButtonItem12
     //
     this.barButtonItem12.Caption = "查看报警";
     this.barButtonItem12.Id = 19;
     this.barButtonItem12.LargeGlyph = global::SmartCity.Properties.Resources.light;
     this.barButtonItem12.Name = "barButtonItem12";
     //
     // barButtonItem13
     //
     this.barButtonItem13.Caption = "用户管理";
     this.barButtonItem13.Id = 20;
     this.barButtonItem13.Name = "barButtonItem13";
     //
     // barButtonItem14
     //
     this.barButtonItem14.Caption = "地图定义";
     this.barButtonItem14.Id = 21;
     this.barButtonItem14.Name = "barButtonItem14";
     this.barButtonItem14.ItemClick += new DevExpress.XtraBars.ItemClickEventHandler(this.barButtonItem14_ItemClick);
     //
     // barButtonItem15
     //
     this.barButtonItem15.Caption = "产品类型";
     this.barButtonItem15.Id = 22;
     this.barButtonItem15.Name = "barButtonItem15";
     this.barButtonItem15.ItemClick += new DevExpress.XtraBars.ItemClickEventHandler(this.barButtonItem15_ItemClick);
     //
     // ribbonPage1
     //
     this.ribbonPage1.Groups.AddRange(new DevExpress.XtraBars.Ribbon.RibbonPageGroup[] {
     this.ribbonPageGroup1,
     this.ribbonPageGroup2,
     this.ribbonPageGroup9,
     this.ribbonPageGroup11,
     this.ribbonPageGroup12});
     this.ribbonPage1.Name = "ribbonPage1";
     this.ribbonPage1.Text = "路灯控制";
     //
     // ribbonPageGroup1
     //
     this.ribbonPageGroup1.ItemLinks.Add(this.barButtonItem1);
     this.ribbonPageGroup1.Name = "ribbonPageGroup1";
     //
     // ribbonPageGroup2
     //
     this.ribbonPageGroup2.ItemLinks.Add(this.barButtonItem2);
     this.ribbonPageGroup2.Name = "ribbonPageGroup2";
     //
     // ribbonPageGroup9
     //
     this.ribbonPageGroup9.ItemLinks.Add(this.barButtonItem4);
     this.ribbonPageGroup9.Name = "ribbonPageGroup9";
     //
     // ribbonPageGroup11
     //
     this.ribbonPageGroup11.ItemLinks.Add(this.barButtonItem11);
     this.ribbonPageGroup11.Name = "ribbonPageGroup11";
     //
     // ribbonPageGroup12
     //
     this.ribbonPageGroup12.ItemLinks.Add(this.barButtonItem12);
     this.ribbonPageGroup12.Name = "ribbonPageGroup12";
     //
     // ribbonPage2
     //
     this.ribbonPage2.Groups.AddRange(new DevExpress.XtraBars.Ribbon.RibbonPageGroup[] {
     this.ribbonPageGroup13,
     this.ribbonPageGroup4,
     this.ribbonPageGroup5,
     this.ribbonPageGroup6,
     this.ribbonPageGroup7,
     this.ribbonPageGroup10,
     this.ribbonPageGroup8,
     this.ribbonPageGroup3,
     this.ribbonPageGroup14});
     this.ribbonPage2.Name = "ribbonPage2";
     this.ribbonPage2.Text = "基础数据";
     //
     // ribbonPageGroup13
     //
     this.ribbonPageGroup13.ItemLinks.Add(this.barButtonItem15);
     this.ribbonPageGroup13.Name = "ribbonPageGroup13";
     //
     // ribbonPageGroup4
     //
     this.ribbonPageGroup4.ItemLinks.Add(this.barButtonItem5);
     this.ribbonPageGroup4.Name = "ribbonPageGroup4";
     //
     // ribbonPageGroup5
     //
     this.ribbonPageGroup5.ItemLinks.Add(this.barButtonItem6);
     this.ribbonPageGroup5.Name = "ribbonPageGroup5";
     //
     // ribbonPageGroup6
     //
     this.ribbonPageGroup6.ItemLinks.Add(this.barButtonItem7);
     this.ribbonPageGroup6.Name = "ribbonPageGroup6";
     //
     // ribbonPageGroup7
     //
     this.ribbonPageGroup7.ItemLinks.Add(this.barButtonItem8);
     this.ribbonPageGroup7.Name = "ribbonPageGroup7";
     //
     // ribbonPageGroup10
     //
     this.ribbonPageGroup10.ItemLinks.Add(this.barButtonItem14);
     this.ribbonPageGroup10.Name = "ribbonPageGroup10";
     //
     // ribbonPageGroup8
     //
     this.ribbonPageGroup8.ItemLinks.Add(this.barButtonItem9);
     this.ribbonPageGroup8.Name = "ribbonPageGroup8";
     //
     // ribbonPageGroup3
     //
     this.ribbonPageGroup3.ItemLinks.Add(this.barButtonItem13);
     this.ribbonPageGroup3.Name = "ribbonPageGroup3";
     this.ribbonPageGroup3.Text = " ";
     //
     // ribbonPage4
     //
     this.ribbonPage4.Name = "ribbonPage4";
     this.ribbonPage4.Text = "报表";
     //
     // ribbonPage6
     //
     this.ribbonPage6.Name = "ribbonPage6";
     this.ribbonPage6.Text = "日志";
     //
     // ribbonPage7
     //
     this.ribbonPage7.Name = "ribbonPage7";
     this.ribbonPage7.Text = "帮助";
     //
     // ribbonStatusBar
     //
     this.ribbonStatusBar.Location = new System.Drawing.Point(0, 521);
     this.ribbonStatusBar.Name = "ribbonStatusBar";
     this.ribbonStatusBar.Ribbon = this.ribbon;
     this.ribbonStatusBar.Size = new System.Drawing.Size(774, 31);
     //
     // ribbonPageGroup14
     //
     this.ribbonPageGroup14.ItemLinks.Add(this.barButtonItem16);
     this.ribbonPageGroup14.Name = "ribbonPageGroup14";
     //
     // barButtonItem16
     //
     this.barButtonItem16.Caption = "配置GPS模块";
     this.barButtonItem16.Id = 25;
     this.barButtonItem16.Name = "barButtonItem16";
     this.barButtonItem16.ItemClick += new DevExpress.XtraBars.ItemClickEventHandler(this.barButtonItem16_ItemClick);
     //
     // MainForm
     //
     this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
     this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
     this.ClientSize = new System.Drawing.Size(774, 552);
     this.Controls.Add(this.ribbonStatusBar);
     this.Controls.Add(this.ribbon);
     this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedToolWindow;
     this.IsMdiContainer = true;
     this.Name = "MainForm";
     this.Ribbon = this.ribbon;
     this.StatusBar = this.ribbonStatusBar;
     this.Text = "智慧路灯";
     this.WindowState = System.Windows.Forms.FormWindowState.Maximized;
     this.Load += new System.EventHandler(this.MainForm_Load);
     ((System.ComponentModel.ISupportInitialize)(this.ribbon)).EndInit();
     this.ResumeLayout(false);
 }
Example #35
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.btnEdit = new DevExpress.XtraEditors.SimpleButton();
     this.btnAdd = new DevExpress.XtraEditors.SimpleButton();
     this.btnFind = new DevExpress.XtraEditors.SimpleButton();
     this.btnPreview = new DevExpress.XtraEditors.SimpleButton();
     this.btnPrint = new DevExpress.XtraEditors.SimpleButton();
     this.btnMessageAlert = new DevExpress.XtraEditors.SimpleButton();
     this.btnRelationShipMap = new DevExpress.XtraEditors.SimpleButton();
     this.btnQueryManager = new DevExpress.XtraEditors.SimpleButton();
     this.btnEmail = new DevExpress.XtraEditors.SimpleButton();
     this.btnFormSettings = new DevExpress.XtraEditors.SimpleButton();
     this.btnSorting = new DevExpress.XtraEditors.SimpleButton();
     this.btnGrossProfit = new DevExpress.XtraEditors.SimpleButton();
     this.btnJournalEntryPreview = new DevExpress.XtraEditors.SimpleButton();
     this.btnLayoutDesigner = new DevExpress.XtraEditors.SimpleButton();
     this.btnActivity = new DevExpress.XtraEditors.SimpleButton();
     this.btnTargetDocument = new DevExpress.XtraEditors.SimpleButton();
     this.btnBaseDocument = new DevExpress.XtraEditors.SimpleButton();
     this.btnFilter = new DevExpress.XtraEditors.SimpleButton();
     this.btnExportPDF = new DevExpress.XtraEditors.SimpleButton();
     this.btnExportExcel = new DevExpress.XtraEditors.SimpleButton();
     this.btnExportWord = new DevExpress.XtraEditors.SimpleButton();
     this.btnLock = new DevExpress.XtraEditors.SimpleButton();
     this.btnLastRecord = new DevExpress.XtraEditors.SimpleButton();
     this.btnNextRecord = new DevExpress.XtraEditors.SimpleButton();
     this.btnPreviousRecord = new DevExpress.XtraEditors.SimpleButton();
     this.btnFirstRecord = new DevExpress.XtraEditors.SimpleButton();
     this.ribbonPage1 = new DevExpress.XtraBars.Ribbon.RibbonPage();
     this.ribbonPageGroup1 = new DevExpress.XtraBars.Ribbon.RibbonPageGroup();
     this.barButtonItem1 = new DevExpress.XtraBars.BarButtonItem();
     this.barButtonItem2 = new DevExpress.XtraBars.BarButtonItem();
     this.barButtonItem3 = new DevExpress.XtraBars.BarButtonItem();
     this.barButtonItem4 = new DevExpress.XtraBars.BarButtonItem();
     this.barButtonItem5 = new DevExpress.XtraBars.BarButtonItem();
     this.barButtonItem6 = new DevExpress.XtraBars.BarButtonItem();
     this.barButtonItem7 = new DevExpress.XtraBars.BarButtonItem();
     this.ribbonControl1 = new DevExpress.XtraBars.Ribbon.RibbonControl();
     ((System.ComponentModel.ISupportInitialize)(this.groupControl1)).BeginInit();
     this.groupControl1.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.ribbonControl1)).BeginInit();
     this.SuspendLayout();
     //
     // groupControl1
     //
     this.groupControl1.Controls.Add(this.btnEdit);
     this.groupControl1.Controls.Add(this.btnAdd);
     this.groupControl1.Controls.Add(this.btnFind);
     this.groupControl1.Controls.Add(this.btnPreview);
     this.groupControl1.Controls.Add(this.btnPrint);
     this.groupControl1.Controls.Add(this.btnMessageAlert);
     this.groupControl1.Controls.Add(this.btnRelationShipMap);
     this.groupControl1.Controls.Add(this.btnQueryManager);
     this.groupControl1.Controls.Add(this.btnEmail);
     this.groupControl1.Controls.Add(this.btnFormSettings);
     this.groupControl1.Controls.Add(this.btnSorting);
     this.groupControl1.Controls.Add(this.btnGrossProfit);
     this.groupControl1.Controls.Add(this.btnJournalEntryPreview);
     this.groupControl1.Controls.Add(this.btnLayoutDesigner);
     this.groupControl1.Controls.Add(this.btnActivity);
     this.groupControl1.Controls.Add(this.btnTargetDocument);
     this.groupControl1.Controls.Add(this.btnBaseDocument);
     this.groupControl1.Controls.Add(this.btnFilter);
     this.groupControl1.Controls.Add(this.btnExportPDF);
     this.groupControl1.Controls.Add(this.btnExportExcel);
     this.groupControl1.Controls.Add(this.btnExportWord);
     this.groupControl1.Controls.Add(this.btnLock);
     this.groupControl1.Controls.Add(this.btnLastRecord);
     this.groupControl1.Controls.Add(this.btnNextRecord);
     this.groupControl1.Controls.Add(this.btnPreviousRecord);
     this.groupControl1.Controls.Add(this.btnFirstRecord);
     this.groupControl1.Dock = System.Windows.Forms.DockStyle.Top;
     this.groupControl1.Location = new System.Drawing.Point(0, 80);
     this.groupControl1.Name = "groupControl1";
     this.groupControl1.ShowCaption = false;
     this.groupControl1.Size = new System.Drawing.Size(1044, 50);
     this.groupControl1.TabIndex = 1;
     this.groupControl1.Text = "Babar Medicine Company Lahore";
     //
     // btnEdit
     //
     this.btnEdit.Anchor = System.Windows.Forms.AnchorStyles.Left;
     this.btnEdit.Appearance.BackColor = System.Drawing.Color.Transparent;
     this.btnEdit.Appearance.Options.UseBackColor = true;
     this.btnEdit.ButtonStyle = DevExpress.XtraEditors.Controls.BorderStyles.UltraFlat;
     this.btnEdit.Image = global::ERPGUI.Properties.Resources.Edit;
     this.btnEdit.ImageLocation = DevExpress.XtraEditors.ImageLocation.MiddleCenter;
     this.btnEdit.Location = new System.Drawing.Point(316, 10);
     this.btnEdit.Name = "btnEdit";
     this.btnEdit.Size = new System.Drawing.Size(32, 30);
     this.btnEdit.TabIndex = 42;
     this.btnEdit.Text = "&Edit";
     this.btnEdit.ToolTip = "Edit";
     this.btnEdit.Click += new System.EventHandler(this.btnEdit_Click);
     //
     // btnAdd
     //
     this.btnAdd.Anchor = System.Windows.Forms.AnchorStyles.Left;
     this.btnAdd.Appearance.BackColor = System.Drawing.Color.Transparent;
     this.btnAdd.Appearance.Options.UseBackColor = true;
     this.btnAdd.ButtonStyle = DevExpress.XtraEditors.Controls.BorderStyles.UltraFlat;
     this.btnAdd.Enabled = false;
     this.btnAdd.Image = global::ERPGUI.Properties.Resources.Add;
     this.btnAdd.ImageLocation = DevExpress.XtraEditors.ImageLocation.MiddleCenter;
     this.btnAdd.Location = new System.Drawing.Point(278, 10);
     this.btnAdd.Name = "btnAdd";
     this.btnAdd.Size = new System.Drawing.Size(32, 30);
     this.btnAdd.TabIndex = 45;
     this.btnAdd.Text = "&Add";
     this.btnAdd.ToolTip = "Add";
     //
     // btnFind
     //
     this.btnFind.Anchor = System.Windows.Forms.AnchorStyles.Left;
     this.btnFind.Appearance.BackColor = System.Drawing.Color.Transparent;
     this.btnFind.Appearance.Options.UseBackColor = true;
     this.btnFind.ButtonStyle = DevExpress.XtraEditors.Controls.BorderStyles.UltraFlat;
     this.btnFind.Image = global::ERPGUI.Properties.Resources.Find;
     this.btnFind.ImageLocation = DevExpress.XtraEditors.ImageLocation.MiddleCenter;
     this.btnFind.Location = new System.Drawing.Point(240, 10);
     this.btnFind.Name = "btnFind";
     this.btnFind.Size = new System.Drawing.Size(32, 30);
     this.btnFind.TabIndex = 21;
     this.btnFind.Text = "&Find";
     this.btnFind.ToolTip = "Find";
     //
     // btnPreview
     //
     this.btnPreview.Anchor = System.Windows.Forms.AnchorStyles.Left;
     this.btnPreview.Appearance.BackColor = System.Drawing.Color.Transparent;
     this.btnPreview.Appearance.Options.UseBackColor = true;
     this.btnPreview.ButtonStyle = DevExpress.XtraEditors.Controls.BorderStyles.UltraFlat;
     this.btnPreview.Image = global::ERPGUI.Properties.Resources.preview;
     this.btnPreview.ImageLocation = DevExpress.XtraEditors.ImageLocation.MiddleCenter;
     this.btnPreview.Location = new System.Drawing.Point(50, 10);
     this.btnPreview.Name = "btnPreview";
     this.btnPreview.Size = new System.Drawing.Size(32, 30);
     this.btnPreview.TabIndex = 20;
     this.btnPreview.ToolTip = "Preview";
     //
     // btnPrint
     //
     this.btnPrint.Anchor = System.Windows.Forms.AnchorStyles.Left;
     this.btnPrint.Appearance.BackColor = System.Drawing.Color.Transparent;
     this.btnPrint.Appearance.Options.UseBackColor = true;
     this.btnPrint.ButtonStyle = DevExpress.XtraEditors.Controls.BorderStyles.UltraFlat;
     this.btnPrint.Image = global::ERPGUI.Properties.Resources.Print;
     this.btnPrint.ImageLocation = DevExpress.XtraEditors.ImageLocation.MiddleCenter;
     this.btnPrint.Location = new System.Drawing.Point(88, 10);
     this.btnPrint.Name = "btnPrint";
     this.btnPrint.Size = new System.Drawing.Size(32, 30);
     this.btnPrint.TabIndex = 38;
     this.btnPrint.ToolTip = "Print";
     //
     // btnMessageAlert
     //
     this.btnMessageAlert.Anchor = System.Windows.Forms.AnchorStyles.Left;
     this.btnMessageAlert.Appearance.BackColor = System.Drawing.Color.Transparent;
     this.btnMessageAlert.Appearance.Options.UseBackColor = true;
     this.btnMessageAlert.ButtonStyle = DevExpress.XtraEditors.Controls.BorderStyles.UltraFlat;
     this.btnMessageAlert.Image = global::ERPGUI.Properties.Resources.messagealert;
     this.btnMessageAlert.ImageLocation = DevExpress.XtraEditors.ImageLocation.MiddleCenter;
     this.btnMessageAlert.Location = new System.Drawing.Point(962, 10);
     this.btnMessageAlert.Name = "btnMessageAlert";
     this.btnMessageAlert.Size = new System.Drawing.Size(32, 30);
     this.btnMessageAlert.TabIndex = 37;
     this.btnMessageAlert.ToolTip = "Message Alert";
     //
     // btnRelationShipMap
     //
     this.btnRelationShipMap.Anchor = System.Windows.Forms.AnchorStyles.Left;
     this.btnRelationShipMap.Appearance.BackColor = System.Drawing.Color.Transparent;
     this.btnRelationShipMap.Appearance.Options.UseBackColor = true;
     this.btnRelationShipMap.ButtonStyle = DevExpress.XtraEditors.Controls.BorderStyles.UltraFlat;
     this.btnRelationShipMap.Image = global::ERPGUI.Properties.Resources.Map;
     this.btnRelationShipMap.ImageLocation = DevExpress.XtraEditors.ImageLocation.MiddleCenter;
     this.btnRelationShipMap.Location = new System.Drawing.Point(734, 10);
     this.btnRelationShipMap.Name = "btnRelationShipMap";
     this.btnRelationShipMap.Size = new System.Drawing.Size(32, 30);
     this.btnRelationShipMap.TabIndex = 36;
     this.btnRelationShipMap.ToolTip = "Relationship Mapping";
     //
     // btnQueryManager
     //
     this.btnQueryManager.Anchor = System.Windows.Forms.AnchorStyles.Left;
     this.btnQueryManager.Appearance.BackColor = System.Drawing.Color.Transparent;
     this.btnQueryManager.Appearance.Options.UseBackColor = true;
     this.btnQueryManager.ButtonStyle = DevExpress.XtraEditors.Controls.BorderStyles.UltraFlat;
     this.btnQueryManager.Image = global::ERPGUI.Properties.Resources.QueryManager;
     this.btnQueryManager.ImageLocation = DevExpress.XtraEditors.ImageLocation.MiddleCenter;
     this.btnQueryManager.Location = new System.Drawing.Point(886, 10);
     this.btnQueryManager.Name = "btnQueryManager";
     this.btnQueryManager.Size = new System.Drawing.Size(32, 30);
     this.btnQueryManager.TabIndex = 35;
     this.btnQueryManager.ToolTip = "Query Manager";
     //
     // btnEmail
     //
     this.btnEmail.Anchor = System.Windows.Forms.AnchorStyles.Left;
     this.btnEmail.Appearance.BackColor = System.Drawing.Color.Transparent;
     this.btnEmail.Appearance.Options.UseBackColor = true;
     this.btnEmail.ButtonStyle = DevExpress.XtraEditors.Controls.BorderStyles.UltraFlat;
     this.btnEmail.Image = global::ERPGUI.Properties.Resources.Email;
     this.btnEmail.ImageLocation = DevExpress.XtraEditors.ImageLocation.MiddleCenter;
     this.btnEmail.Location = new System.Drawing.Point(12, 10);
     this.btnEmail.Name = "btnEmail";
     this.btnEmail.Size = new System.Drawing.Size(32, 30);
     this.btnEmail.TabIndex = 34;
     this.btnEmail.ToolTip = "Email";
     //
     // btnFormSettings
     //
     this.btnFormSettings.Anchor = System.Windows.Forms.AnchorStyles.Left;
     this.btnFormSettings.Appearance.BackColor = System.Drawing.Color.Transparent;
     this.btnFormSettings.Appearance.Options.UseBackColor = true;
     this.btnFormSettings.ButtonStyle = DevExpress.XtraEditors.Controls.BorderStyles.UltraFlat;
     this.btnFormSettings.Image = global::ERPGUI.Properties.Resources.Settings;
     this.btnFormSettings.ImageLocation = DevExpress.XtraEditors.ImageLocation.MiddleCenter;
     this.btnFormSettings.Location = new System.Drawing.Point(696, 10);
     this.btnFormSettings.Name = "btnFormSettings";
     this.btnFormSettings.Size = new System.Drawing.Size(32, 30);
     this.btnFormSettings.TabIndex = 33;
     this.btnFormSettings.ToolTip = "Form Settings";
     //
     // btnSorting
     //
     this.btnSorting.Anchor = System.Windows.Forms.AnchorStyles.Left;
     this.btnSorting.Appearance.BackColor = System.Drawing.Color.Transparent;
     this.btnSorting.Appearance.Options.UseBackColor = true;
     this.btnSorting.ButtonStyle = DevExpress.XtraEditors.Controls.BorderStyles.UltraFlat;
     this.btnSorting.Image = global::ERPGUI.Properties.Resources.Sort;
     this.btnSorting.ImageLocation = DevExpress.XtraEditors.ImageLocation.MiddleCenter;
     this.btnSorting.Location = new System.Drawing.Point(658, 10);
     this.btnSorting.Name = "btnSorting";
     this.btnSorting.Size = new System.Drawing.Size(32, 30);
     this.btnSorting.TabIndex = 31;
     this.btnSorting.ToolTip = "Sort";
     //
     // btnGrossProfit
     //
     this.btnGrossProfit.Anchor = System.Windows.Forms.AnchorStyles.Left;
     this.btnGrossProfit.Appearance.BackColor = System.Drawing.Color.Transparent;
     this.btnGrossProfit.Appearance.Options.UseBackColor = true;
     this.btnGrossProfit.ButtonStyle = DevExpress.XtraEditors.Controls.BorderStyles.UltraFlat;
     this.btnGrossProfit.Image = global::ERPGUI.Properties.Resources.SMS;
     this.btnGrossProfit.ImageLocation = DevExpress.XtraEditors.ImageLocation.MiddleCenter;
     this.btnGrossProfit.Location = new System.Drawing.Point(810, 10);
     this.btnGrossProfit.Name = "btnGrossProfit";
     this.btnGrossProfit.Size = new System.Drawing.Size(32, 30);
     this.btnGrossProfit.TabIndex = 39;
     this.btnGrossProfit.ToolTip = "Gross Profit";
     //
     // btnJournalEntryPreview
     //
     this.btnJournalEntryPreview.Anchor = System.Windows.Forms.AnchorStyles.Left;
     this.btnJournalEntryPreview.Appearance.BackColor = System.Drawing.Color.Transparent;
     this.btnJournalEntryPreview.Appearance.Options.UseBackColor = true;
     this.btnJournalEntryPreview.ButtonStyle = DevExpress.XtraEditors.Controls.BorderStyles.UltraFlat;
     this.btnJournalEntryPreview.Image = global::ERPGUI.Properties.Resources.JournalEntryPreview;
     this.btnJournalEntryPreview.ImageLocation = DevExpress.XtraEditors.ImageLocation.MiddleCenter;
     this.btnJournalEntryPreview.Location = new System.Drawing.Point(772, 10);
     this.btnJournalEntryPreview.Name = "btnJournalEntryPreview";
     this.btnJournalEntryPreview.Size = new System.Drawing.Size(32, 30);
     this.btnJournalEntryPreview.TabIndex = 22;
     this.btnJournalEntryPreview.ToolTip = "Journal Entry Preview";
     //
     // btnLayoutDesigner
     //
     this.btnLayoutDesigner.Anchor = System.Windows.Forms.AnchorStyles.Left;
     this.btnLayoutDesigner.Appearance.BackColor = System.Drawing.Color.Transparent;
     this.btnLayoutDesigner.Appearance.Options.UseBackColor = true;
     this.btnLayoutDesigner.ButtonStyle = DevExpress.XtraEditors.Controls.BorderStyles.UltraFlat;
     this.btnLayoutDesigner.Image = global::ERPGUI.Properties.Resources.LayoutDesigner;
     this.btnLayoutDesigner.ImageLocation = DevExpress.XtraEditors.ImageLocation.MiddleCenter;
     this.btnLayoutDesigner.Location = new System.Drawing.Point(848, 10);
     this.btnLayoutDesigner.Name = "btnLayoutDesigner";
     this.btnLayoutDesigner.Size = new System.Drawing.Size(32, 30);
     this.btnLayoutDesigner.TabIndex = 29;
     this.btnLayoutDesigner.ToolTip = "Layout Designer";
     //
     // btnActivity
     //
     this.btnActivity.Anchor = System.Windows.Forms.AnchorStyles.Left;
     this.btnActivity.Appearance.BackColor = System.Drawing.Color.Transparent;
     this.btnActivity.Appearance.Options.UseBackColor = true;
     this.btnActivity.ButtonStyle = DevExpress.XtraEditors.Controls.BorderStyles.UltraFlat;
     this.btnActivity.Image = global::ERPGUI.Properties.Resources.Activity;
     this.btnActivity.ImageLocation = DevExpress.XtraEditors.ImageLocation.MiddleCenter;
     this.btnActivity.Location = new System.Drawing.Point(924, 10);
     this.btnActivity.Name = "btnActivity";
     this.btnActivity.Size = new System.Drawing.Size(32, 30);
     this.btnActivity.TabIndex = 28;
     this.btnActivity.ToolTip = "Activity";
     //
     // btnTargetDocument
     //
     this.btnTargetDocument.Anchor = System.Windows.Forms.AnchorStyles.Left;
     this.btnTargetDocument.Appearance.BackColor = System.Drawing.Color.Transparent;
     this.btnTargetDocument.Appearance.Options.UseBackColor = true;
     this.btnTargetDocument.ButtonStyle = DevExpress.XtraEditors.Controls.BorderStyles.UltraFlat;
     this.btnTargetDocument.Image = global::ERPGUI.Properties.Resources.TargetDocument;
     this.btnTargetDocument.ImageLocation = DevExpress.XtraEditors.ImageLocation.MiddleCenter;
     this.btnTargetDocument.Location = new System.Drawing.Point(582, 10);
     this.btnTargetDocument.Name = "btnTargetDocument";
     this.btnTargetDocument.Size = new System.Drawing.Size(32, 30);
     this.btnTargetDocument.TabIndex = 27;
     this.btnTargetDocument.ToolTip = "Target Document";
     //
     // btnBaseDocument
     //
     this.btnBaseDocument.Anchor = System.Windows.Forms.AnchorStyles.Left;
     this.btnBaseDocument.Appearance.BackColor = System.Drawing.Color.Transparent;
     this.btnBaseDocument.Appearance.Options.UseBackColor = true;
     this.btnBaseDocument.ButtonStyle = DevExpress.XtraEditors.Controls.BorderStyles.UltraFlat;
     this.btnBaseDocument.Image = global::ERPGUI.Properties.Resources.BaseDocument;
     this.btnBaseDocument.ImageLocation = DevExpress.XtraEditors.ImageLocation.MiddleCenter;
     this.btnBaseDocument.Location = new System.Drawing.Point(544, 10);
     this.btnBaseDocument.Name = "btnBaseDocument";
     this.btnBaseDocument.Size = new System.Drawing.Size(32, 30);
     this.btnBaseDocument.TabIndex = 26;
     this.btnBaseDocument.ToolTip = "Base Document";
     //
     // btnFilter
     //
     this.btnFilter.Anchor = System.Windows.Forms.AnchorStyles.Left;
     this.btnFilter.Appearance.BackColor = System.Drawing.Color.Transparent;
     this.btnFilter.Appearance.Options.UseBackColor = true;
     this.btnFilter.ButtonStyle = DevExpress.XtraEditors.Controls.BorderStyles.UltraFlat;
     this.btnFilter.Image = global::ERPGUI.Properties.Resources.Filter;
     this.btnFilter.ImageLocation = DevExpress.XtraEditors.ImageLocation.MiddleCenter;
     this.btnFilter.Location = new System.Drawing.Point(620, 10);
     this.btnFilter.Name = "btnFilter";
     this.btnFilter.Size = new System.Drawing.Size(32, 30);
     this.btnFilter.TabIndex = 25;
     this.btnFilter.ToolTip = "Filter";
     //
     // btnExportPDF
     //
     this.btnExportPDF.Anchor = System.Windows.Forms.AnchorStyles.Left;
     this.btnExportPDF.Appearance.BackColor = System.Drawing.Color.Transparent;
     this.btnExportPDF.Appearance.Options.UseBackColor = true;
     this.btnExportPDF.ButtonStyle = DevExpress.XtraEditors.Controls.BorderStyles.UltraFlat;
     this.btnExportPDF.Image = global::ERPGUI.Properties.Resources.pdf;
     this.btnExportPDF.ImageLocation = DevExpress.XtraEditors.ImageLocation.MiddleCenter;
     this.btnExportPDF.Location = new System.Drawing.Point(202, 10);
     this.btnExportPDF.Name = "btnExportPDF";
     this.btnExportPDF.Size = new System.Drawing.Size(32, 30);
     this.btnExportPDF.TabIndex = 24;
     this.btnExportPDF.ToolTip = "Export PDF";
     //
     // btnExportExcel
     //
     this.btnExportExcel.Anchor = System.Windows.Forms.AnchorStyles.Left;
     this.btnExportExcel.Appearance.BackColor = System.Drawing.Color.Transparent;
     this.btnExportExcel.Appearance.Options.UseBackColor = true;
     this.btnExportExcel.ButtonStyle = DevExpress.XtraEditors.Controls.BorderStyles.UltraFlat;
     this.btnExportExcel.Image = global::ERPGUI.Properties.Resources.Excel;
     this.btnExportExcel.ImageLocation = DevExpress.XtraEditors.ImageLocation.MiddleCenter;
     this.btnExportExcel.Location = new System.Drawing.Point(164, 10);
     this.btnExportExcel.Name = "btnExportExcel";
     this.btnExportExcel.Size = new System.Drawing.Size(32, 30);
     this.btnExportExcel.TabIndex = 23;
     this.btnExportExcel.ToolTip = "Export Excel";
     //
     // btnExportWord
     //
     this.btnExportWord.Anchor = System.Windows.Forms.AnchorStyles.Left;
     this.btnExportWord.Appearance.BackColor = System.Drawing.Color.Transparent;
     this.btnExportWord.Appearance.Options.UseBackColor = true;
     this.btnExportWord.ButtonStyle = DevExpress.XtraEditors.Controls.BorderStyles.UltraFlat;
     this.btnExportWord.Image = global::ERPGUI.Properties.Resources.word;
     this.btnExportWord.ImageLocation = DevExpress.XtraEditors.ImageLocation.MiddleCenter;
     this.btnExportWord.Location = new System.Drawing.Point(126, 10);
     this.btnExportWord.Name = "btnExportWord";
     this.btnExportWord.Size = new System.Drawing.Size(32, 30);
     this.btnExportWord.TabIndex = 32;
     this.btnExportWord.ToolTip = "Export Word";
     //
     // btnLock
     //
     this.btnLock.Anchor = System.Windows.Forms.AnchorStyles.Left;
     this.btnLock.Appearance.BackColor = System.Drawing.Color.Transparent;
     this.btnLock.Appearance.Options.UseBackColor = true;
     this.btnLock.ButtonStyle = DevExpress.XtraEditors.Controls.BorderStyles.UltraFlat;
     this.btnLock.Image = global::ERPGUI.Properties.Resources.Lock1;
     this.btnLock.ImageLocation = DevExpress.XtraEditors.ImageLocation.MiddleCenter;
     this.btnLock.Location = new System.Drawing.Point(354, 10);
     this.btnLock.LookAndFeel.UseDefaultLookAndFeel = false;
     this.btnLock.Name = "btnLock";
     this.btnLock.Size = new System.Drawing.Size(32, 30);
     this.btnLock.TabIndex = 40;
     this.btnLock.Text = "&Lock";
     this.btnLock.ToolTip = "Lock Screen";
     //
     // btnLastRecord
     //
     this.btnLastRecord.Anchor = System.Windows.Forms.AnchorStyles.Left;
     this.btnLastRecord.Appearance.BackColor = System.Drawing.Color.Transparent;
     this.btnLastRecord.Appearance.Options.UseBackColor = true;
     this.btnLastRecord.ButtonStyle = DevExpress.XtraEditors.Controls.BorderStyles.UltraFlat;
     this.btnLastRecord.Image = global::ERPGUI.Properties.Resources.Last;
     this.btnLastRecord.ImageLocation = DevExpress.XtraEditors.ImageLocation.MiddleCenter;
     this.btnLastRecord.Location = new System.Drawing.Point(506, 10);
     this.btnLastRecord.Name = "btnLastRecord";
     this.btnLastRecord.Size = new System.Drawing.Size(32, 30);
     this.btnLastRecord.TabIndex = 30;
     this.btnLastRecord.Text = "Las&t";
     this.btnLastRecord.ToolTip = "Last";
     //
     // btnNextRecord
     //
     this.btnNextRecord.Anchor = System.Windows.Forms.AnchorStyles.Left;
     this.btnNextRecord.Appearance.BackColor = System.Drawing.Color.Transparent;
     this.btnNextRecord.Appearance.Options.UseBackColor = true;
     this.btnNextRecord.ButtonStyle = DevExpress.XtraEditors.Controls.BorderStyles.UltraFlat;
     this.btnNextRecord.Image = global::ERPGUI.Properties.Resources.Next;
     this.btnNextRecord.ImageLocation = DevExpress.XtraEditors.ImageLocation.MiddleCenter;
     this.btnNextRecord.Location = new System.Drawing.Point(468, 10);
     this.btnNextRecord.Name = "btnNextRecord";
     this.btnNextRecord.Size = new System.Drawing.Size(32, 30);
     this.btnNextRecord.TabIndex = 41;
     this.btnNextRecord.Text = "&Next";
     this.btnNextRecord.ToolTip = "Next";
     //
     // btnPreviousRecord
     //
     this.btnPreviousRecord.Anchor = System.Windows.Forms.AnchorStyles.Left;
     this.btnPreviousRecord.Appearance.BackColor = System.Drawing.Color.Transparent;
     this.btnPreviousRecord.Appearance.Options.UseBackColor = true;
     this.btnPreviousRecord.ButtonStyle = DevExpress.XtraEditors.Controls.BorderStyles.UltraFlat;
     this.btnPreviousRecord.Image = global::ERPGUI.Properties.Resources.Prev;
     this.btnPreviousRecord.ImageLocation = DevExpress.XtraEditors.ImageLocation.MiddleCenter;
     this.btnPreviousRecord.Location = new System.Drawing.Point(430, 10);
     this.btnPreviousRecord.Name = "btnPreviousRecord";
     this.btnPreviousRecord.Size = new System.Drawing.Size(32, 30);
     this.btnPreviousRecord.TabIndex = 43;
     this.btnPreviousRecord.Text = "&Previous";
     this.btnPreviousRecord.ToolTip = "Previous";
     //
     // btnFirstRecord
     //
     this.btnFirstRecord.Anchor = System.Windows.Forms.AnchorStyles.Left;
     this.btnFirstRecord.Appearance.BackColor = System.Drawing.Color.Transparent;
     this.btnFirstRecord.Appearance.Options.UseBackColor = true;
     this.btnFirstRecord.ButtonStyle = DevExpress.XtraEditors.Controls.BorderStyles.UltraFlat;
     this.btnFirstRecord.Image = global::ERPGUI.Properties.Resources.First;
     this.btnFirstRecord.ImageLocation = DevExpress.XtraEditors.ImageLocation.MiddleCenter;
     this.btnFirstRecord.Location = new System.Drawing.Point(392, 10);
     this.btnFirstRecord.Name = "btnFirstRecord";
     this.btnFirstRecord.Size = new System.Drawing.Size(32, 30);
     this.btnFirstRecord.TabIndex = 44;
     this.btnFirstRecord.Text = "F&irst";
     this.btnFirstRecord.ToolTip = "First";
     //
     // ribbonPage1
     //
     this.ribbonPage1.Groups.AddRange(new DevExpress.XtraBars.Ribbon.RibbonPageGroup[] {
     this.ribbonPageGroup1});
     this.ribbonPage1.Name = "ribbonPage1";
     this.ribbonPage1.Text = "ribbonPage1";
     //
     // ribbonPageGroup1
     //
     this.ribbonPageGroup1.AllowMinimize = false;
     this.ribbonPageGroup1.ItemLinks.Add(this.barButtonItem1);
     this.ribbonPageGroup1.ItemLinks.Add(this.barButtonItem2);
     this.ribbonPageGroup1.ItemLinks.Add(this.barButtonItem3);
     this.ribbonPageGroup1.ItemLinks.Add(this.barButtonItem4);
     this.ribbonPageGroup1.ItemLinks.Add(this.barButtonItem5);
     this.ribbonPageGroup1.ItemLinks.Add(this.barButtonItem6);
     this.ribbonPageGroup1.ItemLinks.Add(this.barButtonItem7);
     this.ribbonPageGroup1.Name = "ribbonPageGroup1";
     this.ribbonPageGroup1.ShowCaptionButton = false;
     //
     // barButtonItem1
     //
     this.barButtonItem1.Glyph = global::ERPGUI.Properties.Resources.Add;
     this.barButtonItem1.Id = 1;
     this.barButtonItem1.LargeGlyph = global::ERPGUI.Properties.Resources.Customization_32x32;
     this.barButtonItem1.Name = "barButtonItem1";
     this.barButtonItem1.RibbonStyle = ((DevExpress.XtraBars.Ribbon.RibbonItemStyles)(((DevExpress.XtraBars.Ribbon.RibbonItemStyles.Large | DevExpress.XtraBars.Ribbon.RibbonItemStyles.SmallWithText)
     | DevExpress.XtraBars.Ribbon.RibbonItemStyles.SmallWithoutText)));
     //
     // barButtonItem2
     //
     this.barButtonItem2.Glyph = global::ERPGUI.Properties.Resources.BaseDocument;
     this.barButtonItem2.Id = 2;
     this.barButtonItem2.Name = "barButtonItem2";
     this.barButtonItem2.RibbonStyle = ((DevExpress.XtraBars.Ribbon.RibbonItemStyles)(((DevExpress.XtraBars.Ribbon.RibbonItemStyles.Large | DevExpress.XtraBars.Ribbon.RibbonItemStyles.SmallWithText)
     | DevExpress.XtraBars.Ribbon.RibbonItemStyles.SmallWithoutText)));
     //
     // barButtonItem3
     //
     this.barButtonItem3.Glyph = global::ERPGUI.Properties.Resources.Edit;
     this.barButtonItem3.Id = 3;
     this.barButtonItem3.Name = "barButtonItem3";
     this.barButtonItem3.RibbonStyle = ((DevExpress.XtraBars.Ribbon.RibbonItemStyles)(((DevExpress.XtraBars.Ribbon.RibbonItemStyles.Large | DevExpress.XtraBars.Ribbon.RibbonItemStyles.SmallWithText)
     | DevExpress.XtraBars.Ribbon.RibbonItemStyles.SmallWithoutText)));
     //
     // barButtonItem4
     //
     this.barButtonItem4.Glyph = global::ERPGUI.Properties.Resources.Excel;
     this.barButtonItem4.Id = 4;
     this.barButtonItem4.Name = "barButtonItem4";
     this.barButtonItem4.RibbonStyle = ((DevExpress.XtraBars.Ribbon.RibbonItemStyles)(((DevExpress.XtraBars.Ribbon.RibbonItemStyles.Large | DevExpress.XtraBars.Ribbon.RibbonItemStyles.SmallWithText)
     | DevExpress.XtraBars.Ribbon.RibbonItemStyles.SmallWithoutText)));
     //
     // barButtonItem5
     //
     this.barButtonItem5.Glyph = global::ERPGUI.Properties.Resources.word;
     this.barButtonItem5.Id = 5;
     this.barButtonItem5.Name = "barButtonItem5";
     this.barButtonItem5.RibbonStyle = ((DevExpress.XtraBars.Ribbon.RibbonItemStyles)(((DevExpress.XtraBars.Ribbon.RibbonItemStyles.Large | DevExpress.XtraBars.Ribbon.RibbonItemStyles.SmallWithText)
     | DevExpress.XtraBars.Ribbon.RibbonItemStyles.SmallWithoutText)));
     //
     // barButtonItem6
     //
     this.barButtonItem6.Glyph = global::ERPGUI.Properties.Resources.pdf;
     this.barButtonItem6.Id = 6;
     this.barButtonItem6.Name = "barButtonItem6";
     this.barButtonItem6.RibbonStyle = ((DevExpress.XtraBars.Ribbon.RibbonItemStyles)(((DevExpress.XtraBars.Ribbon.RibbonItemStyles.Large | DevExpress.XtraBars.Ribbon.RibbonItemStyles.SmallWithText)
     | DevExpress.XtraBars.Ribbon.RibbonItemStyles.SmallWithoutText)));
     //
     // barButtonItem7
     //
     this.barButtonItem7.Glyph = global::ERPGUI.Properties.Resources.Lock1;
     this.barButtonItem7.Id = 7;
     this.barButtonItem7.Name = "barButtonItem7";
     this.barButtonItem7.RibbonStyle = ((DevExpress.XtraBars.Ribbon.RibbonItemStyles)(((DevExpress.XtraBars.Ribbon.RibbonItemStyles.Large | DevExpress.XtraBars.Ribbon.RibbonItemStyles.SmallWithText)
     | DevExpress.XtraBars.Ribbon.RibbonItemStyles.SmallWithoutText)));
     //
     // ribbonControl1
     //
     this.ribbonControl1.ExpandCollapseItem.AllowGlyphSkinning = DevExpress.Utils.DefaultBoolean.True;
     this.ribbonControl1.ExpandCollapseItem.Id = 0;
     this.ribbonControl1.Items.AddRange(new DevExpress.XtraBars.BarItem[] {
     this.ribbonControl1.ExpandCollapseItem,
     this.barButtonItem1,
     this.barButtonItem2,
     this.barButtonItem3,
     this.barButtonItem4,
     this.barButtonItem5,
     this.barButtonItem6,
     this.barButtonItem7});
     this.ribbonControl1.Location = new System.Drawing.Point(0, 0);
     this.ribbonControl1.MaxItemId = 8;
     this.ribbonControl1.Name = "ribbonControl1";
     this.ribbonControl1.Pages.AddRange(new DevExpress.XtraBars.Ribbon.RibbonPage[] {
     this.ribbonPage1});
     this.ribbonControl1.RibbonStyle = DevExpress.XtraBars.Ribbon.RibbonControlStyle.TabletOfficeEx;
     this.ribbonControl1.ShowApplicationButton = DevExpress.Utils.DefaultBoolean.False;
     this.ribbonControl1.ShowCategoryInCaption = false;
     this.ribbonControl1.ShowExpandCollapseButton = DevExpress.Utils.DefaultBoolean.False;
     this.ribbonControl1.ShowFullScreenButton = DevExpress.Utils.DefaultBoolean.False;
     this.ribbonControl1.ShowPageHeadersMode = DevExpress.XtraBars.Ribbon.ShowPageHeadersMode.Hide;
     this.ribbonControl1.ShowToolbarCustomizeItem = false;
     this.ribbonControl1.Size = new System.Drawing.Size(1044, 80);
     this.ribbonControl1.Toolbar.ShowCustomizeItem = false;
     //
     // Form1
     //
     this.AllowFormGlass = DevExpress.Utils.DefaultBoolean.True;
     this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
     this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
     this.ClientSize = new System.Drawing.Size(1044, 633);
     this.Controls.Add(this.groupControl1);
     this.Controls.Add(this.ribbonControl1);
     this.IsMdiContainer = true;
     this.Name = "Form1";
     this.Ribbon = this.ribbonControl1;
     this.Text = "Form1";
     this.WindowState = System.Windows.Forms.FormWindowState.Maximized;
     this.Load += new System.EventHandler(this.Form1_Load);
     ((System.ComponentModel.ISupportInitialize)(this.groupControl1)).EndInit();
     this.groupControl1.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.ribbonControl1)).EndInit();
     this.ResumeLayout(false);
     this.PerformLayout();
 }
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()
 {
     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.ToolTipSeparatorItem toolTipSeparatorItem1 = new DevExpress.Utils.ToolTipSeparatorItem();
     DevExpress.Utils.ToolTipTitleItem toolTipTitleItem2 = new DevExpress.Utils.ToolTipTitleItem();
     DevExpress.Utils.SuperToolTip superToolTip2 = new DevExpress.Utils.SuperToolTip();
     DevExpress.Utils.ToolTipTitleItem toolTipTitleItem3 = new DevExpress.Utils.ToolTipTitleItem();
     DevExpress.Utils.ToolTipItem toolTipItem2 = new DevExpress.Utils.ToolTipItem();
     DevExpress.Utils.ToolTipSeparatorItem toolTipSeparatorItem2 = new DevExpress.Utils.ToolTipSeparatorItem();
     DevExpress.Utils.ToolTipTitleItem toolTipTitleItem4 = new DevExpress.Utils.ToolTipTitleItem();
     DevExpress.Utils.SuperToolTip superToolTip3 = new DevExpress.Utils.SuperToolTip();
     DevExpress.Utils.ToolTipTitleItem toolTipTitleItem5 = new DevExpress.Utils.ToolTipTitleItem();
     DevExpress.Utils.ToolTipItem toolTipItem3 = new DevExpress.Utils.ToolTipItem();
     DevExpress.Utils.ToolTipSeparatorItem toolTipSeparatorItem3 = new DevExpress.Utils.ToolTipSeparatorItem();
     DevExpress.Utils.ToolTipTitleItem toolTipTitleItem6 = new DevExpress.Utils.ToolTipTitleItem();
     DevExpress.XtraEditors.TileItemElement tileItemElement1 = new DevExpress.XtraEditors.TileItemElement();
     DevExpress.XtraEditors.TileItemElement tileItemElement2 = new DevExpress.XtraEditors.TileItemElement();
     DevExpress.XtraEditors.TileItemElement tileItemElement3 = new DevExpress.XtraEditors.TileItemElement();
     DevExpress.XtraEditors.TileItemElement tileItemElement4 = new DevExpress.XtraEditors.TileItemElement();
     DevExpress.XtraEditors.TileItemElement tileItemElement5 = new DevExpress.XtraEditors.TileItemElement();
     DevExpress.XtraEditors.TileItemElement tileItemElement6 = new DevExpress.XtraEditors.TileItemElement();
     DevExpress.XtraEditors.TileItemElement tileItemElement7 = new DevExpress.XtraEditors.TileItemElement();
     DevExpress.Utils.SuperToolTip superToolTip4 = new DevExpress.Utils.SuperToolTip();
     DevExpress.Utils.ToolTipTitleItem toolTipTitleItem7 = new DevExpress.Utils.ToolTipTitleItem();
     DevExpress.Utils.ToolTipItem toolTipItem4 = new DevExpress.Utils.ToolTipItem();
     DevExpress.Utils.ToolTipSeparatorItem toolTipSeparatorItem4 = new DevExpress.Utils.ToolTipSeparatorItem();
     DevExpress.Utils.ToolTipTitleItem toolTipTitleItem8 = new DevExpress.Utils.ToolTipTitleItem();
     System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(frmMain));
     this.ribbonControl1 = new DevExpress.XtraBars.Ribbon.RibbonControl();
     this.lblDatabaseName = new DevExpress.XtraBars.BarStaticItem();
     this.lblUsername = new DevExpress.XtraBars.BarStaticItem();
     this.lblLoginTime = new DevExpress.XtraBars.BarStaticItem();
     this.barStaticItem4 = new DevExpress.XtraBars.BarStaticItem();
     this.barStaticItem5 = new DevExpress.XtraBars.BarStaticItem();
     this.barStaticItem6 = new DevExpress.XtraBars.BarStaticItem();
     this.lblLoginDate = new DevExpress.XtraBars.BarStaticItem();
     this.barStaticItem8 = new DevExpress.XtraBars.BarStaticItem();
     this.barStaticItem7 = new DevExpress.XtraBars.BarStaticItem();
     this.lblComputerName = new DevExpress.XtraBars.BarStaticItem();
     this.skinRibbonGalleryBarItem1 = new DevExpress.XtraBars.SkinRibbonGalleryBarItem();
     this.barStaticItem9 = new DevExpress.XtraBars.BarStaticItem();
     this.barCheckItem3 = new DevExpress.XtraBars.BarCheckItem();
     this.barCheckItem4 = new DevExpress.XtraBars.BarCheckItem();
     this.barStaticItem10 = new DevExpress.XtraBars.BarStaticItem();
     this.barButtonItem1 = new DevExpress.XtraBars.BarButtonItem();
     this.barStaticItem1 = new DevExpress.XtraBars.BarStaticItem();
     this.b_code = new DevExpress.XtraBars.BarStaticItem();
     this.btnRefresh = new DevExpress.XtraBars.BarButtonItem();
     this.barStaticItem2 = new DevExpress.XtraBars.BarStaticItem();
     this.lblWorkDate = new DevExpress.XtraBars.BarStaticItem();
     this.barStaticItem11 = new DevExpress.XtraBars.BarStaticItem();
     this.lblUserID = new DevExpress.XtraBars.BarStaticItem();
     this.barStaticItem3 = new DevExpress.XtraBars.BarStaticItem();
     this.lblServer = new DevExpress.XtraBars.BarStaticItem();
     this.ribbonPage8 = new DevExpress.XtraBars.Ribbon.RibbonPage();
     this.ribbonPageGroup3 = new DevExpress.XtraBars.Ribbon.RibbonPageGroup();
     this.ribbonPage16 = new DevExpress.XtraBars.Ribbon.RibbonPage();
     this.ribbonPageGroup2 = new DevExpress.XtraBars.Ribbon.RibbonPageGroup();
     this.ribbonPageGroup1 = new DevExpress.XtraBars.Ribbon.RibbonPageGroup();
     this.ribbonPage1 = new DevExpress.XtraBars.Ribbon.RibbonPage();
     this.ribbonPage2 = new DevExpress.XtraBars.Ribbon.RibbonPage();
     this.repositoryItemToggleSwitch1 = new DevExpress.XtraEditors.Repository.RepositoryItemToggleSwitch();
     this.ribbonStatusBar1 = new DevExpress.XtraBars.Ribbon.RibbonStatusBar();
     this.tileNavSubItem16 = new DevExpress.XtraBars.Navigation.TileNavSubItem();
     this.tileNavSubItem17 = new DevExpress.XtraBars.Navigation.TileNavSubItem();
     this.tileNavSubItem18 = new DevExpress.XtraBars.Navigation.TileNavSubItem();
     this.tileNavSubItem19 = new DevExpress.XtraBars.Navigation.TileNavSubItem();
     this.tileNavSubItem20 = new DevExpress.XtraBars.Navigation.TileNavSubItem();
     this.tileNavSubItem21 = new DevExpress.XtraBars.Navigation.TileNavSubItem();
     this.tileNavSubItem22 = new DevExpress.XtraBars.Navigation.TileNavSubItem();
     this.backstageViewTabItem1 = new DevExpress.XtraBars.Ribbon.BackstageViewTabItem();
     this.navBarItem1 = new DevExpress.XtraNavBar.NavBarItem();
     this.navBarItem45 = new DevExpress.XtraNavBar.NavBarItem();
     this.frmModulesList = new DevExpress.XtraNavBar.NavBarItem();
     this.frmaddUsers = new DevExpress.XtraNavBar.NavBarItem();
     this.frmUserRights = new DevExpress.XtraNavBar.NavBarItem();
     this.navBarGroup2 = new DevExpress.XtraNavBar.NavBarGroup();
     this.frmGeneralSettings = new DevExpress.XtraNavBar.NavBarItem();
     this.frmEmailManager = new DevExpress.XtraNavBar.NavBarItem();
     this.navBarGroup3 = new DevExpress.XtraNavBar.NavBarGroup();
     this.navBarGroup4 = new DevExpress.XtraNavBar.NavBarGroup();
     this.frmOpenRSS = new DevExpress.XtraNavBar.NavBarItem();
     this.frmOpenRssStock = new DevExpress.XtraNavBar.NavBarItem();
     this.frmReturnSummary = new DevExpress.XtraNavBar.NavBarItem();
     this.frmOpenDSS = new DevExpress.XtraNavBar.NavBarItem();
     this.frmMPOSSync = new DevExpress.XtraNavBar.NavBarItem();
     this.frmSelectSummary = new DevExpress.XtraNavBar.NavBarItem();
     this.frmSaleInvoiceGeneration = new DevExpress.XtraNavBar.NavBarItem();
     this.navBarGroup5 = new DevExpress.XtraNavBar.NavBarGroup();
     this.frmPurchaseOrder = new DevExpress.XtraNavBar.NavBarItem();
     this.frmGRN = new DevExpress.XtraNavBar.NavBarItem();
     this.frmPurchaseInvoice = new DevExpress.XtraNavBar.NavBarItem();
     this.frmDeliveryChallan = new DevExpress.XtraNavBar.NavBarItem();
     this.frmPurchaseReturn = new DevExpress.XtraNavBar.NavBarItem();
     this.navBarGroup6 = new DevExpress.XtraNavBar.NavBarGroup();
     this.frmTown = new DevExpress.XtraNavBar.NavBarItem();
     this.frmOurCompanyGroups = new DevExpress.XtraNavBar.NavBarItem();
     this.frmCustomers = new DevExpress.XtraNavBar.NavBarItem();
     this.frmProducts = new DevExpress.XtraNavBar.NavBarItem();
     this.frmCompanyGroup = new DevExpress.XtraNavBar.NavBarItem();
     this.frmEmployeeTargets = new DevExpress.XtraNavBar.NavBarItem();
     this.frmProductGroup = new DevExpress.XtraNavBar.NavBarItem();
     this.frmVendorEmployees = new DevExpress.XtraNavBar.NavBarItem();
     this.navBarGroup7 = new DevExpress.XtraNavBar.NavBarGroup();
     this.navBarGroup8 = new DevExpress.XtraNavBar.NavBarGroup();
     this.frmHoldScan = new DevExpress.XtraNavBar.NavBarItem();
     this.frmBatchCorrection = new DevExpress.XtraNavBar.NavBarItem();
     this.frmIntimations = new DevExpress.XtraNavBar.NavBarItem();
     this.navBarItem2 = new DevExpress.XtraNavBar.NavBarItem();
     this.navBarGroup9 = new DevExpress.XtraNavBar.NavBarGroup();
     this.navBarGroup10 = new DevExpress.XtraNavBar.NavBarGroup();
     this.navBarGroup11 = new DevExpress.XtraNavBar.NavBarGroup();
     this.Administration = new DevExpress.XtraNavBar.NavBarItem();
     this.Financials = new DevExpress.XtraNavBar.NavBarItem();
     this.Accounts = new DevExpress.XtraNavBar.NavBarItem();
     this.Claims = new DevExpress.XtraNavBar.NavBarItem();
     this.Sales = new DevExpress.XtraNavBar.NavBarItem();
     this.navbrPurchasing = new DevExpress.XtraNavBar.NavBarItem();
     this.navbrPartners = new DevExpress.XtraNavBar.NavBarItem();
     this.navbrBanking = new DevExpress.XtraNavBar.NavBarItem();
     this.navbrInventory = new DevExpress.XtraNavBar.NavBarItem();
     this.navbrHumanResource = new DevExpress.XtraNavBar.NavBarItem();
     this.navbrFleetnSupply = new DevExpress.XtraNavBar.NavBarItem();
     this.navbrInstitution = new DevExpress.XtraNavBar.NavBarItem();
     this.navbrGeneralStore = new DevExpress.XtraNavBar.NavBarItem();
     this.navBarControl1 = new DevExpress.XtraNavBar.NavBarControl();
     this.navBarGroup12 = new DevExpress.XtraNavBar.NavBarGroup();
     this.navBarGroup1 = new DevExpress.XtraNavBar.NavBarGroup();
     this.navBarGroup13 = new DevExpress.XtraNavBar.NavBarGroup();
     this.navBarGroup14 = new DevExpress.XtraNavBar.NavBarGroup();
     this.button1 = new System.Windows.Forms.Button();
     ((System.ComponentModel.ISupportInitialize)(this.ribbonControl1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemToggleSwitch1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.navBarControl1)).BeginInit();
     this.SuspendLayout();
     //
     // ribbonControl1
     //
     this.ribbonControl1.ExpandCollapseItem.Id = 0;
     this.ribbonControl1.Items.AddRange(new DevExpress.XtraBars.BarItem[] {
     this.ribbonControl1.ExpandCollapseItem,
     this.lblDatabaseName,
     this.lblUsername,
     this.lblLoginTime,
     this.barStaticItem4,
     this.barStaticItem5,
     this.barStaticItem6,
     this.lblLoginDate,
     this.barStaticItem8,
     this.barStaticItem7,
     this.lblComputerName,
     this.skinRibbonGalleryBarItem1,
     this.barStaticItem9,
     this.barCheckItem3,
     this.barCheckItem4,
     this.barStaticItem10,
     this.barButtonItem1,
     this.barStaticItem1,
     this.b_code,
     this.btnRefresh,
     this.barStaticItem2,
     this.lblWorkDate,
     this.barStaticItem11,
     this.lblUserID,
     this.barStaticItem3,
     this.lblServer});
     this.ribbonControl1.Location = new System.Drawing.Point(0, 0);
     this.ribbonControl1.Margin = new System.Windows.Forms.Padding(3, 4, 3, 4);
     this.ribbonControl1.MaxItemId = 27;
     this.ribbonControl1.Name = "ribbonControl1";
     this.ribbonControl1.Pages.AddRange(new DevExpress.XtraBars.Ribbon.RibbonPage[] {
     this.ribbonPage8,
     this.ribbonPage16,
     this.ribbonPage1,
     this.ribbonPage2});
     this.ribbonControl1.RepositoryItems.AddRange(new DevExpress.XtraEditors.Repository.RepositoryItem[] {
     this.repositoryItemToggleSwitch1});
     this.ribbonControl1.RibbonStyle = DevExpress.XtraBars.Ribbon.RibbonControlStyle.Office2013;
     this.ribbonControl1.ShowApplicationButton = DevExpress.Utils.DefaultBoolean.False;
     this.ribbonControl1.ShowFullScreenButton = DevExpress.Utils.DefaultBoolean.False;
     this.ribbonControl1.ShowToolbarCustomizeItem = false;
     this.ribbonControl1.Size = new System.Drawing.Size(1190, 147);
     this.ribbonControl1.StatusBar = this.ribbonStatusBar1;
     this.ribbonControl1.Toolbar.ShowCustomizeItem = false;
     this.ribbonControl1.ToolbarLocation = DevExpress.XtraBars.Ribbon.RibbonQuickAccessToolbarLocation.Hidden;
     //
     // lblDatabaseName
     //
     this.lblDatabaseName.Caption = "lblErp";
     this.lblDatabaseName.Id = 133;
     this.lblDatabaseName.Name = "lblDatabaseName";
     this.lblDatabaseName.TextAlignment = System.Drawing.StringAlignment.Near;
     //
     // lblUsername
     //
     this.lblUsername.Caption = "u_name";
     this.lblUsername.Id = 134;
     this.lblUsername.Name = "lblUsername";
     this.lblUsername.TextAlignment = System.Drawing.StringAlignment.Near;
     //
     // lblLoginTime
     //
     this.lblLoginTime.Caption = "logintime";
     this.lblLoginTime.Id = 135;
     this.lblLoginTime.Name = "lblLoginTime";
     this.lblLoginTime.TextAlignment = System.Drawing.StringAlignment.Near;
     //
     // barStaticItem4
     //
     this.barStaticItem4.Caption = "Login User :"******"Tahoma", 8.25F, System.Drawing.FontStyle.Bold);
     this.barStaticItem4.ItemAppearance.Normal.Options.UseFont = true;
     this.barStaticItem4.Name = "barStaticItem4";
     this.barStaticItem4.TextAlignment = System.Drawing.StringAlignment.Near;
     //
     // barStaticItem5
     //
     this.barStaticItem5.Caption = "Database :";
     this.barStaticItem5.Id = 139;
     this.barStaticItem5.ItemAppearance.Normal.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold);
     this.barStaticItem5.ItemAppearance.Normal.Options.UseFont = true;
     this.barStaticItem5.Name = "barStaticItem5";
     this.barStaticItem5.TextAlignment = System.Drawing.StringAlignment.Near;
     //
     // barStaticItem6
     //
     this.barStaticItem6.Caption = "Login Time :";
     this.barStaticItem6.Id = 140;
     this.barStaticItem6.ItemAppearance.Normal.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold);
     this.barStaticItem6.ItemAppearance.Normal.Options.UseFont = true;
     this.barStaticItem6.Name = "barStaticItem6";
     this.barStaticItem6.TextAlignment = System.Drawing.StringAlignment.Near;
     //
     // lblLoginDate
     //
     this.lblLoginDate.Caption = "logindate";
     this.lblLoginDate.Id = 141;
     this.lblLoginDate.Name = "lblLoginDate";
     this.lblLoginDate.TextAlignment = System.Drawing.StringAlignment.Near;
     //
     // barStaticItem8
     //
     this.barStaticItem8.Caption = "Login At :";
     this.barStaticItem8.Id = 142;
     this.barStaticItem8.ItemAppearance.Normal.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold);
     this.barStaticItem8.ItemAppearance.Normal.Options.UseFont = true;
     this.barStaticItem8.Name = "barStaticItem8";
     this.barStaticItem8.TextAlignment = System.Drawing.StringAlignment.Near;
     //
     // barStaticItem7
     //
     this.barStaticItem7.Alignment = DevExpress.XtraBars.BarItemLinkAlignment.Right;
     this.barStaticItem7.Caption = "Computer Name :";
     this.barStaticItem7.Id = 143;
     this.barStaticItem7.ItemAppearance.Normal.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold);
     this.barStaticItem7.ItemAppearance.Normal.Options.UseFont = true;
     this.barStaticItem7.Name = "barStaticItem7";
     this.barStaticItem7.TextAlignment = System.Drawing.StringAlignment.Near;
     this.barStaticItem7.Visibility = DevExpress.XtraBars.BarItemVisibility.Never;
     //
     // lblComputerName
     //
     this.lblComputerName.Alignment = DevExpress.XtraBars.BarItemLinkAlignment.Right;
     this.lblComputerName.Caption = "c_name";
     this.lblComputerName.Id = 145;
     this.lblComputerName.Name = "lblComputerName";
     this.lblComputerName.TextAlignment = System.Drawing.StringAlignment.Near;
     this.lblComputerName.Visibility = DevExpress.XtraBars.BarItemVisibility.Never;
     //
     // skinRibbonGalleryBarItem1
     //
     this.skinRibbonGalleryBarItem1.Caption = "skinRibbonGalleryBarItem1";
     //
     //
     //
     this.skinRibbonGalleryBarItem1.Gallery.ShowItemText = true;
     this.skinRibbonGalleryBarItem1.Id = 3;
     this.skinRibbonGalleryBarItem1.Name = "skinRibbonGalleryBarItem1";
     //
     // barStaticItem9
     //
     this.barStaticItem9.Caption = "Pane Style : ";
     this.barStaticItem9.Id = 6;
     this.barStaticItem9.Name = "barStaticItem9";
     this.barStaticItem9.TextAlignment = System.Drawing.StringAlignment.Near;
     //
     // barCheckItem3
     //
     this.barCheckItem3.Caption = "Explorer View";
     this.barCheckItem3.CheckBoxVisibility = DevExpress.XtraBars.CheckBoxVisibility.BeforeText;
     this.barCheckItem3.Checked = true;
     this.barCheckItem3.Id = 14;
     this.barCheckItem3.Name = "barCheckItem3";
     superToolTip1.AllowHtmlText = DevExpress.Utils.DefaultBoolean.True;
     toolTipTitleItem1.Text = "What\'s Explorer View?";
     toolTipItem1.LeftIndent = 6;
     toolTipItem1.Text = "In <b>Explorer View</b> all groups are arranged one under another which provide t" +
     "he facility to expand / collapse each group individually.";
     toolTipTitleItem2.LeftIndent = 6;
     toolTipTitleItem2.Text = "ERP - Babar Medicine Company Lahore";
     superToolTip1.Items.Add(toolTipTitleItem1);
     superToolTip1.Items.Add(toolTipItem1);
     superToolTip1.Items.Add(toolTipSeparatorItem1);
     superToolTip1.Items.Add(toolTipTitleItem2);
     this.barCheckItem3.SuperTip = superToolTip1;
     this.barCheckItem3.CheckedChanged += new DevExpress.XtraBars.ItemClickEventHandler(this.barCheckItem3_CheckedChanged);
     //
     // barCheckItem4
     //
     this.barCheckItem4.Caption = "Navigation View";
     this.barCheckItem4.CheckBoxVisibility = DevExpress.XtraBars.CheckBoxVisibility.BeforeText;
     this.barCheckItem4.Id = 15;
     this.barCheckItem4.Name = "barCheckItem4";
     superToolTip2.AllowHtmlText = DevExpress.Utils.DefaultBoolean.True;
     toolTipTitleItem3.Text = "What\'s Navigation View?";
     toolTipItem2.LeftIndent = 6;
     toolTipItem2.Text = "In <b>Navigation View</b> all groups are arranged one under another with one grou" +
     "p always expanded and this view provides the facility to expand / shrink whole <" +
     "b>Navigation Bar</b>.";
     toolTipTitleItem4.LeftIndent = 6;
     toolTipTitleItem4.Text = "ERP - Babar Medicine Company Lahore";
     superToolTip2.Items.Add(toolTipTitleItem3);
     superToolTip2.Items.Add(toolTipItem2);
     superToolTip2.Items.Add(toolTipSeparatorItem2);
     superToolTip2.Items.Add(toolTipTitleItem4);
     this.barCheckItem4.SuperTip = superToolTip2;
     this.barCheckItem4.CheckedChanged += new DevExpress.XtraBars.ItemClickEventHandler(this.barCheckItem4_CheckedChanged);
     //
     // barStaticItem10
     //
     this.barStaticItem10.Caption = "Explorer View";
     this.barStaticItem10.Id = 16;
     this.barStaticItem10.ItemAppearance.Normal.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold);
     this.barStaticItem10.ItemAppearance.Normal.Options.UseFont = true;
     this.barStaticItem10.Name = "barStaticItem10";
     this.barStaticItem10.TextAlignment = System.Drawing.StringAlignment.Near;
     //
     // barButtonItem1
     //
     this.barButtonItem1.Caption = "Color Mixer";
     this.barButtonItem1.Glyph = global::ERPGUI.Properties.Resources.colorpicker;
     this.barButtonItem1.Id = 17;
     this.barButtonItem1.Name = "barButtonItem1";
     this.barButtonItem1.RibbonStyle = ((DevExpress.XtraBars.Ribbon.RibbonItemStyles)(((DevExpress.XtraBars.Ribbon.RibbonItemStyles.Large | DevExpress.XtraBars.Ribbon.RibbonItemStyles.SmallWithText)
     | DevExpress.XtraBars.Ribbon.RibbonItemStyles.SmallWithoutText)));
     superToolTip3.AllowHtmlText = DevExpress.Utils.DefaultBoolean.True;
     toolTipTitleItem5.Text = "What is Color Mixer?";
     toolTipItem3.LeftIndent = 6;
     toolTipItem3.Text = "<b>Color Mixer</b> gives you the functionality to apply your desireable color to " +
     "whole application and you can also set the <b>Brightness</b> of application.";
     toolTipTitleItem6.LeftIndent = 6;
     toolTipTitleItem6.Text = "ERP - Babar Medicine Company Lahore";
     superToolTip3.Items.Add(toolTipTitleItem5);
     superToolTip3.Items.Add(toolTipItem3);
     superToolTip3.Items.Add(toolTipSeparatorItem3);
     superToolTip3.Items.Add(toolTipTitleItem6);
     this.barButtonItem1.SuperTip = superToolTip3;
     this.barButtonItem1.ItemClick += new DevExpress.XtraBars.ItemClickEventHandler(this.barButtonItem1_ItemClick);
     //
     // barStaticItem1
     //
     this.barStaticItem1.Caption = "Branch :";
     this.barStaticItem1.Id = 18;
     this.barStaticItem1.ItemAppearance.Normal.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold);
     this.barStaticItem1.ItemAppearance.Normal.Options.UseFont = true;
     this.barStaticItem1.Name = "barStaticItem1";
     this.barStaticItem1.TextAlignment = System.Drawing.StringAlignment.Near;
     //
     // b_code
     //
     this.b_code.Caption = "b_code";
     this.b_code.Id = 19;
     this.b_code.Name = "b_code";
     this.b_code.TextAlignment = System.Drawing.StringAlignment.Near;
     //
     // btnRefresh
     //
     this.btnRefresh.Caption = "Refresh";
     this.btnRefresh.Glyph = global::ERPGUI.Properties.Resources.refresh_32x32;
     this.btnRefresh.Id = 20;
     this.btnRefresh.Name = "btnRefresh";
     this.btnRefresh.RibbonStyle = ((DevExpress.XtraBars.Ribbon.RibbonItemStyles)(((DevExpress.XtraBars.Ribbon.RibbonItemStyles.Large | DevExpress.XtraBars.Ribbon.RibbonItemStyles.SmallWithText)
     | DevExpress.XtraBars.Ribbon.RibbonItemStyles.SmallWithoutText)));
     this.btnRefresh.ItemClick += new DevExpress.XtraBars.ItemClickEventHandler(this.btnRefresh_ItemClick);
     //
     // barStaticItem2
     //
     this.barStaticItem2.Alignment = DevExpress.XtraBars.BarItemLinkAlignment.Right;
     this.barStaticItem2.Caption = "Work Date :";
     this.barStaticItem2.Id = 21;
     this.barStaticItem2.ItemAppearance.Normal.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold);
     this.barStaticItem2.ItemAppearance.Normal.Options.UseFont = true;
     this.barStaticItem2.Name = "barStaticItem2";
     this.barStaticItem2.TextAlignment = System.Drawing.StringAlignment.Near;
     //
     // lblWorkDate
     //
     this.lblWorkDate.Alignment = DevExpress.XtraBars.BarItemLinkAlignment.Right;
     this.lblWorkDate.Caption = "date";
     this.lblWorkDate.Id = 22;
     this.lblWorkDate.Name = "lblWorkDate";
     this.lblWorkDate.TextAlignment = System.Drawing.StringAlignment.Near;
     //
     // barStaticItem11
     //
     this.barStaticItem11.Caption = "Username :"******"Tahoma", 8.25F, System.Drawing.FontStyle.Bold);
     this.barStaticItem11.ItemAppearance.Normal.Options.UseFont = true;
     this.barStaticItem11.Name = "barStaticItem11";
     this.barStaticItem11.TextAlignment = System.Drawing.StringAlignment.Near;
     //
     // lblUserID
     //
     this.lblUserID.Caption = "id";
     this.lblUserID.Id = 24;
     this.lblUserID.Name = "lblUserID";
     this.lblUserID.TextAlignment = System.Drawing.StringAlignment.Near;
     //
     // barStaticItem3
     //
     this.barStaticItem3.Caption = "Server :";
     this.barStaticItem3.Id = 25;
     this.barStaticItem3.ItemAppearance.Normal.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold);
     this.barStaticItem3.ItemAppearance.Normal.Options.UseFont = true;
     this.barStaticItem3.Name = "barStaticItem3";
     this.barStaticItem3.TextAlignment = System.Drawing.StringAlignment.Near;
     //
     // lblServer
     //
     this.lblServer.Caption = "Server";
     this.lblServer.Id = 26;
     this.lblServer.Name = "lblServer";
     this.lblServer.TextAlignment = System.Drawing.StringAlignment.Near;
     //
     // ribbonPage8
     //
     this.ribbonPage8.Appearance.Font = new System.Drawing.Font("Tahoma", 10F);
     this.ribbonPage8.Appearance.Options.UseFont = true;
     this.ribbonPage8.Groups.AddRange(new DevExpress.XtraBars.Ribbon.RibbonPageGroup[] {
     this.ribbonPageGroup3});
     this.ribbonPage8.Name = "ribbonPage8";
     this.ribbonPage8.Text = "File";
     //
     // ribbonPageGroup3
     //
     this.ribbonPageGroup3.ItemLinks.Add(this.btnRefresh);
     this.ribbonPageGroup3.Name = "ribbonPageGroup3";
     //
     // ribbonPage16
     //
     this.ribbonPage16.Groups.AddRange(new DevExpress.XtraBars.Ribbon.RibbonPageGroup[] {
     this.ribbonPageGroup2,
     this.ribbonPageGroup1});
     this.ribbonPage16.Name = "ribbonPage16";
     this.ribbonPage16.Text = "View";
     //
     // ribbonPageGroup2
     //
     this.ribbonPageGroup2.AllowTextClipping = false;
     this.ribbonPageGroup2.ItemLinks.Add(this.skinRibbonGalleryBarItem1);
     this.ribbonPageGroup2.ItemLinks.Add(this.barButtonItem1);
     this.ribbonPageGroup2.Name = "ribbonPageGroup2";
     this.ribbonPageGroup2.Text = "Themes";
     //
     // ribbonPageGroup1
     //
     this.ribbonPageGroup1.AllowTextClipping = false;
     this.ribbonPageGroup1.ItemLinks.Add(this.barCheckItem3);
     this.ribbonPageGroup1.ItemLinks.Add(this.barCheckItem4);
     this.ribbonPageGroup1.Name = "ribbonPageGroup1";
     this.ribbonPageGroup1.Text = "Switch Pane Style";
     //
     // ribbonPage1
     //
     this.ribbonPage1.Name = "ribbonPage1";
     this.ribbonPage1.Text = "Help";
     //
     // ribbonPage2
     //
     this.ribbonPage2.Name = "ribbonPage2";
     //
     // repositoryItemToggleSwitch1
     //
     this.repositoryItemToggleSwitch1.AutoHeight = false;
     this.repositoryItemToggleSwitch1.Name = "repositoryItemToggleSwitch1";
     this.repositoryItemToggleSwitch1.OffText = "Explorer";
     this.repositoryItemToggleSwitch1.OnText = "Navigation";
     //
     // ribbonStatusBar1
     //
     this.ribbonStatusBar1.ItemLinks.Add(this.barStaticItem1, true);
     this.ribbonStatusBar1.ItemLinks.Add(this.b_code);
     this.ribbonStatusBar1.ItemLinks.Add(this.barStaticItem3, true);
     this.ribbonStatusBar1.ItemLinks.Add(this.lblServer);
     this.ribbonStatusBar1.ItemLinks.Add(this.barStaticItem5, true);
     this.ribbonStatusBar1.ItemLinks.Add(this.lblDatabaseName);
     this.ribbonStatusBar1.ItemLinks.Add(this.barStaticItem4, true);
     this.ribbonStatusBar1.ItemLinks.Add(this.lblUserID);
     this.ribbonStatusBar1.ItemLinks.Add(this.lblUsername);
     this.ribbonStatusBar1.ItemLinks.Add(this.barStaticItem8, true);
     this.ribbonStatusBar1.ItemLinks.Add(this.lblLoginDate);
     this.ribbonStatusBar1.ItemLinks.Add(this.lblLoginTime);
     this.ribbonStatusBar1.ItemLinks.Add(this.lblComputerName);
     this.ribbonStatusBar1.ItemLinks.Add(this.barStaticItem2, true);
     this.ribbonStatusBar1.ItemLinks.Add(this.lblWorkDate);
     this.ribbonStatusBar1.Location = new System.Drawing.Point(0, 653);
     this.ribbonStatusBar1.Name = "ribbonStatusBar1";
     this.ribbonStatusBar1.Ribbon = this.ribbonControl1;
     this.ribbonStatusBar1.Size = new System.Drawing.Size(1190, 31);
     //
     // tileNavSubItem16
     //
     this.tileNavSubItem16.Caption = "tileNavSubItem16";
     this.tileNavSubItem16.Name = "tileNavSubItem16";
     this.tileNavSubItem16.OptionsDropDown.BackColor = System.Drawing.Color.Empty;
     //
     //
     //
     this.tileNavSubItem16.Tile.DropDownOptions.BeakColor = System.Drawing.Color.Empty;
     tileItemElement1.Text = "tileNavSubItem16";
     this.tileNavSubItem16.Tile.Elements.Add(tileItemElement1);
     this.tileNavSubItem16.Tile.ItemSize = DevExpress.XtraBars.Navigation.TileBarItemSize.Default;
     this.tileNavSubItem16.Tile.Name = "tileBarItem25";
     //
     // tileNavSubItem17
     //
     this.tileNavSubItem17.Caption = "tileNavSubItem17";
     this.tileNavSubItem17.Name = "tileNavSubItem17";
     this.tileNavSubItem17.OptionsDropDown.BackColor = System.Drawing.Color.Empty;
     //
     //
     //
     this.tileNavSubItem17.Tile.DropDownOptions.BeakColor = System.Drawing.Color.Empty;
     tileItemElement2.Text = "tileNavSubItem17";
     this.tileNavSubItem17.Tile.Elements.Add(tileItemElement2);
     this.tileNavSubItem17.Tile.ItemSize = DevExpress.XtraBars.Navigation.TileBarItemSize.Default;
     this.tileNavSubItem17.Tile.Name = "tileBarItem26";
     //
     // tileNavSubItem18
     //
     this.tileNavSubItem18.Caption = "tileNavSubItem18";
     this.tileNavSubItem18.Name = "tileNavSubItem18";
     this.tileNavSubItem18.OptionsDropDown.BackColor = System.Drawing.Color.Empty;
     //
     //
     //
     this.tileNavSubItem18.Tile.DropDownOptions.BeakColor = System.Drawing.Color.Empty;
     tileItemElement3.Text = "tileNavSubItem18";
     this.tileNavSubItem18.Tile.Elements.Add(tileItemElement3);
     this.tileNavSubItem18.Tile.ItemSize = DevExpress.XtraBars.Navigation.TileBarItemSize.Default;
     this.tileNavSubItem18.Tile.Name = "tileBarItem27";
     //
     // tileNavSubItem19
     //
     this.tileNavSubItem19.Caption = "tileNavSubItem19";
     this.tileNavSubItem19.Name = "tileNavSubItem19";
     this.tileNavSubItem19.OptionsDropDown.BackColor = System.Drawing.Color.Empty;
     //
     //
     //
     this.tileNavSubItem19.Tile.DropDownOptions.BeakColor = System.Drawing.Color.Empty;
     tileItemElement4.Text = "tileNavSubItem19";
     this.tileNavSubItem19.Tile.Elements.Add(tileItemElement4);
     this.tileNavSubItem19.Tile.ItemSize = DevExpress.XtraBars.Navigation.TileBarItemSize.Default;
     this.tileNavSubItem19.Tile.Name = "tileBarItem28";
     //
     // tileNavSubItem20
     //
     this.tileNavSubItem20.Caption = "tileNavSubItem20";
     this.tileNavSubItem20.Name = "tileNavSubItem20";
     this.tileNavSubItem20.OptionsDropDown.BackColor = System.Drawing.Color.Empty;
     //
     //
     //
     this.tileNavSubItem20.Tile.DropDownOptions.BeakColor = System.Drawing.Color.Empty;
     tileItemElement5.Text = "tileNavSubItem20";
     this.tileNavSubItem20.Tile.Elements.Add(tileItemElement5);
     this.tileNavSubItem20.Tile.ItemSize = DevExpress.XtraBars.Navigation.TileBarItemSize.Default;
     this.tileNavSubItem20.Tile.Name = "tileBarItem29";
     //
     // tileNavSubItem21
     //
     this.tileNavSubItem21.Caption = "tileNavSubItem21";
     this.tileNavSubItem21.Name = "tileNavSubItem21";
     this.tileNavSubItem21.OptionsDropDown.BackColor = System.Drawing.Color.Empty;
     //
     //
     //
     this.tileNavSubItem21.Tile.DropDownOptions.BeakColor = System.Drawing.Color.Empty;
     tileItemElement6.Text = "tileNavSubItem21";
     this.tileNavSubItem21.Tile.Elements.Add(tileItemElement6);
     this.tileNavSubItem21.Tile.ItemSize = DevExpress.XtraBars.Navigation.TileBarItemSize.Default;
     this.tileNavSubItem21.Tile.Name = "tileBarItem30";
     //
     // tileNavSubItem22
     //
     this.tileNavSubItem22.Caption = "tileNavSubItem22";
     this.tileNavSubItem22.Name = "tileNavSubItem22";
     this.tileNavSubItem22.OptionsDropDown.BackColor = System.Drawing.Color.Empty;
     //
     //
     //
     this.tileNavSubItem22.Tile.DropDownOptions.BeakColor = System.Drawing.Color.Empty;
     tileItemElement7.Text = "tileNavSubItem22";
     this.tileNavSubItem22.Tile.Elements.Add(tileItemElement7);
     this.tileNavSubItem22.Tile.ItemSize = DevExpress.XtraBars.Navigation.TileBarItemSize.Default;
     this.tileNavSubItem22.Tile.Name = "tileBarItem31";
     //
     // backstageViewTabItem1
     //
     this.backstageViewTabItem1.Caption = "backstageViewTabItem1";
     this.backstageViewTabItem1.Name = "backstageViewTabItem1";
     this.backstageViewTabItem1.Selected = false;
     //
     // navBarItem1
     //
     this.navBarItem1.Caption = "Near Expiry Batches";
     this.navBarItem1.Name = "navBarItem1";
     //
     // navBarItem45
     //
     this.navBarItem45.Caption = "navBarItem45";
     this.navBarItem45.Name = "navBarItem45";
     //
     // frmModulesList
     //
     this.frmModulesList.Caption = "Modules List";
     this.frmModulesList.Name = "frmModulesList";
     this.frmModulesList.LinkClicked += new DevExpress.XtraNavBar.NavBarLinkEventHandler(this.OpenForm_LinkClicked);
     //
     // frmaddUsers
     //
     this.frmaddUsers.Caption = "Add User";
     this.frmaddUsers.Name = "frmaddUsers";
     this.frmaddUsers.LinkClicked += new DevExpress.XtraNavBar.NavBarLinkEventHandler(this.OpenForm_LinkClicked);
     //
     // frmUserRights
     //
     this.frmUserRights.Caption = "Users Security";
     this.frmUserRights.Name = "frmUserRights";
     this.frmUserRights.LinkPressed += new DevExpress.XtraNavBar.NavBarLinkEventHandler(this.OpenForm_LinkClicked);
     //
     // navBarGroup2
     //
     this.navBarGroup2.Caption = "Administration";
     this.navBarGroup2.Expanded = true;
     this.navBarGroup2.ItemLinks.AddRange(new DevExpress.XtraNavBar.NavBarItemLink[] {
     new DevExpress.XtraNavBar.NavBarItemLink(this.frmModulesList),
     new DevExpress.XtraNavBar.NavBarItemLink(this.frmaddUsers),
     new DevExpress.XtraNavBar.NavBarItemLink(this.frmUserRights),
     new DevExpress.XtraNavBar.NavBarItemLink(this.frmGeneralSettings),
     new DevExpress.XtraNavBar.NavBarItemLink(this.frmEmailManager)});
     this.navBarGroup2.Name = "navBarGroup2";
     this.navBarGroup2.SmallImage = global::ERPGUI.Properties.Resources.login_key_copy;
     superToolTip4.AllowHtmlText = DevExpress.Utils.DefaultBoolean.True;
     toolTipTitleItem7.Text = "What\'s in Administration?";
     toolTipItem4.LeftIndent = 6;
     toolTipItem4.Text = "All tasks related to system <b>Administrator</b> are under this section. ";
     toolTipTitleItem8.LeftIndent = 6;
     toolTipTitleItem8.Text = "ERP - Babar Medicine Company Lahore";
     superToolTip4.Items.Add(toolTipTitleItem7);
     superToolTip4.Items.Add(toolTipItem4);
     superToolTip4.Items.Add(toolTipSeparatorItem4);
     superToolTip4.Items.Add(toolTipTitleItem8);
     this.navBarGroup2.SuperTip = superToolTip4;
     //
     // frmGeneralSettings
     //
     this.frmGeneralSettings.Caption = "General Settings";
     this.frmGeneralSettings.Name = "frmGeneralSettings";
     this.frmGeneralSettings.LinkClicked += new DevExpress.XtraNavBar.NavBarLinkEventHandler(this.OpenForm_LinkClicked);
     //
     // frmEmailManager
     //
     this.frmEmailManager.Caption = "Email Manager";
     this.frmEmailManager.Name = "frmEmailManager";
     this.frmEmailManager.LinkClicked += new DevExpress.XtraNavBar.NavBarLinkEventHandler(this.frmEmailManager_LinkClicked);
     //
     // navBarGroup3
     //
     this.navBarGroup3.Caption = "Financials";
     this.navBarGroup3.Name = "navBarGroup3";
     this.navBarGroup3.SmallImage = ((System.Drawing.Image)(resources.GetObject("navBarGroup3.SmallImage")));
     //
     // navBarGroup4
     //
     this.navBarGroup4.Caption = "Sales A/R";
     this.navBarGroup4.ItemLinks.AddRange(new DevExpress.XtraNavBar.NavBarItemLink[] {
     new DevExpress.XtraNavBar.NavBarItemLink(this.frmOpenRSS),
     new DevExpress.XtraNavBar.NavBarItemLink(this.frmOpenRssStock),
     new DevExpress.XtraNavBar.NavBarItemLink(this.frmReturnSummary),
     new DevExpress.XtraNavBar.NavBarItemLink(this.frmOpenDSS),
     new DevExpress.XtraNavBar.NavBarItemLink(this.frmMPOSSync),
     new DevExpress.XtraNavBar.NavBarItemLink(this.frmSelectSummary),
     new DevExpress.XtraNavBar.NavBarItemLink(this.frmSaleInvoiceGeneration)});
     this.navBarGroup4.Name = "navBarGroup4";
     this.navBarGroup4.SmallImage = ((System.Drawing.Image)(resources.GetObject("navBarGroup4.SmallImage")));
     //
     // frmOpenRSS
     //
     this.frmOpenRSS.Caption = "Open Rss";
     this.frmOpenRSS.Name = "frmOpenRSS";
     this.frmOpenRSS.LinkClicked += new DevExpress.XtraNavBar.NavBarLinkEventHandler(this.frmOpenRss_LinkClicked);
     //
     // frmOpenRssStock
     //
     this.frmOpenRssStock.Caption = "Open Rss Stock";
     this.frmOpenRssStock.Name = "frmOpenRssStock";
     this.frmOpenRssStock.LinkClicked += new DevExpress.XtraNavBar.NavBarLinkEventHandler(this.frmOpenRss_LinkClicked);
     //
     // frmReturnSummary
     //
     this.frmReturnSummary.Caption = "Sale Return";
     this.frmReturnSummary.Name = "frmReturnSummary";
     this.frmReturnSummary.LinkClicked += new DevExpress.XtraNavBar.NavBarLinkEventHandler(this.OpenForm_LinkClicked);
     //
     // frmOpenDSS
     //
     this.frmOpenDSS.Caption = "Open Dss";
     this.frmOpenDSS.Name = "frmOpenDSS";
     this.frmOpenDSS.LinkClicked += new DevExpress.XtraNavBar.NavBarLinkEventHandler(this.OpenForm_LinkClicked);
     //
     // frmMPOSSync
     //
     this.frmMPOSSync.Caption = "Sync Devices";
     this.frmMPOSSync.Name = "frmMPOSSync";
     this.frmMPOSSync.LinkClicked += new DevExpress.XtraNavBar.NavBarLinkEventHandler(this.OpenForm_LinkClicked);
     //
     // frmSelectSummary
     //
     this.frmSelectSummary.Caption = "Sale Invoice";
     this.frmSelectSummary.Name = "frmSelectSummary";
     this.frmSelectSummary.LinkClicked += new DevExpress.XtraNavBar.NavBarLinkEventHandler(this.OpenForm_LinkClicked);
     //
     // frmSaleInvoiceGeneration
     //
     this.frmSaleInvoiceGeneration.Caption = "Auto Sale Invoice";
     this.frmSaleInvoiceGeneration.Name = "frmSaleInvoiceGeneration";
     this.frmSaleInvoiceGeneration.LinkClicked += new DevExpress.XtraNavBar.NavBarLinkEventHandler(this.OpenForm_LinkClicked);
     //
     // navBarGroup5
     //
     this.navBarGroup5.Caption = "Purchasing A/P";
     this.navBarGroup5.Expanded = true;
     this.navBarGroup5.ItemLinks.AddRange(new DevExpress.XtraNavBar.NavBarItemLink[] {
     new DevExpress.XtraNavBar.NavBarItemLink(this.frmPurchaseOrder),
     new DevExpress.XtraNavBar.NavBarItemLink(this.frmGRN),
     new DevExpress.XtraNavBar.NavBarItemLink(this.frmPurchaseInvoice),
     new DevExpress.XtraNavBar.NavBarItemLink(this.frmDeliveryChallan),
     new DevExpress.XtraNavBar.NavBarItemLink(this.frmPurchaseReturn)});
     this.navBarGroup5.Name = "navBarGroup5";
     this.navBarGroup5.SmallImage = global::ERPGUI.Properties.Resources.cart__2_;
     //
     // frmPurchaseOrder
     //
     this.frmPurchaseOrder.Caption = "Purchase Order";
     this.frmPurchaseOrder.Name = "frmPurchaseOrder";
     this.frmPurchaseOrder.LinkClicked += new DevExpress.XtraNavBar.NavBarLinkEventHandler(this.OpenForm_LinkClicked);
     //
     // frmGRN
     //
     this.frmGRN.Caption = "Goods Receipt Note";
     this.frmGRN.Name = "frmGRN";
     this.frmGRN.LinkClicked += new DevExpress.XtraNavBar.NavBarLinkEventHandler(this.OpenForm_LinkClicked);
     //
     // frmPurchaseInvoice
     //
     this.frmPurchaseInvoice.Caption = "Purchase Invoice";
     this.frmPurchaseInvoice.Name = "frmPurchaseInvoice";
     this.frmPurchaseInvoice.LinkClicked += new DevExpress.XtraNavBar.NavBarLinkEventHandler(this.OpenForm_LinkClicked);
     //
     // frmDeliveryChallan
     //
     this.frmDeliveryChallan.Caption = "Delivery Challan";
     this.frmDeliveryChallan.Name = "frmDeliveryChallan";
     this.frmDeliveryChallan.LinkClicked += new DevExpress.XtraNavBar.NavBarLinkEventHandler(this.OpenForm_LinkClicked);
     //
     // frmPurchaseReturn
     //
     this.frmPurchaseReturn.Caption = "Purchase Return";
     this.frmPurchaseReturn.Name = "frmPurchaseReturn";
     this.frmPurchaseReturn.LinkClicked += new DevExpress.XtraNavBar.NavBarLinkEventHandler(this.OpenForm_LinkClicked);
     //
     // navBarGroup6
     //
     this.navBarGroup6.Caption = "Business Partners";
     this.navBarGroup6.ItemLinks.AddRange(new DevExpress.XtraNavBar.NavBarItemLink[] {
     new DevExpress.XtraNavBar.NavBarItemLink(this.frmTown),
     new DevExpress.XtraNavBar.NavBarItemLink(this.frmOurCompanyGroups),
     new DevExpress.XtraNavBar.NavBarItemLink(this.frmCustomers),
     new DevExpress.XtraNavBar.NavBarItemLink(this.frmProducts),
     new DevExpress.XtraNavBar.NavBarItemLink(this.frmCompanyGroup),
     new DevExpress.XtraNavBar.NavBarItemLink(this.frmEmployeeTargets),
     new DevExpress.XtraNavBar.NavBarItemLink(this.frmProductGroup),
     new DevExpress.XtraNavBar.NavBarItemLink(this.frmVendorEmployees)});
     this.navBarGroup6.Name = "navBarGroup6";
     this.navBarGroup6.SmallImage = global::ERPGUI.Properties.Resources.handshake1;
     //
     // frmTown
     //
     this.frmTown.Caption = "Areas Defination";
     this.frmTown.Name = "frmTown";
     this.frmTown.LinkClicked += new DevExpress.XtraNavBar.NavBarLinkEventHandler(this.OpenForm_LinkClicked);
     //
     // frmOurCompanyGroups
     //
     this.frmOurCompanyGroups.Caption = "Our Company Groups";
     this.frmOurCompanyGroups.Name = "frmOurCompanyGroups";
     this.frmOurCompanyGroups.LinkClicked += new DevExpress.XtraNavBar.NavBarLinkEventHandler(this.OpenForm_LinkClicked);
     //
     // frmCustomers
     //
     this.frmCustomers.Caption = "Customers";
     this.frmCustomers.Name = "frmCustomers";
     this.frmCustomers.LinkClicked += new DevExpress.XtraNavBar.NavBarLinkEventHandler(this.OpenForm_LinkClicked);
     //
     // frmProducts
     //
     this.frmProducts.Caption = "Products";
     this.frmProducts.Name = "frmProducts";
     this.frmProducts.LinkClicked += new DevExpress.XtraNavBar.NavBarLinkEventHandler(this.OpenForm_LinkClicked);
     //
     // frmCompanyGroup
     //
     this.frmCompanyGroup.Caption = "Company Groups";
     this.frmCompanyGroup.Name = "frmCompanyGroup";
     this.frmCompanyGroup.LinkClicked += new DevExpress.XtraNavBar.NavBarLinkEventHandler(this.OpenForm_LinkClicked);
     //
     // frmEmployeeTargets
     //
     this.frmEmployeeTargets.Caption = "Targets";
     this.frmEmployeeTargets.Name = "frmEmployeeTargets";
     this.frmEmployeeTargets.LinkClicked += new DevExpress.XtraNavBar.NavBarLinkEventHandler(this.OpenForm_LinkClicked);
     //
     // frmProductGroup
     //
     this.frmProductGroup.Caption = "Product Grouping";
     this.frmProductGroup.Name = "frmProductGroup";
     this.frmProductGroup.LinkClicked += new DevExpress.XtraNavBar.NavBarLinkEventHandler(this.OpenForm_LinkClicked);
     //
     // frmVendorEmployees
     //
     this.frmVendorEmployees.Caption = "Compnies Employee";
     this.frmVendorEmployees.Name = "frmVendorEmployees";
     this.frmVendorEmployees.LinkClicked += new DevExpress.XtraNavBar.NavBarLinkEventHandler(this.OpenForm_LinkClicked);
     //
     // navBarGroup7
     //
     this.navBarGroup7.Caption = "Banking";
     this.navBarGroup7.Name = "navBarGroup7";
     this.navBarGroup7.SmallImage = ((System.Drawing.Image)(resources.GetObject("navBarGroup7.SmallImage")));
     //
     // navBarGroup8
     //
     this.navBarGroup8.Caption = "Inventory";
     this.navBarGroup8.ItemLinks.AddRange(new DevExpress.XtraNavBar.NavBarItemLink[] {
     new DevExpress.XtraNavBar.NavBarItemLink(this.frmHoldScan),
     new DevExpress.XtraNavBar.NavBarItemLink(this.frmBatchCorrection),
     new DevExpress.XtraNavBar.NavBarItemLink(this.frmIntimations),
     new DevExpress.XtraNavBar.NavBarItemLink(this.navBarItem2)});
     this.navBarGroup8.Name = "navBarGroup8";
     this.navBarGroup8.SmallImage = global::ERPGUI.Properties.Resources.sssss;
     //
     // frmHoldScan
     //
     this.frmHoldScan.Caption = "Hold Scan";
     this.frmHoldScan.Name = "frmHoldScan";
     this.frmHoldScan.LinkClicked += new DevExpress.XtraNavBar.NavBarLinkEventHandler(this.frmHoldScan_LinkClicked);
     //
     // frmBatchCorrection
     //
     this.frmBatchCorrection.Caption = "Batch Correction";
     this.frmBatchCorrection.Name = "frmBatchCorrection";
     this.frmBatchCorrection.LinkClicked += new DevExpress.XtraNavBar.NavBarLinkEventHandler(this.OpenForm_LinkClicked);
     //
     // frmIntimations
     //
     this.frmIntimations.Caption = "Intimation";
     this.frmIntimations.Name = "frmIntimations";
     this.frmIntimations.LinkClicked += new DevExpress.XtraNavBar.NavBarLinkEventHandler(this.OpenForm_LinkClicked);
     //
     // navBarItem2
     //
     this.navBarItem2.Caption = "Auto Product Change";
     this.navBarItem2.Name = "navBarItem2";
     this.navBarItem2.LinkClicked += new DevExpress.XtraNavBar.NavBarLinkEventHandler(this.OpenForm_LinkClicked);
     //
     // navBarGroup9
     //
     this.navBarGroup9.Caption = "Human Resource";
     this.navBarGroup9.Expanded = true;
     this.navBarGroup9.Name = "navBarGroup9";
     this.navBarGroup9.SmallImage = ((System.Drawing.Image)(resources.GetObject("navBarGroup9.SmallImage")));
     //
     // navBarGroup10
     //
     this.navBarGroup10.Caption = "Fleets & Supply";
     this.navBarGroup10.Expanded = true;
     this.navBarGroup10.Name = "navBarGroup10";
     this.navBarGroup10.SmallImage = global::ERPGUI.Properties.Resources.truck_16x16;
     //
     // navBarGroup11
     //
     this.navBarGroup11.Caption = "Reports";
     this.navBarGroup11.ItemLinks.AddRange(new DevExpress.XtraNavBar.NavBarItemLink[] {
     new DevExpress.XtraNavBar.NavBarItemLink(this.Administration),
     new DevExpress.XtraNavBar.NavBarItemLink(this.Financials),
     new DevExpress.XtraNavBar.NavBarItemLink(this.Accounts),
     new DevExpress.XtraNavBar.NavBarItemLink(this.Claims),
     new DevExpress.XtraNavBar.NavBarItemLink(this.Sales),
     new DevExpress.XtraNavBar.NavBarItemLink(this.navbrPurchasing),
     new DevExpress.XtraNavBar.NavBarItemLink(this.navbrPartners),
     new DevExpress.XtraNavBar.NavBarItemLink(this.navbrBanking),
     new DevExpress.XtraNavBar.NavBarItemLink(this.navbrInventory),
     new DevExpress.XtraNavBar.NavBarItemLink(this.navbrHumanResource),
     new DevExpress.XtraNavBar.NavBarItemLink(this.navbrFleetnSupply),
     new DevExpress.XtraNavBar.NavBarItemLink(this.navbrInstitution),
     new DevExpress.XtraNavBar.NavBarItemLink(this.navbrGeneralStore)});
     this.navBarGroup11.Name = "navBarGroup11";
     this.navBarGroup11.SmallImage = ((System.Drawing.Image)(resources.GetObject("navBarGroup11.SmallImage")));
     //
     // Administration
     //
     this.Administration.Caption = "Administration";
     this.Administration.Name = "Administration";
     this.Administration.LinkClicked += new DevExpress.XtraNavBar.NavBarLinkEventHandler(this.reportopen_LinkClicked);
     //
     // Financials
     //
     this.Financials.Caption = "Financials";
     this.Financials.Name = "Financials";
     this.Financials.LinkClicked += new DevExpress.XtraNavBar.NavBarLinkEventHandler(this.reportopen_LinkClicked);
     //
     // Accounts
     //
     this.Accounts.Caption = "Accounts";
     this.Accounts.Name = "Accounts";
     this.Accounts.LinkClicked += new DevExpress.XtraNavBar.NavBarLinkEventHandler(this.reportopen_LinkClicked);
     //
     // Claims
     //
     this.Claims.Caption = "Claims";
     this.Claims.Name = "Claims";
     this.Claims.LinkClicked += new DevExpress.XtraNavBar.NavBarLinkEventHandler(this.reportopen_LinkClicked);
     //
     // Sales
     //
     this.Sales.Caption = "Sales A/R";
     this.Sales.Name = "Sales";
     this.Sales.LinkClicked += new DevExpress.XtraNavBar.NavBarLinkEventHandler(this.reportopen_LinkClicked);
     //
     // navbrPurchasing
     //
     this.navbrPurchasing.Caption = "Purchasing A/P";
     this.navbrPurchasing.Name = "navbrPurchasing";
     this.navbrPurchasing.LinkClicked += new DevExpress.XtraNavBar.NavBarLinkEventHandler(this.reportopen_LinkClicked);
     //
     // navbrPartners
     //
     this.navbrPartners.Caption = "Business Partners";
     this.navbrPartners.Name = "navbrPartners";
     this.navbrPartners.LinkClicked += new DevExpress.XtraNavBar.NavBarLinkEventHandler(this.reportopen_LinkClicked);
     //
     // navbrBanking
     //
     this.navbrBanking.Caption = "Banking";
     this.navbrBanking.Name = "navbrBanking";
     this.navbrBanking.LinkClicked += new DevExpress.XtraNavBar.NavBarLinkEventHandler(this.reportopen_LinkClicked);
     //
     // navbrInventory
     //
     this.navbrInventory.Caption = "Inventory";
     this.navbrInventory.Name = "navbrInventory";
     this.navbrInventory.LinkClicked += new DevExpress.XtraNavBar.NavBarLinkEventHandler(this.reportopen_LinkClicked);
     //
     // navbrHumanResource
     //
     this.navbrHumanResource.Caption = "Human Resource";
     this.navbrHumanResource.Name = "navbrHumanResource";
     this.navbrHumanResource.LinkClicked += new DevExpress.XtraNavBar.NavBarLinkEventHandler(this.reportopen_LinkClicked);
     //
     // navbrFleetnSupply
     //
     this.navbrFleetnSupply.Caption = "Fleets & Supply";
     this.navbrFleetnSupply.Name = "navbrFleetnSupply";
     this.navbrFleetnSupply.LinkClicked += new DevExpress.XtraNavBar.NavBarLinkEventHandler(this.reportopen_LinkClicked);
     //
     // navbrInstitution
     //
     this.navbrInstitution.Caption = "Institution";
     this.navbrInstitution.Name = "navbrInstitution";
     this.navbrInstitution.LinkClicked += new DevExpress.XtraNavBar.NavBarLinkEventHandler(this.reportopen_LinkClicked);
     //
     // navbrGeneralStore
     //
     this.navbrGeneralStore.Caption = "General Store";
     this.navbrGeneralStore.Name = "navbrGeneralStore";
     this.navbrGeneralStore.LinkClicked += new DevExpress.XtraNavBar.NavBarLinkEventHandler(this.reportopen_LinkClicked);
     //
     // navBarControl1
     //
     this.navBarControl1.ActiveGroup = this.navBarGroup2;
     this.navBarControl1.Dock = System.Windows.Forms.DockStyle.Left;
     this.navBarControl1.Groups.AddRange(new DevExpress.XtraNavBar.NavBarGroup[] {
     this.navBarGroup2,
     this.navBarGroup3,
     this.navBarGroup12,
     this.navBarGroup1,
     this.navBarGroup4,
     this.navBarGroup5,
     this.navBarGroup6,
     this.navBarGroup7,
     this.navBarGroup8,
     this.navBarGroup9,
     this.navBarGroup10,
     this.navBarGroup13,
     this.navBarGroup14,
     this.navBarGroup11});
     this.navBarControl1.Items.AddRange(new DevExpress.XtraNavBar.NavBarItem[] {
     this.navBarItem1,
     this.navBarItem45,
     this.frmModulesList,
     this.frmaddUsers,
     this.frmUserRights,
     this.Administration,
     this.frmTown,
     this.Financials,
     this.Accounts,
     this.Claims,
     this.Sales,
     this.navbrPurchasing,
     this.navbrPartners,
     this.navbrBanking,
     this.navbrInventory,
     this.navbrHumanResource,
     this.navbrFleetnSupply,
     this.navbrInstitution,
     this.navbrGeneralStore,
     this.frmOurCompanyGroups,
     this.frmCustomers,
     this.frmProducts,
     this.frmCompanyGroup,
     this.frmGeneralSettings,
     this.frmEmployeeTargets,
     this.frmProductGroup,
     this.frmVendorEmployees,
     this.frmPurchaseOrder,
     this.frmGRN,
     this.frmPurchaseInvoice,
     this.frmDeliveryChallan,
     this.frmPurchaseReturn,
     this.frmHoldScan,
     this.frmOpenRSS,
     this.frmOpenRssStock,
     this.frmReturnSummary,
     this.frmOpenDSS,
     this.frmMPOSSync,
     this.frmBatchCorrection,
     this.frmIntimations,
     this.navBarItem2,
     this.frmSelectSummary,
     this.frmSaleInvoiceGeneration,
     this.frmEmailManager});
     this.navBarControl1.Location = new System.Drawing.Point(0, 147);
     this.navBarControl1.Name = "navBarControl1";
     this.navBarControl1.OptionsNavPane.ExpandedWidth = 170;
     this.navBarControl1.PaintStyleKind = DevExpress.XtraNavBar.NavBarViewKind.ExplorerBar;
     this.navBarControl1.Size = new System.Drawing.Size(170, 506);
     this.navBarControl1.StoreDefaultPaintStyleName = true;
     this.navBarControl1.TabIndex = 3;
     this.navBarControl1.Text = "navBarControl1";
     //
     // navBarGroup12
     //
     this.navBarGroup12.Caption = "Accounts";
     this.navBarGroup12.Expanded = true;
     this.navBarGroup12.Name = "navBarGroup12";
     this.navBarGroup12.SmallImage = ((System.Drawing.Image)(resources.GetObject("navBarGroup12.SmallImage")));
     //
     // navBarGroup1
     //
     this.navBarGroup1.Caption = "Claims";
     this.navBarGroup1.Name = "navBarGroup1";
     this.navBarGroup1.SmallImage = ((System.Drawing.Image)(resources.GetObject("navBarGroup1.SmallImage")));
     //
     // navBarGroup13
     //
     this.navBarGroup13.Caption = "Institution";
     this.navBarGroup13.Name = "navBarGroup13";
     this.navBarGroup13.SmallImage = ((System.Drawing.Image)(resources.GetObject("navBarGroup13.SmallImage")));
     //
     // navBarGroup14
     //
     this.navBarGroup14.Caption = "General Store";
     this.navBarGroup14.Name = "navBarGroup14";
     this.navBarGroup14.SmallImage = ((System.Drawing.Image)(resources.GetObject("navBarGroup14.SmallImage")));
     //
     // button1
     //
     this.button1.Location = new System.Drawing.Point(341, 90);
     this.button1.Name = "button1";
     this.button1.Size = new System.Drawing.Size(75, 23);
     this.button1.TabIndex = 11;
     this.button1.Text = "Lock";
     this.button1.UseVisualStyleBackColor = true;
     this.button1.Click += new System.EventHandler(this.button1_Click);
     //
     // frmMain
     //
     this.AllowFormGlass = DevExpress.Utils.DefaultBoolean.True;
     this.Appearance.BackColor = System.Drawing.Color.LightYellow;
     this.Appearance.BackColor2 = System.Drawing.Color.Olive;
     this.Appearance.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(0)))), ((int)(((byte)(0)))), ((int)(((byte)(192)))));
     this.Appearance.Options.UseBackColor = true;
     this.Appearance.Options.UseBorderColor = true;
     this.Appearance.Options.UseFont = true;
     this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
     this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
     this.BackgroundImageLayoutStore = System.Windows.Forms.ImageLayout.Center;
     this.BackgroundImageStore = global::ERPGUI.Properties.Resources.bmc2;
     this.ClientSize = new System.Drawing.Size(1190, 684);
     this.Controls.Add(this.button1);
     this.Controls.Add(this.navBarControl1);
     this.Controls.Add(this.ribbonStatusBar1);
     this.Controls.Add(this.ribbonControl1);
     this.Font = new System.Drawing.Font("Tahoma", 8F);
     this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedSingle;
     this.Icon = ((System.Drawing.Icon)(resources.GetObject("$this.Icon")));
     this.InactiveGlowColor = System.Drawing.Color.FromArgb(((int)(((byte)(128)))), ((int)(((byte)(128)))), ((int)(((byte)(255)))));
     this.IsMdiContainer = true;
     this.Margin = new System.Windows.Forms.Padding(3, 4, 3, 4);
     this.Name = "frmMain";
     this.Ribbon = this.ribbonControl1;
     this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen;
     this.StatusBar = this.ribbonStatusBar1;
     this.Text = "ERP - Babar Medicine Company Lahore";
     this.WindowState = System.Windows.Forms.FormWindowState.Maximized;
     this.FormClosing += new System.Windows.Forms.FormClosingEventHandler(this.frmMain_FormClosing);
     this.Load += new System.EventHandler(this.frmMain_Load);
     ((System.ComponentModel.ISupportInitialize)(this.ribbonControl1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemToggleSwitch1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.navBarControl1)).EndInit();
     this.ResumeLayout(false);
     this.PerformLayout();
 }
Example #37
0
 /// <summary>
 /// Обязательный метод для поддержки конструктора - не изменяйте
 /// содержимое данного метода при помощи редактора кода.
 /// </summary>
 private void InitializeComponent()
 {
     DevExpress.XtraSplashScreen.SplashScreenManager splashScreenManager1 = new DevExpress.XtraSplashScreen.SplashScreenManager(this, typeof(global::Steganography.SplashScreen1), true, true);
     System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(MainForm));
     DevExpress.Utils.Animation.PushTransition pushTransition1 = new DevExpress.Utils.Animation.PushTransition();
     this.formAssistant1 = new DevExpress.XtraBars.FormAssistant();
     this.ribbonStatusBar1 = new DevExpress.XtraBars.Ribbon.RibbonStatusBar();
     this.ribbonStatusBar2 = new DevExpress.XtraBars.Ribbon.RibbonStatusBar();
     this.ribbonControl = new DevExpress.XtraBars.Ribbon.RibbonControl();
     this.applicationMenu2 = new DevExpress.XtraBars.Ribbon.ApplicationMenu();
     this.barButtonItemExit = new DevExpress.XtraBars.BarButtonItem();
     this.barButtonItemAbout = new DevExpress.XtraBars.BarButtonItem();
     this.barButtonItemUnpack = new DevExpress.XtraBars.BarButtonItem();
     this.barButtonItemOptions = new DevExpress.XtraBars.BarButtonItem();
     this.skinRibbonGalleryBarItem1 = new DevExpress.XtraBars.SkinRibbonGalleryBarItem();
     this.barButtonItemExecute = new DevExpress.XtraBars.BarButtonItem();
     this.barButtonItemPack = new DevExpress.XtraBars.BarButtonItem();
     this.barButtonItemOptionsSave = new DevExpress.XtraBars.BarButtonItem();
     this.barButtonItemOptionsLoad = new DevExpress.XtraBars.BarButtonItem();
     this.barButtonItem1 = new DevExpress.XtraBars.BarButtonItem();
     this.barButtonItem2 = new DevExpress.XtraBars.BarButtonItem();
     this.barButtonItem3 = new DevExpress.XtraBars.BarButtonItem();
     this.barButtonItem4 = new DevExpress.XtraBars.BarButtonItem();
     this.barButtonItem5 = new DevExpress.XtraBars.BarButtonItem();
     this.barButtonItem6 = new DevExpress.XtraBars.BarButtonItem();
     this.barButtonItem7 = new DevExpress.XtraBars.BarButtonItem();
     this.barButtonItemGamma = new DevExpress.XtraBars.BarButtonItem();
     this.barButtonItem9 = new DevExpress.XtraBars.BarButtonItem();
     this.barButtonItemWeb = new DevExpress.XtraBars.BarButtonItem();
     this.barButtonItemGroups = new DevExpress.XtraBars.BarButtonItem();
     this.barButtonItemForum = new DevExpress.XtraBars.BarButtonItem();
     this.barButtonItem13 = new DevExpress.XtraBars.BarButtonItem();
     this.barButtonItem14 = new DevExpress.XtraBars.BarButtonItem();
     this.barButtonItemShowSampleImage = new DevExpress.XtraBars.BarButtonItem();
     this.barButtonItem16 = new DevExpress.XtraBars.BarButtonItem();
     this.barButtonItem17 = new DevExpress.XtraBars.BarButtonItem();
     this.barButtonItemShowMedianImage = new DevExpress.XtraBars.BarButtonItem();
     this.barButtonItemError = new DevExpress.XtraBars.BarButtonItem();
     this.barButtonItemBarcode = new DevExpress.XtraBars.BarButtonItem();
     this.barButtonItemErase = new DevExpress.XtraBars.BarButtonItem();
     this.barButtonItemCheck = new DevExpress.XtraBars.BarButtonItem();
     this.barButtonItemChecksum = new DevExpress.XtraBars.BarButtonItem();
     this.ribbonMiniToolbar1 = new DevExpress.XtraBars.Ribbon.RibbonMiniToolbar();
     this.ribbonPageCategoryPack = new DevExpress.XtraBars.Ribbon.RibbonPageCategory();
     this.ribbonPagePack = new DevExpress.XtraBars.Ribbon.RibbonPage();
     this.ribbonPageGroup7 = new DevExpress.XtraBars.Ribbon.RibbonPageGroup();
     this.ribbonPageGroup16 = new DevExpress.XtraBars.Ribbon.RibbonPageGroup();
     this.ribbonPageGroup31 = new DevExpress.XtraBars.Ribbon.RibbonPageGroup();
     this.ribbonPageGroup9 = new DevExpress.XtraBars.Ribbon.RibbonPageGroup();
     this.ribbonPageGroup13 = new DevExpress.XtraBars.Ribbon.RibbonPageGroup();
     this.ribbonPageGroup17 = new DevExpress.XtraBars.Ribbon.RibbonPageGroup();
     this.ribbonPage4 = new DevExpress.XtraBars.Ribbon.RibbonPage();
     this.ribbonPageGroup33 = new DevExpress.XtraBars.Ribbon.RibbonPageGroup();
     this.ribbonPageGroup34 = new DevExpress.XtraBars.Ribbon.RibbonPageGroup();
     this.ribbonPageCategoryUnpack = new DevExpress.XtraBars.Ribbon.RibbonPageCategory();
     this.ribbonPageUnpack = new DevExpress.XtraBars.Ribbon.RibbonPage();
     this.ribbonPageGroup8 = new DevExpress.XtraBars.Ribbon.RibbonPageGroup();
     this.ribbonPageGroup20 = new DevExpress.XtraBars.Ribbon.RibbonPageGroup();
     this.ribbonPageGroup32 = new DevExpress.XtraBars.Ribbon.RibbonPageGroup();
     this.ribbonPageGroup10 = new DevExpress.XtraBars.Ribbon.RibbonPageGroup();
     this.ribbonPageGroup14 = new DevExpress.XtraBars.Ribbon.RibbonPageGroup();
     this.ribbonPageGroup18 = new DevExpress.XtraBars.Ribbon.RibbonPageGroup();
     this.ribbonPage5 = new DevExpress.XtraBars.Ribbon.RibbonPage();
     this.ribbonPageGroup35 = new DevExpress.XtraBars.Ribbon.RibbonPageGroup();
     this.ribbonPageGroup36 = new DevExpress.XtraBars.Ribbon.RibbonPageGroup();
     this.ribbonPageCategoryOptions = new DevExpress.XtraBars.Ribbon.RibbonPageCategory();
     this.ribbonPageOptions = new DevExpress.XtraBars.Ribbon.RibbonPage();
     this.ribbonPageGroup11 = new DevExpress.XtraBars.Ribbon.RibbonPageGroup();
     this.ribbonPageGroup29 = new DevExpress.XtraBars.Ribbon.RibbonPageGroup();
     this.ribbonPageGroup15 = new DevExpress.XtraBars.Ribbon.RibbonPageGroup();
     this.ribbonPageGroup19 = new DevExpress.XtraBars.Ribbon.RibbonPageGroup();
     this.ribbonPageCategory1 = new DevExpress.XtraBars.Ribbon.RibbonPageCategory();
     this.ribbonPage7 = new DevExpress.XtraBars.Ribbon.RibbonPage();
     this.ribbonPageGroup30 = new DevExpress.XtraBars.Ribbon.RibbonPageGroup();
     this.ribbonPageGroup25 = new DevExpress.XtraBars.Ribbon.RibbonPageGroup();
     this.ribbonPageGroup22 = new DevExpress.XtraBars.Ribbon.RibbonPageGroup();
     this.ribbonPage1 = new DevExpress.XtraBars.Ribbon.RibbonPage();
     this.ribbonPageGroup21 = new DevExpress.XtraBars.Ribbon.RibbonPageGroup();
     this.ribbonPageGroup6 = new DevExpress.XtraBars.Ribbon.RibbonPageGroup();
     this.ribbonPageGroup26 = new DevExpress.XtraBars.Ribbon.RibbonPageGroup();
     this.ribbonPageGroup12 = new DevExpress.XtraBars.Ribbon.RibbonPageGroup();
     this.ribbonPageGroup2 = new DevExpress.XtraBars.Ribbon.RibbonPageGroup();
     this.ribbonPage3 = new DevExpress.XtraBars.Ribbon.RibbonPage();
     this.ribbonPageGroup1 = new DevExpress.XtraBars.Ribbon.RibbonPageGroup();
     this.ribbonPageGroup3 = new DevExpress.XtraBars.Ribbon.RibbonPageGroup();
     this.ribbonPageGroup24 = new DevExpress.XtraBars.Ribbon.RibbonPageGroup();
     this.ribbonPageGroup23 = new DevExpress.XtraBars.Ribbon.RibbonPageGroup();
     this.defaultLookAndFeel1 = new DevExpress.LookAndFeel.DefaultLookAndFeel();
     this.workspaceManager1 = new DevExpress.Utils.WorkspaceManager();
     this.splitContainerControl1 = new DevExpress.XtraEditors.SplitContainerControl();
     this.navBarControl1 = new DevExpress.XtraNavBar.NavBarControl();
     this.navBarGroup1 = new DevExpress.XtraNavBar.NavBarGroup();
     this.navBarItemPack = new DevExpress.XtraNavBar.NavBarItem();
     this.navBarItemUnpack = new DevExpress.XtraNavBar.NavBarItem();
     this.navBarItemOptions = new DevExpress.XtraNavBar.NavBarItem();
     this.mainControl = new Steganography.BbsControl();
     this.ribbonPageGroup4 = new DevExpress.XtraBars.Ribbon.RibbonPageGroup();
     this.ribbonPage2 = new DevExpress.XtraBars.Ribbon.RibbonPage();
     ((System.ComponentModel.ISupportInitialize)(this.ribbonControl)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.applicationMenu2)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.splitContainerControl1)).BeginInit();
     this.splitContainerControl1.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.navBarControl1)).BeginInit();
     this.SuspendLayout();
     //
     // ribbonStatusBar1
     //
     this.ribbonStatusBar1.Location = new System.Drawing.Point(0, 681);
     this.ribbonStatusBar1.Name = "ribbonStatusBar1";
     this.ribbonStatusBar1.Ribbon = null;
     this.ribbonStatusBar1.Size = new System.Drawing.Size(1261, 20);
     //
     // ribbonStatusBar2
     //
     this.ribbonStatusBar2.Location = new System.Drawing.Point(0, 815);
     this.ribbonStatusBar2.Name = "ribbonStatusBar2";
     this.ribbonStatusBar2.Ribbon = this.ribbonControl;
     this.ribbonStatusBar2.Size = new System.Drawing.Size(1215, 55);
     //
     // ribbonControl
     //
     this.ribbonControl.ApplicationButtonDropDownControl = this.applicationMenu2;
     this.ribbonControl.ExpandCollapseItem.Id = 0;
     this.ribbonControl.Items.AddRange(new DevExpress.XtraBars.BarItem[] {
     this.ribbonControl.ExpandCollapseItem,
     this.barButtonItemAbout,
     this.barButtonItemUnpack,
     this.barButtonItemOptions,
     this.skinRibbonGalleryBarItem1,
     this.barButtonItemExecute,
     this.barButtonItemPack,
     this.barButtonItemExit,
     this.barButtonItemOptionsSave,
     this.barButtonItemOptionsLoad,
     this.barButtonItem1,
     this.barButtonItem2,
     this.barButtonItem3,
     this.barButtonItem4,
     this.barButtonItem5,
     this.barButtonItem6,
     this.barButtonItem7,
     this.barButtonItemGamma,
     this.barButtonItem9,
     this.barButtonItemWeb,
     this.barButtonItemGroups,
     this.barButtonItemForum,
     this.barButtonItem13,
     this.barButtonItem14,
     this.barButtonItemShowSampleImage,
     this.barButtonItem16,
     this.barButtonItem17,
     this.barButtonItemShowMedianImage,
     this.barButtonItemError,
     this.barButtonItemBarcode,
     this.barButtonItemErase,
     this.barButtonItemCheck,
     this.barButtonItemChecksum});
     this.ribbonControl.Location = new System.Drawing.Point(0, 0);
     this.ribbonControl.MaxItemId = 2;
     this.ribbonControl.MiniToolbars.Add(this.ribbonMiniToolbar1);
     this.ribbonControl.Name = "ribbonControl";
     this.ribbonControl.PageCategories.AddRange(new DevExpress.XtraBars.Ribbon.RibbonPageCategory[] {
     this.ribbonPageCategoryPack,
     this.ribbonPageCategoryUnpack,
     this.ribbonPageCategoryOptions,
     this.ribbonPageCategory1});
     this.ribbonControl.Pages.AddRange(new DevExpress.XtraBars.Ribbon.RibbonPage[] {
     this.ribbonPage1,
     this.ribbonPage3});
     this.ribbonControl.Size = new System.Drawing.Size(1215, 249);
     this.ribbonControl.StatusBar = this.ribbonStatusBar2;
     this.ribbonControl.Toolbar.ItemLinks.Add(this.barButtonItemPack);
     this.ribbonControl.Toolbar.ItemLinks.Add(this.barButtonItemUnpack);
     this.ribbonControl.Toolbar.ItemLinks.Add(this.barButtonItemOptionsLoad);
     this.ribbonControl.Toolbar.ItemLinks.Add(this.barButtonItemOptionsSave);
     this.ribbonControl.Toolbar.ItemLinks.Add(this.barButtonItem5);
     //
     // applicationMenu2
     //
     this.applicationMenu2.ItemLinks.Add(this.barButtonItemExit);
     this.applicationMenu2.Name = "applicationMenu2";
     this.applicationMenu2.Ribbon = this.ribbonControl;
     //
     // barButtonItemExit
     //
     this.barButtonItemExit.Caption = "Выход";
     this.barButtonItemExit.CategoryGuid = new System.Guid("6ffddb2b-9015-4d97-a4c1-91613e0ef537");
     this.barButtonItemExit.Glyph = ((System.Drawing.Image)(resources.GetObject("barButtonItemExit.Glyph")));
     this.barButtonItemExit.Id = 2;
     this.barButtonItemExit.LargeGlyph = ((System.Drawing.Image)(resources.GetObject("barButtonItemExit.LargeGlyph")));
     this.barButtonItemExit.Name = "barButtonItemExit";
     this.barButtonItemExit.ItemClick += new DevExpress.XtraBars.ItemClickEventHandler(this.Exit_ItemClick);
     //
     // barButtonItemAbout
     //
     this.barButtonItemAbout.Caption = "О программе";
     this.barButtonItemAbout.Glyph = ((System.Drawing.Image)(resources.GetObject("barButtonItemAbout.Glyph")));
     this.barButtonItemAbout.Id = 1;
     this.barButtonItemAbout.LargeGlyph = ((System.Drawing.Image)(resources.GetObject("barButtonItemAbout.LargeGlyph")));
     this.barButtonItemAbout.Name = "barButtonItemAbout";
     this.barButtonItemAbout.ItemClick += new DevExpress.XtraBars.ItemClickEventHandler(this.About_ItemClick);
     //
     // barButtonItemUnpack
     //
     this.barButtonItemUnpack.Caption = "Распаковать";
     this.barButtonItemUnpack.Glyph = ((System.Drawing.Image)(resources.GetObject("barButtonItemUnpack.Glyph")));
     this.barButtonItemUnpack.Id = 3;
     this.barButtonItemUnpack.LargeGlyph = ((System.Drawing.Image)(resources.GetObject("barButtonItemUnpack.LargeGlyph")));
     this.barButtonItemUnpack.Name = "barButtonItemUnpack";
     this.barButtonItemUnpack.ItemClick += new DevExpress.XtraBars.ItemClickEventHandler(this.Unpack_ItemClick);
     //
     // barButtonItemOptions
     //
     this.barButtonItemOptions.Caption = "Параметры";
     this.barButtonItemOptions.Glyph = ((System.Drawing.Image)(resources.GetObject("barButtonItemOptions.Glyph")));
     this.barButtonItemOptions.Id = 4;
     this.barButtonItemOptions.LargeGlyph = ((System.Drawing.Image)(resources.GetObject("barButtonItemOptions.LargeGlyph")));
     this.barButtonItemOptions.Name = "barButtonItemOptions";
     this.barButtonItemOptions.ItemClick += new DevExpress.XtraBars.ItemClickEventHandler(this.Options_ItemClick);
     //
     // skinRibbonGalleryBarItem1
     //
     this.skinRibbonGalleryBarItem1.Caption = "skinRibbonGalleryBarItem1";
     this.skinRibbonGalleryBarItem1.Id = 5;
     this.skinRibbonGalleryBarItem1.Name = "skinRibbonGalleryBarItem1";
     //
     // barButtonItemExecute
     //
     this.barButtonItemExecute.Caption = "Выполнить";
     this.barButtonItemExecute.Glyph = ((System.Drawing.Image)(resources.GetObject("barButtonItemExecute.Glyph")));
     this.barButtonItemExecute.Id = 6;
     this.barButtonItemExecute.LargeGlyph = ((System.Drawing.Image)(resources.GetObject("barButtonItemExecute.LargeGlyph")));
     this.barButtonItemExecute.Name = "barButtonItemExecute";
     this.barButtonItemExecute.ItemClick += new DevExpress.XtraBars.ItemClickEventHandler(this.Execute_ItemClick);
     //
     // barButtonItemPack
     //
     this.barButtonItemPack.Caption = "Упаковать";
     this.barButtonItemPack.Glyph = ((System.Drawing.Image)(resources.GetObject("barButtonItemPack.Glyph")));
     this.barButtonItemPack.Id = 13;
     this.barButtonItemPack.LargeGlyph = ((System.Drawing.Image)(resources.GetObject("barButtonItemPack.LargeGlyph")));
     this.barButtonItemPack.Name = "barButtonItemPack";
     this.barButtonItemPack.ItemClick += new DevExpress.XtraBars.ItemClickEventHandler(this.Pack_ItemClick);
     //
     // barButtonItemOptionsSave
     //
     this.barButtonItemOptionsSave.Caption = "Сохранить";
     this.barButtonItemOptionsSave.Glyph = ((System.Drawing.Image)(resources.GetObject("barButtonItemOptionsSave.Glyph")));
     this.barButtonItemOptionsSave.Id = 1;
     this.barButtonItemOptionsSave.LargeGlyph = ((System.Drawing.Image)(resources.GetObject("barButtonItemOptionsSave.LargeGlyph")));
     this.barButtonItemOptionsSave.Name = "barButtonItemOptionsSave";
     this.barButtonItemOptionsSave.ItemClick += new DevExpress.XtraBars.ItemClickEventHandler(this.OptionsSave_ItemClick);
     //
     // barButtonItemOptionsLoad
     //
     this.barButtonItemOptionsLoad.Caption = "Загрузить";
     this.barButtonItemOptionsLoad.Glyph = ((System.Drawing.Image)(resources.GetObject("barButtonItemOptionsLoad.Glyph")));
     this.barButtonItemOptionsLoad.Id = 2;
     this.barButtonItemOptionsLoad.LargeGlyph = ((System.Drawing.Image)(resources.GetObject("barButtonItemOptionsLoad.LargeGlyph")));
     this.barButtonItemOptionsLoad.Name = "barButtonItemOptionsLoad";
     this.barButtonItemOptionsLoad.ItemClick += new DevExpress.XtraBars.ItemClickEventHandler(this.OptionsLoad_ItemClick);
     //
     // barButtonItem1
     //
     this.barButtonItem1.Caption = "Образец";
     this.barButtonItem1.Glyph = ((System.Drawing.Image)(resources.GetObject("barButtonItem1.Glyph")));
     this.barButtonItem1.Id = 4;
     this.barButtonItem1.LargeGlyph = ((System.Drawing.Image)(resources.GetObject("barButtonItem1.LargeGlyph")));
     this.barButtonItem1.Name = "barButtonItem1";
     this.barButtonItem1.ItemClick += new DevExpress.XtraBars.ItemClickEventHandler(this.PackingOpenImage_ItemClick);
     //
     // barButtonItem2
     //
     this.barButtonItem2.Caption = "Сообщение";
     this.barButtonItem2.Glyph = ((System.Drawing.Image)(resources.GetObject("barButtonItem2.Glyph")));
     this.barButtonItem2.Id = 5;
     this.barButtonItem2.LargeGlyph = ((System.Drawing.Image)(resources.GetObject("barButtonItem2.LargeGlyph")));
     this.barButtonItem2.Name = "barButtonItem2";
     this.barButtonItem2.ItemClick += new DevExpress.XtraBars.ItemClickEventHandler(this.PackingOpenFile_ItemClick);
     //
     // barButtonItem3
     //
     this.barButtonItem3.Caption = "Сохранить";
     this.barButtonItem3.Glyph = ((System.Drawing.Image)(resources.GetObject("barButtonItem3.Glyph")));
     this.barButtonItem3.Id = 6;
     this.barButtonItem3.LargeGlyph = ((System.Drawing.Image)(resources.GetObject("barButtonItem3.LargeGlyph")));
     this.barButtonItem3.Name = "barButtonItem3";
     this.barButtonItem3.ItemClick += new DevExpress.XtraBars.ItemClickEventHandler(this.PackingSaveImage_ItemClick);
     //
     // barButtonItem4
     //
     this.barButtonItem4.Caption = "Отправить";
     this.barButtonItem4.Glyph = ((System.Drawing.Image)(resources.GetObject("barButtonItem4.Glyph")));
     this.barButtonItem4.Id = 7;
     this.barButtonItem4.LargeGlyph = ((System.Drawing.Image)(resources.GetObject("barButtonItem4.LargeGlyph")));
     this.barButtonItem4.Name = "barButtonItem4";
     this.barButtonItem4.ItemClick += new DevExpress.XtraBars.ItemClickEventHandler(this.PackingSendImage_ItemClick);
     //
     // barButtonItem5
     //
     this.barButtonItem5.Caption = "Справка";
     this.barButtonItem5.Glyph = ((System.Drawing.Image)(resources.GetObject("barButtonItem5.Glyph")));
     this.barButtonItem5.Id = 9;
     this.barButtonItem5.LargeGlyph = ((System.Drawing.Image)(resources.GetObject("barButtonItem5.LargeGlyph")));
     this.barButtonItem5.Name = "barButtonItem5";
     //
     // barButtonItem6
     //
     this.barButtonItem6.Caption = "Картинка";
     this.barButtonItem6.Glyph = ((System.Drawing.Image)(resources.GetObject("barButtonItem6.Glyph")));
     this.barButtonItem6.Id = 10;
     this.barButtonItem6.LargeGlyph = ((System.Drawing.Image)(resources.GetObject("barButtonItem6.LargeGlyph")));
     this.barButtonItem6.Name = "barButtonItem6";
     this.barButtonItem6.ItemClick += new DevExpress.XtraBars.ItemClickEventHandler(this.UnpackingOpenImage_ItemClick);
     //
     // barButtonItem7
     //
     this.barButtonItem7.Caption = "Сохранить";
     this.barButtonItem7.Glyph = ((System.Drawing.Image)(resources.GetObject("barButtonItem7.Glyph")));
     this.barButtonItem7.Id = 11;
     this.barButtonItem7.LargeGlyph = ((System.Drawing.Image)(resources.GetObject("barButtonItem7.LargeGlyph")));
     this.barButtonItem7.Name = "barButtonItem7";
     this.barButtonItem7.ItemClick += new DevExpress.XtraBars.ItemClickEventHandler(this.UnpackingSaveFile_ItemClick);
     //
     // barButtonItemGamma
     //
     this.barButtonItemGamma.Caption = "Гамма";
     this.barButtonItemGamma.Glyph = ((System.Drawing.Image)(resources.GetObject("barButtonItemGamma.Glyph")));
     this.barButtonItemGamma.Id = 12;
     this.barButtonItemGamma.LargeGlyph = ((System.Drawing.Image)(resources.GetObject("barButtonItemGamma.LargeGlyph")));
     this.barButtonItemGamma.Name = "barButtonItemGamma";
     this.barButtonItemGamma.ItemClick += new DevExpress.XtraBars.ItemClickEventHandler(this.ViewSequence_ItemClick);
     //
     // barButtonItem9
     //
     this.barButtonItem9.Caption = "Отправить";
     this.barButtonItem9.Glyph = ((System.Drawing.Image)(resources.GetObject("barButtonItem9.Glyph")));
     this.barButtonItem9.Id = 13;
     this.barButtonItem9.LargeGlyph = ((System.Drawing.Image)(resources.GetObject("barButtonItem9.LargeGlyph")));
     this.barButtonItem9.Name = "barButtonItem9";
     this.barButtonItem9.ItemClick += new DevExpress.XtraBars.ItemClickEventHandler(this.UnpackingSendFile_ItemClick);
     //
     // barButtonItemWeb
     //
     this.barButtonItemWeb.Caption = "Интернет";
     this.barButtonItemWeb.Glyph = ((System.Drawing.Image)(resources.GetObject("barButtonItemWeb.Glyph")));
     this.barButtonItemWeb.Id = 14;
     this.barButtonItemWeb.LargeGlyph = ((System.Drawing.Image)(resources.GetObject("barButtonItemWeb.LargeGlyph")));
     this.barButtonItemWeb.Name = "barButtonItemWeb";
     this.barButtonItemWeb.ItemClick += new DevExpress.XtraBars.ItemClickEventHandler(this.Internet_ItemClick);
     //
     // barButtonItemGroups
     //
     this.barButtonItemGroups.Caption = "Группы";
     this.barButtonItemGroups.Glyph = ((System.Drawing.Image)(resources.GetObject("barButtonItemGroups.Glyph")));
     this.barButtonItemGroups.Id = 15;
     this.barButtonItemGroups.LargeGlyph = ((System.Drawing.Image)(resources.GetObject("barButtonItemGroups.LargeGlyph")));
     this.barButtonItemGroups.Name = "barButtonItemGroups";
     //
     // barButtonItemForum
     //
     this.barButtonItemForum.Caption = "Форумы";
     this.barButtonItemForum.Glyph = ((System.Drawing.Image)(resources.GetObject("barButtonItemForum.Glyph")));
     this.barButtonItemForum.Id = 16;
     this.barButtonItemForum.LargeGlyph = ((System.Drawing.Image)(resources.GetObject("barButtonItemForum.LargeGlyph")));
     this.barButtonItemForum.Name = "barButtonItemForum";
     //
     // barButtonItem13
     //
     this.barButtonItem13.Caption = "Картинка";
     this.barButtonItem13.Glyph = ((System.Drawing.Image)(resources.GetObject("barButtonItem13.Glyph")));
     this.barButtonItem13.Id = 17;
     this.barButtonItem13.LargeGlyph = ((System.Drawing.Image)(resources.GetObject("barButtonItem13.LargeGlyph")));
     this.barButtonItem13.Name = "barButtonItem13";
     this.barButtonItem13.ItemClick += new DevExpress.XtraBars.ItemClickEventHandler(this.ShowCipherImage_ItemClick);
     //
     // barButtonItem14
     //
     this.barButtonItem14.Caption = "Сообщение";
     this.barButtonItem14.Glyph = ((System.Drawing.Image)(resources.GetObject("barButtonItem14.Glyph")));
     this.barButtonItem14.Id = 18;
     this.barButtonItem14.LargeGlyph = ((System.Drawing.Image)(resources.GetObject("barButtonItem14.LargeGlyph")));
     this.barButtonItem14.Name = "barButtonItem14";
     this.barButtonItem14.ItemClick += new DevExpress.XtraBars.ItemClickEventHandler(this.UnpackFileShow_ItemClick);
     //
     // barButtonItemShowSampleImage
     //
     this.barButtonItemShowSampleImage.Caption = "Образец";
     this.barButtonItemShowSampleImage.Glyph = ((System.Drawing.Image)(resources.GetObject("barButtonItemShowSampleImage.Glyph")));
     this.barButtonItemShowSampleImage.Id = 20;
     this.barButtonItemShowSampleImage.LargeGlyph = ((System.Drawing.Image)(resources.GetObject("barButtonItemShowSampleImage.LargeGlyph")));
     this.barButtonItemShowSampleImage.Name = "barButtonItemShowSampleImage";
     this.barButtonItemShowSampleImage.ItemClick += new DevExpress.XtraBars.ItemClickEventHandler(this.ShowSampleImage_ItemClick);
     //
     // barButtonItem16
     //
     this.barButtonItem16.Caption = "Сообщение";
     this.barButtonItem16.Glyph = ((System.Drawing.Image)(resources.GetObject("barButtonItem16.Glyph")));
     this.barButtonItem16.Id = 21;
     this.barButtonItem16.LargeGlyph = ((System.Drawing.Image)(resources.GetObject("barButtonItem16.LargeGlyph")));
     this.barButtonItem16.Name = "barButtonItem16";
     this.barButtonItem16.ItemClick += new DevExpress.XtraBars.ItemClickEventHandler(this.PackFileShow_ItemClick);
     //
     // barButtonItem17
     //
     this.barButtonItem17.Caption = "Картинка";
     this.barButtonItem17.Glyph = ((System.Drawing.Image)(resources.GetObject("barButtonItem17.Glyph")));
     this.barButtonItem17.Id = 22;
     this.barButtonItem17.LargeGlyph = ((System.Drawing.Image)(resources.GetObject("barButtonItem17.LargeGlyph")));
     this.barButtonItem17.Name = "barButtonItem17";
     this.barButtonItem17.ItemClick += new DevExpress.XtraBars.ItemClickEventHandler(this.ShowInputImage_ItemClick);
     //
     // barButtonItemShowMedianImage
     //
     this.barButtonItemShowMedianImage.Caption = "Среднее";
     this.barButtonItemShowMedianImage.Glyph = ((System.Drawing.Image)(resources.GetObject("barButtonItemShowMedianImage.Glyph")));
     this.barButtonItemShowMedianImage.Id = 23;
     this.barButtonItemShowMedianImage.LargeGlyph = ((System.Drawing.Image)(resources.GetObject("barButtonItemShowMedianImage.LargeGlyph")));
     this.barButtonItemShowMedianImage.Name = "barButtonItemShowMedianImage";
     this.barButtonItemShowMedianImage.ItemClick += new DevExpress.XtraBars.ItemClickEventHandler(this.ShowMedianImage_ItemClick);
     //
     // barButtonItemError
     //
     this.barButtonItemError.Caption = "Ошибки";
     this.barButtonItemError.Glyph = ((System.Drawing.Image)(resources.GetObject("barButtonItemError.Glyph")));
     this.barButtonItemError.Id = 25;
     this.barButtonItemError.LargeGlyph = ((System.Drawing.Image)(resources.GetObject("barButtonItemError.LargeGlyph")));
     this.barButtonItemError.Name = "barButtonItemError";
     //
     // barButtonItemBarcode
     //
     this.barButtonItemBarcode.Caption = "Баркод";
     this.barButtonItemBarcode.Glyph = ((System.Drawing.Image)(resources.GetObject("barButtonItemBarcode.Glyph")));
     this.barButtonItemBarcode.Id = 1;
     this.barButtonItemBarcode.LargeGlyph = ((System.Drawing.Image)(resources.GetObject("barButtonItemBarcode.LargeGlyph")));
     this.barButtonItemBarcode.Name = "barButtonItemBarcode";
     this.barButtonItemBarcode.ItemClick += new DevExpress.XtraBars.ItemClickEventHandler(this.Barcode_ItemClick);
     //
     // barButtonItemErase
     //
     this.barButtonItemErase.Caption = "Очистить";
     this.barButtonItemErase.Glyph = ((System.Drawing.Image)(resources.GetObject("barButtonItemErase.Glyph")));
     this.barButtonItemErase.Id = 2;
     this.barButtonItemErase.LargeGlyph = ((System.Drawing.Image)(resources.GetObject("barButtonItemErase.LargeGlyph")));
     this.barButtonItemErase.Name = "barButtonItemErase";
     this.barButtonItemErase.ItemClick += new DevExpress.XtraBars.ItemClickEventHandler(this.Erase_ItemClick);
     //
     // barButtonItemCheck
     //
     this.barButtonItemCheck.Caption = "Проверить";
     this.barButtonItemCheck.Glyph = ((System.Drawing.Image)(resources.GetObject("barButtonItemCheck.Glyph")));
     this.barButtonItemCheck.Id = 3;
     this.barButtonItemCheck.LargeGlyph = ((System.Drawing.Image)(resources.GetObject("barButtonItemCheck.LargeGlyph")));
     this.barButtonItemCheck.Name = "barButtonItemCheck";
     this.barButtonItemCheck.ItemClick += new DevExpress.XtraBars.ItemClickEventHandler(this.Check_ItemClick);
     //
     // barButtonItemChecksum
     //
     this.barButtonItemChecksum.Caption = "Контрольная сумма";
     this.barButtonItemChecksum.Glyph = ((System.Drawing.Image)(resources.GetObject("barButtonItemChecksum.Glyph")));
     this.barButtonItemChecksum.Id = 1;
     this.barButtonItemChecksum.LargeGlyph = ((System.Drawing.Image)(resources.GetObject("barButtonItemChecksum.LargeGlyph")));
     this.barButtonItemChecksum.Name = "barButtonItemChecksum";
     this.barButtonItemChecksum.ItemClick += new DevExpress.XtraBars.ItemClickEventHandler(this.barButtonItemChecksum_ItemClick);
     //
     // ribbonMiniToolbar1
     //
     this.ribbonMiniToolbar1.ItemLinks.Add(this.barButtonItemPack);
     this.ribbonMiniToolbar1.ItemLinks.Add(this.barButtonItemUnpack);
     this.ribbonMiniToolbar1.ItemLinks.Add(this.barButtonItemExit);
     //
     // ribbonPageCategoryPack
     //
     this.ribbonPageCategoryPack.Color = System.Drawing.Color.FromArgb(((int)(((byte)(192)))), ((int)(((byte)(255)))), ((int)(((byte)(192)))));
     this.ribbonPageCategoryPack.Name = "ribbonPageCategoryPack";
     this.ribbonPageCategoryPack.Pages.AddRange(new DevExpress.XtraBars.Ribbon.RibbonPage[] {
     this.ribbonPagePack,
     this.ribbonPage4});
     this.ribbonPageCategoryPack.Text = "Режим упаковки";
     //
     // ribbonPagePack
     //
     this.ribbonPagePack.Groups.AddRange(new DevExpress.XtraBars.Ribbon.RibbonPageGroup[] {
     this.ribbonPageGroup7,
     this.ribbonPageGroup16,
     this.ribbonPageGroup31,
     this.ribbonPageGroup9,
     this.ribbonPageGroup13,
     this.ribbonPageGroup17});
     this.ribbonPagePack.Image = ((System.Drawing.Image)(resources.GetObject("ribbonPagePack.Image")));
     this.ribbonPagePack.Name = "ribbonPagePack";
     this.ribbonPagePack.Text = "Упаковка";
     //
     // ribbonPageGroup7
     //
     this.ribbonPageGroup7.ItemLinks.Add(this.barButtonItemExecute);
     this.ribbonPageGroup7.ItemLinks.Add(this.barButtonItemErase);
     this.ribbonPageGroup7.ItemLinks.Add(this.barButtonItemCheck);
     this.ribbonPageGroup7.Name = "ribbonPageGroup7";
     this.ribbonPageGroup7.Text = "Задачи";
     //
     // ribbonPageGroup16
     //
     this.ribbonPageGroup16.ItemLinks.Add(this.barButtonItem1);
     this.ribbonPageGroup16.ItemLinks.Add(this.barButtonItem2);
     this.ribbonPageGroup16.ItemLinks.Add(this.barButtonItem3);
     this.ribbonPageGroup16.ItemLinks.Add(this.barButtonItem4);
     this.ribbonPageGroup16.Name = "ribbonPageGroup16";
     this.ribbonPageGroup16.Text = "Файлы";
     //
     // ribbonPageGroup31
     //
     this.ribbonPageGroup31.ItemLinks.Add(this.barButtonItemShowSampleImage);
     this.ribbonPageGroup31.ItemLinks.Add(this.barButtonItem16);
     this.ribbonPageGroup31.ItemLinks.Add(this.barButtonItem13);
     this.ribbonPageGroup31.Name = "ribbonPageGroup31";
     this.ribbonPageGroup31.Text = "Просмотр";
     //
     // ribbonPageGroup9
     //
     this.ribbonPageGroup9.ItemLinks.Add(this.barButtonItemOptionsLoad);
     this.ribbonPageGroup9.ItemLinks.Add(this.barButtonItemOptionsSave);
     this.ribbonPageGroup9.Name = "ribbonPageGroup9";
     this.ribbonPageGroup9.Text = "Параметры";
     //
     // ribbonPageGroup13
     //
     this.ribbonPageGroup13.ItemLinks.Add(this.barButtonItemExit);
     this.ribbonPageGroup13.Name = "ribbonPageGroup13";
     this.ribbonPageGroup13.Text = "Выход";
     //
     // ribbonPageGroup17
     //
     this.ribbonPageGroup17.ItemLinks.Add(this.barButtonItem5);
     this.ribbonPageGroup17.ItemLinks.Add(this.barButtonItemAbout);
     this.ribbonPageGroup17.Name = "ribbonPageGroup17";
     this.ribbonPageGroup17.Text = "Помощь";
     //
     // ribbonPage4
     //
     this.ribbonPage4.Groups.AddRange(new DevExpress.XtraBars.Ribbon.RibbonPageGroup[] {
     this.ribbonPageGroup33,
     this.ribbonPageGroup34});
     this.ribbonPage4.Image = ((System.Drawing.Image)(resources.GetObject("ribbonPage4.Image")));
     this.ribbonPage4.Name = "ribbonPage4";
     this.ribbonPage4.Text = "Анализ";
     //
     // ribbonPageGroup33
     //
     this.ribbonPageGroup33.ItemLinks.Add(this.barButtonItemGamma);
     this.ribbonPageGroup33.ItemLinks.Add(this.barButtonItemBarcode);
     this.ribbonPageGroup33.ItemLinks.Add(this.barButtonItemChecksum);
     this.ribbonPageGroup33.Name = "ribbonPageGroup33";
     this.ribbonPageGroup33.Text = "Анализ";
     //
     // ribbonPageGroup34
     //
     this.ribbonPageGroup34.ItemLinks.Add(this.barButtonItem5);
     this.ribbonPageGroup34.ItemLinks.Add(this.barButtonItemAbout);
     this.ribbonPageGroup34.Name = "ribbonPageGroup34";
     this.ribbonPageGroup34.Text = "Помощь";
     //
     // ribbonPageCategoryUnpack
     //
     this.ribbonPageCategoryUnpack.Color = System.Drawing.Color.FromArgb(((int)(((byte)(192)))), ((int)(((byte)(255)))), ((int)(((byte)(255)))));
     this.ribbonPageCategoryUnpack.Name = "ribbonPageCategoryUnpack";
     this.ribbonPageCategoryUnpack.Pages.AddRange(new DevExpress.XtraBars.Ribbon.RibbonPage[] {
     this.ribbonPageUnpack,
     this.ribbonPage5});
     this.ribbonPageCategoryUnpack.Text = "Режим распаковки";
     //
     // ribbonPageUnpack
     //
     this.ribbonPageUnpack.Groups.AddRange(new DevExpress.XtraBars.Ribbon.RibbonPageGroup[] {
     this.ribbonPageGroup8,
     this.ribbonPageGroup20,
     this.ribbonPageGroup32,
     this.ribbonPageGroup10,
     this.ribbonPageGroup14,
     this.ribbonPageGroup18});
     this.ribbonPageUnpack.Image = ((System.Drawing.Image)(resources.GetObject("ribbonPageUnpack.Image")));
     this.ribbonPageUnpack.Name = "ribbonPageUnpack";
     this.ribbonPageUnpack.Text = "Распаковка";
     //
     // ribbonPageGroup8
     //
     this.ribbonPageGroup8.ItemLinks.Add(this.barButtonItemExecute);
     this.ribbonPageGroup8.ItemLinks.Add(this.barButtonItemErase);
     this.ribbonPageGroup8.Name = "ribbonPageGroup8";
     this.ribbonPageGroup8.Text = "Задачи";
     //
     // ribbonPageGroup20
     //
     this.ribbonPageGroup20.ItemLinks.Add(this.barButtonItem6);
     this.ribbonPageGroup20.ItemLinks.Add(this.barButtonItem7);
     this.ribbonPageGroup20.ItemLinks.Add(this.barButtonItem9);
     this.ribbonPageGroup20.Name = "ribbonPageGroup20";
     this.ribbonPageGroup20.Text = "Файлы";
     //
     // ribbonPageGroup32
     //
     this.ribbonPageGroup32.ItemLinks.Add(this.barButtonItem17);
     this.ribbonPageGroup32.ItemLinks.Add(this.barButtonItemShowMedianImage);
     this.ribbonPageGroup32.ItemLinks.Add(this.barButtonItem14);
     this.ribbonPageGroup32.Name = "ribbonPageGroup32";
     this.ribbonPageGroup32.Text = "Просмотр";
     //
     // ribbonPageGroup10
     //
     this.ribbonPageGroup10.ItemLinks.Add(this.barButtonItemOptionsLoad);
     this.ribbonPageGroup10.ItemLinks.Add(this.barButtonItemOptionsSave);
     this.ribbonPageGroup10.Name = "ribbonPageGroup10";
     this.ribbonPageGroup10.Text = "Параметры";
     //
     // ribbonPageGroup14
     //
     this.ribbonPageGroup14.ItemLinks.Add(this.barButtonItemExit);
     this.ribbonPageGroup14.Name = "ribbonPageGroup14";
     this.ribbonPageGroup14.Text = "Выход";
     //
     // ribbonPageGroup18
     //
     this.ribbonPageGroup18.ItemLinks.Add(this.barButtonItem5);
     this.ribbonPageGroup18.ItemLinks.Add(this.barButtonItemAbout);
     this.ribbonPageGroup18.Name = "ribbonPageGroup18";
     this.ribbonPageGroup18.Text = "Помощь";
     //
     // ribbonPage5
     //
     this.ribbonPage5.Groups.AddRange(new DevExpress.XtraBars.Ribbon.RibbonPageGroup[] {
     this.ribbonPageGroup35,
     this.ribbonPageGroup36});
     this.ribbonPage5.Image = ((System.Drawing.Image)(resources.GetObject("ribbonPage5.Image")));
     this.ribbonPage5.Name = "ribbonPage5";
     this.ribbonPage5.Text = "Анализ";
     //
     // ribbonPageGroup35
     //
     this.ribbonPageGroup35.ItemLinks.Add(this.barButtonItemGamma);
     this.ribbonPageGroup35.ItemLinks.Add(this.barButtonItemBarcode);
     this.ribbonPageGroup35.ItemLinks.Add(this.barButtonItemChecksum);
     this.ribbonPageGroup35.Name = "ribbonPageGroup35";
     this.ribbonPageGroup35.Text = "Анализ";
     //
     // ribbonPageGroup36
     //
     this.ribbonPageGroup36.ItemLinks.Add(this.barButtonItem5);
     this.ribbonPageGroup36.ItemLinks.Add(this.barButtonItemAbout);
     this.ribbonPageGroup36.Name = "ribbonPageGroup36";
     this.ribbonPageGroup36.Text = "Помощь";
     //
     // ribbonPageCategoryOptions
     //
     this.ribbonPageCategoryOptions.Color = System.Drawing.Color.FromArgb(((int)(((byte)(255)))), ((int)(((byte)(192)))), ((int)(((byte)(192)))));
     this.ribbonPageCategoryOptions.Name = "ribbonPageCategoryOptions";
     this.ribbonPageCategoryOptions.Pages.AddRange(new DevExpress.XtraBars.Ribbon.RibbonPage[] {
     this.ribbonPageOptions});
     this.ribbonPageCategoryOptions.Text = "Режим параметров";
     //
     // ribbonPageOptions
     //
     this.ribbonPageOptions.Groups.AddRange(new DevExpress.XtraBars.Ribbon.RibbonPageGroup[] {
     this.ribbonPageGroup11,
     this.ribbonPageGroup29,
     this.ribbonPageGroup15,
     this.ribbonPageGroup19});
     this.ribbonPageOptions.Image = ((System.Drawing.Image)(resources.GetObject("ribbonPageOptions.Image")));
     this.ribbonPageOptions.Name = "ribbonPageOptions";
     this.ribbonPageOptions.Text = "Параметры";
     //
     // ribbonPageGroup11
     //
     this.ribbonPageGroup11.ItemLinks.Add(this.barButtonItemOptionsLoad);
     this.ribbonPageGroup11.ItemLinks.Add(this.barButtonItemOptionsSave);
     this.ribbonPageGroup11.Name = "ribbonPageGroup11";
     this.ribbonPageGroup11.Text = "Параметры";
     //
     // ribbonPageGroup29
     //
     this.ribbonPageGroup29.ItemLinks.Add(this.barButtonItemGamma);
     this.ribbonPageGroup29.Name = "ribbonPageGroup29";
     this.ribbonPageGroup29.Text = "Анализ";
     //
     // ribbonPageGroup15
     //
     this.ribbonPageGroup15.ItemLinks.Add(this.barButtonItemExit);
     this.ribbonPageGroup15.Name = "ribbonPageGroup15";
     this.ribbonPageGroup15.Text = "Выход";
     //
     // ribbonPageGroup19
     //
     this.ribbonPageGroup19.ItemLinks.Add(this.barButtonItem5);
     this.ribbonPageGroup19.ItemLinks.Add(this.barButtonItemAbout);
     this.ribbonPageGroup19.Name = "ribbonPageGroup19";
     this.ribbonPageGroup19.Text = "Помощь";
     //
     // ribbonPageCategory1
     //
     this.ribbonPageCategory1.Color = System.Drawing.Color.FromArgb(((int)(((byte)(224)))), ((int)(((byte)(224)))), ((int)(((byte)(224)))));
     this.ribbonPageCategory1.Name = "ribbonPageCategory1";
     this.ribbonPageCategory1.Pages.AddRange(new DevExpress.XtraBars.Ribbon.RibbonPage[] {
     this.ribbonPage7});
     this.ribbonPageCategory1.Text = "Помощь";
     //
     // ribbonPage7
     //
     this.ribbonPage7.Groups.AddRange(new DevExpress.XtraBars.Ribbon.RibbonPageGroup[] {
     this.ribbonPageGroup30,
     this.ribbonPageGroup25,
     this.ribbonPageGroup22});
     this.ribbonPage7.Image = ((System.Drawing.Image)(resources.GetObject("ribbonPage7.Image")));
     this.ribbonPage7.MergeOrder = 9999;
     this.ribbonPage7.Name = "ribbonPage7";
     this.ribbonPage7.Text = "Помощь";
     //
     // ribbonPageGroup30
     //
     this.ribbonPageGroup30.ItemLinks.Add(this.barButtonItemWeb);
     this.ribbonPageGroup30.ItemLinks.Add(this.barButtonItemGroups);
     this.ribbonPageGroup30.ItemLinks.Add(this.barButtonItemForum);
     this.ribbonPageGroup30.ItemLinks.Add(this.barButtonItemError);
     this.ribbonPageGroup30.Name = "ribbonPageGroup30";
     this.ribbonPageGroup30.Text = "Ссылки";
     //
     // ribbonPageGroup25
     //
     this.ribbonPageGroup25.ItemLinks.Add(this.barButtonItemExit);
     this.ribbonPageGroup25.Name = "ribbonPageGroup25";
     this.ribbonPageGroup25.Text = "Выход";
     //
     // ribbonPageGroup22
     //
     this.ribbonPageGroup22.ItemLinks.Add(this.barButtonItem5);
     this.ribbonPageGroup22.ItemLinks.Add(this.barButtonItemAbout);
     this.ribbonPageGroup22.Name = "ribbonPageGroup22";
     this.ribbonPageGroup22.Text = "Помощь";
     //
     // ribbonPage1
     //
     this.ribbonPage1.Groups.AddRange(new DevExpress.XtraBars.Ribbon.RibbonPageGroup[] {
     this.ribbonPageGroup21,
     this.ribbonPageGroup6,
     this.ribbonPageGroup26,
     this.ribbonPageGroup12,
     this.ribbonPageGroup2});
     this.ribbonPage1.Image = ((System.Drawing.Image)(resources.GetObject("ribbonPage1.Image")));
     this.ribbonPage1.Name = "ribbonPage1";
     this.ribbonPage1.Text = "Главная";
     //
     // ribbonPageGroup21
     //
     this.ribbonPageGroup21.ItemLinks.Add(this.barButtonItemPack);
     this.ribbonPageGroup21.ItemLinks.Add(this.barButtonItemUnpack);
     this.ribbonPageGroup21.ItemLinks.Add(this.barButtonItemOptions);
     this.ribbonPageGroup21.Name = "ribbonPageGroup21";
     this.ribbonPageGroup21.Text = "Режим";
     //
     // ribbonPageGroup6
     //
     this.ribbonPageGroup6.ItemLinks.Add(this.barButtonItemOptionsLoad);
     this.ribbonPageGroup6.ItemLinks.Add(this.barButtonItemOptionsSave);
     this.ribbonPageGroup6.Name = "ribbonPageGroup6";
     this.ribbonPageGroup6.Text = "Параметры";
     //
     // ribbonPageGroup26
     //
     this.ribbonPageGroup26.ItemLinks.Add(this.barButtonItemGamma);
     this.ribbonPageGroup26.Name = "ribbonPageGroup26";
     this.ribbonPageGroup26.Text = "Анализ";
     //
     // ribbonPageGroup12
     //
     this.ribbonPageGroup12.ItemLinks.Add(this.barButtonItemExit);
     this.ribbonPageGroup12.Name = "ribbonPageGroup12";
     this.ribbonPageGroup12.Text = "Выход";
     //
     // ribbonPageGroup2
     //
     this.ribbonPageGroup2.ItemLinks.Add(this.barButtonItem5);
     this.ribbonPageGroup2.ItemLinks.Add(this.barButtonItemAbout);
     this.ribbonPageGroup2.Name = "ribbonPageGroup2";
     this.ribbonPageGroup2.Text = "Помощь";
     //
     // ribbonPage3
     //
     this.ribbonPage3.Groups.AddRange(new DevExpress.XtraBars.Ribbon.RibbonPageGroup[] {
     this.ribbonPageGroup1,
     this.ribbonPageGroup3,
     this.ribbonPageGroup24,
     this.ribbonPageGroup23});
     this.ribbonPage3.Image = ((System.Drawing.Image)(resources.GetObject("ribbonPage3.Image")));
     this.ribbonPage3.Name = "ribbonPage3";
     this.ribbonPage3.Text = "Вид";
     //
     // ribbonPageGroup1
     //
     this.ribbonPageGroup1.ItemLinks.Add(this.barButtonItemPack);
     this.ribbonPageGroup1.ItemLinks.Add(this.barButtonItemUnpack);
     this.ribbonPageGroup1.ItemLinks.Add(this.barButtonItemOptions);
     this.ribbonPageGroup1.Name = "ribbonPageGroup1";
     this.ribbonPageGroup1.Text = "Режим";
     //
     // ribbonPageGroup3
     //
     this.ribbonPageGroup3.ItemLinks.Add(this.skinRibbonGalleryBarItem1);
     this.ribbonPageGroup3.Name = "ribbonPageGroup3";
     this.ribbonPageGroup3.Text = "Оболочка";
     //
     // ribbonPageGroup24
     //
     this.ribbonPageGroup24.ItemLinks.Add(this.barButtonItemExit);
     this.ribbonPageGroup24.Name = "ribbonPageGroup24";
     this.ribbonPageGroup24.Text = "Выход";
     //
     // ribbonPageGroup23
     //
     this.ribbonPageGroup23.ItemLinks.Add(this.barButtonItem5);
     this.ribbonPageGroup23.ItemLinks.Add(this.barButtonItemAbout);
     this.ribbonPageGroup23.Name = "ribbonPageGroup23";
     this.ribbonPageGroup23.Text = "Помощь";
     //
     // defaultLookAndFeel1
     //
     this.defaultLookAndFeel1.LookAndFeel.SkinName = "Metropolis";
     //
     // workspaceManager1
     //
     this.workspaceManager1.TargetControl = this;
     this.workspaceManager1.TransitionType = pushTransition1;
     //
     // splitContainerControl1
     //
     this.splitContainerControl1.Dock = System.Windows.Forms.DockStyle.Fill;
     this.splitContainerControl1.Location = new System.Drawing.Point(0, 249);
     this.splitContainerControl1.Name = "splitContainerControl1";
     this.splitContainerControl1.Panel1.Controls.Add(this.navBarControl1);
     this.splitContainerControl1.Panel1.Text = "Panel1";
     this.splitContainerControl1.Panel2.Controls.Add(this.mainControl);
     this.splitContainerControl1.Panel2.Text = "Panel2";
     this.splitContainerControl1.Size = new System.Drawing.Size(1215, 566);
     this.splitContainerControl1.SplitterPosition = 211;
     this.splitContainerControl1.TabIndex = 5;
     this.splitContainerControl1.Text = "splitContainerControl1";
     //
     // navBarControl1
     //
     this.navBarControl1.ActiveGroup = this.navBarGroup1;
     this.navBarControl1.Dock = System.Windows.Forms.DockStyle.Fill;
     this.navBarControl1.Groups.AddRange(new DevExpress.XtraNavBar.NavBarGroup[] {
     this.navBarGroup1});
     this.navBarControl1.Items.AddRange(new DevExpress.XtraNavBar.NavBarItem[] {
     this.navBarItemPack,
     this.navBarItemUnpack,
     this.navBarItemOptions});
     this.navBarControl1.Location = new System.Drawing.Point(0, 0);
     this.navBarControl1.Name = "navBarControl1";
     this.navBarControl1.OptionsNavPane.ExpandedWidth = 211;
     this.navBarControl1.Size = new System.Drawing.Size(211, 566);
     this.navBarControl1.TabIndex = 1;
     this.navBarControl1.Text = "navBarControl1";
     this.navBarControl1.View = new DevExpress.XtraNavBar.ViewInfo.SkinExplorerBarViewInfoRegistrator();
     //
     // navBarGroup1
     //
     this.navBarGroup1.Caption = "Режим";
     this.navBarGroup1.Expanded = true;
     this.navBarGroup1.ItemLinks.AddRange(new DevExpress.XtraNavBar.NavBarItemLink[] {
     new DevExpress.XtraNavBar.NavBarItemLink(this.navBarItemPack),
     new DevExpress.XtraNavBar.NavBarItemLink(this.navBarItemUnpack),
     new DevExpress.XtraNavBar.NavBarItemLink(this.navBarItemOptions)});
     this.navBarGroup1.LargeImage = ((System.Drawing.Image)(resources.GetObject("navBarGroup1.LargeImage")));
     this.navBarGroup1.Name = "navBarGroup1";
     this.navBarGroup1.SmallImage = ((System.Drawing.Image)(resources.GetObject("navBarGroup1.SmallImage")));
     //
     // navBarItemPack
     //
     this.navBarItemPack.Caption = "Упаковать";
     this.navBarItemPack.LargeImage = ((System.Drawing.Image)(resources.GetObject("navBarItemPack.LargeImage")));
     this.navBarItemPack.Name = "navBarItemPack";
     this.navBarItemPack.SmallImage = ((System.Drawing.Image)(resources.GetObject("navBarItemPack.SmallImage")));
     this.navBarItemPack.LinkClicked += new DevExpress.XtraNavBar.NavBarLinkEventHandler(this.Pack_LinkClicked);
     //
     // navBarItemUnpack
     //
     this.navBarItemUnpack.Caption = "Распаковать";
     this.navBarItemUnpack.LargeImage = ((System.Drawing.Image)(resources.GetObject("navBarItemUnpack.LargeImage")));
     this.navBarItemUnpack.Name = "navBarItemUnpack";
     this.navBarItemUnpack.SmallImage = ((System.Drawing.Image)(resources.GetObject("navBarItemUnpack.SmallImage")));
     this.navBarItemUnpack.LinkClicked += new DevExpress.XtraNavBar.NavBarLinkEventHandler(this.Unpack_LinkClicked);
     //
     // navBarItemOptions
     //
     this.navBarItemOptions.Caption = "Параметры";
     this.navBarItemOptions.LargeImage = ((System.Drawing.Image)(resources.GetObject("navBarItemOptions.LargeImage")));
     this.navBarItemOptions.Name = "navBarItemOptions";
     this.navBarItemOptions.SmallImage = ((System.Drawing.Image)(resources.GetObject("navBarItemOptions.SmallImage")));
     this.navBarItemOptions.LinkClicked += new DevExpress.XtraNavBar.NavBarLinkEventHandler(this.Options_LinkClicked);
     //
     // mainControl
     //
     this.mainControl.Dock = System.Windows.Forms.DockStyle.Fill;
     this.mainControl.Location = new System.Drawing.Point(0, 0);
     this.mainControl.Name = "mainControl";
     this.mainControl.SelectedMode = Steganography.BbsControl.Mode.Pack;
     this.mainControl.Size = new System.Drawing.Size(986, 566);
     this.mainControl.TabIndex = 3;
     this.mainControl.TabsVisible = true;
     this.mainControl.SelectedModeChanged += new Steganography.BbsControl.SelectedModeChangedEventHandler(this.SelectedModeChanged);
     //
     // ribbonPageGroup4
     //
     this.ribbonPageGroup4.Name = "ribbonPageGroup4";
     this.ribbonPageGroup4.Text = "ribbonPageGroup4";
     //
     // ribbonPage2
     //
     this.ribbonPage2.Groups.AddRange(new DevExpress.XtraBars.Ribbon.RibbonPageGroup[] {
     this.ribbonPageGroup4});
     this.ribbonPage2.Image = ((System.Drawing.Image)(resources.GetObject("ribbonPage2.Image")));
     this.ribbonPage2.Name = "ribbonPage2";
     this.ribbonPage2.Text = "Помощь";
     //
     // MainForm
     //
     this.AutoScaleDimensions = new System.Drawing.SizeF(9F, 19F);
     this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
     this.ClientSize = new System.Drawing.Size(1215, 870);
     this.Controls.Add(this.splitContainerControl1);
     this.Controls.Add(this.ribbonStatusBar2);
     this.Controls.Add(this.ribbonControl);
     this.Name = "MainForm";
     this.Ribbon = this.ribbonControl;
     this.StatusBar = this.ribbonStatusBar2;
     this.Text = "Метод широкополосных сигналов";
     ((System.ComponentModel.ISupportInitialize)(this.ribbonControl)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.applicationMenu2)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.splitContainerControl1)).EndInit();
     this.splitContainerControl1.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.navBarControl1)).EndInit();
     this.ResumeLayout(false);
     this.PerformLayout();
 }
        public CloudTaskBackstageViewMenu(System.Windows.Forms.Control form, DevExpress.XtraBars.Ribbon.RibbonControl ribbonControl)
        {
            controller = new Controllers.MainMenuController();
            m_ribbonControl = ribbonControl;
            m_backstageViewControl = new DevExpress.XtraBars.Ribbon.BackstageViewControl();
            m_backstageViewClientControl = new DevExpress.XtraBars.Ribbon.BackstageViewClientControl();
            m_TabSaveButtonSave = new DevExpress.XtraEditors.SimpleButton();
            m_TabSaveButtonSaveAs = new DevExpress.XtraEditors.SimpleButton();
            m_TabSaveXtraUserControl = new DevExpress.XtraEditors.XtraUserControl();
            m_backstageViewButtonNewCase = new DevExpress.XtraBars.Ribbon.BackstageViewButtonItem();
            m_backstageViewButtonOpenCase = new DevExpress.XtraBars.Ribbon.BackstageViewButtonItem();
            m_backstageViewTabSaveCase = new DevExpress.XtraBars.Ribbon.BackstageViewTabItem();
            m_backstageViewButtonSettings = new DevExpress.XtraBars.Ribbon.BackstageViewButtonItem();
            m_backstageViewItemSeparator = new DevExpress.XtraBars.Ribbon.BackstageViewItemSeparator();
            m_backstageViewButtonDeleteCurrentCase = new DevExpress.XtraBars.Ribbon.BackstageViewButtonItem();
            m_backstageViewButtonExit = new DevExpress.XtraBars.Ribbon.BackstageViewButtonItem();

            ((System.ComponentModel.ISupportInitialize)(m_backstageViewControl)).BeginInit();
            m_backstageViewControl.SuspendLayout();
            m_backstageViewClientControl.SuspendLayout();
            //
            // backstageViewControl
            //
            m_backstageViewControl.Appearance.BackColor = System.Drawing.Color.Black;
            m_backstageViewControl.Appearance.BackColor2 = System.Drawing.Color.Black;
            m_backstageViewControl.Appearance.BorderColor = System.Drawing.Color.Black;
            m_backstageViewControl.Appearance.Options.UseBackColor = true;
            m_backstageViewControl.Appearance.Options.UseBorderColor = true;
            m_backstageViewControl.ColorScheme = DevExpress.XtraBars.Ribbon.RibbonControlColorScheme.Yellow;
            m_backstageViewControl.Controls.Add(m_backstageViewClientControl);
            m_backstageViewControl.Items.Add(m_backstageViewButtonNewCase);
            m_backstageViewControl.Items.Add(m_backstageViewButtonOpenCase);
            m_backstageViewControl.Items.Add(m_backstageViewTabSaveCase);
            m_backstageViewControl.Items.Add(m_backstageViewButtonSettings);
            m_backstageViewControl.Items.Add(m_backstageViewItemSeparator);
            m_backstageViewControl.Items.Add(m_backstageViewButtonDeleteCurrentCase);
            m_backstageViewControl.Items.Add(m_backstageViewButtonExit);
            m_backstageViewControl.Location = new System.Drawing.Point(267, 150);
            m_backstageViewControl.Name = "backstageViewControl";
            m_backstageViewControl.Ribbon = ribbonControl;
            m_backstageViewControl.SelectedTab = m_backstageViewTabSaveCase;
            m_backstageViewControl.SelectedTabIndex = 2;
            m_backstageViewControl.Size = new System.Drawing.Size(759, 377);
            m_backstageViewControl.Style = DevExpress.XtraBars.Ribbon.BackstageViewStyle.Office2013;
            m_backstageViewControl.TabIndex = 5;
            m_backstageViewControl.Text = "backstageViewControl1";
            //
            // backstageViewClientControl
            //
            m_backstageViewClientControl.Controls.Add(m_TabSaveButtonSave);
            m_backstageViewClientControl.Controls.Add(m_TabSaveButtonSaveAs);
            m_backstageViewClientControl.Controls.Add(m_TabSaveXtraUserControl);
            m_backstageViewClientControl.Location = new System.Drawing.Point(163, 63);
            m_backstageViewClientControl.Name = "backstageViewClientControl1";
            m_backstageViewClientControl.Size = new System.Drawing.Size(595, 313);
            m_backstageViewClientControl.TabIndex = 0;
            //
            // simpleButtonSave
            //
            m_TabSaveButtonSave.Image = global::CloudTask_GUI.Properties.Resources.save_32x32;
            m_TabSaveButtonSave.Location = new System.Drawing.Point(17, 94);
            m_TabSaveButtonSave.Name = "simpleButtonSave";
            m_TabSaveButtonSave.Size = new System.Drawing.Size(107, 37);
            m_TabSaveButtonSave.TabIndex = 2;
            m_TabSaveButtonSave.Text = "Save";
            //
            // simpleButtonSaveAs
            //
            m_TabSaveButtonSaveAs.Image = global::CloudTask_GUI.Properties.Resources.saveandnew_32x32;
            m_TabSaveButtonSaveAs.Location = new System.Drawing.Point(17, 51);
            m_TabSaveButtonSaveAs.Name = "simpleButtonSaveAs";
            m_TabSaveButtonSaveAs.Size = new System.Drawing.Size(107, 37);
            m_TabSaveButtonSaveAs.TabIndex = 1;
            m_TabSaveButtonSaveAs.Text = "Save as";
            //
            // xtraUserControl2
            //
            m_TabSaveXtraUserControl.Dock = System.Windows.Forms.DockStyle.Fill;
            m_TabSaveXtraUserControl.Location = new System.Drawing.Point(0, 0);
            m_TabSaveXtraUserControl.Name = "xtraUserControl2";
            m_TabSaveXtraUserControl.Size = new System.Drawing.Size(595, 313);
            m_TabSaveXtraUserControl.TabIndex = 0;
            //
            // backstageViewButtonNewCase
            //
            m_backstageViewButtonNewCase.Caption = "New Case";
            m_backstageViewButtonNewCase.Glyph = global::CloudTask_GUI.Properties.Resources.project_32x32;
            m_backstageViewButtonNewCase.Name = "backstageViewButtonNewCase";
            //
            // backstageViewButtonOpenCase
            //
            m_backstageViewButtonOpenCase.Caption = "Open Case";
            m_backstageViewButtonOpenCase.Glyph = global::CloudTask_GUI.Properties.Resources.loadfrom_32x32;
            m_backstageViewButtonOpenCase.Name = "backstageViewButtonOpenCase";
            //
            // backstageViewTabSaveCase
            //
            m_backstageViewTabSaveCase.Caption = "Save Case";
            m_backstageViewTabSaveCase.ContentControl = m_backstageViewClientControl;
            m_backstageViewTabSaveCase.Glyph = global::CloudTask_GUI.Properties.Resources.save_32x32;
            m_backstageViewTabSaveCase.Name = "backstageViewTabSaveCase";
            m_backstageViewTabSaveCase.Selected = false;
            //
            // backstageViewButtonSettings
            //
            m_backstageViewButtonSettings.Caption = "Settings";
            m_backstageViewButtonSettings.Glyph = global::CloudTask_GUI.Properties.Resources.technology_32x32;
            m_backstageViewButtonSettings.Name = "backstageViewButtonSettings";
            m_backstageViewButtonSettings.Visible = false;
            //
            // backstageViewItemSeparator1
            //
            m_backstageViewItemSeparator.Name = "backstageViewItemSeparator1";
            //
            // backstageViewButtonDeleteCurrentCase
            //
            m_backstageViewButtonDeleteCurrentCase.Caption = "Delete Current Case";
            m_backstageViewButtonDeleteCurrentCase.Glyph = global::CloudTask_GUI.Properties.Resources.clear_32x32;
            m_backstageViewButtonDeleteCurrentCase.Name = "backstageViewButtonDeleteCurrentCase";
            //
            // backstageViewButtonExit
            //
            m_backstageViewButtonExit.Caption = "Exit";
            m_backstageViewButtonExit.Glyph = global::CloudTask_GUI.Properties.Resources.bugreport_32x32;
            m_backstageViewButtonExit.Name = "backstageViewButtonExit";

            m_ribbonControl.ApplicationButtonDropDownControl = m_backstageViewControl;
            form.Controls.Add(m_backstageViewControl);
            ((System.ComponentModel.ISupportInitialize)(m_backstageViewControl)).EndInit();
            m_backstageViewControl.ResumeLayout(false);
            m_backstageViewClientControl.ResumeLayout(false);

            m_TabSaveButtonSaveAs.Click += new EventHandler(controller.CaseSaveAsClicked);
            m_TabSaveButtonSave.Click += new EventHandler(controller.CaseSaveClicked);
            m_backstageViewButtonOpenCase.ItemClick += new DevExpress.XtraBars.Ribbon.BackstageViewItemEventHandler(controller.OpenCaseClicked);
            m_backstageViewButtonNewCase.ItemClick += new DevExpress.XtraBars.Ribbon.BackstageViewItemEventHandler(controller.NewCaseClicked);
            m_backstageViewButtonDeleteCurrentCase.ItemClick += new DevExpress.XtraBars.Ribbon.BackstageViewItemEventHandler(controller.DeleteCaseClicked);
            m_backstageViewButtonExit.ItemClick += new DevExpress.XtraBars.Ribbon.BackstageViewItemEventHandler(controller.ExitClicked);
        }
 private void InitializeComponent()
 {
     System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(AnaMenu));
     this.ribbonPage1     = new DevExpress.XtraBars.Ribbon.RibbonPage();
     this.rbn_kelimeSec   = new DevExpress.XtraBars.Ribbon.RibbonPageGroup();
     this.barButtonItem1  = new DevExpress.XtraBars.BarButtonItem();
     this.btn_kelimeSec   = new DevExpress.XtraBars.BarButtonItem();
     this.rbn_ogren       = new DevExpress.XtraBars.Ribbon.RibbonPageGroup();
     this.btn_kelimeOgren = new DevExpress.XtraBars.BarButtonItem();
     this.rbn_test        = new DevExpress.XtraBars.Ribbon.RibbonPageGroup();
     this.btn_test        = new DevExpress.XtraBars.BarButtonItem();
     this.rbn_ogrenilen   = new DevExpress.XtraBars.Ribbon.RibbonPageGroup();
     this.btn_ögrenilmis  = new DevExpress.XtraBars.BarButtonItem();
     this.rbn_kelimeEkle  = new DevExpress.XtraBars.Ribbon.RibbonPageGroup();
     this.btn_kelimeEkle  = new DevExpress.XtraBars.BarButtonItem();
     this.barButtonItem2  = new DevExpress.XtraBars.BarButtonItem();
     this.rbnCtrl_anaMenu = new DevExpress.XtraBars.Ribbon.RibbonControl();
     this.barButtonItem3  = new DevExpress.XtraBars.BarButtonItem();
     this.btn_ogren       = new DevExpress.XtraBars.BarButtonItem();
     this.barButtonItem4  = new DevExpress.XtraBars.BarButtonItem();
     ((System.ComponentModel.ISupportInitialize)(this.rbnCtrl_anaMenu)).BeginInit();
     this.SuspendLayout();
     //
     // ribbonPage1
     //
     this.ribbonPage1.Groups.AddRange(new DevExpress.XtraBars.Ribbon.RibbonPageGroup[] {
         this.rbn_kelimeSec,
         this.rbn_ogren,
         this.rbn_test,
         this.rbn_ogrenilen,
         this.rbn_kelimeEkle
     });
     this.ribbonPage1.Name = "ribbonPage1";
     //
     // rbn_kelimeSec
     //
     this.rbn_kelimeSec.ItemLinks.Add(this.barButtonItem1);
     this.rbn_kelimeSec.ItemLinks.Add(this.btn_kelimeSec);
     this.rbn_kelimeSec.Name = "rbn_kelimeSec";
     //
     // barButtonItem1
     //
     this.barButtonItem1.Id   = 1;
     this.barButtonItem1.Name = "barButtonItem1";
     //
     // btn_kelimeSec
     //
     this.btn_kelimeSec.Caption = "KELİME SEÇ";
     this.btn_kelimeSec.Id      = 2;
     this.btn_kelimeSec.ImageOptions.SvgImage = ((DevExpress.Utils.Svg.SvgImage)(resources.GetObject("btn_kelimeSec.ImageOptions.SvgImage")));
     this.btn_kelimeSec.Name       = "btn_kelimeSec";
     this.btn_kelimeSec.ItemClick += new DevExpress.XtraBars.ItemClickEventHandler(this.btn_kelimeSec_ItemClick);
     //
     // rbn_ogren
     //
     this.rbn_ogren.ItemLinks.Add(this.btn_kelimeOgren);
     this.rbn_ogren.Name = "rbn_ogren";
     //
     // btn_kelimeOgren
     //
     this.btn_kelimeOgren.Caption = "KELİME ÖĞREN";
     this.btn_kelimeOgren.Id      = 9;
     this.btn_kelimeOgren.ImageOptions.SvgImage = ((DevExpress.Utils.Svg.SvgImage)(resources.GetObject("btn_kelimeOgren.ImageOptions.SvgImage")));
     this.btn_kelimeOgren.Name       = "btn_kelimeOgren";
     this.btn_kelimeOgren.ItemClick += new DevExpress.XtraBars.ItemClickEventHandler(this.btn_kelimeOgren_ItemClick);
     //
     // rbn_test
     //
     this.rbn_test.ItemLinks.Add(this.btn_test);
     this.rbn_test.Name = "rbn_test";
     //
     // btn_test
     //
     this.btn_test.Caption                 = "TEST ET";
     this.btn_test.Id                      = 4;
     this.btn_test.ImageOptions.Image      = ((System.Drawing.Image)(resources.GetObject("btn_test.ImageOptions.Image")));
     this.btn_test.ImageOptions.LargeImage = ((System.Drawing.Image)(resources.GetObject("btn_test.ImageOptions.LargeImage")));
     this.btn_test.Name                    = "btn_test";
     this.btn_test.ItemClick              += new DevExpress.XtraBars.ItemClickEventHandler(this.btn_test_ItemClick);
     //
     // rbn_ogrenilen
     //
     this.rbn_ogrenilen.ItemLinks.Add(this.btn_ögrenilmis);
     this.rbn_ogrenilen.Name = "rbn_ogrenilen";
     //
     // btn_ögrenilmis
     //
     this.btn_ögrenilmis.Caption                 = "ÖĞRENİLMİŞ KELİMELER";
     this.btn_ögrenilmis.Id                      = 5;
     this.btn_ögrenilmis.ImageOptions.Image      = ((System.Drawing.Image)(resources.GetObject("btn_ögrenilmis.ImageOptions.Image")));
     this.btn_ögrenilmis.ImageOptions.LargeImage = ((System.Drawing.Image)(resources.GetObject("btn_ögrenilmis.ImageOptions.LargeImage")));
     this.btn_ögrenilmis.Name                    = "btn_ögrenilmis";
     this.btn_ögrenilmis.ItemClick              += new DevExpress.XtraBars.ItemClickEventHandler(this.btn_ögrenilmis_ItemClick);
     //
     // rbn_kelimeEkle
     //
     this.rbn_kelimeEkle.ItemLinks.Add(this.btn_kelimeEkle);
     this.rbn_kelimeEkle.Name = "rbn_kelimeEkle";
     //
     // btn_kelimeEkle
     //
     this.btn_kelimeEkle.Caption = "KELİME EKLE";
     this.btn_kelimeEkle.Id      = 6;
     this.btn_kelimeEkle.ImageOptions.SvgImage = ((DevExpress.Utils.Svg.SvgImage)(resources.GetObject("btn_kelimeEkle.ImageOptions.SvgImage")));
     this.btn_kelimeEkle.Name       = "btn_kelimeEkle";
     this.btn_kelimeEkle.ItemClick += new DevExpress.XtraBars.ItemClickEventHandler(this.btn_kelimeEkle_ItemClick);
     //
     // barButtonItem2
     //
     this.barButtonItem2.Id   = 7;
     this.barButtonItem2.Name = "barButtonItem2";
     //
     // rbnCtrl_anaMenu
     //
     this.rbnCtrl_anaMenu.ExpandCollapseItem.Id = 0;
     this.rbnCtrl_anaMenu.Items.AddRange(new DevExpress.XtraBars.BarItem[] {
         this.rbnCtrl_anaMenu.ExpandCollapseItem,
         this.barButtonItem1,
         this.btn_kelimeSec,
         this.btn_test,
         this.btn_ögrenilmis,
         this.btn_kelimeEkle,
         this.barButtonItem2,
         this.btn_kelimeOgren
     });
     this.rbnCtrl_anaMenu.Location  = new System.Drawing.Point(0, 0);
     this.rbnCtrl_anaMenu.MaxItemId = 10;
     this.rbnCtrl_anaMenu.Name      = "rbnCtrl_anaMenu";
     this.rbnCtrl_anaMenu.Pages.AddRange(new DevExpress.XtraBars.Ribbon.RibbonPage[] {
         this.ribbonPage1
     });
     this.rbnCtrl_anaMenu.Size = new System.Drawing.Size(852, 176);
     //
     // barButtonItem3
     //
     this.barButtonItem3.Name = "barButtonItem3";
     //
     // btn_ogren
     //
     this.btn_ogren.Caption                 = "KELİME ÖĞREN";
     this.btn_ogren.Id                      = 3;
     this.btn_ogren.ImageOptions.Image      = ((System.Drawing.Image)(resources.GetObject("btn_ogren.ImageOptions.Image")));
     this.btn_ogren.ImageOptions.LargeImage = ((System.Drawing.Image)(resources.GetObject("btn_ogren.ImageOptions.LargeImage")));
     this.btn_ogren.Name                    = "btn_ogren";
     //
     // barButtonItem4
     //
     this.barButtonItem4.Caption                 = "KELİME ÖĞREN";
     this.barButtonItem4.Id                      = 3;
     this.barButtonItem4.ImageOptions.Image      = ((System.Drawing.Image)(resources.GetObject("barButtonItem4.ImageOptions.Image")));
     this.barButtonItem4.ImageOptions.LargeImage = ((System.Drawing.Image)(resources.GetObject("barButtonItem4.ImageOptions.LargeImage")));
     this.barButtonItem4.Name                    = "barButtonItem4";
     //
     // AnaMenu
     //
     this.BackColor  = System.Drawing.SystemColors.Highlight;
     this.ClientSize = new System.Drawing.Size(852, 631);
     this.Controls.Add(this.rbnCtrl_anaMenu);
     this.IsMdiContainer = true;
     this.Name           = "AnaMenu";
     this.WindowState    = System.Windows.Forms.FormWindowState.Maximized;
     this.Load          += new System.EventHandler(this.AnaMenu_Load);
     ((System.ComponentModel.ISupportInitialize)(this.rbnCtrl_anaMenu)).EndInit();
     this.ResumeLayout(false);
     this.PerformLayout();
 }
Example #40
0
        public static void CheckControls(object parentControl)
        {
            //ToolStripButton
            try
            {
                #region Menustrip
                if (parentControl is MenuStrip)
                {
                    MenuStrip menu = (MenuStrip)parentControl;
                    foreach (ToolStripItem item in menu.Items)
                    {
                        if (item.Tag != null && !item.Tag.ToString().Equals(""))
                        {
                            DataRow dr = CheckPermission(item.Tag.ToString());
                            if (dr == null)
                            {
                                item.Enabled = false;
                            }
                            else
                            {
                                item.Enabled = true;
                                if (!string.IsNullOrEmpty(dr["strShortcutKey"].ToString()) && !_IsUserControl)
                                {
                                    item.Tag         = dr["ShortcutKey"].ToString();
                                    item.ToolTipText = dr["strShortcutKey"].ToString();
                                }
                            }
                        }
                        CheckControls(item);
                    }
                    return;
                }
                #endregion

                #region ToolStripMenu
                if (parentControl is ToolStripMenuItem)
                {
                    ToolStripItemCollection menuitems = ((ToolStripMenuItem)parentControl).DropDownItems;
                    foreach (ToolStripItem item in menuitems)
                    {
                        if (item.Tag != null && !item.Tag.ToString().Equals(""))
                        {
                            DataRow dr = CheckPermission(item.Tag.ToString());
                            if (dr == null)
                            {
                                item.Enabled = false;
                            }
                            else
                            {
                                item.Enabled = true;
                                if (!string.IsNullOrEmpty(dr["strShortcutKey"].ToString()) && !_IsUserControl)
                                {
                                    item.Tag         = dr["ShortcutKey"].ToString();
                                    item.ToolTipText = dr["strShortcutKey"].ToString();
                                }
                            }
                        }
                        CheckControls(item);
                    }
                    return;
                }
                #endregion

                #region ToolStripSplitButton
                if (parentControl is ToolStripSplitButton)
                {
                    ToolStripSplitButton menu = (ToolStripSplitButton)parentControl;

                    foreach (ToolStripItem item in menu.DropDown.Items)
                    {
                        if (item.Tag != null && !item.Tag.ToString().Equals(""))
                        {
                            DataRow dr = CheckPermission(item.Tag.ToString());
                            if (dr == null)
                            {
                                item.Enabled = false;
                            }
                            else
                            {
                                item.Enabled = true;
                                if (!string.IsNullOrEmpty(dr["strShortcutKey"].ToString()) && !_IsUserControl)
                                {
                                    item.Tag         = dr["ShortcutKey"].ToString();
                                    item.ToolTipText = dr["strShortcutKey"].ToString();
                                }
                            }
                        }
                        CheckControls(item);
                    }
                    return;
                }
                #endregion

                #region ToolStrip
                if (parentControl is ToolStrip)
                {
                    ToolStrip menu = (ToolStrip)parentControl;
                    foreach (ToolStripItem item in menu.Items)
                    {
                        if (item.Tag != null && !item.Tag.ToString().Equals(""))
                        {
                            DataRow dr = CheckPermission(item.Tag.ToString());
                            if (dr == null)
                            {
                                item.Enabled = false;
                            }
                            else
                            {
                                item.Enabled = true;
                                if (!string.IsNullOrEmpty(dr["strShortcutKey"].ToString()) && !_IsUserControl)
                                {
                                    item.Tag         = dr["ShortcutKey"].ToString();
                                    item.ToolTipText = dr["strShortcutKey"].ToString();
                                }
                            }
                        }
                        else
                        {
                            if (!_IsUserControl)
                            {
                                if (item.Name == "btnSave")
                                {
                                    item.Tag         = "S, Control";
                                    item.ToolTipText = "Ctrl + S";
                                }
                                if (item.Name == "btnOK")
                                {
                                    item.Tag         = "Q, Control";
                                    item.ToolTipText = "Ctrl + Q";
                                }
                                if (item.Name == "btnSearch" && item.Enabled == true)
                                {
                                    item.Tag         = "F, Control";
                                    item.ToolTipText = "Ctrl + F";
                                }
                                if ((item.Name == "btnExport" || item.Name == "btnExcel") && item.Enabled == true)
                                {
                                    item.Tag         = "E, Control";
                                    item.ToolTipText = "Ctrl + E";
                                }
                                if (item.Name == "btnPrint" && item.Enabled == true)
                                {
                                    item.Tag         = "I, Control";
                                    item.ToolTipText = "Ctrl + I";
                                }
                                if (item.Name == "btnNew" && item.Enabled == true)
                                {
                                    item.Tag         = "N, Control";
                                    item.ToolTipText = "Ctrl + N";
                                }
                                if (item.Name == "btnEdit" && item.Enabled == true)
                                {
                                    item.Tag         = "G, Control";
                                    item.ToolTipText = "Ctrl + G";
                                }
                                if ((item.Name == "btnDelete" || item.Name == "btnDel") && item.Enabled == true)
                                {
                                    item.Tag         = "D, Control";
                                    item.ToolTipText = "Ctrl + D";
                                }
                            }
                        }
                        CheckControls(item);
                    }
                    return;
                }
                #endregion

                #region Panel
                if (parentControl is Panel)
                {
                    foreach (Control item in (parentControl as Control).Controls)
                    {
                        if (item.Tag != null && !item.Tag.ToString().Equals(""))
                        {
                            DataRow dr = CheckPermission(item.Tag.ToString());
                            if (dr == null)
                            {
                                item.Enabled = false;
                            }
                            else
                            {
                                item.Enabled = true;
                                if (!string.IsNullOrEmpty(dr["strShortcutKey"].ToString()) && !_IsUserControl)
                                {
                                    item.Tag   = dr["ShortcutKey"].ToString();
                                    item.Text += " (" + dr["strShortcutKey"].ToString() + ")";
                                }
                            }
                        }
                        CheckControls(item);
                    }
                    return;
                }
                #endregion

                #region NavBarControl
                if (parentControl is DevExpress.XtraNavBar.NavBarControl)
                {
                    DevExpress.XtraNavBar.NavBarControl _navBarControl = (DevExpress.XtraNavBar.NavBarControl)parentControl;
                    foreach (DevExpress.XtraNavBar.NavBarGroup _navBarGroup in _navBarControl.Groups)
                    {
                        foreach (DevExpress.XtraNavBar.NavBarItemLink item in _navBarGroup.ItemLinks)
                        {
                            if (item.Item.Tag != null && !item.Item.Tag.ToString().Equals(""))
                            {
                                bool isExitsPermission = CheckExistsValue(item.Item.Tag.ToString());
                                item.Item.Enabled = isExitsPermission;
                                if (!isExitsPermission)
                                {
                                    item.Item.Appearance.ForeColor = Color.DarkGray;
                                }
                            }
                        }
                    }
                    return;
                }
                #endregion

                #region GridControl
                if (parentControl is DevExpress.XtraGrid.GridControl)
                {
                    DevExpress.XtraGrid.GridControl _gridControl = (DevExpress.XtraGrid.GridControl)parentControl;
                    ContextMenuStrip cms = _gridControl.ContextMenuStrip;
                    if (cms != null)
                    {
                        foreach (ToolStripItem item in cms.Items)
                        {
                            if (item.Tag != null && !item.Tag.ToString().Equals(""))
                            {
                                DataRow dr = CheckPermission(item.Tag.ToString());
                                if (dr == null)
                                {
                                    item.Enabled = false;
                                }
                                else
                                {
                                    item.Enabled = true;
                                    if (!string.IsNullOrEmpty(dr["strShortcutKey"].ToString()) && !_IsUserControl)
                                    {
                                        item.Tag         = dr["ShortcutKey"].ToString();
                                        item.ToolTipText = dr["strShortcutKey"].ToString();
                                    }
                                }
                            }
                            CheckControls(item);
                        }
                    }
                    return;
                }
                #endregion

                #region RibbonControl
                if (parentControl is DevExpress.XtraBars.Ribbon.RibbonControl)
                {
                    DevExpress.XtraBars.Ribbon.RibbonControl _ribbonControl = (DevExpress.XtraBars.Ribbon.RibbonControl)parentControl;

                    foreach (DevExpress.XtraBars.BarButtonItem item in _ribbonControl.Items)
                    {
                        if (item.Tag != null && !item.Tag.ToString().Equals(""))
                        {
                            DataRow dr = CheckPermission(item.Tag.ToString());
                            if (dr == null)
                            {
                                item.Enabled = false;
                            }
                            else
                            {
                                if (!string.IsNullOrEmpty(dr["strShortcutKey"].ToString()) && !_IsUserControl)
                                {
                                    item.Hint = dr["strShortcutKey"].ToString();
                                }
                            }
                        }
                    }
                    return;
                }

                #endregion

                #region SplitContainer
                if (parentControl is SplitContainer)
                {
                    foreach (Control item in (parentControl as Control).Controls)
                    {
                        if (item.Tag != null && !item.Tag.ToString().Equals(""))
                        {
                            DataRow dr = CheckPermission(item.Tag.ToString());
                            if (dr == null)
                            {
                                item.Enabled = false;
                            }
                            else
                            {
                                item.Enabled = true;
                                if (!string.IsNullOrEmpty(dr["strShortcutKey"].ToString()) && !_IsUserControl)
                                {
                                    item.Tag   = dr["ShortcutKey"].ToString();
                                    item.Text += " (" + dr["strShortcutKey"].ToString() + ")";
                                }
                            }
                        }
                        CheckControls(item);
                    }
                    return;
                }
                #endregion

                #region Control
                if (parentControl is Control)
                {
                    foreach (Control item in (parentControl as Control).Controls)
                    {
                        if (item.Tag != null && !item.Tag.ToString().Equals(""))
                        {
                            item.Enabled = CheckExistsValue(item.Tag.ToString());
                        }
                        CheckControls(item);
                    }
                    return;
                }
                #endregion

                #region Button
                if (parentControl is Button)
                {
                    foreach (Control item in (parentControl as Control).Controls)
                    {
                        if (item.Tag != null && !item.Tag.ToString().Equals(""))
                        {
                            item.Enabled = CheckExistsValue(item.Tag.ToString());
                        }
                        CheckControls(item);
                    }
                    return;
                }
                #endregion
            }
            catch (Exception ex) {
                MessageBox.Show(ex.Message);
            }
        }
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();
     DevExpress.XtraBars.Ribbon.RibbonControl       ribbonControl1;
     System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(formMain));
     this.applicationMenu1                = new DevExpress.XtraBars.Ribbon.ApplicationMenu(this.components);
     this.btnDangNhap                     = new DevExpress.XtraBars.BarButtonItem();
     this.btnDangXuat                     = new DevExpress.XtraBars.BarButtonItem();
     this.btnDsKhachHang                  = new DevExpress.XtraBars.BarButtonItem();
     this.btnDsNhanVien                   = new DevExpress.XtraBars.BarButtonItem();
     this.barButtonItem13                 = new DevExpress.XtraBars.BarButtonItem();
     this.btnNgayLamViec                  = new DevExpress.XtraBars.BarButtonItem();
     this.skinRibbonGalleryBarItem1       = new DevExpress.XtraBars.SkinRibbonGalleryBarItem();
     this.barButtonItem1                  = new DevExpress.XtraBars.BarButtonItem();
     this.barSubItem1                     = new DevExpress.XtraBars.BarSubItem();
     this.barEditItem1                    = new DevExpress.XtraBars.BarEditItem();
     this.repositoryItemPictureEdit1      = new DevExpress.XtraEditors.Repository.RepositoryItemPictureEdit();
     this.barButtonItem2                  = new DevExpress.XtraBars.BarButtonItem();
     this.barEditItem2                    = new DevExpress.XtraBars.BarEditItem();
     this.repositoryItemPopupGalleryEdit1 = new DevExpress.XtraEditors.Repository.RepositoryItemPopupGalleryEdit();
     this.barSubItem2                     = new DevExpress.XtraBars.BarSubItem();
     this.btnDSHoaDon                     = new DevExpress.XtraBars.BarButtonItem();
     this.btnThemMoiHD                    = new DevExpress.XtraBars.BarButtonItem();
     this.btnInHD               = new DevExpress.XtraBars.BarButtonItem();
     this.btnDoanhThuNgay       = new DevExpress.XtraBars.BarButtonItem();
     this.btnDoanhThuThang      = new DevExpress.XtraBars.BarButtonItem();
     this.barButtonItem11       = new DevExpress.XtraBars.BarButtonItem();
     this.btnTKSPBanChay        = new DevExpress.XtraBars.BarButtonItem();
     this.btnTKHangTrongKho     = new DevExpress.XtraBars.BarButtonItem();
     this.btnTKSPBanTrongNgay   = new DevExpress.XtraBars.BarButtonItem();
     this.btnKHVip              = new DevExpress.XtraBars.BarButtonItem();
     this.btnThemMoiHH          = new DevExpress.XtraBars.BarButtonItem();
     this.btnTimKiemHH          = new DevExpress.XtraBars.BarButtonItem();
     this.btnDsHangHoa          = new DevExpress.XtraBars.BarButtonItem();
     this.ribbonPage1           = new DevExpress.XtraBars.Ribbon.RibbonPage();
     this.ribbonPageGroup1      = new DevExpress.XtraBars.Ribbon.RibbonPageGroup();
     this.ribbonPageGroup2      = new DevExpress.XtraBars.Ribbon.RibbonPageGroup();
     this.ribbonPage2           = new DevExpress.XtraBars.Ribbon.RibbonPage();
     this.ribbonPageGroup3      = new DevExpress.XtraBars.Ribbon.RibbonPageGroup();
     this.ribbonPage3           = new DevExpress.XtraBars.Ribbon.RibbonPage();
     this.ribbonPageGroup5      = new DevExpress.XtraBars.Ribbon.RibbonPageGroup();
     this.ribbonPage6           = new DevExpress.XtraBars.Ribbon.RibbonPage();
     this.ribbonPageGroup4      = new DevExpress.XtraBars.Ribbon.RibbonPageGroup();
     this.ribbonPage4           = new DevExpress.XtraBars.Ribbon.RibbonPage();
     this.ribbonPageGroup6      = new DevExpress.XtraBars.Ribbon.RibbonPageGroup();
     this.ribbonPage5           = new DevExpress.XtraBars.Ribbon.RibbonPage();
     this.ribbonPageGroup7      = new DevExpress.XtraBars.Ribbon.RibbonPageGroup();
     this.ribbonPageGroup8      = new DevExpress.XtraBars.Ribbon.RibbonPageGroup();
     this.tabinfo               = new DevExpress.XtraBars.Ribbon.RibbonPage();
     this.defaultLookAndFeel1   = new DevExpress.LookAndFeel.DefaultLookAndFeel(this.components);
     this.xtraTabbedMdiManager1 = new DevExpress.XtraTabbedMdi.XtraTabbedMdiManager(this.components);
     ribbonControl1             = new DevExpress.XtraBars.Ribbon.RibbonControl();
     ((System.ComponentModel.ISupportInitialize)(ribbonControl1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.applicationMenu1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemPictureEdit1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemPopupGalleryEdit1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.xtraTabbedMdiManager1)).BeginInit();
     this.SuspendLayout();
     //
     // ribbonControl1
     //
     ribbonControl1.ApplicationButtonDropDownControl = this.applicationMenu1;
     ribbonControl1.ExpandCollapseItem.Id            = 0;
     ribbonControl1.Items.AddRange(new DevExpress.XtraBars.BarItem[] {
         ribbonControl1.ExpandCollapseItem,
         this.btnDangNhap,
         this.btnDangXuat,
         this.skinRibbonGalleryBarItem1,
         this.barButtonItem1,
         this.barSubItem1,
         this.barEditItem1,
         this.barButtonItem2,
         this.barEditItem2,
         this.barSubItem2,
         this.btnDsNhanVien,
         this.btnNgayLamViec,
         this.btnDSHoaDon,
         this.btnThemMoiHD,
         this.btnInHD,
         this.btnDoanhThuNgay,
         this.btnDoanhThuThang,
         this.barButtonItem11,
         this.btnTKSPBanChay,
         this.btnTKHangTrongKho,
         this.barButtonItem13,
         this.btnTKSPBanTrongNgay,
         this.btnDsKhachHang,
         this.btnKHVip,
         this.btnThemMoiHH,
         this.btnTimKiemHH,
         this.btnDsHangHoa
     });
     ribbonControl1.Location  = new System.Drawing.Point(0, 0);
     ribbonControl1.MaxItemId = 28;
     ribbonControl1.Name      = "ribbonControl1";
     ribbonControl1.Pages.AddRange(new DevExpress.XtraBars.Ribbon.RibbonPage[] {
         this.ribbonPage1,
         this.ribbonPage2,
         this.ribbonPage3,
         this.ribbonPage6,
         this.ribbonPage4,
         this.ribbonPage5,
         this.tabinfo
     });
     ribbonControl1.RepositoryItems.AddRange(new DevExpress.XtraEditors.Repository.RepositoryItem[] {
         this.repositoryItemPictureEdit1,
         this.repositoryItemPopupGalleryEdit1
     });
     ribbonControl1.RibbonStyle = DevExpress.XtraBars.Ribbon.RibbonControlStyle.Office2010;
     ribbonControl1.Size        = new System.Drawing.Size(760, 150);
     ribbonControl1.Click      += new System.EventHandler(this.ribbonControl1_Click);
     //
     // applicationMenu1
     //
     this.applicationMenu1.ItemLinks.Add(this.btnDangNhap);
     this.applicationMenu1.ItemLinks.Add(this.btnDangXuat);
     this.applicationMenu1.ItemLinks.Add(this.btnDsKhachHang);
     this.applicationMenu1.ItemLinks.Add(this.btnDsNhanVien);
     this.applicationMenu1.ItemLinks.Add(this.barButtonItem13);
     this.applicationMenu1.ItemLinks.Add(this.btnNgayLamViec);
     this.applicationMenu1.Name   = "applicationMenu1";
     this.applicationMenu1.Ribbon = ribbonControl1;
     //
     // btnDangNhap
     //
     this.btnDangNhap.Caption     = "Đăng nhập";
     this.btnDangNhap.Glyph       = ((System.Drawing.Image)(resources.GetObject("btnDangNhap.Glyph")));
     this.btnDangNhap.Id          = 1;
     this.btnDangNhap.Name        = "btnDangNhap";
     this.btnDangNhap.RibbonStyle = ((DevExpress.XtraBars.Ribbon.RibbonItemStyles)(((DevExpress.XtraBars.Ribbon.RibbonItemStyles.Large | DevExpress.XtraBars.Ribbon.RibbonItemStyles.SmallWithText)
                                                                                    | DevExpress.XtraBars.Ribbon.RibbonItemStyles.SmallWithoutText)));
     this.btnDangNhap.ItemClick += new DevExpress.XtraBars.ItemClickEventHandler(this.btnDangNhap_ItemClick);
     //
     // btnDangXuat
     //
     this.btnDangXuat.Caption     = "Đăng xuất";
     this.btnDangXuat.Glyph       = ((System.Drawing.Image)(resources.GetObject("btnDangXuat.Glyph")));
     this.btnDangXuat.Id          = 2;
     this.btnDangXuat.Name        = "btnDangXuat";
     this.btnDangXuat.RibbonStyle = ((DevExpress.XtraBars.Ribbon.RibbonItemStyles)(((DevExpress.XtraBars.Ribbon.RibbonItemStyles.Large | DevExpress.XtraBars.Ribbon.RibbonItemStyles.SmallWithText)
                                                                                    | DevExpress.XtraBars.Ribbon.RibbonItemStyles.SmallWithoutText)));
     this.btnDangXuat.ItemClick += new DevExpress.XtraBars.ItemClickEventHandler(this.btnDangXuat_ItemClick);
     //
     // btnDsKhachHang
     //
     this.btnDsKhachHang.Caption     = "Danh sách khách hàng";
     this.btnDsKhachHang.Glyph       = ((System.Drawing.Image)(resources.GetObject("btnDsKhachHang.Glyph")));
     this.btnDsKhachHang.Id          = 23;
     this.btnDsKhachHang.Name        = "btnDsKhachHang";
     this.btnDsKhachHang.RibbonStyle = ((DevExpress.XtraBars.Ribbon.RibbonItemStyles)(((DevExpress.XtraBars.Ribbon.RibbonItemStyles.Large | DevExpress.XtraBars.Ribbon.RibbonItemStyles.SmallWithText)
                                                                                       | DevExpress.XtraBars.Ribbon.RibbonItemStyles.SmallWithoutText)));
     this.btnDsKhachHang.ItemClick += new DevExpress.XtraBars.ItemClickEventHandler(this.btnDsKhachHang_ItemClick);
     //
     // btnDsNhanVien
     //
     this.btnDsNhanVien.Caption     = "Danh sách nhân viên";
     this.btnDsNhanVien.Glyph       = ((System.Drawing.Image)(resources.GetObject("btnDsNhanVien.Glyph")));
     this.btnDsNhanVien.Id          = 10;
     this.btnDsNhanVien.Name        = "btnDsNhanVien";
     this.btnDsNhanVien.RibbonStyle = ((DevExpress.XtraBars.Ribbon.RibbonItemStyles)(((DevExpress.XtraBars.Ribbon.RibbonItemStyles.Large | DevExpress.XtraBars.Ribbon.RibbonItemStyles.SmallWithText)
                                                                                      | DevExpress.XtraBars.Ribbon.RibbonItemStyles.SmallWithoutText)));
     this.btnDsNhanVien.ItemClick += new DevExpress.XtraBars.ItemClickEventHandler(this.btnDsNhanVien_ItemClick_1);
     //
     // barButtonItem13
     //
     this.barButtonItem13.Caption     = "Danh sách sản phẩm";
     this.barButtonItem13.Glyph       = ((System.Drawing.Image)(resources.GetObject("barButtonItem13.Glyph")));
     this.barButtonItem13.Id          = 21;
     this.barButtonItem13.Name        = "barButtonItem13";
     this.barButtonItem13.RibbonStyle = ((DevExpress.XtraBars.Ribbon.RibbonItemStyles)(((DevExpress.XtraBars.Ribbon.RibbonItemStyles.Large | DevExpress.XtraBars.Ribbon.RibbonItemStyles.SmallWithText)
                                                                                        | DevExpress.XtraBars.Ribbon.RibbonItemStyles.SmallWithoutText)));
     //
     // btnNgayLamViec
     //
     this.btnNgayLamViec.Caption     = "Ngày làm việc ";
     this.btnNgayLamViec.Glyph       = ((System.Drawing.Image)(resources.GetObject("btnNgayLamViec.Glyph")));
     this.btnNgayLamViec.Id          = 11;
     this.btnNgayLamViec.Name        = "btnNgayLamViec";
     this.btnNgayLamViec.RibbonStyle = ((DevExpress.XtraBars.Ribbon.RibbonItemStyles)(((DevExpress.XtraBars.Ribbon.RibbonItemStyles.Large | DevExpress.XtraBars.Ribbon.RibbonItemStyles.SmallWithText)
                                                                                       | DevExpress.XtraBars.Ribbon.RibbonItemStyles.SmallWithoutText)));
     this.btnNgayLamViec.ItemClick += new DevExpress.XtraBars.ItemClickEventHandler(this.btnNgayLamViec_ItemClick);
     //
     // skinRibbonGalleryBarItem1
     //
     this.skinRibbonGalleryBarItem1.Caption = "skinRibbonGalleryBarItem1";
     this.skinRibbonGalleryBarItem1.Id      = 3;
     this.skinRibbonGalleryBarItem1.Name    = "skinRibbonGalleryBarItem1";
     //
     // barButtonItem1
     //
     this.barButtonItem1.Caption     = "Danh sách khách hàng";
     this.barButtonItem1.Glyph       = ((System.Drawing.Image)(resources.GetObject("barButtonItem1.Glyph")));
     this.barButtonItem1.Id          = 4;
     this.barButtonItem1.Name        = "barButtonItem1";
     this.barButtonItem1.RibbonStyle = ((DevExpress.XtraBars.Ribbon.RibbonItemStyles)(((DevExpress.XtraBars.Ribbon.RibbonItemStyles.Large | DevExpress.XtraBars.Ribbon.RibbonItemStyles.SmallWithText)
                                                                                       | DevExpress.XtraBars.Ribbon.RibbonItemStyles.SmallWithoutText)));
     //
     // barSubItem1
     //
     this.barSubItem1.Id   = 5;
     this.barSubItem1.Name = "barSubItem1";
     //
     // barEditItem1
     //
     this.barEditItem1.AllowGlyphSkinning = DevExpress.Utils.DefaultBoolean.False;
     this.barEditItem1.Edit       = this.repositoryItemPictureEdit1;
     this.barEditItem1.Id         = 6;
     this.barEditItem1.Name       = "barEditItem1";
     this.barEditItem1.ItemClick += new DevExpress.XtraBars.ItemClickEventHandler(this.barEditItem1_ItemClick);
     //
     // repositoryItemPictureEdit1
     //
     this.repositoryItemPictureEdit1.Name = "repositoryItemPictureEdit1";
     this.repositoryItemPictureEdit1.ZoomAccelerationFactor = 1D;
     //
     // barButtonItem2
     //
     this.barButtonItem2.Caption     = "Danh sách VIP";
     this.barButtonItem2.Glyph       = ((System.Drawing.Image)(resources.GetObject("barButtonItem2.Glyph")));
     this.barButtonItem2.Id          = 7;
     this.barButtonItem2.Name        = "barButtonItem2";
     this.barButtonItem2.RibbonStyle = ((DevExpress.XtraBars.Ribbon.RibbonItemStyles)(((DevExpress.XtraBars.Ribbon.RibbonItemStyles.Large | DevExpress.XtraBars.Ribbon.RibbonItemStyles.SmallWithText)
                                                                                       | DevExpress.XtraBars.Ribbon.RibbonItemStyles.SmallWithoutText)));
     //
     // barEditItem2
     //
     this.barEditItem2.Edit = this.repositoryItemPopupGalleryEdit1;
     this.barEditItem2.Id   = 8;
     this.barEditItem2.Name = "barEditItem2";
     //
     // repositoryItemPopupGalleryEdit1
     //
     this.repositoryItemPopupGalleryEdit1.AutoHeight = false;
     this.repositoryItemPopupGalleryEdit1.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
         new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)
     });
     this.repositoryItemPopupGalleryEdit1.Name = "repositoryItemPopupGalleryEdit1";
     //
     // barSubItem2
     //
     this.barSubItem2.Id   = 9;
     this.barSubItem2.Name = "barSubItem2";
     //
     // btnDSHoaDon
     //
     this.btnDSHoaDon.Caption     = "Danh sách hóa đơn";
     this.btnDSHoaDon.Glyph       = ((System.Drawing.Image)(resources.GetObject("btnDSHoaDon.Glyph")));
     this.btnDSHoaDon.Id          = 12;
     this.btnDSHoaDon.Name        = "btnDSHoaDon";
     this.btnDSHoaDon.RibbonStyle = ((DevExpress.XtraBars.Ribbon.RibbonItemStyles)(((DevExpress.XtraBars.Ribbon.RibbonItemStyles.Large | DevExpress.XtraBars.Ribbon.RibbonItemStyles.SmallWithText)
                                                                                    | DevExpress.XtraBars.Ribbon.RibbonItemStyles.SmallWithoutText)));
     this.btnDSHoaDon.ItemClick += new DevExpress.XtraBars.ItemClickEventHandler(this.btnDSHoaDon_ItemClick);
     //
     // btnThemMoiHD
     //
     this.btnThemMoiHD.Caption     = "Thêm mới";
     this.btnThemMoiHD.Glyph       = ((System.Drawing.Image)(resources.GetObject("btnThemMoiHD.Glyph")));
     this.btnThemMoiHD.Id          = 13;
     this.btnThemMoiHD.Name        = "btnThemMoiHD";
     this.btnThemMoiHD.RibbonStyle = ((DevExpress.XtraBars.Ribbon.RibbonItemStyles)(((DevExpress.XtraBars.Ribbon.RibbonItemStyles.Large | DevExpress.XtraBars.Ribbon.RibbonItemStyles.SmallWithText)
                                                                                     | DevExpress.XtraBars.Ribbon.RibbonItemStyles.SmallWithoutText)));
     this.btnThemMoiHD.ItemClick += new DevExpress.XtraBars.ItemClickEventHandler(this.barButtonItem6_ItemClick);
     //
     // btnInHD
     //
     this.btnInHD.Caption     = "In";
     this.btnInHD.Glyph       = ((System.Drawing.Image)(resources.GetObject("btnInHD.Glyph")));
     this.btnInHD.Id          = 14;
     this.btnInHD.Name        = "btnInHD";
     this.btnInHD.RibbonStyle = ((DevExpress.XtraBars.Ribbon.RibbonItemStyles)(((DevExpress.XtraBars.Ribbon.RibbonItemStyles.Large | DevExpress.XtraBars.Ribbon.RibbonItemStyles.SmallWithText)
                                                                                | DevExpress.XtraBars.Ribbon.RibbonItemStyles.SmallWithoutText)));
     this.btnInHD.ItemClick += new DevExpress.XtraBars.ItemClickEventHandler(this.barButtonItem7_ItemClick);
     //
     // btnDoanhThuNgay
     //
     this.btnDoanhThuNgay.Caption     = "Doanh thu theo ngày";
     this.btnDoanhThuNgay.Glyph       = ((System.Drawing.Image)(resources.GetObject("btnDoanhThuNgay.Glyph")));
     this.btnDoanhThuNgay.Id          = 15;
     this.btnDoanhThuNgay.Name        = "btnDoanhThuNgay";
     this.btnDoanhThuNgay.RibbonStyle = ((DevExpress.XtraBars.Ribbon.RibbonItemStyles)(((DevExpress.XtraBars.Ribbon.RibbonItemStyles.Large | DevExpress.XtraBars.Ribbon.RibbonItemStyles.SmallWithText)
                                                                                        | DevExpress.XtraBars.Ribbon.RibbonItemStyles.SmallWithoutText)));
     this.btnDoanhThuNgay.ItemClick += new DevExpress.XtraBars.ItemClickEventHandler(this.btnDoanhThuNgay_ItemClick);
     //
     // btnDoanhThuThang
     //
     this.btnDoanhThuThang.Caption     = "Doanh thu tháng";
     this.btnDoanhThuThang.Glyph       = ((System.Drawing.Image)(resources.GetObject("btnDoanhThuThang.Glyph")));
     this.btnDoanhThuThang.Id          = 16;
     this.btnDoanhThuThang.Name        = "btnDoanhThuThang";
     this.btnDoanhThuThang.RibbonStyle = ((DevExpress.XtraBars.Ribbon.RibbonItemStyles)(((DevExpress.XtraBars.Ribbon.RibbonItemStyles.Large | DevExpress.XtraBars.Ribbon.RibbonItemStyles.SmallWithText)
                                                                                         | DevExpress.XtraBars.Ribbon.RibbonItemStyles.SmallWithoutText)));
     this.btnDoanhThuThang.ItemClick += new DevExpress.XtraBars.ItemClickEventHandler(this.btnDoanhThuThang_ItemClick);
     //
     // barButtonItem11
     //
     this.barButtonItem11.Id          = 18;
     this.barButtonItem11.Name        = "barButtonItem11";
     this.barButtonItem11.RibbonStyle = ((DevExpress.XtraBars.Ribbon.RibbonItemStyles)(((DevExpress.XtraBars.Ribbon.RibbonItemStyles.Large | DevExpress.XtraBars.Ribbon.RibbonItemStyles.SmallWithText)
                                                                                        | DevExpress.XtraBars.Ribbon.RibbonItemStyles.SmallWithoutText)));
     //
     // btnTKSPBanChay
     //
     this.btnTKSPBanChay.Caption     = "Thống kê sản phẩm\r\n bán chạy";
     this.btnTKSPBanChay.Glyph       = ((System.Drawing.Image)(resources.GetObject("btnTKSPBanChay.Glyph")));
     this.btnTKSPBanChay.Id          = 19;
     this.btnTKSPBanChay.Name        = "btnTKSPBanChay";
     this.btnTKSPBanChay.RibbonStyle = ((DevExpress.XtraBars.Ribbon.RibbonItemStyles)(((DevExpress.XtraBars.Ribbon.RibbonItemStyles.Large | DevExpress.XtraBars.Ribbon.RibbonItemStyles.SmallWithText)
                                                                                       | DevExpress.XtraBars.Ribbon.RibbonItemStyles.SmallWithoutText)));
     this.btnTKSPBanChay.ItemClick += new DevExpress.XtraBars.ItemClickEventHandler(this.barButtonItem10_ItemClick);
     //
     // btnTKHangTrongKho
     //
     this.btnTKHangTrongKho.Caption     = "Thống kê hàng trong kho";
     this.btnTKHangTrongKho.Glyph       = ((System.Drawing.Image)(resources.GetObject("btnTKHangTrongKho.Glyph")));
     this.btnTKHangTrongKho.Id          = 20;
     this.btnTKHangTrongKho.Name        = "btnTKHangTrongKho";
     this.btnTKHangTrongKho.RibbonStyle = ((DevExpress.XtraBars.Ribbon.RibbonItemStyles)(((DevExpress.XtraBars.Ribbon.RibbonItemStyles.Large | DevExpress.XtraBars.Ribbon.RibbonItemStyles.SmallWithText)
                                                                                          | DevExpress.XtraBars.Ribbon.RibbonItemStyles.SmallWithoutText)));
     this.btnTKHangTrongKho.ItemClick += new DevExpress.XtraBars.ItemClickEventHandler(this.btnTKHangTrongKho_ItemClick);
     //
     // btnTKSPBanTrongNgay
     //
     this.btnTKSPBanTrongNgay.Caption     = "Thống kê sản phẩm bán trong ngày";
     this.btnTKSPBanTrongNgay.Glyph       = ((System.Drawing.Image)(resources.GetObject("btnTKSPBanTrongNgay.Glyph")));
     this.btnTKSPBanTrongNgay.Id          = 22;
     this.btnTKSPBanTrongNgay.Name        = "btnTKSPBanTrongNgay";
     this.btnTKSPBanTrongNgay.RibbonStyle = ((DevExpress.XtraBars.Ribbon.RibbonItemStyles)(((DevExpress.XtraBars.Ribbon.RibbonItemStyles.Large | DevExpress.XtraBars.Ribbon.RibbonItemStyles.SmallWithText)
                                                                                            | DevExpress.XtraBars.Ribbon.RibbonItemStyles.SmallWithoutText)));
     //
     // btnKHVip
     //
     this.btnKHVip.Caption     = "Danh sách khách hàng VIP";
     this.btnKHVip.Glyph       = ((System.Drawing.Image)(resources.GetObject("btnKHVip.Glyph")));
     this.btnKHVip.Id          = 24;
     this.btnKHVip.Name        = "btnKHVip";
     this.btnKHVip.RibbonStyle = ((DevExpress.XtraBars.Ribbon.RibbonItemStyles)(((DevExpress.XtraBars.Ribbon.RibbonItemStyles.Large | DevExpress.XtraBars.Ribbon.RibbonItemStyles.SmallWithText)
                                                                                 | DevExpress.XtraBars.Ribbon.RibbonItemStyles.SmallWithoutText)));
     this.btnKHVip.ItemClick += new DevExpress.XtraBars.ItemClickEventHandler(this.btnKHVip_ItemClick);
     //
     // btnThemMoiHH
     //
     this.btnThemMoiHH.Caption     = "Thêm mới";
     this.btnThemMoiHH.Glyph       = ((System.Drawing.Image)(resources.GetObject("btnThemMoiHH.Glyph")));
     this.btnThemMoiHH.Id          = 25;
     this.btnThemMoiHH.Name        = "btnThemMoiHH";
     this.btnThemMoiHH.RibbonStyle = ((DevExpress.XtraBars.Ribbon.RibbonItemStyles)(((DevExpress.XtraBars.Ribbon.RibbonItemStyles.Large | DevExpress.XtraBars.Ribbon.RibbonItemStyles.SmallWithText)
                                                                                     | DevExpress.XtraBars.Ribbon.RibbonItemStyles.SmallWithoutText)));
     this.btnThemMoiHH.ItemClick += new DevExpress.XtraBars.ItemClickEventHandler(this.barButtonItem17_ItemClick);
     //
     // btnTimKiemHH
     //
     this.btnTimKiemHH.Caption     = "Tìm kiếm";
     this.btnTimKiemHH.Glyph       = ((System.Drawing.Image)(resources.GetObject("btnTimKiemHH.Glyph")));
     this.btnTimKiemHH.Id          = 26;
     this.btnTimKiemHH.Name        = "btnTimKiemHH";
     this.btnTimKiemHH.RibbonStyle = ((DevExpress.XtraBars.Ribbon.RibbonItemStyles)(((DevExpress.XtraBars.Ribbon.RibbonItemStyles.Large | DevExpress.XtraBars.Ribbon.RibbonItemStyles.SmallWithText)
                                                                                     | DevExpress.XtraBars.Ribbon.RibbonItemStyles.SmallWithoutText)));
     //
     // btnDsHangHoa
     //
     this.btnDsHangHoa.Caption     = "Danh sách hàng hóa";
     this.btnDsHangHoa.Glyph       = ((System.Drawing.Image)(resources.GetObject("btnDsHangHoa.Glyph")));
     this.btnDsHangHoa.Id          = 27;
     this.btnDsHangHoa.Name        = "btnDsHangHoa";
     this.btnDsHangHoa.RibbonStyle = ((DevExpress.XtraBars.Ribbon.RibbonItemStyles)(((DevExpress.XtraBars.Ribbon.RibbonItemStyles.Large | DevExpress.XtraBars.Ribbon.RibbonItemStyles.SmallWithText)
                                                                                     | DevExpress.XtraBars.Ribbon.RibbonItemStyles.SmallWithoutText)));
     this.btnDsHangHoa.ItemClick += new DevExpress.XtraBars.ItemClickEventHandler(this.btnDsHangHoa_ItemClick);
     //
     // ribbonPage1
     //
     this.ribbonPage1.Groups.AddRange(new DevExpress.XtraBars.Ribbon.RibbonPageGroup[] {
         this.ribbonPageGroup1,
         this.ribbonPageGroup2
     });
     this.ribbonPage1.Image = ((System.Drawing.Image)(resources.GetObject("ribbonPage1.Image")));
     this.ribbonPage1.Name  = "ribbonPage1";
     this.ribbonPage1.Text  = "Hệ thống";
     //
     // ribbonPageGroup1
     //
     this.ribbonPageGroup1.ItemLinks.Add(this.btnDangNhap);
     this.ribbonPageGroup1.ItemLinks.Add(this.btnDangXuat);
     this.ribbonPageGroup1.Name = "ribbonPageGroup1";
     this.ribbonPageGroup1.Text = "Thao tác hệ thống";
     //
     // ribbonPageGroup2
     //
     this.ribbonPageGroup2.ItemLinks.Add(this.skinRibbonGalleryBarItem1);
     this.ribbonPageGroup2.Name = "ribbonPageGroup2";
     this.ribbonPageGroup2.Text = "Chọn giao diện";
     //
     // ribbonPage2
     //
     this.ribbonPage2.Groups.AddRange(new DevExpress.XtraBars.Ribbon.RibbonPageGroup[] {
         this.ribbonPageGroup3
     });
     this.ribbonPage2.Image = ((System.Drawing.Image)(resources.GetObject("ribbonPage2.Image")));
     this.ribbonPage2.Name  = "ribbonPage2";
     this.ribbonPage2.Text  = "Khách hàng";
     //
     // ribbonPageGroup3
     //
     this.ribbonPageGroup3.ItemLinks.Add(this.btnDsKhachHang);
     this.ribbonPageGroup3.ItemLinks.Add(this.btnKHVip);
     this.ribbonPageGroup3.Name = "ribbonPageGroup3";
     //
     // ribbonPage3
     //
     this.ribbonPage3.Groups.AddRange(new DevExpress.XtraBars.Ribbon.RibbonPageGroup[] {
         this.ribbonPageGroup5
     });
     this.ribbonPage3.Image = ((System.Drawing.Image)(resources.GetObject("ribbonPage3.Image")));
     this.ribbonPage3.Name  = "ribbonPage3";
     this.ribbonPage3.Text  = "Nhân viên";
     //
     // ribbonPageGroup5
     //
     this.ribbonPageGroup5.ItemLinks.Add(this.btnDsNhanVien);
     this.ribbonPageGroup5.ItemLinks.Add(this.btnNgayLamViec);
     this.ribbonPageGroup5.Name = "ribbonPageGroup5";
     //
     // ribbonPage6
     //
     this.ribbonPage6.Groups.AddRange(new DevExpress.XtraBars.Ribbon.RibbonPageGroup[] {
         this.ribbonPageGroup4
     });
     this.ribbonPage6.Image = ((System.Drawing.Image)(resources.GetObject("ribbonPage6.Image")));
     this.ribbonPage6.Name  = "ribbonPage6";
     this.ribbonPage6.Text  = "Hàng hóa";
     //
     // ribbonPageGroup4
     //
     this.ribbonPageGroup4.ItemLinks.Add(this.btnDsHangHoa);
     this.ribbonPageGroup4.ItemLinks.Add(this.btnThemMoiHH);
     this.ribbonPageGroup4.ItemLinks.Add(this.btnTimKiemHH);
     this.ribbonPageGroup4.Name = "ribbonPageGroup4";
     //
     // ribbonPage4
     //
     this.ribbonPage4.Groups.AddRange(new DevExpress.XtraBars.Ribbon.RibbonPageGroup[] {
         this.ribbonPageGroup6
     });
     this.ribbonPage4.Image = ((System.Drawing.Image)(resources.GetObject("ribbonPage4.Image")));
     this.ribbonPage4.Name  = "ribbonPage4";
     this.ribbonPage4.Text  = "Hóa đơn";
     //
     // ribbonPageGroup6
     //
     this.ribbonPageGroup6.Glyph = ((System.Drawing.Image)(resources.GetObject("ribbonPageGroup6.Glyph")));
     this.ribbonPageGroup6.ItemLinks.Add(this.btnDSHoaDon);
     this.ribbonPageGroup6.ItemLinks.Add(this.btnThemMoiHD);
     this.ribbonPageGroup6.ItemLinks.Add(this.btnInHD);
     this.ribbonPageGroup6.Name = "ribbonPageGroup6";
     //
     // ribbonPage5
     //
     this.ribbonPage5.Groups.AddRange(new DevExpress.XtraBars.Ribbon.RibbonPageGroup[] {
         this.ribbonPageGroup7,
         this.ribbonPageGroup8
     });
     this.ribbonPage5.Image = ((System.Drawing.Image)(resources.GetObject("ribbonPage5.Image")));
     this.ribbonPage5.Name  = "ribbonPage5";
     this.ribbonPage5.Text  = "Thống kê";
     //
     // ribbonPageGroup7
     //
     this.ribbonPageGroup7.ItemLinks.Add(this.btnDoanhThuNgay);
     this.ribbonPageGroup7.ItemLinks.Add(this.btnDoanhThuThang);
     this.ribbonPageGroup7.Name = "ribbonPageGroup7";
     this.ribbonPageGroup7.Text = "Thống kê doanh thu";
     //
     // ribbonPageGroup8
     //
     this.ribbonPageGroup8.ItemLinks.Add(this.btnTKSPBanTrongNgay);
     this.ribbonPageGroup8.ItemLinks.Add(this.btnTKSPBanChay);
     this.ribbonPageGroup8.ItemLinks.Add(this.btnTKHangTrongKho);
     this.ribbonPageGroup8.Name = "ribbonPageGroup8";
     //
     // tabinfo
     //
     this.tabinfo.Name = "tabinfo";
     //
     // defaultLookAndFeel1
     //
     this.defaultLookAndFeel1.LookAndFeel.SkinName = "Summer 2008";
     //
     // xtraTabbedMdiManager1
     //
     this.xtraTabbedMdiManager1.MdiParent = this;
     //
     // formMain
     //
     this.AllowFormGlass      = DevExpress.Utils.DefaultBoolean.False;
     this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
     this.AutoScaleMode       = System.Windows.Forms.AutoScaleMode.Font;
     this.AutoSize            = true;
     this.ClientSize          = new System.Drawing.Size(760, 404);
     this.Controls.Add(ribbonControl1);
     this.IsMdiContainer = true;
     this.Name           = "formMain";
     this.Ribbon         = ribbonControl1;
     this.Text           = "QUẢN LÝ BÁN HÀNG";
     this.WindowState    = System.Windows.Forms.FormWindowState.Maximized;
     this.Load          += new System.EventHandler(this.formMain_Load);
     ((System.ComponentModel.ISupportInitialize)(ribbonControl1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.applicationMenu1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemPictureEdit1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemPopupGalleryEdit1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.xtraTabbedMdiManager1)).EndInit();
     this.ResumeLayout(false);
     this.PerformLayout();
 }
Example #42
0
 void createRibControl()
 {
     ribbon1 = new DevExpress.XtraBars.Ribbon.RibbonControl();
     Controls.Add(ribbon1);
 }
        public CloudTaskBackstageViewMenu(System.Windows.Forms.Control form, DevExpress.XtraBars.Ribbon.RibbonControl ribbonControl)
        {
            controller                             = new Controllers.MainMenuController();
            m_ribbonControl                        = ribbonControl;
            m_backstageViewControl                 = new DevExpress.XtraBars.Ribbon.BackstageViewControl();
            m_backstageViewClientControl           = new DevExpress.XtraBars.Ribbon.BackstageViewClientControl();
            m_TabSaveButtonSave                    = new DevExpress.XtraEditors.SimpleButton();
            m_TabSaveButtonSaveAs                  = new DevExpress.XtraEditors.SimpleButton();
            m_TabSaveXtraUserControl               = new DevExpress.XtraEditors.XtraUserControl();
            m_backstageViewButtonNewCase           = new DevExpress.XtraBars.Ribbon.BackstageViewButtonItem();
            m_backstageViewButtonOpenCase          = new DevExpress.XtraBars.Ribbon.BackstageViewButtonItem();
            m_backstageViewTabSaveCase             = new DevExpress.XtraBars.Ribbon.BackstageViewTabItem();
            m_backstageViewButtonSettings          = new DevExpress.XtraBars.Ribbon.BackstageViewButtonItem();
            m_backstageViewItemSeparator           = new DevExpress.XtraBars.Ribbon.BackstageViewItemSeparator();
            m_backstageViewButtonDeleteCurrentCase = new DevExpress.XtraBars.Ribbon.BackstageViewButtonItem();
            m_backstageViewButtonExit              = new DevExpress.XtraBars.Ribbon.BackstageViewButtonItem();

            ((System.ComponentModel.ISupportInitialize)(m_backstageViewControl)).BeginInit();
            m_backstageViewControl.SuspendLayout();
            m_backstageViewClientControl.SuspendLayout();
            //
            // backstageViewControl
            //
            m_backstageViewControl.Appearance.BackColor              = System.Drawing.Color.Black;
            m_backstageViewControl.Appearance.BackColor2             = System.Drawing.Color.Black;
            m_backstageViewControl.Appearance.BorderColor            = System.Drawing.Color.Black;
            m_backstageViewControl.Appearance.Options.UseBackColor   = true;
            m_backstageViewControl.Appearance.Options.UseBorderColor = true;
            m_backstageViewControl.ColorScheme = DevExpress.XtraBars.Ribbon.RibbonControlColorScheme.Yellow;
            m_backstageViewControl.Controls.Add(m_backstageViewClientControl);
            m_backstageViewControl.Items.Add(m_backstageViewButtonNewCase);
            m_backstageViewControl.Items.Add(m_backstageViewButtonOpenCase);
            m_backstageViewControl.Items.Add(m_backstageViewTabSaveCase);
            m_backstageViewControl.Items.Add(m_backstageViewButtonSettings);
            m_backstageViewControl.Items.Add(m_backstageViewItemSeparator);
            m_backstageViewControl.Items.Add(m_backstageViewButtonDeleteCurrentCase);
            m_backstageViewControl.Items.Add(m_backstageViewButtonExit);
            m_backstageViewControl.Location         = new System.Drawing.Point(267, 150);
            m_backstageViewControl.Name             = "backstageViewControl";
            m_backstageViewControl.Ribbon           = ribbonControl;
            m_backstageViewControl.SelectedTab      = m_backstageViewTabSaveCase;
            m_backstageViewControl.SelectedTabIndex = 2;
            m_backstageViewControl.Size             = new System.Drawing.Size(759, 377);
            m_backstageViewControl.Style            = DevExpress.XtraBars.Ribbon.BackstageViewStyle.Office2013;
            m_backstageViewControl.TabIndex         = 5;
            m_backstageViewControl.Text             = "backstageViewControl1";
            //
            // backstageViewClientControl
            //
            m_backstageViewClientControl.Controls.Add(m_TabSaveButtonSave);
            m_backstageViewClientControl.Controls.Add(m_TabSaveButtonSaveAs);
            m_backstageViewClientControl.Controls.Add(m_TabSaveXtraUserControl);
            m_backstageViewClientControl.Location = new System.Drawing.Point(163, 63);
            m_backstageViewClientControl.Name     = "backstageViewClientControl1";
            m_backstageViewClientControl.Size     = new System.Drawing.Size(595, 313);
            m_backstageViewClientControl.TabIndex = 0;
            //
            // simpleButtonSave
            //
            m_TabSaveButtonSave.Image    = global::CloudTask_GUI.Properties.Resources.save_32x32;
            m_TabSaveButtonSave.Location = new System.Drawing.Point(17, 94);
            m_TabSaveButtonSave.Name     = "simpleButtonSave";
            m_TabSaveButtonSave.Size     = new System.Drawing.Size(107, 37);
            m_TabSaveButtonSave.TabIndex = 2;
            m_TabSaveButtonSave.Text     = "Save";
            //
            // simpleButtonSaveAs
            //
            m_TabSaveButtonSaveAs.Image    = global::CloudTask_GUI.Properties.Resources.saveandnew_32x32;
            m_TabSaveButtonSaveAs.Location = new System.Drawing.Point(17, 51);
            m_TabSaveButtonSaveAs.Name     = "simpleButtonSaveAs";
            m_TabSaveButtonSaveAs.Size     = new System.Drawing.Size(107, 37);
            m_TabSaveButtonSaveAs.TabIndex = 1;
            m_TabSaveButtonSaveAs.Text     = "Save as";
            //
            // xtraUserControl2
            //
            m_TabSaveXtraUserControl.Dock     = System.Windows.Forms.DockStyle.Fill;
            m_TabSaveXtraUserControl.Location = new System.Drawing.Point(0, 0);
            m_TabSaveXtraUserControl.Name     = "xtraUserControl2";
            m_TabSaveXtraUserControl.Size     = new System.Drawing.Size(595, 313);
            m_TabSaveXtraUserControl.TabIndex = 0;
            //
            // backstageViewButtonNewCase
            //
            m_backstageViewButtonNewCase.Caption = "New Case";
            m_backstageViewButtonNewCase.Glyph   = global::CloudTask_GUI.Properties.Resources.project_32x32;
            m_backstageViewButtonNewCase.Name    = "backstageViewButtonNewCase";
            //
            // backstageViewButtonOpenCase
            //
            m_backstageViewButtonOpenCase.Caption = "Open Case";
            m_backstageViewButtonOpenCase.Glyph   = global::CloudTask_GUI.Properties.Resources.loadfrom_32x32;
            m_backstageViewButtonOpenCase.Name    = "backstageViewButtonOpenCase";
            //
            // backstageViewTabSaveCase
            //
            m_backstageViewTabSaveCase.Caption        = "Save Case";
            m_backstageViewTabSaveCase.ContentControl = m_backstageViewClientControl;
            m_backstageViewTabSaveCase.Glyph          = global::CloudTask_GUI.Properties.Resources.save_32x32;
            m_backstageViewTabSaveCase.Name           = "backstageViewTabSaveCase";
            m_backstageViewTabSaveCase.Selected       = false;
            //
            // backstageViewButtonSettings
            //
            m_backstageViewButtonSettings.Caption = "Settings";
            m_backstageViewButtonSettings.Glyph   = global::CloudTask_GUI.Properties.Resources.technology_32x32;
            m_backstageViewButtonSettings.Name    = "backstageViewButtonSettings";
            m_backstageViewButtonSettings.Visible = false;
            //
            // backstageViewItemSeparator1
            //
            m_backstageViewItemSeparator.Name = "backstageViewItemSeparator1";
            //
            // backstageViewButtonDeleteCurrentCase
            //
            m_backstageViewButtonDeleteCurrentCase.Caption = "Delete Current Case";
            m_backstageViewButtonDeleteCurrentCase.Glyph   = global::CloudTask_GUI.Properties.Resources.clear_32x32;
            m_backstageViewButtonDeleteCurrentCase.Name    = "backstageViewButtonDeleteCurrentCase";
            //
            // backstageViewButtonExit
            //
            m_backstageViewButtonExit.Caption = "Exit";
            m_backstageViewButtonExit.Glyph   = global::CloudTask_GUI.Properties.Resources.bugreport_32x32;
            m_backstageViewButtonExit.Name    = "backstageViewButtonExit";

            m_ribbonControl.ApplicationButtonDropDownControl = m_backstageViewControl;
            form.Controls.Add(m_backstageViewControl);
            ((System.ComponentModel.ISupportInitialize)(m_backstageViewControl)).EndInit();
            m_backstageViewControl.ResumeLayout(false);
            m_backstageViewClientControl.ResumeLayout(false);

            m_TabSaveButtonSaveAs.Click                      += new EventHandler(controller.CaseSaveAsClicked);
            m_TabSaveButtonSave.Click                        += new EventHandler(controller.CaseSaveClicked);
            m_backstageViewButtonOpenCase.ItemClick          += new DevExpress.XtraBars.Ribbon.BackstageViewItemEventHandler(controller.OpenCaseClicked);
            m_backstageViewButtonNewCase.ItemClick           += new DevExpress.XtraBars.Ribbon.BackstageViewItemEventHandler(controller.NewCaseClicked);
            m_backstageViewButtonDeleteCurrentCase.ItemClick += new DevExpress.XtraBars.Ribbon.BackstageViewItemEventHandler(controller.DeleteCaseClicked);
            m_backstageViewButtonExit.ItemClick              += new DevExpress.XtraBars.Ribbon.BackstageViewItemEventHandler(controller.ExitClicked);
        }
Example #44
0
 /// <summary>
 /// Required method for Designer support - do not modify
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     this.panelbien = new DevExpress.XtraEditors.PanelControl();
     this.ribbonPage1 = new DevExpress.XtraBars.Ribbon.RibbonPage();
     this.ribbonPageGroup3 = new DevExpress.XtraBars.Ribbon.RibbonPageGroup();
     this.ribbonPageGroup2 = new DevExpress.XtraBars.Ribbon.RibbonPageGroup();
     this.ribbonPageGroup1 = new DevExpress.XtraBars.Ribbon.RibbonPageGroup();
     this.liste_bien = new DevExpress.XtraBars.BarButtonItem();
     this.bien_categorie = new DevExpress.XtraBars.BarButtonItem();
     this.Taraçabilite_bien = new DevExpress.XtraBars.BarButtonItem();
     this.ribbonControl1 = new DevExpress.XtraBars.Ribbon.RibbonControl();
     ((System.ComponentModel.ISupportInitialize)(this.panelbien)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.ribbonControl1)).BeginInit();
     this.SuspendLayout();
     //
     // panelbien
     //
     this.panelbien.Dock = System.Windows.Forms.DockStyle.Fill;
     this.panelbien.Location = new System.Drawing.Point(0, 145);
     this.panelbien.Name = "panelbien";
     this.panelbien.Size = new System.Drawing.Size(991, 457);
     this.panelbien.TabIndex = 1;
     //
     // ribbonPage1
     //
     this.ribbonPage1.Groups.AddRange(new DevExpress.XtraBars.Ribbon.RibbonPageGroup[] {
     this.ribbonPageGroup1,
     this.ribbonPageGroup2,
     this.ribbonPageGroup3});
     this.ribbonPage1.Name = "ribbonPage1";
     this.ribbonPage1.Text = "ribbonPage1";
     //
     // ribbonPageGroup3
     //
     this.ribbonPageGroup3.ItemLinks.Add(this.Taraçabilite_bien);
     this.ribbonPageGroup3.Name = "ribbonPageGroup3";
     this.ribbonPageGroup3.Text = "ribbonPageGroup3";
     //
     // ribbonPageGroup2
     //
     this.ribbonPageGroup2.ItemLinks.Add(this.bien_categorie);
     this.ribbonPageGroup2.Name = "ribbonPageGroup2";
     this.ribbonPageGroup2.Text = "ribbonPageGroup2";
     //
     // ribbonPageGroup1
     //
     this.ribbonPageGroup1.ItemLinks.Add(this.liste_bien);
     this.ribbonPageGroup1.Name = "ribbonPageGroup1";
     this.ribbonPageGroup1.Text = "ribbonPageGroup1";
     //
     // liste_bien
     //
     this.liste_bien.Caption = "Liste biens";
     this.liste_bien.Id = 1;
     this.liste_bien.Name = "liste_bien";
     this.liste_bien.RibbonStyle = DevExpress.XtraBars.Ribbon.RibbonItemStyles.Large;
     this.liste_bien.ItemClick += new DevExpress.XtraBars.ItemClickEventHandler(this.liste_bien_ItemClick);
     //
     // bien_categorie
     //
     this.bien_categorie.Caption = "Bien par catégorie";
     this.bien_categorie.Id = 2;
     this.bien_categorie.Name = "bien_categorie";
     this.bien_categorie.RibbonStyle = DevExpress.XtraBars.Ribbon.RibbonItemStyles.Large;
     //
     // Taraçabilite_bien
     //
     this.Taraçabilite_bien.Caption = "Taraçabilité bien";
     this.Taraçabilite_bien.Id = 3;
     this.Taraçabilite_bien.Name = "Taraçabilite_bien";
     //
     // ribbonControl1
     //
     this.ribbonControl1.AccessibleRole = System.Windows.Forms.AccessibleRole.None;
     this.ribbonControl1.ApplicationButtonText = null;
     this.ribbonControl1.ButtonGroupsVertAlign = DevExpress.Utils.VertAlignment.Center;
     //
     //
     //
     this.ribbonControl1.ExpandCollapseItem.Id = 0;
     this.ribbonControl1.ExpandCollapseItem.Name = "";
     this.ribbonControl1.ImeMode = System.Windows.Forms.ImeMode.Off;
     this.ribbonControl1.Items.AddRange(new DevExpress.XtraBars.BarItem[] {
     this.ribbonControl1.ExpandCollapseItem,
     this.liste_bien,
     this.bien_categorie,
     this.Taraçabilite_bien});
     this.ribbonControl1.Location = new System.Drawing.Point(0, 0);
     this.ribbonControl1.MaxItemId = 4;
     this.ribbonControl1.Name = "ribbonControl1";
     this.ribbonControl1.Pages.AddRange(new DevExpress.XtraBars.Ribbon.RibbonPage[] {
     this.ribbonPage1});
     this.ribbonControl1.SelectedPage = this.ribbonPage1;
     this.ribbonControl1.Size = new System.Drawing.Size(991, 145);
     //
     // Rapports
     //
     this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
     this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
     this.ClientSize = new System.Drawing.Size(991, 602);
     this.Controls.Add(this.panelbien);
     this.Controls.Add(this.ribbonControl1);
     this.Name = "Rapports";
     this.Text = "Rapports";
     ((System.ComponentModel.ISupportInitialize)(this.panelbien)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.ribbonControl1)).EndInit();
     this.ResumeLayout(false);
 }
 private void InitializeComponent()
 {
     this.components = new System.ComponentModel.Container();
     System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(frmMain));
     this.ribbonControl1    = new DevExpress.XtraBars.Ribbon.RibbonControl();
     this.btnDangNhap       = new DevExpress.XtraBars.BarButtonItem();
     this.btnThoat          = new DevExpress.XtraBars.BarButtonItem();
     this.barButtonItem2    = new DevExpress.XtraBars.BarButtonItem();
     this.btnBangDiemBaoCao = new DevExpress.XtraBars.BarButtonItem();
     this.btnTaoTK          = new DevExpress.XtraBars.BarButtonItem();
     this.btnThoatMain      = new DevExpress.XtraBars.BarButtonItem();
     this.btnDangXuat       = new DevExpress.XtraBars.BarButtonItem();
     this.btnMonHoc         = new DevExpress.XtraBars.BarButtonItem();
     this.btnKhoa           = new DevExpress.XtraBars.BarButtonItem();
     this.btnLop            = new DevExpress.XtraBars.BarButtonItem();
     this.barButtonItem5    = new DevExpress.XtraBars.BarButtonItem();
     this.btnDe             = new DevExpress.XtraBars.BarButtonItem();
     this.btnThiThu         = new DevExpress.XtraBars.BarButtonItem();
     this.btnBangdiem       = new DevExpress.XtraBars.BarButtonItem();
     this.btnDSDK           = new DevExpress.XtraBars.BarButtonItem();
     this.barButtonItem3    = new DevExpress.XtraBars.BarButtonItem();
     this.barButtonItem4    = new DevExpress.XtraBars.BarButtonItem();
     this.btnGiangVienDK    = new DevExpress.XtraBars.BarButtonItem();
     this.ribbonPage3       = new DevExpress.XtraBars.Ribbon.RibbonPage();
     this.rbKhoa            = new DevExpress.XtraBars.Ribbon.RibbonPageGroup();
     this.rbLop             = new DevExpress.XtraBars.Ribbon.RibbonPageGroup();
     this.rbMon             = new DevExpress.XtraBars.Ribbon.RibbonPageGroup();
     this.rbGVDK            = new DevExpress.XtraBars.Ribbon.RibbonPageGroup();
     this.rbDe                  = new DevExpress.XtraBars.Ribbon.RibbonPageGroup();
     this.rbThiThu              = new DevExpress.XtraBars.Ribbon.RibbonPageGroup();
     this.rbpTaiKhoan           = new DevExpress.XtraBars.Ribbon.RibbonPage();
     this.rbTaoTK               = new DevExpress.XtraBars.Ribbon.RibbonPageGroup();
     this.ribbonPageGroup7      = new DevExpress.XtraBars.Ribbon.RibbonPageGroup();
     this.ribbonPageGroup2      = new DevExpress.XtraBars.Ribbon.RibbonPageGroup();
     this.rbBaoCao              = new DevExpress.XtraBars.Ribbon.RibbonPage();
     this.ribbonPageGroup5      = new DevExpress.XtraBars.Ribbon.RibbonPageGroup();
     this.ribbonPageGroup10     = new DevExpress.XtraBars.Ribbon.RibbonPageGroup();
     this.ribbonPage2           = new DevExpress.XtraBars.Ribbon.RibbonPage();
     this.statusStrip1          = new System.Windows.Forms.StatusStrip();
     this.MASO                  = new System.Windows.Forms.ToolStripStatusLabel();
     this.HOTEN                 = new System.Windows.Forms.ToolStripStatusLabel();
     this.NHOM                  = new System.Windows.Forms.ToolStripStatusLabel();
     this.xtraTabbedMdiManager1 = new DevExpress.XtraTabbedMdi.XtraTabbedMdiManager(this.components);
     this.ribbonPageGroup3      = new DevExpress.XtraBars.Ribbon.RibbonPageGroup();
     this.barButtonItem1        = new DevExpress.XtraBars.BarButtonItem();
     this.ribbonPageGroup1      = new DevExpress.XtraBars.Ribbon.RibbonPageGroup();
     ((System.ComponentModel.ISupportInitialize)(this.ribbonControl1)).BeginInit();
     this.statusStrip1.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.xtraTabbedMdiManager1)).BeginInit();
     this.SuspendLayout();
     //
     // ribbonControl1
     //
     this.ribbonControl1.ExpandCollapseItem.Id = 0;
     this.ribbonControl1.Items.AddRange(new DevExpress.XtraBars.BarItem[] {
         this.ribbonControl1.ExpandCollapseItem,
         this.ribbonControl1.SearchEditItem,
         this.btnDangNhap,
         this.btnThoat,
         this.barButtonItem2,
         this.btnBangDiemBaoCao,
         this.btnTaoTK,
         this.btnThoatMain,
         this.btnDangXuat,
         this.btnMonHoc,
         this.btnKhoa,
         this.btnLop,
         this.barButtonItem5,
         this.btnDe,
         this.btnThiThu,
         this.btnBangdiem,
         this.btnDSDK,
         this.barButtonItem3,
         this.barButtonItem4,
         this.btnGiangVienDK
     });
     this.ribbonControl1.Location  = new System.Drawing.Point(0, 0);
     this.ribbonControl1.MaxItemId = 21;
     this.ribbonControl1.Name      = "ribbonControl1";
     this.ribbonControl1.Pages.AddRange(new DevExpress.XtraBars.Ribbon.RibbonPage[] {
         this.ribbonPage3,
         this.rbpTaiKhoan,
         this.rbBaoCao
     });
     this.ribbonControl1.Size = new System.Drawing.Size(2052, 346);
     //
     // btnDangNhap
     //
     this.btnDangNhap.Caption                 = "Đăng nhập";
     this.btnDangNhap.Id                      = 2;
     this.btnDangNhap.ImageOptions.Image      = ((System.Drawing.Image)(resources.GetObject("btnDangNhap.ImageOptions.Image")));
     this.btnDangNhap.ImageOptions.LargeImage = ((System.Drawing.Image)(resources.GetObject("btnDangNhap.ImageOptions.LargeImage")));
     this.btnDangNhap.Name                    = "btnDangNhap";
     //
     // btnThoat
     //
     this.btnThoat.Caption                 = "Thoát";
     this.btnThoat.Id                      = 3;
     this.btnThoat.ImageOptions.Image      = ((System.Drawing.Image)(resources.GetObject("btnThoat.ImageOptions.Image")));
     this.btnThoat.ImageOptions.LargeImage = ((System.Drawing.Image)(resources.GetObject("btnThoat.ImageOptions.LargeImage")));
     this.btnThoat.Name                    = "btnThoat";
     this.btnThoat.ItemClick              += new DevExpress.XtraBars.ItemClickEventHandler(this.btnThoat_ItemClick);
     //
     // barButtonItem2
     //
     this.barButtonItem2.Caption                 = "Đăng xuất";
     this.barButtonItem2.Id                      = 5;
     this.barButtonItem2.ImageOptions.Image      = ((System.Drawing.Image)(resources.GetObject("barButtonItem2.ImageOptions.Image")));
     this.barButtonItem2.ImageOptions.LargeImage = ((System.Drawing.Image)(resources.GetObject("barButtonItem2.ImageOptions.LargeImage")));
     this.barButtonItem2.Name                    = "barButtonItem2";
     //
     // btnBangDiemBaoCao
     //
     this.btnBangDiemBaoCao.Caption                 = "Bảng điểm";
     this.btnBangDiemBaoCao.Id                      = 6;
     this.btnBangDiemBaoCao.ImageOptions.Image      = ((System.Drawing.Image)(resources.GetObject("btnBangDiemBaoCao.ImageOptions.Image")));
     this.btnBangDiemBaoCao.ImageOptions.LargeImage = ((System.Drawing.Image)(resources.GetObject("btnBangDiemBaoCao.ImageOptions.LargeImage")));
     this.btnBangDiemBaoCao.Name                    = "btnBangDiemBaoCao";
     this.btnBangDiemBaoCao.ItemClick              += new DevExpress.XtraBars.ItemClickEventHandler(this.btnBangDiemBaoCao_ItemClick);
     //
     // btnTaoTK
     //
     this.btnTaoTK.Caption                 = "Tạo tài khoản";
     this.btnTaoTK.Id                      = 7;
     this.btnTaoTK.ImageOptions.Image      = ((System.Drawing.Image)(resources.GetObject("btnTaoTK.ImageOptions.Image")));
     this.btnTaoTK.ImageOptions.LargeImage = ((System.Drawing.Image)(resources.GetObject("btnTaoTK.ImageOptions.LargeImage")));
     this.btnTaoTK.Name                    = "btnTaoTK";
     this.btnTaoTK.ItemClick              += new DevExpress.XtraBars.ItemClickEventHandler(this.btnTaoTK_ItemClick);
     //
     // btnThoatMain
     //
     this.btnThoatMain.Caption                 = "Thoát";
     this.btnThoatMain.Id                      = 8;
     this.btnThoatMain.ImageOptions.Image      = ((System.Drawing.Image)(resources.GetObject("btnThoatMain.ImageOptions.Image")));
     this.btnThoatMain.ImageOptions.LargeImage = ((System.Drawing.Image)(resources.GetObject("btnThoatMain.ImageOptions.LargeImage")));
     this.btnThoatMain.Name                    = "btnThoatMain";
     this.btnThoatMain.ItemClick              += new DevExpress.XtraBars.ItemClickEventHandler(this.btnThoatMain_ItemClick);
     //
     // btnDangXuat
     //
     this.btnDangXuat.Caption                 = "Đăng xuất";
     this.btnDangXuat.Id                      = 9;
     this.btnDangXuat.ImageOptions.Image      = ((System.Drawing.Image)(resources.GetObject("btnDangXuat.ImageOptions.Image")));
     this.btnDangXuat.ImageOptions.LargeImage = ((System.Drawing.Image)(resources.GetObject("btnDangXuat.ImageOptions.LargeImage")));
     this.btnDangXuat.Name                    = "btnDangXuat";
     this.btnDangXuat.ItemClick              += new DevExpress.XtraBars.ItemClickEventHandler(this.btnDangXuat_ItemClick);
     //
     // btnMonHoc
     //
     this.btnMonHoc.Caption = "Môn học";
     this.btnMonHoc.Id      = 10;
     this.btnMonHoc.ImageOptions.LargeImage = ((System.Drawing.Image)(resources.GetObject("btnMonHoc.ImageOptions.LargeImage")));
     this.btnMonHoc.Name       = "btnMonHoc";
     this.btnMonHoc.ItemClick += new DevExpress.XtraBars.ItemClickEventHandler(this.btnMonHoc_ItemClick);
     //
     // btnKhoa
     //
     this.btnKhoa.Caption = "Khoa";
     this.btnKhoa.Id      = 11;
     this.btnKhoa.ImageOptions.LargeImage = ((System.Drawing.Image)(resources.GetObject("btnKhoa.ImageOptions.LargeImage")));
     this.btnKhoa.Name       = "btnKhoa";
     this.btnKhoa.ItemClick += new DevExpress.XtraBars.ItemClickEventHandler(this.btnKhoa_ItemClick);
     //
     // btnLop
     //
     this.btnLop.Caption = "Lớp";
     this.btnLop.Id      = 12;
     this.btnLop.ImageOptions.LargeImage = ((System.Drawing.Image)(resources.GetObject("btnLop.ImageOptions.LargeImage")));
     this.btnLop.Name       = "btnLop";
     this.btnLop.ItemClick += new DevExpress.XtraBars.ItemClickEventHandler(this.btnLop_ItemClick);
     //
     // barButtonItem5
     //
     this.barButtonItem5.Caption = "Giảng viên đăng ký";
     this.barButtonItem5.Id      = 13;
     this.barButtonItem5.Name    = "barButtonItem5";
     //
     // btnDe
     //
     this.btnDe.Caption = "Đề thi";
     this.btnDe.Id      = 14;
     this.btnDe.ImageOptions.LargeImage = ((System.Drawing.Image)(resources.GetObject("btnDe.ImageOptions.LargeImage")));
     this.btnDe.Name       = "btnDe";
     this.btnDe.ItemClick += new DevExpress.XtraBars.ItemClickEventHandler(this.btnDe_ItemClick);
     //
     // btnThiThu
     //
     this.btnThiThu.Caption = "Thi thử";
     this.btnThiThu.Id      = 15;
     this.btnThiThu.ImageOptions.LargeImage = ((System.Drawing.Image)(resources.GetObject("btnThiThu.ImageOptions.LargeImage")));
     this.btnThiThu.Name       = "btnThiThu";
     this.btnThiThu.ItemClick += new DevExpress.XtraBars.ItemClickEventHandler(this.btnThiThu_ItemClick);
     //
     // btnBangdiem
     //
     this.btnBangdiem.Caption = "Bảng điểm";
     this.btnBangdiem.Id      = 16;
     this.btnBangdiem.Name    = "btnBangdiem";
     //
     // btnDSDK
     //
     this.btnDSDK.Caption                 = "Danh sách đăng kí thi ";
     this.btnDSDK.Id                      = 17;
     this.btnDSDK.ImageOptions.Image      = ((System.Drawing.Image)(resources.GetObject("btnDSDK.ImageOptions.Image")));
     this.btnDSDK.ImageOptions.LargeImage = ((System.Drawing.Image)(resources.GetObject("btnDSDK.ImageOptions.LargeImage")));
     this.btnDSDK.Name                    = "btnDSDK";
     this.btnDSDK.ItemClick              += new DevExpress.XtraBars.ItemClickEventHandler(this.btnDSDK_ItemClick);
     //
     // barButtonItem3
     //
     this.barButtonItem3.Caption                 = "btnThoatForm";
     this.barButtonItem3.Id                      = 18;
     this.barButtonItem3.ImageOptions.Image      = ((System.Drawing.Image)(resources.GetObject("barButtonItem3.ImageOptions.Image")));
     this.barButtonItem3.ImageOptions.LargeImage = ((System.Drawing.Image)(resources.GetObject("barButtonItem3.ImageOptions.LargeImage")));
     this.barButtonItem3.Name                    = "barButtonItem3";
     //
     // barButtonItem4
     //
     this.barButtonItem4.Caption                 = "btnThoatForm";
     this.barButtonItem4.Id                      = 19;
     this.barButtonItem4.ImageOptions.Image      = ((System.Drawing.Image)(resources.GetObject("barButtonItem4.ImageOptions.Image")));
     this.barButtonItem4.ImageOptions.LargeImage = ((System.Drawing.Image)(resources.GetObject("barButtonItem4.ImageOptions.LargeImage")));
     this.barButtonItem4.Name                    = "barButtonItem4";
     //
     // btnGiangVienDK
     //
     this.btnGiangVienDK.Caption = "Giảng viên đăng ký";
     this.btnGiangVienDK.Id      = 20;
     this.btnGiangVienDK.ImageOptions.LargeImage = ((System.Drawing.Image)(resources.GetObject("btnGiangVienDK.ImageOptions.LargeImage")));
     this.btnGiangVienDK.Name       = "btnGiangVienDK";
     this.btnGiangVienDK.ItemClick += new DevExpress.XtraBars.ItemClickEventHandler(this.btnGiangVienDK_ItemClick);
     //
     // ribbonPage3
     //
     this.ribbonPage3.Groups.AddRange(new DevExpress.XtraBars.Ribbon.RibbonPageGroup[] {
         this.rbKhoa,
         this.rbLop,
         this.rbMon,
         this.rbGVDK,
         this.rbDe,
         this.rbThiThu
     });
     this.ribbonPage3.Name = "ribbonPage3";
     this.ribbonPage3.Text = "Quản lý";
     //
     // rbKhoa
     //
     this.rbKhoa.ItemLinks.Add(this.btnKhoa);
     this.rbKhoa.Name = "rbKhoa";
     this.rbKhoa.Text = "ribbonPageGroup4";
     //
     // rbLop
     //
     this.rbLop.ItemLinks.Add(this.btnLop);
     this.rbLop.Name = "rbLop";
     this.rbLop.Text = "ribbonPageGroup4";
     //
     // rbMon
     //
     this.rbMon.ItemLinks.Add(this.btnMonHoc);
     this.rbMon.Name = "rbMon";
     this.rbMon.Text = "ribbonPageGroup4";
     //
     // rbGVDK
     //
     this.rbGVDK.ItemLinks.Add(this.btnGiangVienDK, true);
     this.rbGVDK.Name = "rbGVDK";
     this.rbGVDK.Text = "ribbonPageGroup4";
     //
     // rbDe
     //
     this.rbDe.ItemLinks.Add(this.btnDe);
     this.rbDe.Name = "rbDe";
     this.rbDe.Text = "ribbonPageGroup11";
     //
     // rbThiThu
     //
     this.rbThiThu.ItemLinks.Add(this.btnThiThu);
     this.rbThiThu.Name = "rbThiThu";
     this.rbThiThu.Text = "ribbonPageGroup12";
     //
     // rbpTaiKhoan
     //
     this.rbpTaiKhoan.Groups.AddRange(new DevExpress.XtraBars.Ribbon.RibbonPageGroup[] {
         this.rbTaoTK,
         this.ribbonPageGroup7,
         this.ribbonPageGroup2
     });
     this.rbpTaiKhoan.Name = "rbpTaiKhoan";
     this.rbpTaiKhoan.Text = "Tài khoản";
     //
     // rbTaoTK
     //
     this.rbTaoTK.ItemLinks.Add(this.btnTaoTK);
     this.rbTaoTK.Name = "rbTaoTK";
     this.rbTaoTK.Text = "ribbonPageGroup6";
     //
     // ribbonPageGroup7
     //
     this.ribbonPageGroup7.ItemLinks.Add(this.btnDangXuat);
     this.ribbonPageGroup7.Name = "ribbonPageGroup7";
     this.ribbonPageGroup7.Text = "ribbonPageGroup7";
     //
     // ribbonPageGroup2
     //
     this.ribbonPageGroup2.ItemLinks.Add(this.btnThoatMain);
     this.ribbonPageGroup2.Name = "ribbonPageGroup2";
     this.ribbonPageGroup2.Text = "ribbonPageGroup2";
     //
     // rbBaoCao
     //
     this.rbBaoCao.Groups.AddRange(new DevExpress.XtraBars.Ribbon.RibbonPageGroup[] {
         this.ribbonPageGroup5,
         this.ribbonPageGroup10
     });
     this.rbBaoCao.Name = "rbBaoCao";
     this.rbBaoCao.Text = "Báo cáo";
     //
     // ribbonPageGroup5
     //
     this.ribbonPageGroup5.ItemLinks.Add(this.btnBangDiemBaoCao);
     this.ribbonPageGroup5.Name = "ribbonPageGroup5";
     this.ribbonPageGroup5.Text = "ribbonPageGroup5";
     //
     // ribbonPageGroup10
     //
     this.ribbonPageGroup10.ItemLinks.Add(this.btnDSDK);
     this.ribbonPageGroup10.Name = "ribbonPageGroup10";
     this.ribbonPageGroup10.Text = "ribbonPageGroup10";
     //
     // ribbonPage2
     //
     this.ribbonPage2.Name = "ribbonPage2";
     this.ribbonPage2.Text = "ribbonPage2";
     //
     // statusStrip1
     //
     this.statusStrip1.ImageScalingSize = new System.Drawing.Size(40, 40);
     this.statusStrip1.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
         this.MASO,
         this.HOTEN,
         this.NHOM
     });
     this.statusStrip1.Location = new System.Drawing.Point(0, 1278);
     this.statusStrip1.Name     = "statusStrip1";
     this.statusStrip1.Size     = new System.Drawing.Size(2052, 46);
     this.statusStrip1.TabIndex = 1;
     this.statusStrip1.Text     = "statusStrip1";
     //
     // MASO
     //
     this.MASO.Name = "MASO";
     this.MASO.Size = new System.Drawing.Size(103, 41);
     this.MASO.Text = "MASO";
     //
     // HOTEN
     //
     this.HOTEN.Name = "HOTEN";
     this.HOTEN.Size = new System.Drawing.Size(114, 41);
     this.HOTEN.Text = "HOTEN";
     //
     // NHOM
     //
     this.NHOM.Name = "NHOM";
     this.NHOM.Size = new System.Drawing.Size(111, 41);
     this.NHOM.Text = "NHOM";
     //
     // xtraTabbedMdiManager1
     //
     this.xtraTabbedMdiManager1.MdiParent = this;
     //
     // ribbonPageGroup3
     //
     this.ribbonPageGroup3.Name = "ribbonPageGroup3";
     //
     // barButtonItem1
     //
     this.barButtonItem1.Caption                 = "Đăng xuất";
     this.barButtonItem1.Id                      = 4;
     this.barButtonItem1.ImageOptions.Image      = ((System.Drawing.Image)(resources.GetObject("barButtonItem1.ImageOptions.Image")));
     this.barButtonItem1.ImageOptions.LargeImage = ((System.Drawing.Image)(resources.GetObject("barButtonItem1.ImageOptions.LargeImage")));
     this.barButtonItem1.Name                    = "barButtonItem1";
     //
     // ribbonPageGroup1
     //
     this.ribbonPageGroup1.Name = "ribbonPageGroup1";
     this.ribbonPageGroup1.Text = "ribbonPageGroup1";
     //
     // frmMain
     //
     this.ClientSize = new System.Drawing.Size(2052, 1324);
     this.Controls.Add(this.statusStrip1);
     this.Controls.Add(this.ribbonControl1);
     this.IsMdiContainer = true;
     this.Name           = "frmMain";
     this.Ribbon         = this.ribbonControl1;
     this.WindowState    = System.Windows.Forms.FormWindowState.Maximized;
     this.FormClosing   += new System.Windows.Forms.FormClosingEventHandler(this.frmMain_FormClosing);
     this.Load          += new System.EventHandler(this.frmMain_Load);
     ((System.ComponentModel.ISupportInitialize)(this.ribbonControl1)).EndInit();
     this.statusStrip1.ResumeLayout(false);
     this.statusStrip1.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(this.xtraTabbedMdiManager1)).EndInit();
     this.ResumeLayout(false);
     this.PerformLayout();
 }
Example #46
0
 /// <summary>
 /// Required method for Designer support - do not modify
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     this.ribbonStatusBar = new DevExpress.XtraBars.Ribbon.RibbonStatusBar();
     this.OKButton = new DevExpress.XtraBars.BarButtonItem();
     this.ribbon = new DevExpress.XtraBars.Ribbon.RibbonControl();
     this.barButtonGroup1 = new DevExpress.XtraBars.BarButtonGroup();
     this.xtraTabControl = new DevExpress.XtraTab.XtraTabControl();
     this.systemPage = new DevExpress.XtraTab.XtraTabPage();
     this.PreviewDatabaseName = new DevExpress.XtraEditors.TextEdit();
     this.OriginalDatabaseName = new DevExpress.XtraEditors.TextEdit();
     this.labelControl33 = new DevExpress.XtraEditors.LabelControl();
     this.labelControl32 = new DevExpress.XtraEditors.LabelControl();
     this.processPage = new DevExpress.XtraTab.XtraTabPage();
     this.labelControl7 = new DevExpress.XtraEditors.LabelControl();
     this.EmptyCell = new Aramis.AramisSearchLookUpEdit();
     this.labelControl6 = new DevExpress.XtraEditors.LabelControl();
     this.RedemptionCell = new Aramis.AramisSearchLookUpEdit();
     this.PermitInstallPalletManually = new DevExpress.XtraEditors.CheckEdit();
     this.pdtSettings = new DevExpress.XtraTab.XtraTabPage();
     this.label2 = new System.Windows.Forms.Label();
     this.label1 = new System.Windows.Forms.Label();
     this.UpdateFolderName = new DevExpress.XtraEditors.TextEdit();
     this.labelControl2 = new DevExpress.XtraEditors.LabelControl();
     this.ServerIP = new DevExpress.XtraEditors.TextEdit();
     this.labelControl1 = new DevExpress.XtraEditors.LabelControl();
     this.tareTabPage = new DevExpress.XtraTab.XtraTabPage();
     this.labelControl5 = new DevExpress.XtraEditors.LabelControl();
     this.NonStandartLiner = new Aramis.AramisSearchLookUpEdit();
     this.labelControl4 = new DevExpress.XtraEditors.LabelControl();
     this.StandartLiner = new Aramis.AramisSearchLookUpEdit();
     this.labelControl3 = new DevExpress.XtraEditors.LabelControl();
     this.NonStandartTray = new Aramis.AramisSearchLookUpEdit();
     this.labelControl13 = new DevExpress.XtraEditors.LabelControl();
     this.StandartTray = new Aramis.AramisSearchLookUpEdit();
     this.Don_tPrintStickers = new DevExpress.XtraEditors.CheckEdit();
     ((System.ComponentModel.ISupportInitialize)(this.ribbon)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.xtraTabControl)).BeginInit();
     this.xtraTabControl.SuspendLayout();
     this.systemPage.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.PreviewDatabaseName.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.OriginalDatabaseName.Properties)).BeginInit();
     this.processPage.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.EmptyCell.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.RedemptionCell.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.PermitInstallPalletManually.Properties)).BeginInit();
     this.pdtSettings.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.UpdateFolderName.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.ServerIP.Properties)).BeginInit();
     this.tareTabPage.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.NonStandartLiner.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.StandartLiner.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.NonStandartTray.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.StandartTray.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.Don_tPrintStickers.Properties)).BeginInit();
     this.SuspendLayout();
     //
     // ribbonStatusBar
     //
     this.ribbonStatusBar.ItemLinks.Add(this.OKButton);
     this.ribbonStatusBar.Location = new System.Drawing.Point(0, 402);
     this.ribbonStatusBar.Name = "ribbonStatusBar";
     this.ribbonStatusBar.Ribbon = this.ribbon;
     this.ribbonStatusBar.Size = new System.Drawing.Size(486, 31);
     //
     // OKButton
     //
     this.OKButton.Alignment = DevExpress.XtraBars.BarItemLinkAlignment.Right;
     this.OKButton.Caption = "OK";
     this.OKButton.Id = 6;
     this.OKButton.ImageIndex = 0;
     this.OKButton.Name = "OKButton";
     this.OKButton.ItemClick += new DevExpress.XtraBars.ItemClickEventHandler(this.OKButton_ItemClick);
     //
     // ribbon
     //
     this.ribbon.ApplicationButtonText = null;
     this.ribbon.ExpandCollapseItem.Id = 0;
     this.ribbon.ExpandCollapseItem.Name = "";
     this.ribbon.Items.AddRange(new DevExpress.XtraBars.BarItem[] {
     this.ribbon.ExpandCollapseItem,
     this.barButtonGroup1,
     this.OKButton});
     this.ribbon.Location = new System.Drawing.Point(0, 0);
     this.ribbon.MaxItemId = 9;
     this.ribbon.Name = "ribbon";
     this.ribbon.Size = new System.Drawing.Size(486, 49);
     this.ribbon.StatusBar = this.ribbonStatusBar;
     this.ribbon.ToolbarLocation = DevExpress.XtraBars.Ribbon.RibbonQuickAccessToolbarLocation.Above;
     //
     // barButtonGroup1
     //
     this.barButtonGroup1.Alignment = DevExpress.XtraBars.BarItemLinkAlignment.Right;
     this.barButtonGroup1.Caption = "barButtonGroup1";
     this.barButtonGroup1.Id = 4;
     this.barButtonGroup1.ItemLinks.Add(this.OKButton);
     this.barButtonGroup1.MenuAppearance.AppearanceMenu.Normal.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(204)));
     this.barButtonGroup1.MenuAppearance.AppearanceMenu.Normal.Options.UseFont = true;
     this.barButtonGroup1.MenuAppearance.MenuBar.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(204)));
     this.barButtonGroup1.MenuAppearance.MenuBar.Options.UseFont = true;
     this.barButtonGroup1.MenuAppearance.MenuCaption.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(204)));
     this.barButtonGroup1.MenuAppearance.MenuCaption.Options.UseFont = true;
     this.barButtonGroup1.MenuAppearance.SideStrip.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(204)));
     this.barButtonGroup1.MenuAppearance.SideStrip.Options.UseFont = true;
     this.barButtonGroup1.Name = "barButtonGroup1";
     //
     // xtraTabControl
     //
     this.xtraTabControl.Dock = System.Windows.Forms.DockStyle.Fill;
     this.xtraTabControl.Location = new System.Drawing.Point(0, 49);
     this.xtraTabControl.Name = "xtraTabControl";
     this.xtraTabControl.SelectedTabPage = this.systemPage;
     this.xtraTabControl.Size = new System.Drawing.Size(486, 353);
     this.xtraTabControl.TabIndex = 2;
     this.xtraTabControl.TabPages.AddRange(new DevExpress.XtraTab.XtraTabPage[] {
     this.processPage,
     this.systemPage,
     this.pdtSettings,
     this.tareTabPage});
     //
     // systemPage
     //
     this.systemPage.Controls.Add(this.Don_tPrintStickers);
     this.systemPage.Controls.Add(this.PreviewDatabaseName);
     this.systemPage.Controls.Add(this.OriginalDatabaseName);
     this.systemPage.Controls.Add(this.labelControl33);
     this.systemPage.Controls.Add(this.labelControl32);
     this.systemPage.Name = "systemPage";
     this.systemPage.Size = new System.Drawing.Size(480, 325);
     this.systemPage.Text = "�������";
     //
     // PreviewDatabaseName
     //
     this.PreviewDatabaseName.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
     | System.Windows.Forms.AnchorStyles.Right)));
     this.PreviewDatabaseName.Location = new System.Drawing.Point(111, 38);
     this.PreviewDatabaseName.MenuManager = this.ribbon;
     this.PreviewDatabaseName.Name = "PreviewDatabaseName";
     this.PreviewDatabaseName.Size = new System.Drawing.Size(362, 20);
     this.PreviewDatabaseName.TabIndex = 8;
     //
     // OriginalDatabaseName
     //
     this.OriginalDatabaseName.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
     | System.Windows.Forms.AnchorStyles.Right)));
     this.OriginalDatabaseName.Location = new System.Drawing.Point(111, 12);
     this.OriginalDatabaseName.MenuManager = this.ribbon;
     this.OriginalDatabaseName.Name = "OriginalDatabaseName";
     this.OriginalDatabaseName.Size = new System.Drawing.Size(362, 20);
     this.OriginalDatabaseName.TabIndex = 7;
     //
     // labelControl33
     //
     this.labelControl33.Location = new System.Drawing.Point(11, 41);
     this.labelControl33.Name = "labelControl33";
     this.labelControl33.Size = new System.Drawing.Size(28, 13);
     this.labelControl33.TabIndex = 6;
     this.labelControl33.Text = "����";
     //
     // labelControl32
     //
     this.labelControl32.Location = new System.Drawing.Point(9, 15);
     this.labelControl32.Name = "labelControl32";
     this.labelControl32.Size = new System.Drawing.Size(87, 13);
     this.labelControl32.TabIndex = 4;
     this.labelControl32.Text = "������� ������";
     //
     // processPage
     //
     this.processPage.Controls.Add(this.labelControl7);
     this.processPage.Controls.Add(this.EmptyCell);
     this.processPage.Controls.Add(this.labelControl6);
     this.processPage.Controls.Add(this.RedemptionCell);
     this.processPage.Controls.Add(this.PermitInstallPalletManually);
     this.processPage.Name = "processPage";
     this.processPage.Size = new System.Drawing.Size(480, 325);
     this.processPage.Text = "�������";
     //
     // labelControl7
     //
     this.labelControl7.Location = new System.Drawing.Point(9, 87);
     this.labelControl7.Name = "labelControl7";
     this.labelControl7.Size = new System.Drawing.Size(74, 13);
     this.labelControl7.TabIndex = 20;
     this.labelControl7.Text = "������ ������";
     //
     // EmptyCell
     //
     this.EmptyCell.BaseFilter = null;
     this.EmptyCell.Location = new System.Drawing.Point(93, 84);
     this.EmptyCell.MenuManager = this.ribbon;
     this.EmptyCell.Name = "EmptyCell";
     this.EmptyCell.Properties.BaseFilter = null;
     this.EmptyCell.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton()});
     this.EmptyCell.Properties.CloseUpKey = new DevExpress.Utils.KeyShortcut(System.Windows.Forms.Keys.None);
     this.EmptyCell.Properties.FirstPopUp = null;
     this.EmptyCell.Properties.NullText = "";
     this.EmptyCell.Size = new System.Drawing.Size(350, 20);
     this.EmptyCell.TabIndex = 19;
     //
     // labelControl6
     //
     this.labelControl6.Location = new System.Drawing.Point(9, 52);
     this.labelControl6.Name = "labelControl6";
     this.labelControl6.Size = new System.Drawing.Size(65, 13);
     this.labelControl6.TabIndex = 18;
     this.labelControl6.Text = "����� �����";
     //
     // RedemptionCell
     //
     this.RedemptionCell.BaseFilter = null;
     this.RedemptionCell.Location = new System.Drawing.Point(93, 49);
     this.RedemptionCell.MenuManager = this.ribbon;
     this.RedemptionCell.Name = "RedemptionCell";
     this.RedemptionCell.Properties.BaseFilter = null;
     this.RedemptionCell.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton()});
     this.RedemptionCell.Properties.CloseUpKey = new DevExpress.Utils.KeyShortcut(System.Windows.Forms.Keys.None);
     this.RedemptionCell.Properties.FirstPopUp = null;
     this.RedemptionCell.Properties.NullText = "";
     this.RedemptionCell.Size = new System.Drawing.Size(350, 20);
     this.RedemptionCell.TabIndex = 17;
     //
     // PermitInstallPalletManually
     //
     this.PermitInstallPalletManually.Location = new System.Drawing.Point(8, 12);
     this.PermitInstallPalletManually.MenuManager = this.ribbon;
     this.PermitInstallPalletManually.Name = "PermitInstallPalletManually";
     this.PermitInstallPalletManually.Properties.Caption = "��������� ������� ������������� ������� ���������";
     this.PermitInstallPalletManually.Size = new System.Drawing.Size(449, 19);
     this.PermitInstallPalletManually.TabIndex = 0;
     //
     // pdtSettings
     //
     this.pdtSettings.Controls.Add(this.label2);
     this.pdtSettings.Controls.Add(this.label1);
     this.pdtSettings.Controls.Add(this.UpdateFolderName);
     this.pdtSettings.Controls.Add(this.labelControl2);
     this.pdtSettings.Controls.Add(this.ServerIP);
     this.pdtSettings.Controls.Add(this.labelControl1);
     this.pdtSettings.Name = "pdtSettings";
     this.pdtSettings.Size = new System.Drawing.Size(480, 325);
     this.pdtSettings.Text = "������������ ���";
     //
     // label2
     //
     this.label2.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)
     | System.Windows.Forms.AnchorStyles.Right)));
     this.label2.ForeColor = System.Drawing.Color.Maroon;
     this.label2.Location = new System.Drawing.Point(6, 291);
     this.label2.Name = "label2";
     this.label2.Size = new System.Drawing.Size(467, 30);
     this.label2.TabIndex = 13;
     this.label2.Text = "���� �����, �� ��������, �� � �������� \'������������ ���\' ��������� ������� IP �" +
     "������ ��� ���� ��������� ���������� �� �������";
     this.label2.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
     //
     // label1
     //
     this.label1.AutoSize = true;
     this.label1.Font = new System.Drawing.Font("Tahoma", 7F);
     this.label1.ForeColor = System.Drawing.Color.Gray;
     this.label1.Location = new System.Drawing.Point(108, 61);
     this.label1.Name = "label1";
     this.label1.Size = new System.Drawing.Size(209, 12);
     this.label1.TabIndex = 12;
     this.label1.Text = "C:\\Program Files\\Logiston SM Server\\Update";
     //
     // UpdateFolderName
     //
     this.UpdateFolderName.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
     | System.Windows.Forms.AnchorStyles.Right)));
     this.UpdateFolderName.Location = new System.Drawing.Point(111, 38);
     this.UpdateFolderName.MenuManager = this.ribbon;
     this.UpdateFolderName.Name = "UpdateFolderName";
     this.UpdateFolderName.Size = new System.Drawing.Size(362, 20);
     this.UpdateFolderName.TabIndex = 11;
     //
     // labelControl2
     //
     this.labelControl2.Location = new System.Drawing.Point(9, 41);
     this.labelControl2.Name = "labelControl2";
     this.labelControl2.Size = new System.Drawing.Size(67, 13);
     this.labelControl2.TabIndex = 10;
     this.labelControl2.Text = "����� �����";
     //
     // ServerIP
     //
     this.ServerIP.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
     | System.Windows.Forms.AnchorStyles.Right)));
     this.ServerIP.Location = new System.Drawing.Point(111, 12);
     this.ServerIP.MenuManager = this.ribbon;
     this.ServerIP.Name = "ServerIP";
     this.ServerIP.Properties.Mask.EditMask = "(25[0-5]|2[0-4][0-9]|[01]?[0-9][0-9]?)\\.(25[0-5]|2[0-4][0-9]|[01]?[0-9][0-9]?)\\.(" +
     "25[0-5]|2[0-4][0-9]|[01]?[0-9][0-9]?)\\.(25[0-5]|2[0-4][0-9]|[01]?[0-9][0-9]?)";
     this.ServerIP.Properties.Mask.MaskType = DevExpress.XtraEditors.Mask.MaskType.RegEx;
     this.ServerIP.Size = new System.Drawing.Size(140, 20);
     this.ServerIP.TabIndex = 9;
     //
     // labelControl1
     //
     this.labelControl1.Location = new System.Drawing.Point(9, 15);
     this.labelControl1.Name = "labelControl1";
     this.labelControl1.Size = new System.Drawing.Size(54, 13);
     this.labelControl1.TabIndex = 8;
     this.labelControl1.Text = "IP �������";
     //
     // tareTabPage
     //
     this.tareTabPage.Controls.Add(this.labelControl5);
     this.tareTabPage.Controls.Add(this.NonStandartLiner);
     this.tareTabPage.Controls.Add(this.labelControl4);
     this.tareTabPage.Controls.Add(this.StandartLiner);
     this.tareTabPage.Controls.Add(this.labelControl3);
     this.tareTabPage.Controls.Add(this.NonStandartTray);
     this.tareTabPage.Controls.Add(this.labelControl13);
     this.tareTabPage.Controls.Add(this.StandartTray);
     this.tareTabPage.Name = "tareTabPage";
     this.tareTabPage.Size = new System.Drawing.Size(480, 325);
     this.tareTabPage.Text = "��������� ����";
     //
     // labelControl5
     //
     this.labelControl5.Location = new System.Drawing.Point(22, 101);
     this.labelControl5.Name = "labelControl5";
     this.labelControl5.Size = new System.Drawing.Size(131, 13);
     this.labelControl5.TabIndex = 20;
     this.labelControl5.Text = "������������ ���������";
     //
     // NonStandartLiner
     //
     this.NonStandartLiner.BaseFilter = null;
     this.NonStandartLiner.Location = new System.Drawing.Point(163, 98);
     this.NonStandartLiner.MenuManager = this.ribbon;
     this.NonStandartLiner.Name = "NonStandartLiner";
     this.NonStandartLiner.Properties.BaseFilter = null;
     this.NonStandartLiner.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton()});
     this.NonStandartLiner.Properties.CloseUpKey = new DevExpress.Utils.KeyShortcut(System.Windows.Forms.Keys.None);
     this.NonStandartLiner.Properties.FirstPopUp = null;
     this.NonStandartLiner.Properties.NullText = "";
     this.NonStandartLiner.Size = new System.Drawing.Size(293, 20);
     this.NonStandartLiner.TabIndex = 19;
     //
     // labelControl4
     //
     this.labelControl4.Location = new System.Drawing.Point(22, 75);
     this.labelControl4.Name = "labelControl4";
     this.labelControl4.Size = new System.Drawing.Size(120, 13);
     this.labelControl4.TabIndex = 18;
     this.labelControl4.Text = "���������� ���������";
     //
     // StandartLiner
     //
     this.StandartLiner.BaseFilter = null;
     this.StandartLiner.Location = new System.Drawing.Point(163, 72);
     this.StandartLiner.MenuManager = this.ribbon;
     this.StandartLiner.Name = "StandartLiner";
     this.StandartLiner.Properties.BaseFilter = null;
     this.StandartLiner.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton()});
     this.StandartLiner.Properties.CloseUpKey = new DevExpress.Utils.KeyShortcut(System.Windows.Forms.Keys.None);
     this.StandartLiner.Properties.FirstPopUp = null;
     this.StandartLiner.Properties.NullText = "";
     this.StandartLiner.Size = new System.Drawing.Size(293, 20);
     this.StandartLiner.TabIndex = 17;
     //
     // labelControl3
     //
     this.labelControl3.Location = new System.Drawing.Point(22, 49);
     this.labelControl3.Name = "labelControl3";
     this.labelControl3.Size = new System.Drawing.Size(117, 13);
     this.labelControl3.TabIndex = 16;
     this.labelControl3.Text = "������������� �����";
     //
     // NonStandartTray
     //
     this.NonStandartTray.BaseFilter = null;
     this.NonStandartTray.Location = new System.Drawing.Point(163, 46);
     this.NonStandartTray.MenuManager = this.ribbon;
     this.NonStandartTray.Name = "NonStandartTray";
     this.NonStandartTray.Properties.BaseFilter = null;
     this.NonStandartTray.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton()});
     this.NonStandartTray.Properties.CloseUpKey = new DevExpress.Utils.KeyShortcut(System.Windows.Forms.Keys.None);
     this.NonStandartTray.Properties.FirstPopUp = null;
     this.NonStandartTray.Properties.NullText = "";
     this.NonStandartTray.Size = new System.Drawing.Size(293, 20);
     this.NonStandartTray.TabIndex = 15;
     //
     // labelControl13
     //
     this.labelControl13.Location = new System.Drawing.Point(22, 23);
     this.labelControl13.Name = "labelControl13";
     this.labelControl13.Size = new System.Drawing.Size(106, 13);
     this.labelControl13.TabIndex = 14;
     this.labelControl13.Text = "����������� �����";
     //
     // StandartTray
     //
     this.StandartTray.BaseFilter = null;
     this.StandartTray.Location = new System.Drawing.Point(163, 20);
     this.StandartTray.MenuManager = this.ribbon;
     this.StandartTray.Name = "StandartTray";
     this.StandartTray.Properties.BaseFilter = null;
     this.StandartTray.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton()});
     this.StandartTray.Properties.CloseUpKey = new DevExpress.Utils.KeyShortcut(System.Windows.Forms.Keys.None);
     this.StandartTray.Properties.FirstPopUp = null;
     this.StandartTray.Properties.NullText = "";
     this.StandartTray.Size = new System.Drawing.Size(293, 20);
     this.StandartTray.TabIndex = 13;
     //
     // Don_tPrintStickers
     //
     this.Don_tPrintStickers.Location = new System.Drawing.Point(109, 77);
     this.Don_tPrintStickers.MenuManager = this.ribbon;
     this.Don_tPrintStickers.Name = "Don_tPrintStickers";
     this.Don_tPrintStickers.Properties.AutoWidth = true;
     this.Don_tPrintStickers.Properties.Caption = "�� �������� ��������";
     this.Don_tPrintStickers.Size = new System.Drawing.Size(137, 19);
     this.Don_tPrintStickers.TabIndex = 9;
     //
     // ConstsForm
     //
     this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
     this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
     this.ClientSize = new System.Drawing.Size(486, 433);
     this.Controls.Add(this.xtraTabControl);
     this.Controls.Add(this.ribbonStatusBar);
     this.Controls.Add(this.ribbon);
     this.KeyPreview = true;
     this.MaximizeBox = false;
     this.MinimizeBox = false;
     this.MinimumSize = new System.Drawing.Size(299, 434);
     this.Name = "ConstsForm";
     this.Ribbon = this.ribbon;
     this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen;
     this.StatusBar = this.ribbonStatusBar;
     this.Text = "��������� �������";
     this.FormClosed += new System.Windows.Forms.FormClosedEventHandler(this.ConstsForm_FormClosed);
     this.Load += new System.EventHandler(this.Itemform_Load);
     this.KeyDown += new System.Windows.Forms.KeyEventHandler(this.Itemform_KeyDown);
     ((System.ComponentModel.ISupportInitialize)(this.ribbon)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.xtraTabControl)).EndInit();
     this.xtraTabControl.ResumeLayout(false);
     this.systemPage.ResumeLayout(false);
     this.systemPage.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(this.PreviewDatabaseName.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.OriginalDatabaseName.Properties)).EndInit();
     this.processPage.ResumeLayout(false);
     this.processPage.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(this.EmptyCell.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.RedemptionCell.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.PermitInstallPalletManually.Properties)).EndInit();
     this.pdtSettings.ResumeLayout(false);
     this.pdtSettings.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(this.UpdateFolderName.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.ServerIP.Properties)).EndInit();
     this.tareTabPage.ResumeLayout(false);
     this.tareTabPage.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(this.NonStandartLiner.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.StandartLiner.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.NonStandartTray.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.StandartTray.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.Don_tPrintStickers.Properties)).EndInit();
     this.ResumeLayout(false);
 }
Example #47
0
 public RibbonBarManager(DevExpress.XtraBars.Ribbon.RibbonControl ribbon)
     : base(ribbon)
 {
 }
 /// <summary>
 /// Required method for Designer support - do not modify
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     this.components = new System.ComponentModel.Container();
     DevExpress.XtraGrid.GridLevelNode gridLevelNode1 = new DevExpress.XtraGrid.GridLevelNode();
     System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(Main));
     this.gridView1 = new DevExpress.XtraGrid.Views.Grid.GridView();
     this.DataGridView = new DevExpress.XtraGrid.GridControl();
     this.gridView = new DevExpress.XtraGrid.Views.Grid.GridView();
     this.ribbonControl = new DevExpress.XtraBars.Ribbon.RibbonControl();
     this.appMenu = new DevExpress.XtraBars.Ribbon.ApplicationMenu(this.components);
     this.iExit = new DevExpress.XtraBars.BarButtonItem();
     this.ribbonImageCollection = new DevExpress.Utils.ImageCollection(this.components);
     this.siStatus = new DevExpress.XtraBars.BarStaticItem();
     this.iBoldFontStyle = new DevExpress.XtraBars.BarButtonItem();
     this.iItalicFontStyle = new DevExpress.XtraBars.BarButtonItem();
     this.iUnderlinedFontStyle = new DevExpress.XtraBars.BarButtonItem();
     this.iLeftTextAlign = new DevExpress.XtraBars.BarButtonItem();
     this.iCenterTextAlign = new DevExpress.XtraBars.BarButtonItem();
     this.iRightTextAlign = new DevExpress.XtraBars.BarButtonItem();
     this.rgbiSkins = new DevExpress.XtraBars.RibbonGalleryBarItem();
     this.iQuanLyKhachHang = new DevExpress.XtraBars.BarButtonItem();
     this.iQuanLyHoSoBanXe = new DevExpress.XtraBars.BarButtonItem();
     this.iQuanLyPhuKien = new DevExpress.XtraBars.BarButtonItem();
     this.iBaoCao = new DevExpress.XtraBars.BarButtonItem();
     this.barStaticItem1 = new DevExpress.XtraBars.BarStaticItem();
     this.iQuanLyChucVu = new DevExpress.XtraBars.BarButtonItem();
     this.iQuanLyChiNhanh = new DevExpress.XtraBars.BarButtonItem();
     this.iQuanLyNhanVien = new DevExpress.XtraBars.BarButtonItem();
     this.iQuanLyLoaiPhuKien = new DevExpress.XtraBars.BarButtonItem();
     this.iQuanLyXe = new DevExpress.XtraBars.BarButtonItem();
     this.iQuanLyKho = new DevExpress.XtraBars.BarButtonItem();
     this.iQuanLyLoaiXe = new DevExpress.XtraBars.BarButtonItem();
     this.iQuanLyNCC = new DevExpress.XtraBars.BarButtonItem();
     this.iQuanLyPhieuNhapPhuKien = new DevExpress.XtraBars.BarButtonItem();
     this.iQuanLyPhieuNhapXe = new DevExpress.XtraBars.BarButtonItem();
     this.iQuanLyPhieuSuaChua = new DevExpress.XtraBars.BarButtonItem();
     this.iQuanLyPhieuXuatKho = new DevExpress.XtraBars.BarButtonItem();
     this.iBaoCaov_Kho_HangTon = new DevExpress.XtraBars.BarButtonItem();
     this.iBaoCaov_CuaHang_HangTon = new DevExpress.XtraBars.BarButtonItem();
     this.iBaoCaov_HoSoBanXe = new DevExpress.XtraBars.BarButtonItem();
     this.iBaoCaov_LichSuKhachHang = new DevExpress.XtraBars.BarButtonItem();
     this.ribbonImageCollectionLarge = new DevExpress.Utils.ImageCollection(this.components);
     this.homeRibbonPage = new DevExpress.XtraBars.Ribbon.RibbonPage();
     this.fileRibbonPageGroup = new DevExpress.XtraBars.Ribbon.RibbonPageGroup();
     this.skinsRibbonPageGroup = new DevExpress.XtraBars.Ribbon.RibbonPageGroup();
     this.QuanLyRibbonPage = new DevExpress.XtraBars.Ribbon.RibbonPage();
     this.RPGNguoiDung = new DevExpress.XtraBars.Ribbon.RibbonPageGroup();
     this.BaoCaoRibbonPage = new DevExpress.XtraBars.Ribbon.RibbonPage();
     this.ribbonPageGroup1 = new DevExpress.XtraBars.Ribbon.RibbonPageGroup();
     this.rpName = new DevExpress.XtraEditors.Repository.RepositoryItemTextEdit();
     this.rpPass = new DevExpress.XtraEditors.Repository.RepositoryItemTextEdit();
     this.ribbonStatusBar = new DevExpress.XtraBars.Ribbon.RibbonStatusBar();
     this.splitContainerControl = new DevExpress.XtraEditors.SplitContainerControl();
     this.dxErrorProvider = new DevExpress.XtraEditors.DXErrorProvider.DXErrorProvider(this.components);
     ((System.ComponentModel.ISupportInitialize)(this.gridView1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.DataGridView)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridView)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.ribbonControl)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.appMenu)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.ribbonImageCollection)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.ribbonImageCollectionLarge)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.rpName)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.rpPass)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.splitContainerControl)).BeginInit();
     this.splitContainerControl.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.dxErrorProvider)).BeginInit();
     this.SuspendLayout();
     //
     // gridView1
     //
     this.gridView1.GridControl = this.DataGridView;
     this.gridView1.Name = "gridView1";
     //
     // DataGridView
     //
     this.DataGridView.Dock = System.Windows.Forms.DockStyle.Fill;
     gridLevelNode1.LevelTemplate = this.gridView1;
     gridLevelNode1.RelationName = "Detail";
     this.DataGridView.LevelTree.Nodes.AddRange(new DevExpress.XtraGrid.GridLevelNode[] {
     gridLevelNode1});
     this.DataGridView.Location = new System.Drawing.Point(0, 0);
     this.DataGridView.MainView = this.gridView;
     this.DataGridView.Name = "DataGridView";
     this.DataGridView.Size = new System.Drawing.Size(754, 541);
     this.DataGridView.TabIndex = 9;
     this.DataGridView.ViewCollection.AddRange(new DevExpress.XtraGrid.Views.Base.BaseView[] {
     this.gridView,
     this.gridView1});
     //
     // gridView
     //
     this.gridView.GridControl = this.DataGridView;
     this.gridView.Name = "gridView";
     //
     // ribbonControl
     //
     this.ribbonControl.ApplicationButtonDropDownControl = this.appMenu;
     this.ribbonControl.ApplicationButtonText = null;
     this.ribbonControl.ExpandCollapseItem.Id = 0;
     this.ribbonControl.ExpandCollapseItem.Name = "";
     this.ribbonControl.Images = this.ribbonImageCollection;
     this.ribbonControl.Items.AddRange(new DevExpress.XtraBars.BarItem[] {
     this.ribbonControl.ExpandCollapseItem,
     this.iExit,
     this.siStatus,
     this.iBoldFontStyle,
     this.iItalicFontStyle,
     this.iUnderlinedFontStyle,
     this.iLeftTextAlign,
     this.iCenterTextAlign,
     this.iRightTextAlign,
     this.rgbiSkins,
     this.iQuanLyKhachHang,
     this.iQuanLyHoSoBanXe,
     this.iQuanLyPhuKien,
     this.iBaoCao,
     this.barStaticItem1,
     this.iQuanLyChucVu,
     this.iQuanLyChiNhanh,
     this.iQuanLyNhanVien,
     this.iQuanLyLoaiPhuKien,
     this.iQuanLyXe,
     this.iQuanLyKho,
     this.iQuanLyLoaiXe,
     this.iQuanLyNCC,
     this.iQuanLyPhieuNhapPhuKien,
     this.iQuanLyPhieuNhapXe,
     this.iQuanLyPhieuSuaChua,
     this.iQuanLyPhieuXuatKho,
     this.iBaoCaov_Kho_HangTon,
     this.iBaoCaov_CuaHang_HangTon,
     this.iBaoCaov_HoSoBanXe,
     this.iBaoCaov_LichSuKhachHang});
     this.ribbonControl.LargeImages = this.ribbonImageCollectionLarge;
     this.ribbonControl.Location = new System.Drawing.Point(0, 0);
     this.ribbonControl.MaxItemId = 101;
     this.ribbonControl.Name = "ribbonControl";
     this.ribbonControl.Pages.AddRange(new DevExpress.XtraBars.Ribbon.RibbonPage[] {
     this.homeRibbonPage,
     this.QuanLyRibbonPage,
     this.BaoCaoRibbonPage});
     this.ribbonControl.RepositoryItems.AddRange(new DevExpress.XtraEditors.Repository.RepositoryItem[] {
     this.rpName,
     this.rpPass});
     this.ribbonControl.RibbonStyle = DevExpress.XtraBars.Ribbon.RibbonControlStyle.Office2010;
     this.ribbonControl.Size = new System.Drawing.Size(1100, 144);
     this.ribbonControl.StatusBar = this.ribbonStatusBar;
     //
     // appMenu
     //
     this.appMenu.ItemLinks.Add(this.iExit);
     this.appMenu.Name = "appMenu";
     this.appMenu.Ribbon = this.ribbonControl;
     this.appMenu.ShowRightPane = true;
     //
     // iExit
     //
     this.iExit.Caption = "Exit";
     this.iExit.Description = "Closes this program after prompting you to save unsaved data.";
     this.iExit.Hint = "Closes this program after prompting you to save unsaved data";
     this.iExit.Id = 20;
     this.iExit.ImageIndex = 6;
     this.iExit.LargeImageIndex = 6;
     this.iExit.Name = "iExit";
     this.iExit.ItemClick += new DevExpress.XtraBars.ItemClickEventHandler(this.iExit_ItemClick);
     //
     // ribbonImageCollection
     //
     this.ribbonImageCollection.ImageStream = ((DevExpress.Utils.ImageCollectionStreamer)(resources.GetObject("ribbonImageCollection.ImageStream")));
     this.ribbonImageCollection.Images.SetKeyName(0, "Ribbon_New_16x16.png");
     this.ribbonImageCollection.Images.SetKeyName(1, "Ribbon_Open_16x16.png");
     this.ribbonImageCollection.Images.SetKeyName(2, "Ribbon_Close_16x16.png");
     this.ribbonImageCollection.Images.SetKeyName(3, "Ribbon_Find_16x16.png");
     this.ribbonImageCollection.Images.SetKeyName(4, "Ribbon_Save_16x16.png");
     this.ribbonImageCollection.Images.SetKeyName(5, "Ribbon_SaveAs_16x16.png");
     this.ribbonImageCollection.Images.SetKeyName(6, "Ribbon_Exit_16x16.png");
     this.ribbonImageCollection.Images.SetKeyName(7, "Ribbon_Content_16x16.png");
     this.ribbonImageCollection.Images.SetKeyName(8, "Ribbon_Info_16x16.png");
     this.ribbonImageCollection.Images.SetKeyName(9, "Ribbon_Bold_16x16.png");
     this.ribbonImageCollection.Images.SetKeyName(10, "Ribbon_Italic_16x16.png");
     this.ribbonImageCollection.Images.SetKeyName(11, "Ribbon_Underline_16x16.png");
     this.ribbonImageCollection.Images.SetKeyName(12, "Ribbon_AlignLeft_16x16.png");
     this.ribbonImageCollection.Images.SetKeyName(13, "Ribbon_AlignCenter_16x16.png");
     this.ribbonImageCollection.Images.SetKeyName(14, "Ribbon_AlignRight_16x16.png");
     //
     // siStatus
     //
     this.siStatus.Caption = "...";
     this.siStatus.Id = 31;
     this.siStatus.Name = "siStatus";
     this.siStatus.TextAlignment = System.Drawing.StringAlignment.Near;
     //
     // iBoldFontStyle
     //
     this.iBoldFontStyle.Caption = "Bold";
     this.iBoldFontStyle.Id = 53;
     this.iBoldFontStyle.ImageIndex = 9;
     this.iBoldFontStyle.Name = "iBoldFontStyle";
     //
     // iItalicFontStyle
     //
     this.iItalicFontStyle.Caption = "Italic";
     this.iItalicFontStyle.Id = 54;
     this.iItalicFontStyle.ImageIndex = 10;
     this.iItalicFontStyle.Name = "iItalicFontStyle";
     //
     // iUnderlinedFontStyle
     //
     this.iUnderlinedFontStyle.Caption = "Underlined";
     this.iUnderlinedFontStyle.Id = 55;
     this.iUnderlinedFontStyle.ImageIndex = 11;
     this.iUnderlinedFontStyle.Name = "iUnderlinedFontStyle";
     //
     // iLeftTextAlign
     //
     this.iLeftTextAlign.Caption = "Left";
     this.iLeftTextAlign.Id = 57;
     this.iLeftTextAlign.ImageIndex = 12;
     this.iLeftTextAlign.Name = "iLeftTextAlign";
     //
     // iCenterTextAlign
     //
     this.iCenterTextAlign.Caption = "Center";
     this.iCenterTextAlign.Id = 58;
     this.iCenterTextAlign.ImageIndex = 13;
     this.iCenterTextAlign.Name = "iCenterTextAlign";
     //
     // iRightTextAlign
     //
     this.iRightTextAlign.Caption = "Right";
     this.iRightTextAlign.Id = 59;
     this.iRightTextAlign.ImageIndex = 14;
     this.iRightTextAlign.Name = "iRightTextAlign";
     //
     // rgbiSkins
     //
     this.rgbiSkins.Caption = "Skins";
     //
     // rgbiSkins
     //
     this.rgbiSkins.Gallery.AllowHoverImages = true;
     this.rgbiSkins.Gallery.Appearance.ItemCaptionAppearance.Normal.Options.UseFont = true;
     this.rgbiSkins.Gallery.Appearance.ItemCaptionAppearance.Normal.Options.UseTextOptions = true;
     this.rgbiSkins.Gallery.Appearance.ItemCaptionAppearance.Normal.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.rgbiSkins.Gallery.ColumnCount = 4;
     this.rgbiSkins.Gallery.FixedHoverImageSize = false;
     this.rgbiSkins.Gallery.ImageSize = new System.Drawing.Size(32, 17);
     this.rgbiSkins.Gallery.ItemImageLocation = DevExpress.Utils.Locations.Top;
     this.rgbiSkins.Gallery.RowCount = 4;
     this.rgbiSkins.Id = 60;
     this.rgbiSkins.Name = "rgbiSkins";
     //
     // iQuanLyKhachHang
     //
     this.iQuanLyKhachHang.Caption = "Khách Hàng";
     this.iQuanLyKhachHang.Id = 71;
     this.iQuanLyKhachHang.LargeImageIndex = 15;
     this.iQuanLyKhachHang.Name = "iQuanLyKhachHang";
     this.iQuanLyKhachHang.ItemClick += new DevExpress.XtraBars.ItemClickEventHandler(this.iQuanLyKhachHang_ItemClick);
     //
     // iQuanLyHoSoBanXe
     //
     this.iQuanLyHoSoBanXe.Caption = "Hồ Sơ Bán Xe";
     this.iQuanLyHoSoBanXe.Id = 72;
     this.iQuanLyHoSoBanXe.LargeImageIndex = 19;
     this.iQuanLyHoSoBanXe.Name = "iQuanLyHoSoBanXe";
     this.iQuanLyHoSoBanXe.RibbonStyle = DevExpress.XtraBars.Ribbon.RibbonItemStyles.Large;
     this.iQuanLyHoSoBanXe.ItemClick += new DevExpress.XtraBars.ItemClickEventHandler(this.iQuanLyHoSoBanXe_ItemClick);
     //
     // iQuanLyPhuKien
     //
     this.iQuanLyPhuKien.Caption = "Phụ Kiện";
     this.iQuanLyPhuKien.Id = 73;
     this.iQuanLyPhuKien.LargeImageIndex = 22;
     this.iQuanLyPhuKien.Name = "iQuanLyPhuKien";
     this.iQuanLyPhuKien.RibbonStyle = DevExpress.XtraBars.Ribbon.RibbonItemStyles.Large;
     this.iQuanLyPhuKien.ItemClick += new DevExpress.XtraBars.ItemClickEventHandler(this.iQuanLyPhuKien_ItemClick);
     //
     // iBaoCao
     //
     this.iBaoCao.Caption = "Báo Cáo";
     this.iBaoCao.Id = 78;
     this.iBaoCao.LargeImageIndex = 18;
     this.iBaoCao.Name = "iBaoCao";
     this.iBaoCao.ItemClick += new DevExpress.XtraBars.ItemClickEventHandler(this.iBaoCao_ItemClick);
     //
     // barStaticItem1
     //
     this.barStaticItem1.Caption = "Tên đăng nhập:";
     this.barStaticItem1.Id = 82;
     this.barStaticItem1.Name = "barStaticItem1";
     this.barStaticItem1.TextAlignment = System.Drawing.StringAlignment.Near;
     //
     // iQuanLyChucVu
     //
     this.iQuanLyChucVu.Caption = "Chức Vụ";
     this.iQuanLyChucVu.Id = 85;
     this.iQuanLyChucVu.LargeImageIndex = 17;
     this.iQuanLyChucVu.Name = "iQuanLyChucVu";
     this.iQuanLyChucVu.ItemClick += new DevExpress.XtraBars.ItemClickEventHandler(this.iQuanLyChucVu_ItemClick);
     //
     // iQuanLyChiNhanh
     //
     this.iQuanLyChiNhanh.Caption = "Chi Nhánh";
     this.iQuanLyChiNhanh.Id = 86;
     this.iQuanLyChiNhanh.LargeImageIndex = 10;
     this.iQuanLyChiNhanh.Name = "iQuanLyChiNhanh";
     this.iQuanLyChiNhanh.ItemClick += new DevExpress.XtraBars.ItemClickEventHandler(this.iQuanLyChiNhanh_ItemClick);
     //
     // iQuanLyNhanVien
     //
     this.iQuanLyNhanVien.Caption = "Nhân Viên";
     this.iQuanLyNhanVien.Id = 87;
     this.iQuanLyNhanVien.LargeImageIndex = 15;
     this.iQuanLyNhanVien.Name = "iQuanLyNhanVien";
     this.iQuanLyNhanVien.ItemClick += new DevExpress.XtraBars.ItemClickEventHandler(this.iQuanLyNhanVien_ItemClick);
     //
     // iQuanLyLoaiPhuKien
     //
     this.iQuanLyLoaiPhuKien.Caption = "Loại Phụ Kiện";
     this.iQuanLyLoaiPhuKien.Id = 88;
     this.iQuanLyLoaiPhuKien.LargeImageIndex = 13;
     this.iQuanLyLoaiPhuKien.Name = "iQuanLyLoaiPhuKien";
     this.iQuanLyLoaiPhuKien.ItemClick += new DevExpress.XtraBars.ItemClickEventHandler(this.iQuanLyLoaiPhuKien_ItemClick);
     //
     // iQuanLyXe
     //
     this.iQuanLyXe.Caption = "Xe";
     this.iQuanLyXe.Id = 89;
     this.iQuanLyXe.LargeImageIndex = 20;
     this.iQuanLyXe.Name = "iQuanLyXe";
     this.iQuanLyXe.ItemClick += new DevExpress.XtraBars.ItemClickEventHandler(this.iQuanLyXe_ItemClick);
     //
     // iQuanLyKho
     //
     this.iQuanLyKho.Caption = "Kho";
     this.iQuanLyKho.Id = 90;
     this.iQuanLyKho.LargeImageIndex = 11;
     this.iQuanLyKho.Name = "iQuanLyKho";
     this.iQuanLyKho.ItemClick += new DevExpress.XtraBars.ItemClickEventHandler(this.iQuanLyKho_ItemClick);
     //
     // iQuanLyLoaiXe
     //
     this.iQuanLyLoaiXe.Caption = "Loại Xe";
     this.iQuanLyLoaiXe.Id = 91;
     this.iQuanLyLoaiXe.LargeImageIndex = 21;
     this.iQuanLyLoaiXe.Name = "iQuanLyLoaiXe";
     this.iQuanLyLoaiXe.ItemClick += new DevExpress.XtraBars.ItemClickEventHandler(this.iQuanLyLoaiXe_ItemClick);
     //
     // iQuanLyNCC
     //
     this.iQuanLyNCC.Caption = "Nhà Cung Cấp";
     this.iQuanLyNCC.Id = 92;
     this.iQuanLyNCC.LargeImageIndex = 12;
     this.iQuanLyNCC.Name = "iQuanLyNCC";
     this.iQuanLyNCC.ItemClick += new DevExpress.XtraBars.ItemClickEventHandler(this.iQuanLyNCC_ItemClick);
     //
     // iQuanLyPhieuNhapPhuKien
     //
     this.iQuanLyPhieuNhapPhuKien.Caption = "Phiếu Nhập Phụ Kiện";
     this.iQuanLyPhieuNhapPhuKien.Id = 93;
     this.iQuanLyPhieuNhapPhuKien.LargeImageIndex = 1;
     this.iQuanLyPhieuNhapPhuKien.Name = "iQuanLyPhieuNhapPhuKien";
     this.iQuanLyPhieuNhapPhuKien.ItemClick += new DevExpress.XtraBars.ItemClickEventHandler(this.iQuanLyPhieuNhapPhuKien_ItemClick);
     //
     // iQuanLyPhieuNhapXe
     //
     this.iQuanLyPhieuNhapXe.Caption = "Phiếu Nhập Xe";
     this.iQuanLyPhieuNhapXe.Id = 94;
     this.iQuanLyPhieuNhapXe.LargeImageIndex = 0;
     this.iQuanLyPhieuNhapXe.Name = "iQuanLyPhieuNhapXe";
     this.iQuanLyPhieuNhapXe.ItemClick += new DevExpress.XtraBars.ItemClickEventHandler(this.iQuanLyPhieuNhapXe_ItemClick);
     //
     // iQuanLyPhieuSuaChua
     //
     this.iQuanLyPhieuSuaChua.Caption = "Phiếu Sửa Chữa";
     this.iQuanLyPhieuSuaChua.Id = 95;
     this.iQuanLyPhieuSuaChua.LargeImageIndex = 12;
     this.iQuanLyPhieuSuaChua.Name = "iQuanLyPhieuSuaChua";
     this.iQuanLyPhieuSuaChua.ItemClick += new DevExpress.XtraBars.ItemClickEventHandler(this.iQuanLyPhieuSuaChua_ItemClick);
     //
     // iQuanLyPhieuXuatKho
     //
     this.iQuanLyPhieuXuatKho.Caption = "Phiếu Xuất Kho";
     this.iQuanLyPhieuXuatKho.Id = 96;
     this.iQuanLyPhieuXuatKho.LargeImageIndex = 13;
     this.iQuanLyPhieuXuatKho.Name = "iQuanLyPhieuXuatKho";
     this.iQuanLyPhieuXuatKho.ItemClick += new DevExpress.XtraBars.ItemClickEventHandler(this.iQuanLyPhieuXuatKho_ItemClick);
     //
     // iBaoCaov_Kho_HangTon
     //
     this.iBaoCaov_Kho_HangTon.Caption = "Hàng tồn kho";
     this.iBaoCaov_Kho_HangTon.Id = 97;
     this.iBaoCaov_Kho_HangTon.LargeImageIndex = 11;
     this.iBaoCaov_Kho_HangTon.Name = "iBaoCaov_Kho_HangTon";
     this.iBaoCaov_Kho_HangTon.ItemClick += new DevExpress.XtraBars.ItemClickEventHandler(this.iBaoCaov_Kho_HangTon_ItemClick);
     //
     // iBaoCaov_CuaHang_HangTon
     //
     this.iBaoCaov_CuaHang_HangTon.Caption = "Hàng tồn cửa hàng";
     this.iBaoCaov_CuaHang_HangTon.Id = 98;
     this.iBaoCaov_CuaHang_HangTon.LargeImageIndex = 10;
     this.iBaoCaov_CuaHang_HangTon.Name = "iBaoCaov_CuaHang_HangTon";
     this.iBaoCaov_CuaHang_HangTon.ItemClick += new DevExpress.XtraBars.ItemClickEventHandler(this.iBaoCaov_CuaHang_HangTon_ItemClick);
     //
     // iBaoCaov_HoSoBanXe
     //
     this.iBaoCaov_HoSoBanXe.Caption = "Hồ sơ bán xe";
     this.iBaoCaov_HoSoBanXe.Id = 99;
     this.iBaoCaov_HoSoBanXe.LargeImageIndex = 9;
     this.iBaoCaov_HoSoBanXe.Name = "iBaoCaov_HoSoBanXe";
     this.iBaoCaov_HoSoBanXe.ItemClick += new DevExpress.XtraBars.ItemClickEventHandler(this.iBaoCaov_HoSoBanXe_ItemClick);
     //
     // iBaoCaov_LichSuKhachHang
     //
     this.iBaoCaov_LichSuKhachHang.Caption = "Lịch sử khách hàng";
     this.iBaoCaov_LichSuKhachHang.Id = 100;
     this.iBaoCaov_LichSuKhachHang.LargeImageIndex = 17;
     this.iBaoCaov_LichSuKhachHang.Name = "iBaoCaov_LichSuKhachHang";
     this.iBaoCaov_LichSuKhachHang.ItemClick += new DevExpress.XtraBars.ItemClickEventHandler(this.iBaoCaov_LichSuKhachHang_ItemClick);
     //
     // ribbonImageCollectionLarge
     //
     this.ribbonImageCollectionLarge.ImageSize = new System.Drawing.Size(32, 32);
     this.ribbonImageCollectionLarge.ImageStream = ((DevExpress.Utils.ImageCollectionStreamer)(resources.GetObject("ribbonImageCollectionLarge.ImageStream")));
     this.ribbonImageCollectionLarge.Images.SetKeyName(0, "Ribbon_New_32x32.png");
     this.ribbonImageCollectionLarge.Images.SetKeyName(1, "Ribbon_Open_32x32.png");
     this.ribbonImageCollectionLarge.Images.SetKeyName(2, "Ribbon_Close_32x32.png");
     this.ribbonImageCollectionLarge.Images.SetKeyName(3, "Ribbon_Find_32x32.png");
     this.ribbonImageCollectionLarge.Images.SetKeyName(4, "Ribbon_Save_32x32.png");
     this.ribbonImageCollectionLarge.Images.SetKeyName(5, "Ribbon_SaveAs_32x32.png");
     this.ribbonImageCollectionLarge.Images.SetKeyName(6, "Ribbon_Exit_32x32.png");
     this.ribbonImageCollectionLarge.Images.SetKeyName(7, "Ribbon_Content_32x32.png");
     this.ribbonImageCollectionLarge.Images.SetKeyName(8, "Ribbon_Info_32x32.png");
     this.ribbonImageCollectionLarge.Images.SetKeyName(9, "building.png");
     this.ribbonImageCollectionLarge.Images.SetKeyName(10, "apartment-icon.png");
     this.ribbonImageCollectionLarge.Images.SetKeyName(11, "bedroom-icon.png");
     this.ribbonImageCollectionLarge.Images.SetKeyName(12, "Keys-64.png");
     this.ribbonImageCollectionLarge.Images.SetKeyName(13, "Swimming-Pool-64.png");
     this.ribbonImageCollectionLarge.Images.SetKeyName(14, "Coke Zero_Black_Woops.png");
     this.ribbonImageCollectionLarge.Images.SetKeyName(15, "Manager-icon.png");
     this.ribbonImageCollectionLarge.Images.SetKeyName(16, "Superman-icon.png");
     this.ribbonImageCollectionLarge.Images.SetKeyName(17, "Supervisor-icon.png");
     this.ribbonImageCollectionLarge.Images.SetKeyName(18, "client_report_dock_icon_by_ornorm-d5e0d34.png");
     this.ribbonImageCollectionLarge.Images.SetKeyName(19, "page-icon.png");
     this.ribbonImageCollectionLarge.Images.SetKeyName(20, "Moto courier.png");
     this.ribbonImageCollectionLarge.Images.SetKeyName(21, "Motorcycle.png");
     this.ribbonImageCollectionLarge.Images.SetKeyName(22, "Wheel.png");
     //
     // homeRibbonPage
     //
     this.homeRibbonPage.Groups.AddRange(new DevExpress.XtraBars.Ribbon.RibbonPageGroup[] {
     this.fileRibbonPageGroup,
     this.skinsRibbonPageGroup});
     this.homeRibbonPage.Name = "homeRibbonPage";
     this.homeRibbonPage.Text = "Home";
     //
     // fileRibbonPageGroup
     //
     this.fileRibbonPageGroup.ItemLinks.Add(this.iBaoCao);
     this.fileRibbonPageGroup.Name = "fileRibbonPageGroup";
     this.fileRibbonPageGroup.Text = "File";
     //
     // skinsRibbonPageGroup
     //
     this.skinsRibbonPageGroup.ItemLinks.Add(this.rgbiSkins);
     this.skinsRibbonPageGroup.Name = "skinsRibbonPageGroup";
     this.skinsRibbonPageGroup.ShowCaptionButton = false;
     this.skinsRibbonPageGroup.Text = "Skins";
     //
     // QuanLyRibbonPage
     //
     this.QuanLyRibbonPage.Groups.AddRange(new DevExpress.XtraBars.Ribbon.RibbonPageGroup[] {
     this.RPGNguoiDung});
     this.QuanLyRibbonPage.Name = "QuanLyRibbonPage";
     this.QuanLyRibbonPage.Text = "Quản Lý";
     //
     // RPGNguoiDung
     //
     this.RPGNguoiDung.ItemLinks.Add(this.iQuanLyChiNhanh);
     this.RPGNguoiDung.ItemLinks.Add(this.iQuanLyChucVu);
     this.RPGNguoiDung.ItemLinks.Add(this.iQuanLyHoSoBanXe);
     this.RPGNguoiDung.ItemLinks.Add(this.iQuanLyKhachHang);
     this.RPGNguoiDung.ItemLinks.Add(this.iQuanLyKho);
     this.RPGNguoiDung.ItemLinks.Add(this.iQuanLyLoaiPhuKien);
     this.RPGNguoiDung.ItemLinks.Add(this.iQuanLyLoaiXe);
     this.RPGNguoiDung.ItemLinks.Add(this.iQuanLyNCC);
     this.RPGNguoiDung.ItemLinks.Add(this.iQuanLyNhanVien);
     this.RPGNguoiDung.ItemLinks.Add(this.iQuanLyXe);
     this.RPGNguoiDung.ItemLinks.Add(this.iQuanLyPhieuNhapPhuKien);
     this.RPGNguoiDung.ItemLinks.Add(this.iQuanLyPhieuNhapXe);
     this.RPGNguoiDung.ItemLinks.Add(this.iQuanLyPhieuSuaChua);
     this.RPGNguoiDung.ItemLinks.Add(this.iQuanLyPhieuXuatKho);
     this.RPGNguoiDung.ItemLinks.Add(this.iQuanLyPhuKien);
     this.RPGNguoiDung.Name = "RPGNguoiDung";
     this.RPGNguoiDung.Text = "Người Dùng";
     //
     // BaoCaoRibbonPage
     //
     this.BaoCaoRibbonPage.Groups.AddRange(new DevExpress.XtraBars.Ribbon.RibbonPageGroup[] {
     this.ribbonPageGroup1});
     this.BaoCaoRibbonPage.Name = "BaoCaoRibbonPage";
     this.BaoCaoRibbonPage.Text = "Báo Cáo";
     //
     // ribbonPageGroup1
     //
     this.ribbonPageGroup1.ItemLinks.Add(this.iBaoCaov_Kho_HangTon);
     this.ribbonPageGroup1.ItemLinks.Add(this.iBaoCaov_CuaHang_HangTon);
     this.ribbonPageGroup1.ItemLinks.Add(this.iBaoCaov_HoSoBanXe);
     this.ribbonPageGroup1.ItemLinks.Add(this.iBaoCaov_LichSuKhachHang);
     this.ribbonPageGroup1.Name = "ribbonPageGroup1";
     //
     // rpName
     //
     this.rpName.AutoHeight = false;
     this.rpName.Name = "rpName";
     //
     // rpPass
     //
     this.rpPass.AutoHeight = false;
     this.rpPass.Name = "rpPass";
     //
     // ribbonStatusBar
     //
     this.ribbonStatusBar.ItemLinks.Add(this.siStatus);
     this.ribbonStatusBar.Location = new System.Drawing.Point(0, 685);
     this.ribbonStatusBar.Name = "ribbonStatusBar";
     this.ribbonStatusBar.Ribbon = this.ribbonControl;
     this.ribbonStatusBar.Size = new System.Drawing.Size(1100, 31);
     //
     // splitContainerControl
     //
     this.splitContainerControl.Dock = System.Windows.Forms.DockStyle.Fill;
     this.splitContainerControl.Location = new System.Drawing.Point(0, 144);
     this.splitContainerControl.Name = "splitContainerControl";
     this.splitContainerControl.Panel1.Controls.Add(this.DataGridView);
     this.splitContainerControl.Panel1.Text = "Panel1";
     this.splitContainerControl.Panel2.Text = "Panel2";
     this.splitContainerControl.Size = new System.Drawing.Size(1100, 541);
     this.splitContainerControl.SplitterPosition = 754;
     this.splitContainerControl.TabIndex = 12;
     this.splitContainerControl.Text = "splitContainerControl1";
     //
     // dxErrorProvider
     //
     this.dxErrorProvider.ContainerControl = this;
     //
     // Main
     //
     this.AllowFormGlass = DevExpress.Utils.DefaultBoolean.False;
     this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
     this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
     this.ClientSize = new System.Drawing.Size(1100, 716);
     this.Controls.Add(this.splitContainerControl);
     this.Controls.Add(this.ribbonControl);
     this.Controls.Add(this.ribbonStatusBar);
     this.IsMdiContainer = true;
     this.Name = "Main";
     this.Ribbon = this.ribbonControl;
     this.StatusBar = this.ribbonStatusBar;
     this.Text = "Quản Lý Cửa Hàng Bán Xe";
     ((System.ComponentModel.ISupportInitialize)(this.gridView1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.DataGridView)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridView)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.ribbonControl)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.appMenu)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.ribbonImageCollection)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.ribbonImageCollectionLarge)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.rpName)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.rpPass)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.splitContainerControl)).EndInit();
     this.splitContainerControl.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.dxErrorProvider)).EndInit();
     this.ResumeLayout(false);
 }
        /// <summary>
        /// Required method for Designer support - do not modify
        /// the contents of this method with the code editor.
        /// </summary>
        private void InitializeComponent()
        {
            this.ribbonStatusBar = new DevExpress.XtraBars.Ribbon.RibbonStatusBar();
            this.OK = new DevExpress.XtraBars.BarButtonItem();
            this.barButtonItem2 = new DevExpress.XtraBars.BarButtonItem();
            this.cancel = new DevExpress.XtraBars.BarButtonItem();
            this.ribbon = new DevExpress.XtraBars.Ribbon.RibbonControl();
            this.showTareBarButtonItem = new DevExpress.XtraBars.BarCheckItem();
            this.showNomenclatureBarButtonItem = new DevExpress.XtraBars.BarCheckItem();
            this.openPalletButton = new DevExpress.XtraBars.BarButtonItem();
            this.NomenclatureInfoButtonsBar = new DevExpress.XtraBars.Ribbon.RibbonStatusBar();
            this.PlansBar = new DevExpress.XtraBars.Ribbon.RibbonStatusBar();
            this.panelControl = new DevExpress.XtraEditors.PanelControl();
            this.date = new DevExpress.XtraEditors.DateEdit();
            this.Car = new DevExpress.XtraEditors.LabelControl();
            this.Carrier = new DevExpress.XtraEditors.LabelControl();
            this.Driver = new DevExpress.XtraEditors.LabelControl();
            this.Contractor = new DevExpress.XtraEditors.LabelControl();
            this.labelControl7 = new DevExpress.XtraEditors.LabelControl();
            this.labelControl6 = new DevExpress.XtraEditors.LabelControl();
            this.labelControl5 = new DevExpress.XtraEditors.LabelControl();
            this.labelControl4 = new DevExpress.XtraEditors.LabelControl();
            this.State = new DevExpress.XtraEditors.ComboBoxEdit();
            this.labelControl3 = new DevExpress.XtraEditors.LabelControl();
            this.label = new DevExpress.XtraEditors.LabelControl();
            this.NomenclatureInfo = new DevExpress.XtraGrid.GridControl();
            this.nomenclatureView = new DevExpress.XtraGrid.Views.Grid.GridView();
            this.panelControl1 = new DevExpress.XtraEditors.PanelControl();
            this.pictureEdit1 = new DevExpress.XtraEditors.PictureEdit();
            this.Info = new DevExpress.XtraEditors.LabelControl();
            this.barButtonItem1 = new DevExpress.XtraBars.BarButtonItem();
            this.barButtonItem3 = new DevExpress.XtraBars.BarButtonItem();
            this.barButtonItem4 = new DevExpress.XtraBars.BarButtonItem();
            this.tabControl = new DevExpress.XtraTab.XtraTabControl();
            this.waresTabPage = new DevExpress.XtraTab.XtraTabPage();
            this.plansTabPage = new DevExpress.XtraTab.XtraTabPage();
            this.Plans = new DevExpress.XtraGrid.GridControl();
            this.gridView3 = new DevExpress.XtraGrid.Views.Grid.GridView();
            this.barCheckItem1 = new DevExpress.XtraBars.BarCheckItem();
            this.barCheckItem2 = new DevExpress.XtraBars.BarCheckItem();
            this.barButtonItem5 = new DevExpress.XtraBars.BarButtonItem();
            this.barButtonItem6 = new DevExpress.XtraBars.BarButtonItem();
            this.barButtonItem7 = new DevExpress.XtraBars.BarButtonItem();
            this.barButtonItem8 = new DevExpress.XtraBars.BarButtonItem();
            this.barButtonItem9 = new DevExpress.XtraBars.BarButtonItem();
            this.barButtonItem10 = new DevExpress.XtraBars.BarButtonItem();
            this.createAcceptanceButtonItem = new DevExpress.XtraBars.BarButtonItem();
            ((System.ComponentModel.ISupportInitialize)(this.ribbon)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.panelControl)).BeginInit();
            this.panelControl.SuspendLayout();
            ((System.ComponentModel.ISupportInitialize)(this.date.Properties.VistaTimeProperties)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.date.Properties)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.State.Properties)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.NomenclatureInfo)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.nomenclatureView)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.panelControl1)).BeginInit();
            this.panelControl1.SuspendLayout();
            ((System.ComponentModel.ISupportInitialize)(this.pictureEdit1.Properties)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.tabControl)).BeginInit();
            this.tabControl.SuspendLayout();
            this.waresTabPage.SuspendLayout();
            this.plansTabPage.SuspendLayout();
            ((System.ComponentModel.ISupportInitialize)(this.Plans)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.gridView3)).BeginInit();
            this.SuspendLayout();
            //
            // ribbonStatusBar
            //
            this.ribbonStatusBar.ItemLinks.Add(this.OK);
            this.ribbonStatusBar.ItemLinks.Add(this.barButtonItem2);
            this.ribbonStatusBar.ItemLinks.Add(this.cancel);
            this.ribbonStatusBar.Location = new System.Drawing.Point(0, 572);
            this.ribbonStatusBar.Name = "ribbonStatusBar";
            this.ribbonStatusBar.Ribbon = this.ribbon;
            this.ribbonStatusBar.Size = new System.Drawing.Size(884, 31);
            //
            // OK
            //
            this.OK.Alignment = DevExpress.XtraBars.BarItemLinkAlignment.Right;
            this.OK.Caption = "OK";
            this.OK.Id = 0;
            this.OK.ImageIndex = 0;
            this.OK.Name = "OK";
            this.OK.ItemClick += new DevExpress.XtraBars.ItemClickEventHandler(this.OK_ItemClick);
            //
            // barButtonItem2
            //
            this.barButtonItem2.Alignment = DevExpress.XtraBars.BarItemLinkAlignment.Right;
            this.barButtonItem2.Caption = "��������";
            this.barButtonItem2.Id = 1;
            this.barButtonItem2.Name = "barButtonItem2";
            this.barButtonItem2.ItemClick += new DevExpress.XtraBars.ItemClickEventHandler(this.Write_ItemClick);
            //
            // cancel
            //
            this.cancel.Alignment = DevExpress.XtraBars.BarItemLinkAlignment.Right;
            this.cancel.Caption = "³����";
            this.cancel.Id = 2;
            this.cancel.ImageIndex = 1;
            this.cancel.Name = "cancel";
            this.cancel.ItemClick += new DevExpress.XtraBars.ItemClickEventHandler(this.cancel_ItemClick);
            //
            // ribbon
            //
            this.ribbon.ApplicationButtonText = null;
            this.ribbon.ExpandCollapseItem.Id = 0;
            this.ribbon.ExpandCollapseItem.Name = "";
            this.ribbon.Items.AddRange(new DevExpress.XtraBars.BarItem[] {
            this.ribbon.ExpandCollapseItem,
            this.OK,
            this.barButtonItem2,
            this.cancel,
            this.showTareBarButtonItem,
            this.showNomenclatureBarButtonItem,
            this.openPalletButton});
            this.ribbon.Location = new System.Drawing.Point(0, 0);
            this.ribbon.MaxItemId = 22;
            this.ribbon.Name = "ribbon";
            this.ribbon.Size = new System.Drawing.Size(884, 49);
            this.ribbon.StatusBar = this.PlansBar;
            this.ribbon.ToolbarLocation = DevExpress.XtraBars.Ribbon.RibbonQuickAccessToolbarLocation.Above;
            //
            // showTareBarButtonItem
            //
            this.showTareBarButtonItem.Alignment = DevExpress.XtraBars.BarItemLinkAlignment.Right;
            this.showTareBarButtonItem.Caption = "����";
            this.showTareBarButtonItem.Id = 18;
            this.showTareBarButtonItem.Name = "showTareBarButtonItem";
            this.showTareBarButtonItem.CheckedChanged += new DevExpress.XtraBars.ItemClickEventHandler(this.showTareBarButtonItem_CheckedChanged);
            //
            // showNomenclatureBarButtonItem
            //
            this.showNomenclatureBarButtonItem.Alignment = DevExpress.XtraBars.BarItemLinkAlignment.Right;
            this.showNomenclatureBarButtonItem.Caption = "������������";
            this.showNomenclatureBarButtonItem.Id = 20;
            this.showNomenclatureBarButtonItem.Name = "showNomenclatureBarButtonItem";
            this.showNomenclatureBarButtonItem.CheckedChanged += new DevExpress.XtraBars.ItemClickEventHandler(this.showNomenclatureBarButtonItem_CheckedChanged);
            //
            // openPalletButton
            //
            this.openPalletButton.Caption = "�������� ������";
            this.openPalletButton.Id = 21;
            this.openPalletButton.Name = "openPalletButton";
            this.openPalletButton.ItemClick += new DevExpress.XtraBars.ItemClickEventHandler(this.openPalletButton_ItemClick);
            //
            // NomenclatureInfoButtonsBar
            //
            this.NomenclatureInfoButtonsBar.Dock = System.Windows.Forms.DockStyle.Top;
            this.NomenclatureInfoButtonsBar.ItemLinks.Add(this.showNomenclatureBarButtonItem);
            this.NomenclatureInfoButtonsBar.ItemLinks.Add(this.showTareBarButtonItem);
            this.NomenclatureInfoButtonsBar.ItemLinks.Add(this.openPalletButton);
            this.NomenclatureInfoButtonsBar.Location = new System.Drawing.Point(0, 0);
            this.NomenclatureInfoButtonsBar.Name = "NomenclatureInfoButtonsBar";
            this.NomenclatureInfoButtonsBar.Ribbon = this.ribbon;
            this.NomenclatureInfoButtonsBar.Size = new System.Drawing.Size(878, 27);
            //
            // PlansBar
            //
            this.PlansBar.Dock = System.Windows.Forms.DockStyle.Top;
            this.PlansBar.Location = new System.Drawing.Point(0, 0);
            this.PlansBar.Name = "PlansBar";
            this.PlansBar.Ribbon = this.ribbon;
            this.PlansBar.Size = new System.Drawing.Size(878, 27);
            //
            // panelControl
            //
            this.panelControl.BorderStyle = DevExpress.XtraEditors.Controls.BorderStyles.NoBorder;
            this.panelControl.Controls.Add(this.date);
            this.panelControl.Controls.Add(this.Car);
            this.panelControl.Controls.Add(this.Carrier);
            this.panelControl.Controls.Add(this.Driver);
            this.panelControl.Controls.Add(this.Contractor);
            this.panelControl.Controls.Add(this.labelControl7);
            this.panelControl.Controls.Add(this.labelControl6);
            this.panelControl.Controls.Add(this.labelControl5);
            this.panelControl.Controls.Add(this.labelControl4);
            this.panelControl.Controls.Add(this.State);
            this.panelControl.Controls.Add(this.labelControl3);
            this.panelControl.Controls.Add(this.label);
            this.panelControl.Dock = System.Windows.Forms.DockStyle.Top;
            this.panelControl.Location = new System.Drawing.Point(0, 49);
            this.panelControl.Name = "panelControl";
            this.panelControl.Size = new System.Drawing.Size(884, 94);
            this.panelControl.TabIndex = 2;
            //
            // date
            //
            this.date.EditValue = null;
            this.date.Location = new System.Drawing.Point(366, 8);
            this.date.MenuManager = this.ribbon;
            this.date.Name = "date";
            this.date.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
            new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
            this.date.Properties.VistaTimeProperties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
            new DevExpress.XtraEditors.Controls.EditorButton()});
            this.date.Size = new System.Drawing.Size(100, 20);
            this.date.TabIndex = 17;
            //
            // Car
            //
            this.Car.Appearance.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold);
            this.Car.Location = new System.Drawing.Point(366, 72);
            this.Car.Name = "Car";
            this.Car.Size = new System.Drawing.Size(21, 13);
            this.Car.TabIndex = 16;
            this.Car.Text = "{0}";
            //
            // Carrier
            //
            this.Carrier.Appearance.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold);
            this.Carrier.Location = new System.Drawing.Point(366, 53);
            this.Carrier.Name = "Carrier";
            this.Carrier.Size = new System.Drawing.Size(21, 13);
            this.Carrier.TabIndex = 15;
            this.Carrier.Text = "{0}";
            //
            // Driver
            //
            this.Driver.Appearance.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold);
            this.Driver.Location = new System.Drawing.Point(99, 72);
            this.Driver.Name = "Driver";
            this.Driver.Size = new System.Drawing.Size(21, 13);
            this.Driver.TabIndex = 14;
            this.Driver.Text = "{0}";
            //
            // Contractor
            //
            this.Contractor.Appearance.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold);
            this.Contractor.Location = new System.Drawing.Point(99, 53);
            this.Contractor.Name = "Contractor";
            this.Contractor.Size = new System.Drawing.Size(21, 13);
            this.Contractor.TabIndex = 13;
            this.Contractor.Text = "{0}";
            //
            // labelControl7
            //
            this.labelControl7.Location = new System.Drawing.Point(261, 72);
            this.labelControl7.Name = "labelControl7";
            this.labelControl7.Size = new System.Drawing.Size(40, 13);
            this.labelControl7.TabIndex = 12;
            this.labelControl7.Text = "������";
            //
            // labelControl6
            //
            this.labelControl6.Location = new System.Drawing.Point(10, 72);
            this.labelControl6.Name = "labelControl6";
            this.labelControl6.Size = new System.Drawing.Size(28, 13);
            this.labelControl6.TabIndex = 10;
            this.labelControl6.Text = "����";
            //
            // labelControl5
            //
            this.labelControl5.Location = new System.Drawing.Point(261, 53);
            this.labelControl5.Name = "labelControl5";
            this.labelControl5.Size = new System.Drawing.Size(57, 13);
            this.labelControl5.TabIndex = 8;
            this.labelControl5.Text = "���������";
            //
            // labelControl4
            //
            this.labelControl4.Location = new System.Drawing.Point(10, 53);
            this.labelControl4.Name = "labelControl4";
            this.labelControl4.Size = new System.Drawing.Size(60, 13);
            this.labelControl4.TabIndex = 6;
            this.labelControl4.Text = "����������";
            //
            // State
            //
            this.State.Location = new System.Drawing.Point(99, 8);
            this.State.MenuManager = this.ribbon;
            this.State.Name = "State";
            this.State.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
            new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
            this.State.Size = new System.Drawing.Size(156, 20);
            this.State.TabIndex = 0;
            //
            // labelControl3
            //
            this.labelControl3.Location = new System.Drawing.Point(10, 11);
            this.labelControl3.Name = "labelControl3";
            this.labelControl3.Size = new System.Drawing.Size(82, 13);
            this.labelControl3.TabIndex = 4;
            this.labelControl3.Text = "���� ���������";
            //
            // label
            //
            this.label.Location = new System.Drawing.Point(272, 11);
            this.label.Name = "label";
            this.label.Size = new System.Drawing.Size(83, 13);
            this.label.TabIndex = 2;
            this.label.Text = "���� ���������";
            //
            // NomenclatureInfo
            //
            this.NomenclatureInfo.Dock = System.Windows.Forms.DockStyle.Fill;
            this.NomenclatureInfo.Location = new System.Drawing.Point(0, 27);
            this.NomenclatureInfo.MainView = this.nomenclatureView;
            this.NomenclatureInfo.MenuManager = this.ribbon;
            this.NomenclatureInfo.Name = "NomenclatureInfo";
            this.NomenclatureInfo.Size = new System.Drawing.Size(878, 354);
            this.NomenclatureInfo.TabIndex = 1;
            this.NomenclatureInfo.ViewCollection.AddRange(new DevExpress.XtraGrid.Views.Base.BaseView[] {
            this.nomenclatureView});
            //
            // nomenclatureView
            //
            this.nomenclatureView.GridControl = this.NomenclatureInfo;
            this.nomenclatureView.Name = "nomenclatureView";
            this.nomenclatureView.RowStyle += new DevExpress.XtraGrid.Views.Grid.RowStyleEventHandler(this.nomenclatureView_RowStyle);
            //
            // panelControl1
            //
            this.panelControl1.BorderStyle = DevExpress.XtraEditors.Controls.BorderStyles.NoBorder;
            this.panelControl1.Controls.Add(this.pictureEdit1);
            this.panelControl1.Controls.Add(this.Info);
            this.panelControl1.Dock = System.Windows.Forms.DockStyle.Bottom;
            this.panelControl1.Location = new System.Drawing.Point(0, 552);
            this.panelControl1.Name = "panelControl1";
            this.panelControl1.Size = new System.Drawing.Size(884, 20);
            this.panelControl1.TabIndex = 0;
            //
            // pictureEdit1
            //
            this.pictureEdit1.Dock = System.Windows.Forms.DockStyle.Left;
            this.pictureEdit1.EditValue = global::FMCG.Properties.Resources._1317825614_information_balloon;
            this.pictureEdit1.Location = new System.Drawing.Point(0, 0);
            this.pictureEdit1.MenuManager = this.ribbon;
            this.pictureEdit1.Name = "pictureEdit1";
            this.pictureEdit1.Properties.Appearance.BackColor = System.Drawing.Color.Transparent;
            this.pictureEdit1.Properties.Appearance.Options.UseBackColor = true;
            this.pictureEdit1.Properties.BorderStyle = DevExpress.XtraEditors.Controls.BorderStyles.NoBorder;
            this.pictureEdit1.Size = new System.Drawing.Size(20, 20);
            this.pictureEdit1.TabIndex = 3;
            this.pictureEdit1.ToolTip = "��� ������� ��������� �������� �� ���� ���������� �����������";
            this.pictureEdit1.ToolTipIconType = DevExpress.Utils.ToolTipIconType.Information;
            this.pictureEdit1.ToolTipTitle = "������:";
            //
            // Info
            //
            this.Info.Appearance.ForeColor = System.Drawing.Color.Gray;
            this.Info.Location = new System.Drawing.Point(24, 3);
            this.Info.Name = "Info";
            this.Info.Size = new System.Drawing.Size(12, 13);
            this.Info.TabIndex = 1;
            this.Info.Text = "...";
            //
            // barButtonItem1
            //
            this.barButtonItem1.Alignment = DevExpress.XtraBars.BarItemLinkAlignment.Right;
            this.barButtonItem1.Caption = "OK";
            this.barButtonItem1.Id = 0;
            this.barButtonItem1.ImageIndex = 0;
            this.barButtonItem1.Name = "barButtonItem1";
            //
            // barButtonItem3
            //
            this.barButtonItem3.Alignment = DevExpress.XtraBars.BarItemLinkAlignment.Right;
            this.barButtonItem3.Caption = "��������";
            this.barButtonItem3.Id = 1;
            this.barButtonItem3.Name = "barButtonItem3";
            //
            // barButtonItem4
            //
            this.barButtonItem4.Alignment = DevExpress.XtraBars.BarItemLinkAlignment.Right;
            this.barButtonItem4.Caption = "³����";
            this.barButtonItem4.Id = 2;
            this.barButtonItem4.ImageIndex = 1;
            this.barButtonItem4.Name = "barButtonItem4";
            //
            // tabControl
            //
            this.tabControl.Dock = System.Windows.Forms.DockStyle.Fill;
            this.tabControl.Location = new System.Drawing.Point(0, 143);
            this.tabControl.Name = "tabControl";
            this.tabControl.SelectedTabPage = this.waresTabPage;
            this.tabControl.Size = new System.Drawing.Size(884, 409);
            this.tabControl.TabIndex = 9;
            this.tabControl.TabPages.AddRange(new DevExpress.XtraTab.XtraTabPage[] {
            this.waresTabPage,
            this.plansTabPage});
            //
            // waresTabPage
            //
            this.waresTabPage.Controls.Add(this.NomenclatureInfo);
            this.waresTabPage.Controls.Add(this.NomenclatureInfoButtonsBar);
            this.waresTabPage.Name = "waresTabPage";
            this.waresTabPage.Size = new System.Drawing.Size(878, 381);
            this.waresTabPage.Text = "������������";
            //
            // plansTabPage
            //
            this.plansTabPage.Controls.Add(this.Plans);
            this.plansTabPage.Controls.Add(this.PlansBar);
            this.plansTabPage.Name = "plansTabPage";
            this.plansTabPage.Size = new System.Drawing.Size(878, 381);
            this.plansTabPage.Text = "������ ���������";
            //
            // Plans
            //
            this.Plans.Dock = System.Windows.Forms.DockStyle.Fill;
            this.Plans.Location = new System.Drawing.Point(0, 27);
            this.Plans.MainView = this.gridView3;
            this.Plans.MenuManager = this.ribbon;
            this.Plans.Name = "Plans";
            this.Plans.Size = new System.Drawing.Size(878, 354);
            this.Plans.TabIndex = 7;
            this.Plans.ViewCollection.AddRange(new DevExpress.XtraGrid.Views.Base.BaseView[] {
            this.gridView3});
            //
            // gridView3
            //
            this.gridView3.GridControl = this.Plans;
            this.gridView3.Name = "gridView3";
            //
            // barCheckItem1
            //
            this.barCheckItem1.Alignment = DevExpress.XtraBars.BarItemLinkAlignment.Right;
            this.barCheckItem1.Caption = "������������";
            this.barCheckItem1.Id = 20;
            this.barCheckItem1.Name = "barCheckItem1";
            //
            // barCheckItem2
            //
            this.barCheckItem2.Alignment = DevExpress.XtraBars.BarItemLinkAlignment.Right;
            this.barCheckItem2.Caption = "����";
            this.barCheckItem2.Id = 18;
            this.barCheckItem2.Name = "barCheckItem2";
            //
            // barButtonItem5
            //
            this.barButtonItem5.Alignment = DevExpress.XtraBars.BarItemLinkAlignment.Right;
            this.barButtonItem5.Caption = "OK";
            this.barButtonItem5.Id = 0;
            this.barButtonItem5.ImageIndex = 0;
            this.barButtonItem5.Name = "barButtonItem5";
            //
            // barButtonItem6
            //
            this.barButtonItem6.Alignment = DevExpress.XtraBars.BarItemLinkAlignment.Right;
            this.barButtonItem6.Caption = "��������";
            this.barButtonItem6.Id = 1;
            this.barButtonItem6.Name = "barButtonItem6";
            //
            // barButtonItem7
            //
            this.barButtonItem7.Alignment = DevExpress.XtraBars.BarItemLinkAlignment.Right;
            this.barButtonItem7.Caption = "³����";
            this.barButtonItem7.Id = 2;
            this.barButtonItem7.ImageIndex = 1;
            this.barButtonItem7.Name = "barButtonItem7";
            //
            // barButtonItem8
            //
            this.barButtonItem8.Alignment = DevExpress.XtraBars.BarItemLinkAlignment.Right;
            this.barButtonItem8.Caption = "OK";
            this.barButtonItem8.Id = 0;
            this.barButtonItem8.ImageIndex = 0;
            this.barButtonItem8.Name = "barButtonItem8";
            //
            // barButtonItem9
            //
            this.barButtonItem9.Alignment = DevExpress.XtraBars.BarItemLinkAlignment.Right;
            this.barButtonItem9.Caption = "��������";
            this.barButtonItem9.Id = 1;
            this.barButtonItem9.Name = "barButtonItem9";
            //
            // barButtonItem10
            //
            this.barButtonItem10.Alignment = DevExpress.XtraBars.BarItemLinkAlignment.Right;
            this.barButtonItem10.Caption = "³����";
            this.barButtonItem10.Id = 2;
            this.barButtonItem10.ImageIndex = 1;
            this.barButtonItem10.Name = "barButtonItem10";
            //
            // createAcceptanceButtonItem
            //
            this.createAcceptanceButtonItem.Caption = "�������� \"��������� ������\"";
            this.createAcceptanceButtonItem.Id = 18;
            this.createAcceptanceButtonItem.Name = "createAcceptanceButtonItem";
            //
            // AcceptanceOfGoodsItemForm
            //
            this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
            this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
            this.ClientSize = new System.Drawing.Size(884, 603);
            this.Controls.Add(this.tabControl);
            this.Controls.Add(this.panelControl1);
            this.Controls.Add(this.panelControl);
            this.Controls.Add(this.ribbonStatusBar);
            this.Controls.Add(this.ribbon);
            this.KeyPreview = true;
            this.Name = "AcceptanceOfGoodsItemForm";
            this.Ribbon = this.ribbon;
            this.StatusBar = this.ribbonStatusBar;
            this.Text = "Item form";

            this.KeyDown += new System.Windows.Forms.KeyEventHandler(this.Itemform_KeyDown);
            ((System.ComponentModel.ISupportInitialize)(this.ribbon)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.panelControl)).EndInit();
            this.panelControl.ResumeLayout(false);
            this.panelControl.PerformLayout();
            ((System.ComponentModel.ISupportInitialize)(this.date.Properties.VistaTimeProperties)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.date.Properties)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.State.Properties)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.NomenclatureInfo)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.nomenclatureView)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.panelControl1)).EndInit();
            this.panelControl1.ResumeLayout(false);
            this.panelControl1.PerformLayout();
            ((System.ComponentModel.ISupportInitialize)(this.pictureEdit1.Properties)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.tabControl)).EndInit();
            this.tabControl.ResumeLayout(false);
            this.waresTabPage.ResumeLayout(false);
            this.plansTabPage.ResumeLayout(false);
            ((System.ComponentModel.ISupportInitialize)(this.Plans)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.gridView3)).EndInit();
            this.ResumeLayout(false);
        }
 /// <summary>
 /// Required method for Designer support - do not modify
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     this.components = new System.ComponentModel.Container();
     System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(frmMain));
     this.ribbon = new DevExpress.XtraBars.Ribbon.RibbonControl();
     this.applicationMenu = new DevExpress.XtraBars.Ribbon.ApplicationMenu(this.components);
     this.barButtonItem2 = new DevExpress.XtraBars.BarButtonItem();
     this.barButtonItem3 = new DevExpress.XtraBars.BarButtonItem();
     this.bbtnHelp = new DevExpress.XtraBars.BarButtonItem();
     this.barButtonItem4 = new DevExpress.XtraBars.BarButtonItem();
     this.imgToolBarSmall = new DevExpress.Utils.ImageCollection(this.components);
     this.bbtnStartPage = new DevExpress.XtraBars.BarButtonItem();
     this.barMdiChildrenListItem1 = new DevExpress.XtraBars.BarMdiChildrenListItem();
     this.lblAppVersion = new DevExpress.XtraBars.BarStaticItem();
     this.lblRegisteredName = new DevExpress.XtraBars.BarStaticItem();
     this.barButtonItem1 = new DevExpress.XtraBars.BarButtonItem();
     this.barMdiChildrenListItem2 = new DevExpress.XtraBars.BarMdiChildrenListItem();
     this.bbtnManageCards = new DevExpress.XtraBars.BarButtonItem();
     this.bbtnAddCard = new DevExpress.XtraBars.BarButtonItem();
     this.barButtonItem7 = new DevExpress.XtraBars.BarButtonItem();
     this.barButtonItem8 = new DevExpress.XtraBars.BarButtonItem();
     this.barButtonItem9 = new DevExpress.XtraBars.BarButtonItem();
     this.lblFSUIPCConnection = new DevExpress.XtraBars.BarStaticItem();
     this.imgToolBarLarge = new DevExpress.Utils.ImageCollection(this.components);
     this.rpGeneral = new DevExpress.XtraBars.Ribbon.RibbonPage();
     this.ribbonPageGroup1 = new DevExpress.XtraBars.Ribbon.RibbonPageGroup();
     this.ribbonPageGroup3 = new DevExpress.XtraBars.Ribbon.RibbonPageGroup();
     this.ribbonPage2 = new DevExpress.XtraBars.Ribbon.RibbonPage();
     this.ribbonPageGroup2 = new DevExpress.XtraBars.Ribbon.RibbonPageGroup();
     this.ribbonPageGroup4 = new DevExpress.XtraBars.Ribbon.RibbonPageGroup();
     this.ribbonStatusBar = new DevExpress.XtraBars.Ribbon.RibbonStatusBar();
     this.skinDefaultLook = new DevExpress.LookAndFeel.DefaultLookAndFeel(this.components);
     this.xtraTabbedMdiManager = new DevExpress.XtraTabbedMdi.XtraTabbedMdiManager(this.components);
     this.trmCheckUSB = new System.Windows.Forms.Timer(this.components);
     this.tmrUpdateTabIcons = new System.Windows.Forms.Timer(this.components);
     this.notifyIcon1 = new System.Windows.Forms.NotifyIcon(this.components);
     this.alertControl1 = new DevExpress.XtraBars.Alerter.AlertControl(this.components);
     this.tmrCheckFSUIPC = new System.Windows.Forms.Timer(this.components);
     ((System.ComponentModel.ISupportInitialize)(this.ribbon)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.applicationMenu)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.imgToolBarSmall)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.imgToolBarLarge)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.xtraTabbedMdiManager)).BeginInit();
     this.SuspendLayout();
     //
     // ribbon
     //
     this.ribbon.ApplicationButtonDropDownControl = this.applicationMenu;
     this.ribbon.ApplicationButtonText = null;
     //
     //
     //
     this.ribbon.ExpandCollapseItem.Id = 0;
     this.ribbon.ExpandCollapseItem.Name = "";
     this.ribbon.Images = this.imgToolBarSmall;
     this.ribbon.Items.AddRange(new DevExpress.XtraBars.BarItem[] {
     this.ribbon.ExpandCollapseItem,
     this.bbtnStartPage,
     this.barMdiChildrenListItem1,
     this.lblAppVersion,
     this.lblRegisteredName,
     this.barButtonItem1,
     this.barButtonItem2,
     this.barButtonItem3,
     this.barButtonItem4,
     this.barMdiChildrenListItem2,
     this.bbtnManageCards,
     this.bbtnAddCard,
     this.barButtonItem7,
     this.barButtonItem8,
     this.barButtonItem9,
     this.lblFSUIPCConnection,
     this.bbtnHelp});
     this.ribbon.LargeImages = this.imgToolBarLarge;
     this.ribbon.Location = new System.Drawing.Point(0, 0);
     this.ribbon.MaxItemId = 17;
     this.ribbon.MdiMergeStyle = DevExpress.XtraBars.Ribbon.RibbonMdiMergeStyle.Always;
     this.ribbon.Name = "ribbon";
     this.ribbon.PageCategoryAlignment = DevExpress.XtraBars.Ribbon.RibbonPageCategoryAlignment.Right;
     this.ribbon.Pages.AddRange(new DevExpress.XtraBars.Ribbon.RibbonPage[] {
     this.rpGeneral,
     this.ribbonPage2});
     this.ribbon.RibbonStyle = DevExpress.XtraBars.Ribbon.RibbonControlStyle.Office2010;
     this.ribbon.SelectedPage = this.rpGeneral;
     this.ribbon.ShowExpandCollapseButton = DevExpress.Utils.DefaultBoolean.False;
     this.ribbon.ShowToolbarCustomizeItem = false;
     this.ribbon.Size = new System.Drawing.Size(1006, 145);
     this.ribbon.StatusBar = this.ribbonStatusBar;
     this.ribbon.Toolbar.ShowCustomizeItem = false;
     this.ribbon.ToolbarLocation = DevExpress.XtraBars.Ribbon.RibbonQuickAccessToolbarLocation.Hidden;
     this.ribbon.Click += new System.EventHandler(this.ribbon_Click);
     //
     // applicationMenu
     //
     this.applicationMenu.ItemLinks.Add(this.barButtonItem2);
     this.applicationMenu.ItemLinks.Add(this.barButtonItem3);
     this.applicationMenu.ItemLinks.Add(this.bbtnHelp);
     this.applicationMenu.ItemLinks.Add(this.barButtonItem4, true);
     this.applicationMenu.Name = "applicationMenu";
     this.applicationMenu.Ribbon = this.ribbon;
     //
     // barButtonItem2
     //
     this.barButtonItem2.Caption = "About";
     this.barButtonItem2.Id = 6;
     this.barButtonItem2.LargeImageIndex = 3;
     this.barButtonItem2.Name = "barButtonItem2";
     //
     // barButtonItem3
     //
     this.barButtonItem3.Caption = "Check for Updates";
     this.barButtonItem3.Id = 7;
     this.barButtonItem3.LargeImageIndex = 1;
     this.barButtonItem3.Name = "barButtonItem3";
     //
     // bbtnHelp
     //
     this.bbtnHelp.Caption = "Help";
     this.bbtnHelp.Id = 16;
     this.bbtnHelp.LargeImageIndex = 9;
     this.bbtnHelp.Name = "bbtnHelp";
     //
     // barButtonItem4
     //
     this.barButtonItem4.Caption = "Quit";
     this.barButtonItem4.Id = 8;
     this.barButtonItem4.LargeImageIndex = 4;
     this.barButtonItem4.Name = "barButtonItem4";
     //
     // imgToolBarSmall
     //
     this.imgToolBarSmall.ImageStream = ((DevExpress.Utils.ImageCollectionStreamer)(resources.GetObject("imgToolBarSmall.ImageStream")));
     this.imgToolBarSmall.Images.SetKeyName(0, "flag.png");
     this.imgToolBarSmall.Images.SetKeyName(1, "monitor.png");
     this.imgToolBarSmall.Images.SetKeyName(2, "registeredto.png");
     //
     // bbtnStartPage
     //
     this.bbtnStartPage.Caption = "Start Page";
     this.bbtnStartPage.Id = 1;
     this.bbtnStartPage.LargeImageIndex = 0;
     this.bbtnStartPage.LargeWidth = 85;
     this.bbtnStartPage.Name = "bbtnStartPage";
     this.bbtnStartPage.ItemClick += new DevExpress.XtraBars.ItemClickEventHandler(this.barButtonItem1_ItemClick);
     //
     // barMdiChildrenListItem1
     //
     this.barMdiChildrenListItem1.Caption = "barMdiChildrenListItem1";
     this.barMdiChildrenListItem1.Id = 2;
     this.barMdiChildrenListItem1.Name = "barMdiChildrenListItem1";
     //
     // lblAppVersion
     //
     this.lblAppVersion.Alignment = DevExpress.XtraBars.BarItemLinkAlignment.Right;
     this.lblAppVersion.Caption = "{Application Version}";
     this.lblAppVersion.Id = 3;
     this.lblAppVersion.ImageIndex = 1;
     this.lblAppVersion.Name = "lblAppVersion";
     this.lblAppVersion.TextAlignment = System.Drawing.StringAlignment.Near;
     //
     // lblRegisteredName
     //
     this.lblRegisteredName.Caption = "Registered To: {Name}";
     this.lblRegisteredName.Id = 4;
     this.lblRegisteredName.ImageIndex = 2;
     this.lblRegisteredName.Name = "lblRegisteredName";
     this.lblRegisteredName.TextAlignment = System.Drawing.StringAlignment.Near;
     //
     // barButtonItem1
     //
     this.barButtonItem1.Caption = "Check for Updates";
     this.barButtonItem1.Enabled = false;
     this.barButtonItem1.Id = 5;
     this.barButtonItem1.LargeImageIndex = 1;
     this.barButtonItem1.LargeWidth = 85;
     this.barButtonItem1.Name = "barButtonItem1";
     this.barButtonItem1.ItemClick += new DevExpress.XtraBars.ItemClickEventHandler(this.barButtonItem1_ItemClick_1);
     //
     // barMdiChildrenListItem2
     //
     this.barMdiChildrenListItem2.Caption = "Window List";
     this.barMdiChildrenListItem2.Id = 9;
     this.barMdiChildrenListItem2.LargeImageIndex = 2;
     this.barMdiChildrenListItem2.LargeWidth = 85;
     this.barMdiChildrenListItem2.Name = "barMdiChildrenListItem2";
     //
     // bbtnManageCards
     //
     this.bbtnManageCards.Caption = "Manage Cards";
     this.bbtnManageCards.Id = 10;
     this.bbtnManageCards.LargeImageIndex = 5;
     this.bbtnManageCards.LargeWidth = 85;
     this.bbtnManageCards.Name = "bbtnManageCards";
     this.bbtnManageCards.ItemClick += new DevExpress.XtraBars.ItemClickEventHandler(this.bbtnManageCards_ItemClick);
     //
     // bbtnAddCard
     //
     this.bbtnAddCard.Caption = "Add Card";
     this.bbtnAddCard.Id = 11;
     this.bbtnAddCard.LargeImageIndex = 6;
     this.bbtnAddCard.LargeWidth = 85;
     this.bbtnAddCard.Name = "bbtnAddCard";
     this.bbtnAddCard.ItemClick += new DevExpress.XtraBars.ItemClickEventHandler(this.bbtnAddCard_ItemClick);
     //
     // barButtonItem7
     //
     this.barButtonItem7.Caption = "Enter Serial Number";
     this.barButtonItem7.Enabled = false;
     this.barButtonItem7.Id = 12;
     this.barButtonItem7.LargeImageIndex = 7;
     this.barButtonItem7.LargeWidth = 85;
     this.barButtonItem7.Name = "barButtonItem7";
     //
     // barButtonItem8
     //
     this.barButtonItem8.Caption = "Get Serial Number";
     this.barButtonItem8.Enabled = false;
     this.barButtonItem8.Id = 13;
     this.barButtonItem8.LargeImageIndex = 8;
     this.barButtonItem8.LargeWidth = 85;
     this.barButtonItem8.Name = "barButtonItem8";
     //
     // barButtonItem9
     //
     this.barButtonItem9.Caption = "Import from Template";
     this.barButtonItem9.Enabled = false;
     this.barButtonItem9.Id = 14;
     this.barButtonItem9.LargeImageIndex = 6;
     this.barButtonItem9.LargeWidth = 85;
     this.barButtonItem9.Name = "barButtonItem9";
     //
     // lblFSUIPCConnection
     //
     this.lblFSUIPCConnection.Caption = "FSUIPC Connection: Disconnected";
     this.lblFSUIPCConnection.Id = 15;
     this.lblFSUIPCConnection.ImageIndex = 0;
     this.lblFSUIPCConnection.Name = "lblFSUIPCConnection";
     this.lblFSUIPCConnection.TextAlignment = System.Drawing.StringAlignment.Near;
     //
     // imgToolBarLarge
     //
     this.imgToolBarLarge.ImageSize = new System.Drawing.Size(32, 32);
     this.imgToolBarLarge.ImageStream = ((DevExpress.Utils.ImageCollectionStreamer)(resources.GetObject("imgToolBarLarge.ImageStream")));
     this.imgToolBarLarge.Images.SetKeyName(0, "startpage.png");
     this.imgToolBarLarge.Images.SetKeyName(1, "checkforupdates.png");
     this.imgToolBarLarge.Images.SetKeyName(2, "windows.png");
     this.imgToolBarLarge.Images.SetKeyName(3, "about.png");
     this.imgToolBarLarge.Images.SetKeyName(4, "quit.png");
     this.imgToolBarLarge.Images.SetKeyName(5, "editcards.png");
     this.imgToolBarLarge.Images.SetKeyName(6, "addcard.png");
     this.imgToolBarLarge.Images.SetKeyName(7, "enterserial.png");
     this.imgToolBarLarge.Images.SetKeyName(8, "getserial.png");
     this.imgToolBarLarge.Images.SetKeyName(9, "help.png");
     //
     // rpGeneral
     //
     this.rpGeneral.Groups.AddRange(new DevExpress.XtraBars.Ribbon.RibbonPageGroup[] {
     this.ribbonPageGroup1,
     this.ribbonPageGroup3});
     this.rpGeneral.Name = "rpGeneral";
     this.rpGeneral.Text = "General";
     //
     // ribbonPageGroup1
     //
     this.ribbonPageGroup1.ItemLinks.Add(this.bbtnStartPage);
     this.ribbonPageGroup1.ItemLinks.Add(this.bbtnManageCards);
     this.ribbonPageGroup1.ItemLinks.Add(this.barMdiChildrenListItem2);
     this.ribbonPageGroup1.Name = "ribbonPageGroup1";
     this.ribbonPageGroup1.ShowCaptionButton = false;
     this.ribbonPageGroup1.Text = "Window";
     //
     // ribbonPageGroup3
     //
     this.ribbonPageGroup3.ItemLinks.Add(this.bbtnAddCard);
     this.ribbonPageGroup3.ItemLinks.Add(this.barButtonItem9);
     this.ribbonPageGroup3.Name = "ribbonPageGroup3";
     this.ribbonPageGroup3.ShowCaptionButton = false;
     this.ribbonPageGroup3.Text = "Tools";
     //
     // ribbonPage2
     //
     this.ribbonPage2.Groups.AddRange(new DevExpress.XtraBars.Ribbon.RibbonPageGroup[] {
     this.ribbonPageGroup2,
     this.ribbonPageGroup4});
     this.ribbonPage2.Name = "ribbonPage2";
     this.ribbonPage2.Text = "Settings";
     //
     // ribbonPageGroup2
     //
     this.ribbonPageGroup2.ItemLinks.Add(this.barButtonItem1);
     this.ribbonPageGroup2.Name = "ribbonPageGroup2";
     this.ribbonPageGroup2.ShowCaptionButton = false;
     this.ribbonPageGroup2.Text = "Application";
     //
     // ribbonPageGroup4
     //
     this.ribbonPageGroup4.ItemLinks.Add(this.barButtonItem7);
     this.ribbonPageGroup4.ItemLinks.Add(this.barButtonItem8);
     this.ribbonPageGroup4.Name = "ribbonPageGroup4";
     this.ribbonPageGroup4.ShowCaptionButton = false;
     this.ribbonPageGroup4.Text = "Registration";
     //
     // ribbonStatusBar
     //
     this.ribbonStatusBar.ItemLinks.Add(this.lblAppVersion);
     this.ribbonStatusBar.ItemLinks.Add(this.lblRegisteredName);
     this.ribbonStatusBar.ItemLinks.Add(this.lblFSUIPCConnection);
     this.ribbonStatusBar.Location = new System.Drawing.Point(0, 540);
     this.ribbonStatusBar.Name = "ribbonStatusBar";
     this.ribbonStatusBar.Ribbon = this.ribbon;
     this.ribbonStatusBar.Size = new System.Drawing.Size(1006, 31);
     //
     // xtraTabbedMdiManager
     //
     this.xtraTabbedMdiManager.BorderStyle = DevExpress.XtraEditors.Controls.BorderStyles.NoBorder;
     this.xtraTabbedMdiManager.ClosePageButtonShowMode = DevExpress.XtraTab.ClosePageButtonShowMode.InActiveTabPageHeader;
     this.xtraTabbedMdiManager.FloatOnDoubleClick = DevExpress.Utils.DefaultBoolean.False;
     this.xtraTabbedMdiManager.FloatOnDrag = DevExpress.Utils.DefaultBoolean.False;
     this.xtraTabbedMdiManager.HeaderButtons = ((DevExpress.XtraTab.TabButtons)(((DevExpress.XtraTab.TabButtons.Prev | DevExpress.XtraTab.TabButtons.Next)
                 | DevExpress.XtraTab.TabButtons.Close)));
     this.xtraTabbedMdiManager.HeaderButtonsShowMode = DevExpress.XtraTab.TabButtonShowMode.Always;
     this.xtraTabbedMdiManager.MdiParent = this;
     this.xtraTabbedMdiManager.SetNextMdiChildMode = DevExpress.XtraTabbedMdi.SetNextMdiChildMode.Windows;
     this.xtraTabbedMdiManager.ShowHeaderFocus = DevExpress.Utils.DefaultBoolean.True;
     this.xtraTabbedMdiManager.PageAdded += new DevExpress.XtraTabbedMdi.MdiTabPageEventHandler(this.xtraTabbedMdiManager_PageAdded);
     //
     // trmCheckUSB
     //
     this.trmCheckUSB.Enabled = true;
     this.trmCheckUSB.Tick += new System.EventHandler(this.trmCheckUSB_Tick);
     //
     // tmrUpdateTabIcons
     //
     this.tmrUpdateTabIcons.Enabled = true;
     this.tmrUpdateTabIcons.Interval = 1000;
     this.tmrUpdateTabIcons.Tick += new System.EventHandler(this.tmrUpdateTabIcons_Tick);
     //
     // notifyIcon1
     //
     this.notifyIcon1.Text = "Smart Sim Tech Control Panel";
     this.notifyIcon1.Visible = true;
     this.notifyIcon1.DoubleClick += new System.EventHandler(this.notifyIcon1_DoubleClick);
     this.notifyIcon1.MouseDoubleClick += new System.Windows.Forms.MouseEventHandler(this.notifyIcon1_MouseDoubleClick);
     //
     // tmrCheckFSUIPC
     //
     this.tmrCheckFSUIPC.Enabled = true;
     this.tmrCheckFSUIPC.Interval = 1000;
     this.tmrCheckFSUIPC.Tick += new System.EventHandler(this.tmrCheckFSUIPC_Tick);
     //
     // frmMain
     //
     this.AllowFormGlass = DevExpress.Utils.DefaultBoolean.False;
     this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
     this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
     this.ClientSize = new System.Drawing.Size(1006, 571);
     this.Controls.Add(this.ribbonStatusBar);
     this.Controls.Add(this.ribbon);
     this.HelpButton = true;
     this.Icon = ((System.Drawing.Icon)(resources.GetObject("$this.Icon")));
     this.IsMdiContainer = true;
     this.Name = "frmMain";
     this.Ribbon = this.ribbon;
     this.StatusBar = this.ribbonStatusBar;
     this.Text = "Smart Sim Tech Control Panel";
     this.HelpButtonClicked += new System.ComponentModel.CancelEventHandler(this.frmMain_HelpButtonClicked);
     this.Activated += new System.EventHandler(this.frmMain_Activated);
     this.FormClosing += new System.Windows.Forms.FormClosingEventHandler(this.frmMain_FormClosing);
     this.Load += new System.EventHandler(this.frmMain_Load);
     this.SizeChanged += new System.EventHandler(this.frmMain_SizeChanged);
     ((System.ComponentModel.ISupportInitialize)(this.ribbon)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.applicationMenu)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.imgToolBarSmall)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.imgToolBarLarge)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.xtraTabbedMdiManager)).EndInit();
     this.ResumeLayout(false);
 }
 /// <summary>
 /// Required method for Designer support - do not modify
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     this.ribbon = new DevExpress.XtraBars.Ribbon.RibbonControl();
     this.ribbonPage1 = new DevExpress.XtraBars.Ribbon.RibbonPage();
     this.ribbonPageGroup1 = new DevExpress.XtraBars.Ribbon.RibbonPageGroup();
     this.ribbonStatusBar = new DevExpress.XtraBars.Ribbon.RibbonStatusBar();
     this.clientPanel = new DevExpress.XtraEditors.PanelControl();
     this.tableLayoutPanel1 = new System.Windows.Forms.TableLayoutPanel();
     this.pcAddBoard = new DevExpress.XtraEditors.PanelControl();
     this.lblAddBoard = new DevExpress.XtraEditors.LabelControl();
     this.imgAddBoard = new System.Windows.Forms.PictureBox();
     this.pcBoardList = new DevExpress.XtraEditors.PanelControl();
     this.lblBoardList = new DevExpress.XtraEditors.LabelControl();
     this.imgBoardList = new System.Windows.Forms.PictureBox();
     this.pictureBox3 = new System.Windows.Forms.PictureBox();
     this.pcWebBrowser = new DevExpress.XtraEditors.PanelControl();
     this.wbNews = new System.Windows.Forms.WebBrowser();
     this.pcRequestSupport = new DevExpress.XtraEditors.PanelControl();
     this.lblRequestSupport = new DevExpress.XtraEditors.LabelControl();
     this.imgRequestSupport = new System.Windows.Forms.PictureBox();
     this.pcCheckForUpdates = new DevExpress.XtraEditors.PanelControl();
     this.lblCheckForUpdates = new DevExpress.XtraEditors.LabelControl();
     this.imgCheckForUpdates = new System.Windows.Forms.PictureBox();
     ((System.ComponentModel.ISupportInitialize)(this.ribbon)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.clientPanel)).BeginInit();
     this.clientPanel.SuspendLayout();
     this.tableLayoutPanel1.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.pcAddBoard)).BeginInit();
     this.pcAddBoard.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.imgAddBoard)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.pcBoardList)).BeginInit();
     this.pcBoardList.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.imgBoardList)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.pictureBox3)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.pcWebBrowser)).BeginInit();
     this.pcWebBrowser.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.pcRequestSupport)).BeginInit();
     this.pcRequestSupport.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.imgRequestSupport)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.pcCheckForUpdates)).BeginInit();
     this.pcCheckForUpdates.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.imgCheckForUpdates)).BeginInit();
     this.SuspendLayout();
     //
     // ribbon
     //
     this.ribbon.ApplicationButtonText = null;
     this.ribbon.Location = new System.Drawing.Point(0, 0);
     this.ribbon.MaxItemId = 1;
     this.ribbon.Name = "ribbon";
     this.ribbon.Pages.AddRange(new DevExpress.XtraBars.Ribbon.RibbonPage[] {
     this.ribbonPage1});
     this.ribbon.SelectedPage = this.ribbonPage1;
     this.ribbon.Size = new System.Drawing.Size(860, 143);
     this.ribbon.StatusBar = this.ribbonStatusBar;
     //
     // ribbonPage1
     //
     this.ribbonPage1.Groups.AddRange(new DevExpress.XtraBars.Ribbon.RibbonPageGroup[] {
     this.ribbonPageGroup1});
     this.ribbonPage1.Name = "ribbonPage1";
     this.ribbonPage1.Text = "ribbonPage1";
     //
     // ribbonPageGroup1
     //
     this.ribbonPageGroup1.Name = "ribbonPageGroup1";
     this.ribbonPageGroup1.Text = "ribbonPageGroup1";
     //
     // ribbonStatusBar
     //
     this.ribbonStatusBar.Location = new System.Drawing.Point(0, 530);
     this.ribbonStatusBar.Name = "ribbonStatusBar";
     this.ribbonStatusBar.Ribbon = this.ribbon;
     this.ribbonStatusBar.Size = new System.Drawing.Size(860, 25);
     //
     // clientPanel
     //
     this.clientPanel.BorderStyle = DevExpress.XtraEditors.Controls.BorderStyles.NoBorder;
     this.clientPanel.Controls.Add(this.tableLayoutPanel1);
     this.clientPanel.Dock = System.Windows.Forms.DockStyle.Fill;
     this.clientPanel.Location = new System.Drawing.Point(0, 143);
     this.clientPanel.Name = "clientPanel";
     this.clientPanel.Size = new System.Drawing.Size(860, 387);
     this.clientPanel.TabIndex = 2;
     //
     // tableLayoutPanel1
     //
     this.tableLayoutPanel1.ColumnCount = 2;
     this.tableLayoutPanel1.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Absolute, 250F));
     this.tableLayoutPanel1.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 100F));
     this.tableLayoutPanel1.Controls.Add(this.pcAddBoard, 0, 1);
     this.tableLayoutPanel1.Controls.Add(this.pcBoardList, 0, 2);
     this.tableLayoutPanel1.Controls.Add(this.pictureBox3, 0, 0);
     this.tableLayoutPanel1.Controls.Add(this.pcWebBrowser, 1, 1);
     this.tableLayoutPanel1.Controls.Add(this.pcRequestSupport, 0, 3);
     this.tableLayoutPanel1.Controls.Add(this.pcCheckForUpdates, 0, 4);
     this.tableLayoutPanel1.Dock = System.Windows.Forms.DockStyle.Fill;
     this.tableLayoutPanel1.Location = new System.Drawing.Point(0, 0);
     this.tableLayoutPanel1.Name = "tableLayoutPanel1";
     this.tableLayoutPanel1.RowCount = 6;
     this.tableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 100F));
     this.tableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 35F));
     this.tableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 35F));
     this.tableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 35F));
     this.tableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 35F));
     this.tableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 100F));
     this.tableLayoutPanel1.Size = new System.Drawing.Size(860, 387);
     this.tableLayoutPanel1.TabIndex = 0;
     //
     // pcAddBoard
     //
     this.pcAddBoard.Controls.Add(this.lblAddBoard);
     this.pcAddBoard.Controls.Add(this.imgAddBoard);
     this.pcAddBoard.Cursor = System.Windows.Forms.Cursors.Hand;
     this.pcAddBoard.Dock = System.Windows.Forms.DockStyle.Fill;
     this.pcAddBoard.Location = new System.Drawing.Point(3, 103);
     this.pcAddBoard.Name = "pcAddBoard";
     this.pcAddBoard.Size = new System.Drawing.Size(244, 29);
     this.pcAddBoard.TabIndex = 0;
     //
     // lblAddBoard
     //
     this.lblAddBoard.AutoSizeMode = DevExpress.XtraEditors.LabelAutoSizeMode.None;
     this.lblAddBoard.Dock = System.Windows.Forms.DockStyle.Fill;
     this.lblAddBoard.Location = new System.Drawing.Point(27, 2);
     this.lblAddBoard.Name = "lblAddBoard";
     this.lblAddBoard.Padding = new System.Windows.Forms.Padding(5, 0, 0, 0);
     this.lblAddBoard.Size = new System.Drawing.Size(215, 25);
     this.lblAddBoard.TabIndex = 1;
     this.lblAddBoard.Text = "Add New Board";
     //
     // imgAddBoard
     //
     this.imgAddBoard.Dock = System.Windows.Forms.DockStyle.Left;
     this.imgAddBoard.Image = global::SSTCP.Properties.Resources.NewCard;
     this.imgAddBoard.Location = new System.Drawing.Point(2, 2);
     this.imgAddBoard.Name = "imgAddBoard";
     this.imgAddBoard.Size = new System.Drawing.Size(25, 25);
     this.imgAddBoard.TabIndex = 0;
     this.imgAddBoard.TabStop = false;
     //
     // pcBoardList
     //
     this.pcBoardList.Controls.Add(this.lblBoardList);
     this.pcBoardList.Controls.Add(this.imgBoardList);
     this.pcBoardList.Cursor = System.Windows.Forms.Cursors.Hand;
     this.pcBoardList.Dock = System.Windows.Forms.DockStyle.Fill;
     this.pcBoardList.Location = new System.Drawing.Point(3, 138);
     this.pcBoardList.Name = "pcBoardList";
     this.pcBoardList.Size = new System.Drawing.Size(244, 29);
     this.pcBoardList.TabIndex = 1;
     this.pcBoardList.MouseClick += new System.Windows.Forms.MouseEventHandler(this.pcBoardList_MouseClick);
     //
     // lblBoardList
     //
     this.lblBoardList.AutoSizeMode = DevExpress.XtraEditors.LabelAutoSizeMode.None;
     this.lblBoardList.Dock = System.Windows.Forms.DockStyle.Fill;
     this.lblBoardList.Location = new System.Drawing.Point(27, 2);
     this.lblBoardList.Name = "lblBoardList";
     this.lblBoardList.Padding = new System.Windows.Forms.Padding(5, 0, 0, 0);
     this.lblBoardList.Size = new System.Drawing.Size(215, 25);
     this.lblBoardList.TabIndex = 2;
     this.lblBoardList.Text = "Board List";
     this.lblBoardList.MouseClick += new System.Windows.Forms.MouseEventHandler(this.lblBoardList_MouseClick);
     //
     // imgBoardList
     //
     this.imgBoardList.Dock = System.Windows.Forms.DockStyle.Left;
     this.imgBoardList.Image = global::SSTCP.Properties.Resources.EditBoards;
     this.imgBoardList.Location = new System.Drawing.Point(2, 2);
     this.imgBoardList.Name = "imgBoardList";
     this.imgBoardList.Size = new System.Drawing.Size(25, 25);
     this.imgBoardList.TabIndex = 1;
     this.imgBoardList.TabStop = false;
     this.imgBoardList.MouseClick += new System.Windows.Forms.MouseEventHandler(this.imgBoardList_MouseClick);
     //
     // pictureBox3
     //
     this.tableLayoutPanel1.SetColumnSpan(this.pictureBox3, 2);
     this.pictureBox3.Dock = System.Windows.Forms.DockStyle.Fill;
     this.pictureBox3.Location = new System.Drawing.Point(3, 3);
     this.pictureBox3.Name = "pictureBox3";
     this.pictureBox3.Size = new System.Drawing.Size(854, 94);
     this.pictureBox3.TabIndex = 2;
     this.pictureBox3.TabStop = false;
     //
     // pcWebBrowser
     //
     this.pcWebBrowser.Controls.Add(this.wbNews);
     this.pcWebBrowser.Dock = System.Windows.Forms.DockStyle.Fill;
     this.pcWebBrowser.Location = new System.Drawing.Point(253, 103);
     this.pcWebBrowser.Name = "pcWebBrowser";
     this.tableLayoutPanel1.SetRowSpan(this.pcWebBrowser, 5);
     this.pcWebBrowser.Size = new System.Drawing.Size(604, 281);
     this.pcWebBrowser.TabIndex = 3;
     //
     // wbNews
     //
     this.wbNews.Dock = System.Windows.Forms.DockStyle.Fill;
     this.wbNews.Location = new System.Drawing.Point(2, 2);
     this.wbNews.MinimumSize = new System.Drawing.Size(20, 20);
     this.wbNews.Name = "wbNews";
     this.wbNews.Size = new System.Drawing.Size(600, 277);
     this.wbNews.TabIndex = 0;
     //
     // pcRequestSupport
     //
     this.pcRequestSupport.Controls.Add(this.lblRequestSupport);
     this.pcRequestSupport.Controls.Add(this.imgRequestSupport);
     this.pcRequestSupport.Cursor = System.Windows.Forms.Cursors.Hand;
     this.pcRequestSupport.Dock = System.Windows.Forms.DockStyle.Fill;
     this.pcRequestSupport.Location = new System.Drawing.Point(3, 173);
     this.pcRequestSupport.Name = "pcRequestSupport";
     this.pcRequestSupport.Size = new System.Drawing.Size(244, 29);
     this.pcRequestSupport.TabIndex = 4;
     this.pcRequestSupport.MouseClick += new System.Windows.Forms.MouseEventHandler(this.pcRequestSupport_MouseClick);
     //
     // lblRequestSupport
     //
     this.lblRequestSupport.AutoSizeMode = DevExpress.XtraEditors.LabelAutoSizeMode.None;
     this.lblRequestSupport.Dock = System.Windows.Forms.DockStyle.Fill;
     this.lblRequestSupport.Location = new System.Drawing.Point(27, 2);
     this.lblRequestSupport.Name = "lblRequestSupport";
     this.lblRequestSupport.Padding = new System.Windows.Forms.Padding(5, 0, 0, 0);
     this.lblRequestSupport.Size = new System.Drawing.Size(215, 25);
     this.lblRequestSupport.TabIndex = 3;
     this.lblRequestSupport.Text = "Request Support";
     this.lblRequestSupport.MouseClick += new System.Windows.Forms.MouseEventHandler(this.lblRequestSupport_MouseClick);
     //
     // imgRequestSupport
     //
     this.imgRequestSupport.Dock = System.Windows.Forms.DockStyle.Left;
     this.imgRequestSupport.Image = global::SSTCP.Properties.Resources.Contact;
     this.imgRequestSupport.Location = new System.Drawing.Point(2, 2);
     this.imgRequestSupport.Name = "imgRequestSupport";
     this.imgRequestSupport.Size = new System.Drawing.Size(25, 25);
     this.imgRequestSupport.TabIndex = 2;
     this.imgRequestSupport.TabStop = false;
     this.imgRequestSupport.MouseClick += new System.Windows.Forms.MouseEventHandler(this.imgRequestSupport_MouseClick);
     //
     // pcCheckForUpdates
     //
     this.pcCheckForUpdates.Controls.Add(this.lblCheckForUpdates);
     this.pcCheckForUpdates.Controls.Add(this.imgCheckForUpdates);
     this.pcCheckForUpdates.Dock = System.Windows.Forms.DockStyle.Fill;
     this.pcCheckForUpdates.Location = new System.Drawing.Point(3, 208);
     this.pcCheckForUpdates.Name = "pcCheckForUpdates";
     this.pcCheckForUpdates.Size = new System.Drawing.Size(244, 29);
     this.pcCheckForUpdates.TabIndex = 5;
     //
     // lblCheckForUpdates
     //
     this.lblCheckForUpdates.AutoSizeMode = DevExpress.XtraEditors.LabelAutoSizeMode.None;
     this.lblCheckForUpdates.Dock = System.Windows.Forms.DockStyle.Fill;
     this.lblCheckForUpdates.Location = new System.Drawing.Point(27, 2);
     this.lblCheckForUpdates.Name = "lblCheckForUpdates";
     this.lblCheckForUpdates.Padding = new System.Windows.Forms.Padding(5, 0, 0, 0);
     this.lblCheckForUpdates.Size = new System.Drawing.Size(215, 25);
     this.lblCheckForUpdates.TabIndex = 4;
     this.lblCheckForUpdates.Text = "Check for Updates";
     //
     // imgCheckForUpdates
     //
     this.imgCheckForUpdates.Dock = System.Windows.Forms.DockStyle.Left;
     this.imgCheckForUpdates.Image = global::SSTCP.Properties.Resources.Refresh;
     this.imgCheckForUpdates.Location = new System.Drawing.Point(2, 2);
     this.imgCheckForUpdates.Name = "imgCheckForUpdates";
     this.imgCheckForUpdates.Size = new System.Drawing.Size(25, 25);
     this.imgCheckForUpdates.TabIndex = 3;
     this.imgCheckForUpdates.TabStop = false;
     //
     // frmStartPage
     //
     this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
     this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
     this.ClientSize = new System.Drawing.Size(860, 555);
     this.Controls.Add(this.clientPanel);
     this.Controls.Add(this.ribbonStatusBar);
     this.Controls.Add(this.ribbon);
     this.Name = "frmStartPage";
     this.Ribbon = this.ribbon;
     this.StatusBar = this.ribbonStatusBar;
     this.Text = "frmStartPage";
     this.Load += new System.EventHandler(this.frmStartPage_Load);
     ((System.ComponentModel.ISupportInitialize)(this.ribbon)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.clientPanel)).EndInit();
     this.clientPanel.ResumeLayout(false);
     this.tableLayoutPanel1.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.pcAddBoard)).EndInit();
     this.pcAddBoard.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.imgAddBoard)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.pcBoardList)).EndInit();
     this.pcBoardList.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.imgBoardList)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.pictureBox3)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.pcWebBrowser)).EndInit();
     this.pcWebBrowser.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.pcRequestSupport)).EndInit();
     this.pcRequestSupport.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.imgRequestSupport)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.pcCheckForUpdates)).EndInit();
     this.pcCheckForUpdates.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.imgCheckForUpdates)).EndInit();
     this.ResumeLayout(false);
 }
 /// <summary>
 /// Required method for Designer support - do not modify
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     this.ribbonStatusBar = new DevExpress.XtraBars.Ribbon.RibbonStatusBar();
     this.OK = new DevExpress.XtraBars.BarButtonItem();
     this.barButtonItem2 = new DevExpress.XtraBars.BarButtonItem();
     this.cancel = new DevExpress.XtraBars.BarButtonItem();
     this.createAcceptanceButtonItem = new DevExpress.XtraBars.BarButtonItem();
     this.ribbon = new DevExpress.XtraBars.Ribbon.RibbonControl();
     this.StickersBar = new DevExpress.XtraBars.Ribbon.RibbonStatusBar();
     this.NomenclatureInfoButtonsBar = new DevExpress.XtraBars.Ribbon.RibbonStatusBar();
     this.TareInfoButtonsBar = new DevExpress.XtraBars.Ribbon.RibbonStatusBar();
     this.panelControl = new DevExpress.XtraEditors.PanelControl();
     this.SupplierIncomeNumber = new DevExpress.XtraEditors.TextEdit();
     this.labelControl9 = new DevExpress.XtraEditors.LabelControl();
     this.State = new DevExpress.XtraEditors.ComboBoxEdit();
     this.labelControl8 = new DevExpress.XtraEditors.LabelControl();
     this.Car = new Aramis.AramisSearchLookUpEdit();
     this.labelControl7 = new DevExpress.XtraEditors.LabelControl();
     this.Driver = new Aramis.AramisSearchLookUpEdit();
     this.labelControl6 = new DevExpress.XtraEditors.LabelControl();
     this.Carrier = new Aramis.AramisSearchLookUpEdit();
     this.labelControl5 = new DevExpress.XtraEditors.LabelControl();
     this.Contractor = new Aramis.AramisSearchLookUpEdit();
     this.labelControl4 = new DevExpress.XtraEditors.LabelControl();
     this.TypeOfArrival = new DevExpress.XtraEditors.ComboBoxEdit();
     this.labelControl3 = new DevExpress.XtraEditors.LabelControl();
     this.Date = new DevExpress.XtraEditors.DateEdit();
     this.labelControl2 = new DevExpress.XtraEditors.LabelControl();
     this.IncomeNumber = new DevExpress.XtraEditors.TextEdit();
     this.labelControl1 = new DevExpress.XtraEditors.LabelControl();
     this.tabControl1 = new DevExpress.XtraTab.XtraTabControl();
     this.xtraTabPage1 = new DevExpress.XtraTab.XtraTabPage();
     this.NomenclatureInfo = new DevExpress.XtraGrid.GridControl();
     this.gridView = new DevExpress.XtraGrid.Views.Grid.GridView();
     this.xtraTabPage2 = new DevExpress.XtraTab.XtraTabPage();
     this.TareInfo = new DevExpress.XtraGrid.GridControl();
     this.gridView2 = new DevExpress.XtraGrid.Views.Grid.GridView();
     this.stickersTabPage = new DevExpress.XtraTab.XtraTabPage();
     this.Stickers = new DevExpress.XtraGrid.GridControl();
     this.gridView3 = new DevExpress.XtraGrid.Views.Grid.GridView();
     this.panelControl1 = new DevExpress.XtraEditors.PanelControl();
     this.pictureEdit1 = new DevExpress.XtraEditors.PictureEdit();
     this.Info = new DevExpress.XtraEditors.LabelControl();
     this.barButtonItem1 = new DevExpress.XtraBars.BarButtonItem();
     this.barButtonItem3 = new DevExpress.XtraBars.BarButtonItem();
     this.barButtonItem4 = new DevExpress.XtraBars.BarButtonItem();
     this.barButtonItem5 = new DevExpress.XtraBars.BarButtonItem();
     this.barButtonItem6 = new DevExpress.XtraBars.BarButtonItem();
     this.barButtonItem7 = new DevExpress.XtraBars.BarButtonItem();
     ((System.ComponentModel.ISupportInitialize)(this.ribbon)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.panelControl)).BeginInit();
     this.panelControl.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.SupplierIncomeNumber.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.State.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.Car.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.Driver.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.Carrier.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.Contractor.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.TypeOfArrival.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.Date.Properties.VistaTimeProperties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.Date.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.IncomeNumber.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.tabControl1)).BeginInit();
     this.tabControl1.SuspendLayout();
     this.xtraTabPage1.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.NomenclatureInfo)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridView)).BeginInit();
     this.xtraTabPage2.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.TareInfo)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridView2)).BeginInit();
     this.stickersTabPage.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.Stickers)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridView3)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.panelControl1)).BeginInit();
     this.panelControl1.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.pictureEdit1.Properties)).BeginInit();
     this.SuspendLayout();
     //
     // ribbonStatusBar
     //
     this.ribbonStatusBar.ItemLinks.Add(this.OK);
     this.ribbonStatusBar.ItemLinks.Add(this.barButtonItem2);
     this.ribbonStatusBar.ItemLinks.Add(this.cancel);
     this.ribbonStatusBar.ItemLinks.Add(this.createAcceptanceButtonItem);
     this.ribbonStatusBar.Location = new System.Drawing.Point(0, 485);
     this.ribbonStatusBar.Name = "ribbonStatusBar";
     this.ribbonStatusBar.Ribbon = this.ribbon;
     this.ribbonStatusBar.Size = new System.Drawing.Size(903, 23);
     //
     // OK
     //
     this.OK.Alignment = DevExpress.XtraBars.BarItemLinkAlignment.Right;
     this.OK.Caption = "OK";
     this.OK.Id = 0;
     this.OK.ImageIndex = 0;
     this.OK.Name = "OK";
     this.OK.ItemClick += new DevExpress.XtraBars.ItemClickEventHandler(this.OK_ItemClick);
     //
     // barButtonItem2
     //
     this.barButtonItem2.Alignment = DevExpress.XtraBars.BarItemLinkAlignment.Right;
     this.barButtonItem2.Caption = "��������";
     this.barButtonItem2.Id = 1;
     this.barButtonItem2.Name = "barButtonItem2";
     this.barButtonItem2.ItemClick += new DevExpress.XtraBars.ItemClickEventHandler(this.Write_ItemClick);
     //
     // cancel
     //
     this.cancel.Alignment = DevExpress.XtraBars.BarItemLinkAlignment.Right;
     this.cancel.Caption = "³����";
     this.cancel.Id = 2;
     this.cancel.ImageIndex = 1;
     this.cancel.Name = "cancel";
     this.cancel.ItemClick += new DevExpress.XtraBars.ItemClickEventHandler(this.cancel_ItemClick);
     //
     // createAcceptanceButtonItem
     //
     this.createAcceptanceButtonItem.Caption = "�������� \"��������� ������\"";
     this.createAcceptanceButtonItem.Id = 18;
     this.createAcceptanceButtonItem.Name = "createAcceptanceButtonItem";
     this.createAcceptanceButtonItem.ItemClick += new DevExpress.XtraBars.ItemClickEventHandler(this.createAcceptanceButtonItem_ItemClick);
     //
     // ribbon
     //
     this.ribbon.ApplicationButtonText = null;
     this.ribbon.ExpandCollapseItem.Id = 0;
     this.ribbon.ExpandCollapseItem.Name = "";
     this.ribbon.Items.AddRange(new DevExpress.XtraBars.BarItem[] {
     this.ribbon.ExpandCollapseItem,
     this.OK,
     this.barButtonItem2,
     this.cancel,
     this.createAcceptanceButtonItem});
     this.ribbon.Location = new System.Drawing.Point(0, 0);
     this.ribbon.MaxItemId = 19;
     this.ribbon.Name = "ribbon";
     this.ribbon.Size = new System.Drawing.Size(903, 54);
     this.ribbon.StatusBar = this.TareInfoButtonsBar;
     this.ribbon.ToolbarLocation = DevExpress.XtraBars.Ribbon.RibbonQuickAccessToolbarLocation.Above;
     //
     // StickersBar
     //
     this.StickersBar.Dock = System.Windows.Forms.DockStyle.Top;
     this.StickersBar.Location = new System.Drawing.Point(0, 0);
     this.StickersBar.Name = "StickersBar";
     this.StickersBar.Ribbon = this.ribbon;
     this.StickersBar.Size = new System.Drawing.Size(897, 27);
     //
     // NomenclatureInfoButtonsBar
     //
     this.NomenclatureInfoButtonsBar.Dock = System.Windows.Forms.DockStyle.Top;
     this.NomenclatureInfoButtonsBar.Location = new System.Drawing.Point(0, 0);
     this.NomenclatureInfoButtonsBar.Name = "NomenclatureInfoButtonsBar";
     this.NomenclatureInfoButtonsBar.Ribbon = this.ribbon;
     this.NomenclatureInfoButtonsBar.Size = new System.Drawing.Size(898, 23);
     //
     // TareInfoButtonsBar
     //
     this.TareInfoButtonsBar.Dock = System.Windows.Forms.DockStyle.Top;
     this.TareInfoButtonsBar.Location = new System.Drawing.Point(0, 0);
     this.TareInfoButtonsBar.Name = "TareInfoButtonsBar";
     this.TareInfoButtonsBar.Ribbon = this.ribbon;
     this.TareInfoButtonsBar.Size = new System.Drawing.Size(897, 27);
     //
     // panelControl
     //
     this.panelControl.BorderStyle = DevExpress.XtraEditors.Controls.BorderStyles.NoBorder;
     this.panelControl.Controls.Add(this.SupplierIncomeNumber);
     this.panelControl.Controls.Add(this.labelControl9);
     this.panelControl.Controls.Add(this.State);
     this.panelControl.Controls.Add(this.labelControl8);
     this.panelControl.Controls.Add(this.Car);
     this.panelControl.Controls.Add(this.labelControl7);
     this.panelControl.Controls.Add(this.Driver);
     this.panelControl.Controls.Add(this.labelControl6);
     this.panelControl.Controls.Add(this.Carrier);
     this.panelControl.Controls.Add(this.labelControl5);
     this.panelControl.Controls.Add(this.Contractor);
     this.panelControl.Controls.Add(this.labelControl4);
     this.panelControl.Controls.Add(this.TypeOfArrival);
     this.panelControl.Controls.Add(this.labelControl3);
     this.panelControl.Controls.Add(this.Date);
     this.panelControl.Controls.Add(this.labelControl2);
     this.panelControl.Controls.Add(this.IncomeNumber);
     this.panelControl.Controls.Add(this.labelControl1);
     this.panelControl.Dock = System.Windows.Forms.DockStyle.Top;
     this.panelControl.Location = new System.Drawing.Point(0, 54);
     this.panelControl.Name = "panelControl";
     this.panelControl.Size = new System.Drawing.Size(903, 84);
     this.panelControl.TabIndex = 2;
     //
     // SupplierIncomeNumber
     //
     this.SupplierIncomeNumber.Location = new System.Drawing.Point(164, 57);
     this.SupplierIncomeNumber.MenuManager = this.ribbon;
     this.SupplierIncomeNumber.Name = "SupplierIncomeNumber";
     this.SupplierIncomeNumber.Size = new System.Drawing.Size(167, 20);
     this.SupplierIncomeNumber.TabIndex = 17;
     //
     // labelControl9
     //
     this.labelControl9.Location = new System.Drawing.Point(7, 61);
     this.labelControl9.Name = "labelControl9";
     this.labelControl9.Size = new System.Drawing.Size(148, 13);
     this.labelControl9.TabIndex = 18;
     this.labelControl9.Text = "� �������� �������������";
     //
     // State
     //
     this.State.Location = new System.Drawing.Point(674, 6);
     this.State.MenuManager = this.ribbon;
     this.State.Name = "State";
     this.State.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.State.Size = new System.Drawing.Size(209, 20);
     this.State.TabIndex = 15;
     //
     // labelControl8
     //
     this.labelControl8.Location = new System.Drawing.Point(585, 9);
     this.labelControl8.Name = "labelControl8";
     this.labelControl8.Size = new System.Drawing.Size(82, 13);
     this.labelControl8.TabIndex = 16;
     this.labelControl8.Text = "���� ���������";
     //
     // Car
     //
     this.Car.BaseFilter = null;
     this.Car.Location = new System.Drawing.Point(674, 31);
     this.Car.MenuManager = this.ribbon;
     this.Car.Name = "Car";
     this.Car.Properties.BaseFilter = null;
     this.Car.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(),
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Delete)});
     this.Car.Properties.CloseUpKey = new DevExpress.Utils.KeyShortcut(System.Windows.Forms.Keys.None);
     this.Car.Properties.NullText = "";
     this.Car.Size = new System.Drawing.Size(209, 20);
     this.Car.TabIndex = 6;
     //
     // labelControl7
     //
     this.labelControl7.Location = new System.Drawing.Point(585, 35);
     this.labelControl7.Name = "labelControl7";
     this.labelControl7.Size = new System.Drawing.Size(40, 13);
     this.labelControl7.TabIndex = 12;
     this.labelControl7.Text = "������";
     //
     // Driver
     //
     this.Driver.BaseFilter = null;
     this.Driver.Location = new System.Drawing.Point(407, 57);
     this.Driver.MenuManager = this.ribbon;
     this.Driver.Name = "Driver";
     this.Driver.Properties.BaseFilter = null;
     this.Driver.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(),
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Delete)});
     this.Driver.Properties.CloseUpKey = new DevExpress.Utils.KeyShortcut(System.Windows.Forms.Keys.None);
     this.Driver.Properties.NullText = "";
     this.Driver.Size = new System.Drawing.Size(172, 20);
     this.Driver.TabIndex = 3;
     //
     // labelControl6
     //
     this.labelControl6.Location = new System.Drawing.Point(341, 61);
     this.labelControl6.Name = "labelControl6";
     this.labelControl6.Size = new System.Drawing.Size(28, 13);
     this.labelControl6.TabIndex = 10;
     this.labelControl6.Text = "����";
     //
     // Carrier
     //
     this.Carrier.BaseFilter = null;
     this.Carrier.Location = new System.Drawing.Point(407, 31);
     this.Carrier.MenuManager = this.ribbon;
     this.Carrier.Name = "Carrier";
     this.Carrier.Properties.BaseFilter = null;
     this.Carrier.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(),
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Delete)});
     this.Carrier.Properties.CloseUpKey = new DevExpress.Utils.KeyShortcut(System.Windows.Forms.Keys.None);
     this.Carrier.Properties.NullText = "";
     this.Carrier.Size = new System.Drawing.Size(172, 20);
     this.Carrier.TabIndex = 5;
     //
     // labelControl5
     //
     this.labelControl5.Location = new System.Drawing.Point(341, 35);
     this.labelControl5.Name = "labelControl5";
     this.labelControl5.Size = new System.Drawing.Size(57, 13);
     this.labelControl5.TabIndex = 8;
     this.labelControl5.Text = "���������";
     //
     // Contractor
     //
     this.Contractor.BaseFilter = null;
     this.Contractor.Location = new System.Drawing.Point(93, 31);
     this.Contractor.MenuManager = this.ribbon;
     this.Contractor.Name = "Contractor";
     this.Contractor.Properties.BaseFilter = null;
     this.Contractor.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(),
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Delete)});
     this.Contractor.Properties.CloseUpKey = new DevExpress.Utils.KeyShortcut(System.Windows.Forms.Keys.None);
     this.Contractor.Properties.NullText = "";
     this.Contractor.Size = new System.Drawing.Size(238, 20);
     this.Contractor.TabIndex = 2;
     //
     // labelControl4
     //
     this.labelControl4.Location = new System.Drawing.Point(7, 35);
     this.labelControl4.Name = "labelControl4";
     this.labelControl4.Size = new System.Drawing.Size(60, 13);
     this.labelControl4.TabIndex = 6;
     this.labelControl4.Text = "����������";
     //
     // TypeOfArrival
     //
     this.TypeOfArrival.Location = new System.Drawing.Point(407, 5);
     this.TypeOfArrival.MenuManager = this.ribbon;
     this.TypeOfArrival.Name = "TypeOfArrival";
     this.TypeOfArrival.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.TypeOfArrival.Size = new System.Drawing.Size(172, 20);
     this.TypeOfArrival.TabIndex = 4;
     //
     // labelControl3
     //
     this.labelControl3.Location = new System.Drawing.Point(341, 8);
     this.labelControl3.Name = "labelControl3";
     this.labelControl3.Size = new System.Drawing.Size(63, 13);
     this.labelControl3.TabIndex = 4;
     this.labelControl3.Text = "��� �������";
     //
     // Date
     //
     this.Date.EditValue = null;
     this.Date.Location = new System.Drawing.Point(231, 5);
     this.Date.MenuManager = this.ribbon;
     this.Date.Name = "Date";
     this.Date.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.Date.Properties.VistaTimeProperties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton()});
     this.Date.Size = new System.Drawing.Size(100, 20);
     this.Date.TabIndex = 1;
     //
     // labelControl2
     //
     this.labelControl2.Location = new System.Drawing.Point(196, 8);
     this.labelControl2.Name = "labelControl2";
     this.labelControl2.Size = new System.Drawing.Size(29, 13);
     this.labelControl2.TabIndex = 2;
     this.labelControl2.Text = "���� ";
     //
     // IncomeNumber
     //
     this.IncomeNumber.Location = new System.Drawing.Point(93, 5);
     this.IncomeNumber.MenuManager = this.ribbon;
     this.IncomeNumber.Name = "IncomeNumber";
     this.IncomeNumber.Size = new System.Drawing.Size(100, 20);
     this.IncomeNumber.TabIndex = 0;
     //
     // labelControl1
     //
     this.labelControl1.Location = new System.Drawing.Point(7, 8);
     this.labelControl1.Name = "labelControl1";
     this.labelControl1.Size = new System.Drawing.Size(84, 13);
     this.labelControl1.TabIndex = 0;
     this.labelControl1.Text = "� �������� 1�";
     //
     // tabControl1
     //
     this.tabControl1.Dock = System.Windows.Forms.DockStyle.Fill;
     this.tabControl1.Location = new System.Drawing.Point(0, 138);
     this.tabControl1.Name = "tabControl1";
     this.tabControl1.SelectedTabPage = this.xtraTabPage1;
     this.tabControl1.Size = new System.Drawing.Size(903, 327);
     this.tabControl1.TabIndex = 3;
     this.tabControl1.TabPages.AddRange(new DevExpress.XtraTab.XtraTabPage[] {
     this.xtraTabPage1,
     this.xtraTabPage2,
     this.stickersTabPage});
     //
     // xtraTabPage1
     //
     this.xtraTabPage1.Controls.Add(this.NomenclatureInfo);
     this.xtraTabPage1.Controls.Add(this.NomenclatureInfoButtonsBar);
     this.xtraTabPage1.Name = "xtraTabPage1";
     this.xtraTabPage1.Size = new System.Drawing.Size(898, 301);
     this.xtraTabPage1.Text = "������������";
     //
     // NomenclatureInfo
     //
     this.NomenclatureInfo.Dock = System.Windows.Forms.DockStyle.Fill;
     this.NomenclatureInfo.Location = new System.Drawing.Point(0, 23);
     this.NomenclatureInfo.MainView = this.gridView;
     this.NomenclatureInfo.MenuManager = this.ribbon;
     this.NomenclatureInfo.Name = "NomenclatureInfo";
     this.NomenclatureInfo.Size = new System.Drawing.Size(898, 278);
     this.NomenclatureInfo.TabIndex = 1;
     this.NomenclatureInfo.ViewCollection.AddRange(new DevExpress.XtraGrid.Views.Base.BaseView[] {
     this.gridView});
     //
     // gridView
     //
     this.gridView.GridControl = this.NomenclatureInfo;
     this.gridView.Name = "gridView";
     //
     // xtraTabPage2
     //
     this.xtraTabPage2.Controls.Add(this.TareInfo);
     this.xtraTabPage2.Controls.Add(this.TareInfoButtonsBar);
     this.xtraTabPage2.Name = "xtraTabPage2";
     this.xtraTabPage2.Size = new System.Drawing.Size(897, 296);
     this.xtraTabPage2.Text = "����";
     //
     // TareInfo
     //
     this.TareInfo.Dock = System.Windows.Forms.DockStyle.Fill;
     this.TareInfo.Location = new System.Drawing.Point(0, 27);
     this.TareInfo.MainView = this.gridView2;
     this.TareInfo.MenuManager = this.ribbon;
     this.TareInfo.Name = "TareInfo";
     this.TareInfo.Size = new System.Drawing.Size(897, 269);
     this.TareInfo.TabIndex = 3;
     this.TareInfo.ViewCollection.AddRange(new DevExpress.XtraGrid.Views.Base.BaseView[] {
     this.gridView2});
     //
     // gridView2
     //
     this.gridView2.GridControl = this.TareInfo;
     this.gridView2.Name = "gridView2";
     //
     // stickersTabPage
     //
     this.stickersTabPage.Controls.Add(this.Stickers);
     this.stickersTabPage.Controls.Add(this.StickersBar);
     this.stickersTabPage.Name = "stickersTabPage";
     this.stickersTabPage.Size = new System.Drawing.Size(897, 296);
     this.stickersTabPage.Text = "��������";
     //
     // Stickers
     //
     this.Stickers.Dock = System.Windows.Forms.DockStyle.Fill;
     this.Stickers.Location = new System.Drawing.Point(0, 27);
     this.Stickers.MainView = this.gridView3;
     this.Stickers.MenuManager = this.ribbon;
     this.Stickers.Name = "Stickers";
     this.Stickers.Size = new System.Drawing.Size(897, 269);
     this.Stickers.TabIndex = 5;
     this.Stickers.ViewCollection.AddRange(new DevExpress.XtraGrid.Views.Base.BaseView[] {
     this.gridView3});
     //
     // gridView3
     //
     this.gridView3.GridControl = this.Stickers;
     this.gridView3.Name = "gridView3";
     //
     // panelControl1
     //
     this.panelControl1.BorderStyle = DevExpress.XtraEditors.Controls.BorderStyles.NoBorder;
     this.panelControl1.Controls.Add(this.pictureEdit1);
     this.panelControl1.Controls.Add(this.Info);
     this.panelControl1.Dock = System.Windows.Forms.DockStyle.Bottom;
     this.panelControl1.Location = new System.Drawing.Point(0, 465);
     this.panelControl1.Name = "panelControl1";
     this.panelControl1.Size = new System.Drawing.Size(903, 20);
     this.panelControl1.TabIndex = 0;
     //
     // pictureEdit1
     //
     this.pictureEdit1.Dock = System.Windows.Forms.DockStyle.Left;
     this.pictureEdit1.EditValue = global::FMCG.Properties.Resources._1317825614_information_balloon;
     this.pictureEdit1.Location = new System.Drawing.Point(0, 0);
     this.pictureEdit1.MenuManager = this.ribbon;
     this.pictureEdit1.Name = "pictureEdit1";
     this.pictureEdit1.Properties.Appearance.BackColor = System.Drawing.Color.Transparent;
     this.pictureEdit1.Properties.Appearance.Options.UseBackColor = true;
     this.pictureEdit1.Properties.BorderStyle = DevExpress.XtraEditors.Controls.BorderStyles.NoBorder;
     this.pictureEdit1.Size = new System.Drawing.Size(20, 20);
     this.pictureEdit1.TabIndex = 3;
     this.pictureEdit1.ToolTip = "��� ������� ��������� �������� �� ���� ���������� �����������";
     this.pictureEdit1.ToolTipIconType = DevExpress.Utils.ToolTipIconType.Information;
     this.pictureEdit1.ToolTipTitle = "������:";
     //
     // Info
     //
     this.Info.Appearance.ForeColor = System.Drawing.Color.Gray;
     this.Info.Location = new System.Drawing.Point(24, 3);
     this.Info.Name = "Info";
     this.Info.Size = new System.Drawing.Size(12, 13);
     this.Info.TabIndex = 1;
     this.Info.Text = "...";
     //
     // barButtonItem1
     //
     this.barButtonItem1.Alignment = DevExpress.XtraBars.BarItemLinkAlignment.Right;
     this.barButtonItem1.Caption = "OK";
     this.barButtonItem1.Id = 0;
     this.barButtonItem1.ImageIndex = 0;
     this.barButtonItem1.Name = "barButtonItem1";
     //
     // barButtonItem3
     //
     this.barButtonItem3.Alignment = DevExpress.XtraBars.BarItemLinkAlignment.Right;
     this.barButtonItem3.Caption = "��������";
     this.barButtonItem3.Id = 1;
     this.barButtonItem3.Name = "barButtonItem3";
     //
     // barButtonItem4
     //
     this.barButtonItem4.Alignment = DevExpress.XtraBars.BarItemLinkAlignment.Right;
     this.barButtonItem4.Caption = "³����";
     this.barButtonItem4.Id = 2;
     this.barButtonItem4.ImageIndex = 1;
     this.barButtonItem4.Name = "barButtonItem4";
     //
     // barButtonItem5
     //
     this.barButtonItem5.Alignment = DevExpress.XtraBars.BarItemLinkAlignment.Right;
     this.barButtonItem5.Caption = "OK";
     this.barButtonItem5.Id = 0;
     this.barButtonItem5.ImageIndex = 0;
     this.barButtonItem5.Name = "barButtonItem5";
     //
     // barButtonItem6
     //
     this.barButtonItem6.Alignment = DevExpress.XtraBars.BarItemLinkAlignment.Right;
     this.barButtonItem6.Caption = "��������";
     this.barButtonItem6.Id = 1;
     this.barButtonItem6.Name = "barButtonItem6";
     //
     // barButtonItem7
     //
     this.barButtonItem7.Alignment = DevExpress.XtraBars.BarItemLinkAlignment.Right;
     this.barButtonItem7.Caption = "³����";
     this.barButtonItem7.Id = 2;
     this.barButtonItem7.ImageIndex = 1;
     this.barButtonItem7.Name = "barButtonItem7";
     //
     // AcceptancePlanItemForm
     //
     this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
     this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
     this.ClientSize = new System.Drawing.Size(903, 508);
     this.Controls.Add(this.tabControl1);
     this.Controls.Add(this.panelControl1);
     this.Controls.Add(this.panelControl);
     this.Controls.Add(this.ribbonStatusBar);
     this.Controls.Add(this.ribbon);
     this.KeyPreview = true;
     this.Name = "AcceptancePlanItemForm";
     this.Ribbon = this.ribbon;
     this.StatusBar = this.ribbonStatusBar;
     this.Text = "Item form";
     this.KeyDown += new System.Windows.Forms.KeyEventHandler(this.Itemform_KeyDown);
     ((System.ComponentModel.ISupportInitialize)(this.ribbon)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.panelControl)).EndInit();
     this.panelControl.ResumeLayout(false);
     this.panelControl.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(this.SupplierIncomeNumber.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.State.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.Car.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.Driver.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.Carrier.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.Contractor.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.TypeOfArrival.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.Date.Properties.VistaTimeProperties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.Date.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.IncomeNumber.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.tabControl1)).EndInit();
     this.tabControl1.ResumeLayout(false);
     this.xtraTabPage1.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.NomenclatureInfo)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridView)).EndInit();
     this.xtraTabPage2.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.TareInfo)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridView2)).EndInit();
     this.stickersTabPage.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.Stickers)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridView3)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.panelControl1)).EndInit();
     this.panelControl1.ResumeLayout(false);
     this.panelControl1.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(this.pictureEdit1.Properties)).EndInit();
     this.ResumeLayout(false);
 }
 /// <summary>
 /// Required method for Designer support - do not modify
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     this.components = new System.ComponentModel.Container();
     this.xpCollection1 = new DevExpress.Xpo.XPCollection();
     this.tmrReload = new System.Windows.Forms.Timer(this.components);
     this.popupMenu1 = new DevExpress.XtraBars.PopupMenu(this.components);
     this.ribbon = new DevExpress.XtraBars.Ribbon.RibbonControl();
     this.bbtnClose = new DevExpress.XtraBars.BarButtonItem();
     this.bbtnNewCard = new DevExpress.XtraBars.BarButtonItem();
     this.bbtnDeleteCard = new DevExpress.XtraBars.BarButtonItem();
     this.rpGeneral = new DevExpress.XtraBars.Ribbon.RibbonPage();
     this.ribbonPageGroup1 = new DevExpress.XtraBars.Ribbon.RibbonPageGroup();
     this.gridControl1 = new DevExpress.XtraGrid.GridControl();
     this.gridView1 = new DevExpress.XtraGrid.Views.Grid.GridView();
     this.colOid = new DevExpress.XtraGrid.Columns.GridColumn();
     this.colCardModel = new DevExpress.XtraGrid.Columns.GridColumn();
     this.colCardRevision = new DevExpress.XtraGrid.Columns.GridColumn();
     this.colCardSerialNumber = new DevExpress.XtraGrid.Columns.GridColumn();
     this.colCardName = new DevExpress.XtraGrid.Columns.GridColumn();
     this.colCardDescription = new DevExpress.XtraGrid.Columns.GridColumn();
     this.clientPanel = new DevExpress.XtraEditors.PanelControl();
     ((System.ComponentModel.ISupportInitialize)(this.xpCollection1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.popupMenu1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.ribbon)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridControl1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridView1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.clientPanel)).BeginInit();
     this.clientPanel.SuspendLayout();
     this.SuspendLayout();
     //
     // xpCollection1
     //
     this.xpCollection1.BindingBehavior = DevExpress.Xpo.CollectionBindingBehavior.AllowRemove;
     this.xpCollection1.ObjectType = typeof(SSTCP.Database.Cards);
     //
     // tmrReload
     //
     this.tmrReload.Enabled = true;
     this.tmrReload.Interval = 500;
     this.tmrReload.Tick += new System.EventHandler(this.tmrReload_Tick);
     //
     // popupMenu1
     //
     this.popupMenu1.ItemLinks.Add(this.bbtnDeleteCard);
     this.popupMenu1.Name = "popupMenu1";
     this.popupMenu1.Ribbon = this.ribbon;
     //
     // ribbon
     //
     this.ribbon.ApplicationButtonText = null;
     this.ribbon.Items.AddRange(new DevExpress.XtraBars.BarItem[] {
     this.bbtnClose,
     this.bbtnNewCard,
     this.bbtnDeleteCard});
     this.ribbon.Location = new System.Drawing.Point(0, 0);
     this.ribbon.MaxItemId = 4;
     this.ribbon.Name = "ribbon";
     this.ribbon.Pages.AddRange(new DevExpress.XtraBars.Ribbon.RibbonPage[] {
     this.rpGeneral});
     this.ribbon.SelectedPage = this.rpGeneral;
     this.ribbon.Size = new System.Drawing.Size(793, 143);
     //
     // bbtnClose
     //
     this.bbtnClose.Caption = "Close";
     this.bbtnClose.Id = 1;
     this.bbtnClose.Name = "bbtnClose";
     this.bbtnClose.ItemClick += new DevExpress.XtraBars.ItemClickEventHandler(this.bbtnClose_ItemClick);
     //
     // bbtnNewCard
     //
     this.bbtnNewCard.Caption = "New Card";
     this.bbtnNewCard.Id = 2;
     this.bbtnNewCard.Name = "bbtnNewCard";
     this.bbtnNewCard.ItemClick += new DevExpress.XtraBars.ItemClickEventHandler(this.bbtnNewCard_ItemClick);
     //
     // bbtnDeleteCard
     //
     this.bbtnDeleteCard.Caption = "Delete Card";
     this.bbtnDeleteCard.Id = 3;
     this.bbtnDeleteCard.Name = "bbtnDeleteCard";
     //
     // rpGeneral
     //
     this.rpGeneral.Groups.AddRange(new DevExpress.XtraBars.Ribbon.RibbonPageGroup[] {
     this.ribbonPageGroup1});
     this.rpGeneral.Name = "rpGeneral";
     this.rpGeneral.Text = "General";
     //
     // ribbonPageGroup1
     //
     this.ribbonPageGroup1.ItemLinks.Add(this.bbtnClose);
     this.ribbonPageGroup1.ItemLinks.Add(this.bbtnNewCard);
     this.ribbonPageGroup1.Name = "ribbonPageGroup1";
     this.ribbonPageGroup1.ShowCaptionButton = false;
     this.ribbonPageGroup1.Text = "File";
     //
     // gridControl1
     //
     this.gridControl1.DataSource = this.xpCollection1;
     this.gridControl1.Dock = System.Windows.Forms.DockStyle.Fill;
     this.gridControl1.Location = new System.Drawing.Point(0, 0);
     this.gridControl1.MainView = this.gridView1;
     this.gridControl1.MenuManager = this.ribbon;
     this.gridControl1.Name = "gridControl1";
     this.gridControl1.Size = new System.Drawing.Size(793, 380);
     this.gridControl1.TabIndex = 0;
     this.gridControl1.ViewCollection.AddRange(new DevExpress.XtraGrid.Views.Base.BaseView[] {
     this.gridView1});
     //
     // gridView1
     //
     this.gridView1.Columns.AddRange(new DevExpress.XtraGrid.Columns.GridColumn[] {
     this.colOid,
     this.colCardModel,
     this.colCardRevision,
     this.colCardSerialNumber,
     this.colCardName,
     this.colCardDescription});
     this.gridView1.FocusRectStyle = DevExpress.XtraGrid.Views.Grid.DrawFocusRectStyle.None;
     this.gridView1.GridControl = this.gridControl1;
     this.gridView1.Name = "gridView1";
     this.gridView1.OptionsBehavior.AllowAddRows = DevExpress.Utils.DefaultBoolean.False;
     this.gridView1.OptionsBehavior.AllowDeleteRows = DevExpress.Utils.DefaultBoolean.False;
     this.gridView1.OptionsBehavior.Editable = false;
     this.gridView1.OptionsBehavior.ReadOnly = true;
     this.gridView1.OptionsCustomization.AllowColumnMoving = false;
     this.gridView1.OptionsCustomization.AllowColumnResizing = false;
     this.gridView1.OptionsCustomization.AllowFilter = false;
     this.gridView1.OptionsCustomization.AllowGroup = false;
     this.gridView1.OptionsCustomization.AllowQuickHideColumns = false;
     this.gridView1.OptionsSelection.EnableAppearanceFocusedCell = false;
     this.gridView1.OptionsView.EnableAppearanceEvenRow = true;
     this.gridView1.OptionsView.EnableAppearanceOddRow = true;
     this.gridView1.OptionsView.RowAutoHeight = true;
     this.gridView1.OptionsView.ShowGroupExpandCollapseButtons = false;
     this.gridView1.OptionsView.ShowGroupPanel = false;
     this.gridView1.OptionsView.ShowIndicator = false;
     this.gridView1.SortInfo.AddRange(new DevExpress.XtraGrid.Columns.GridColumnSortInfo[] {
     new DevExpress.XtraGrid.Columns.GridColumnSortInfo(this.colCardModel, DevExpress.Data.ColumnSortOrder.Ascending)});
     this.gridView1.ShowGridMenu += new DevExpress.XtraGrid.Views.Grid.GridMenuEventHandler(this.gridView1_ShowGridMenu);
     //
     // colOid
     //
     this.colOid.FieldName = "Oid";
     this.colOid.Name = "colOid";
     //
     // colCardModel
     //
     this.colCardModel.FieldName = "CardModel";
     this.colCardModel.Name = "colCardModel";
     this.colCardModel.SortMode = DevExpress.XtraGrid.ColumnSortMode.DisplayText;
     this.colCardModel.Visible = true;
     this.colCardModel.VisibleIndex = 0;
     //
     // colCardRevision
     //
     this.colCardRevision.FieldName = "CardRevision";
     this.colCardRevision.Name = "colCardRevision";
     this.colCardRevision.Visible = true;
     this.colCardRevision.VisibleIndex = 1;
     //
     // colCardSerialNumber
     //
     this.colCardSerialNumber.FieldName = "CardSerialNumber";
     this.colCardSerialNumber.Name = "colCardSerialNumber";
     this.colCardSerialNumber.Visible = true;
     this.colCardSerialNumber.VisibleIndex = 2;
     //
     // colCardName
     //
     this.colCardName.FieldName = "CardName";
     this.colCardName.Name = "colCardName";
     this.colCardName.Visible = true;
     this.colCardName.VisibleIndex = 3;
     //
     // colCardDescription
     //
     this.colCardDescription.FieldName = "CardDescription";
     this.colCardDescription.Name = "colCardDescription";
     this.colCardDescription.Visible = true;
     this.colCardDescription.VisibleIndex = 4;
     //
     // clientPanel
     //
     this.clientPanel.BorderStyle = DevExpress.XtraEditors.Controls.BorderStyles.NoBorder;
     this.clientPanel.Controls.Add(this.gridControl1);
     this.clientPanel.Dock = System.Windows.Forms.DockStyle.Fill;
     this.clientPanel.Location = new System.Drawing.Point(0, 143);
     this.clientPanel.Name = "clientPanel";
     this.clientPanel.Size = new System.Drawing.Size(793, 380);
     this.clientPanel.TabIndex = 2;
     //
     // frmCards
     //
     this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
     this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
     this.ClientSize = new System.Drawing.Size(793, 523);
     this.Controls.Add(this.clientPanel);
     this.Controls.Add(this.ribbon);
     this.Name = "frmCards";
     this.Ribbon = this.ribbon;
     this.Text = "Card Manager";
     this.Load += new System.EventHandler(this.frmCards_Load);
     ((System.ComponentModel.ISupportInitialize)(this.xpCollection1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.popupMenu1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.ribbon)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridControl1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridView1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.clientPanel)).EndInit();
     this.clientPanel.ResumeLayout(false);
     this.ResumeLayout(false);
 }
Example #54
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(MainForm));
     this.tabbedView = new DevExpress.XtraBars.Docking2010.Views.Tabbed.TabbedView(this.components);
     this.skinRibbonGalleryBarItem = new DevExpress.XtraBars.SkinRibbonGalleryBarItem();
     this.barSubItemNavigation     = new DevExpress.XtraBars.BarSubItem();
     this.employeesBarButtonItem   = new DevExpress.XtraBars.BarButtonItem();
     this.customersBarButtonItem   = new DevExpress.XtraBars.BarButtonItem();
     this.barSubItem1          = new DevExpress.XtraBars.BarSubItem();
     this.barButtonItem1       = new DevExpress.XtraBars.BarButtonItem();
     this.barButtonItem2       = new DevExpress.XtraBars.BarButtonItem();
     this.barButtonItem3       = new DevExpress.XtraBars.BarButtonItem();
     this.barButtonItem4       = new DevExpress.XtraBars.BarButtonItem();
     this.barSubItem2          = new DevExpress.XtraBars.BarSubItem();
     this.barSubItem3          = new DevExpress.XtraBars.BarSubItem();
     this.barButtonItem5       = new DevExpress.XtraBars.BarButtonItem();
     this.barButtonItem6       = new DevExpress.XtraBars.BarButtonItem();
     this.ribbonStatusBar      = new DevExpress.XtraBars.Ribbon.RibbonStatusBar();
     this.barButtonItem7       = new DevExpress.XtraBars.BarButtonItem();
     this.menuContainerControl = new DevExpress.XtraBars.Ribbon.RibbonControl();
     this.repositoryItemMarqueeProgressBar1 = new DevExpress.XtraEditors.Repository.RepositoryItemMarqueeProgressBar();
     this.repositoryItemProgressBar1        = new DevExpress.XtraEditors.Repository.RepositoryItemProgressBar();
     this.repositoryItemProgressBar2        = new DevExpress.XtraEditors.Repository.RepositoryItemProgressBar();
     this.mainFormBarManager     = new DevExpress.XtraBars.BarManager(this.components);
     this.barDockControlBottom   = new DevExpress.XtraBars.BarDockControl();
     this.barDockControlLeft     = new DevExpress.XtraBars.BarDockControl();
     this.barDockControlRight    = new DevExpress.XtraBars.BarDockControl();
     this.barDockControl1        = new DevExpress.XtraBars.BarDockControl();
     this.documentManagerDocking = new ZtgeoGISDesktop.Controls.DocumentManagerDocking();
     this.bar4 = new DevExpress.XtraBars.Bar();
     this.bar1 = new DevExpress.XtraBars.Bar();
     this.bar2 = new DevExpress.XtraBars.Bar();
     this.bar3 = new DevExpress.XtraBars.Bar();
     ((System.ComponentModel.ISupportInitialize)(this.tabbedView)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.menuContainerControl)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemMarqueeProgressBar1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemProgressBar1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemProgressBar2)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.mainFormBarManager)).BeginInit();
     this.SuspendLayout();
     //
     // skinRibbonGalleryBarItem
     //
     this.skinRibbonGalleryBarItem.Id   = 14;
     this.skinRibbonGalleryBarItem.Name = "skinRibbonGalleryBarItem";
     //
     // barSubItemNavigation
     //
     this.barSubItemNavigation.Caption = "Navigation";
     this.barSubItemNavigation.Id      = 15;
     this.barSubItemNavigation.ImageOptions.ImageUri.Uri = "NavigationBar";
     this.barSubItemNavigation.LinksPersistInfo.AddRange(new DevExpress.XtraBars.LinkPersistInfo[] {
         new DevExpress.XtraBars.LinkPersistInfo(this.employeesBarButtonItem),
         new DevExpress.XtraBars.LinkPersistInfo(this.customersBarButtonItem)
     });
     this.barSubItemNavigation.Name = "barSubItemNavigation";
     //
     // employeesBarButtonItem
     //
     this.employeesBarButtonItem.Id   = 55;
     this.employeesBarButtonItem.Name = "employeesBarButtonItem";
     //
     // customersBarButtonItem
     //
     this.customersBarButtonItem.Id   = 56;
     this.customersBarButtonItem.Name = "customersBarButtonItem";
     //
     // barSubItem1
     //
     this.barSubItem1.Caption                 = "系统设置";
     this.barSubItem1.Id                      = 46;
     this.barSubItem1.ImageOptions.Image      = ((System.Drawing.Image)(resources.GetObject("barSubItem1.ImageOptions.Image")));
     this.barSubItem1.ImageOptions.LargeImage = ((System.Drawing.Image)(resources.GetObject("barSubItem1.ImageOptions.LargeImage")));
     this.barSubItem1.LinksPersistInfo.AddRange(new DevExpress.XtraBars.LinkPersistInfo[] {
         new DevExpress.XtraBars.LinkPersistInfo(this.barButtonItem1)
     });
     this.barSubItem1.Name = "barSubItem1";
     //
     // barButtonItem1
     //
     this.barButtonItem1.Caption                 = "界面设置";
     this.barButtonItem1.Id                      = 47;
     this.barButtonItem1.ImageOptions.Image      = ((System.Drawing.Image)(resources.GetObject("barButtonItem1.ImageOptions.Image")));
     this.barButtonItem1.ImageOptions.LargeImage = ((System.Drawing.Image)(resources.GetObject("barButtonItem1.ImageOptions.LargeImage")));
     this.barButtonItem1.Name                    = "barButtonItem1";
     //
     // barButtonItem2
     //
     this.barButtonItem2.Caption                 = "barButtonItem2";
     this.barButtonItem2.Id                      = 48;
     this.barButtonItem2.ImageOptions.Image      = ((System.Drawing.Image)(resources.GetObject("barButtonItem2.ImageOptions.Image")));
     this.barButtonItem2.ImageOptions.LargeImage = ((System.Drawing.Image)(resources.GetObject("barButtonItem2.ImageOptions.LargeImage")));
     this.barButtonItem2.Name                    = "barButtonItem2";
     //
     // barButtonItem3
     //
     this.barButtonItem3.Caption = "barButtonItem3";
     this.barButtonItem3.Id      = 49;
     this.barButtonItem3.Name    = "barButtonItem3";
     //
     // barButtonItem4
     //
     this.barButtonItem4.Caption = "barButtonItem4";
     this.barButtonItem4.Id      = 50;
     this.barButtonItem4.Name    = "barButtonItem4";
     //
     // barSubItem2
     //
     this.barSubItem2.Caption                 = "barSubItem2";
     this.barSubItem2.Id                      = 51;
     this.barSubItem2.ImageOptions.Image      = ((System.Drawing.Image)(resources.GetObject("barSubItem2.ImageOptions.Image")));
     this.barSubItem2.ImageOptions.LargeImage = ((System.Drawing.Image)(resources.GetObject("barSubItem2.ImageOptions.LargeImage")));
     this.barSubItem2.LinksPersistInfo.AddRange(new DevExpress.XtraBars.LinkPersistInfo[] {
         new DevExpress.XtraBars.LinkPersistInfo(this.barSubItem3),
         new DevExpress.XtraBars.LinkPersistInfo(this.barButtonItem6)
     });
     this.barSubItem2.Name = "barSubItem2";
     //
     // barSubItem3
     //
     this.barSubItem3.Caption = "barSubItem3";
     this.barSubItem3.Id      = 52;
     this.barSubItem3.LinksPersistInfo.AddRange(new DevExpress.XtraBars.LinkPersistInfo[] {
         new DevExpress.XtraBars.LinkPersistInfo(this.barButtonItem5)
     });
     this.barSubItem3.Name = "barSubItem3";
     //
     // barButtonItem5
     //
     this.barButtonItem5.Caption = "barButtonItem5";
     this.barButtonItem5.Id      = 53;
     this.barButtonItem5.Name    = "barButtonItem5";
     //
     // barButtonItem6
     //
     this.barButtonItem6.Caption = "barButtonItem6";
     this.barButtonItem6.Id      = 54;
     this.barButtonItem6.Name    = "barButtonItem6";
     //
     // ribbonStatusBar
     //
     this.ribbonStatusBar.ItemLinks.Add(this.barButtonItem7);
     this.ribbonStatusBar.Location = new System.Drawing.Point(0, 649);
     this.ribbonStatusBar.Name     = "ribbonStatusBar";
     this.ribbonStatusBar.Ribbon   = this.menuContainerControl;
     this.ribbonStatusBar.Size     = new System.Drawing.Size(1183, 31);
     //
     // barButtonItem7
     //
     this.barButtonItem7.Alignment          = DevExpress.XtraBars.BarItemLinkAlignment.Right;
     this.barButtonItem7.Caption            = "后台任务:";
     this.barButtonItem7.Id                 = 60;
     this.barButtonItem7.ImageOptions.Image = ((System.Drawing.Image)(resources.GetObject("barButtonItem7.ImageOptions.Image")));
     this.barButtonItem7.Name               = "barButtonItem7";
     this.barButtonItem7.RibbonStyle        = DevExpress.XtraBars.Ribbon.RibbonItemStyles.SmallWithText;
     //
     // menuContainerControl
     //
     this.menuContainerControl.ExpandCollapseItem.Id = 0;
     this.menuContainerControl.Items.AddRange(new DevExpress.XtraBars.BarItem[] {
         this.menuContainerControl.ExpandCollapseItem,
         this.menuContainerControl.SearchEditItem,
         this.skinRibbonGalleryBarItem,
         this.barSubItemNavigation,
         this.employeesBarButtonItem,
         this.customersBarButtonItem,
         this.barSubItem1,
         this.barButtonItem1,
         this.barButtonItem2,
         this.barButtonItem3,
         this.barButtonItem4,
         this.barSubItem2,
         this.barSubItem3,
         this.barButtonItem5,
         this.barButtonItem6,
         this.barButtonItem7
     });
     this.menuContainerControl.Location      = new System.Drawing.Point(0, 0);
     this.menuContainerControl.MaxItemId     = 66;
     this.menuContainerControl.MdiMergeStyle = DevExpress.XtraBars.Ribbon.RibbonMdiMergeStyle.Always;
     this.menuContainerControl.Name          = "menuContainerControl";
     this.menuContainerControl.RepositoryItems.AddRange(new DevExpress.XtraEditors.Repository.RepositoryItem[] {
         this.repositoryItemMarqueeProgressBar1,
         this.repositoryItemProgressBar1,
         this.repositoryItemProgressBar2
     });
     this.menuContainerControl.RibbonStyle           = DevExpress.XtraBars.Ribbon.RibbonControlStyle.Office2019;
     this.menuContainerControl.ShowApplicationButton = DevExpress.Utils.DefaultBoolean.False;
     this.menuContainerControl.Size            = new System.Drawing.Size(1183, 50);
     this.menuContainerControl.StatusBar       = this.ribbonStatusBar;
     this.menuContainerControl.ToolbarLocation = DevExpress.XtraBars.Ribbon.RibbonQuickAccessToolbarLocation.Hidden;
     //
     // repositoryItemMarqueeProgressBar1
     //
     this.repositoryItemMarqueeProgressBar1.Name = "repositoryItemMarqueeProgressBar1";
     //
     // repositoryItemProgressBar1
     //
     this.repositoryItemProgressBar1.Name = "repositoryItemProgressBar1";
     //
     // repositoryItemProgressBar2
     //
     this.repositoryItemProgressBar2.Name = "repositoryItemProgressBar2";
     //
     // mainFormBarManager
     //
     this.mainFormBarManager.AllowQuickCustomization = false;
     this.mainFormBarManager.DockControls.Add(this.barDockControlBottom);
     this.mainFormBarManager.DockControls.Add(this.barDockControlLeft);
     this.mainFormBarManager.DockControls.Add(this.barDockControlRight);
     this.mainFormBarManager.DockControls.Add(this.barDockControl1);
     this.mainFormBarManager.Form      = this;
     this.mainFormBarManager.MaxItemId = 1;
     //
     // barDockControlBottom
     //
     this.barDockControlBottom.CausesValidation = false;
     this.barDockControlBottom.Dock             = System.Windows.Forms.DockStyle.Top;
     this.barDockControlBottom.Location         = new System.Drawing.Point(0, 0);
     this.barDockControlBottom.Manager          = this.mainFormBarManager;
     this.barDockControlBottom.Size             = new System.Drawing.Size(1183, 0);
     //
     // barDockControlLeft
     //
     this.barDockControlLeft.CausesValidation = false;
     this.barDockControlLeft.Dock             = System.Windows.Forms.DockStyle.Bottom;
     this.barDockControlLeft.Location         = new System.Drawing.Point(0, 680);
     this.barDockControlLeft.Manager          = this.mainFormBarManager;
     this.barDockControlLeft.Size             = new System.Drawing.Size(1183, 0);
     //
     // barDockControlRight
     //
     this.barDockControlRight.CausesValidation = false;
     this.barDockControlRight.Dock             = System.Windows.Forms.DockStyle.Left;
     this.barDockControlRight.Location         = new System.Drawing.Point(0, 0);
     this.barDockControlRight.Manager          = this.mainFormBarManager;
     this.barDockControlRight.Size             = new System.Drawing.Size(0, 680);
     //
     // barDockControl1
     //
     this.barDockControl1.CausesValidation = false;
     this.barDockControl1.Dock             = System.Windows.Forms.DockStyle.Right;
     this.barDockControl1.Location         = new System.Drawing.Point(1183, 0);
     this.barDockControl1.Manager          = this.mainFormBarManager;
     this.barDockControl1.Size             = new System.Drawing.Size(0, 680);
     //
     // documentManagerDocking
     //
     this.documentManagerDocking.Dock     = System.Windows.Forms.DockStyle.Fill;
     this.documentManagerDocking.Location = new System.Drawing.Point(0, 50);
     this.documentManagerDocking.Margin   = new System.Windows.Forms.Padding(3, 2, 3, 2);
     this.documentManagerDocking.Name     = "documentManagerDocking";
     this.documentManagerDocking.Size     = new System.Drawing.Size(1183, 599);
     this.documentManagerDocking.TabIndex = 0;
     //
     // bar4
     //
     this.bar4.BarName       = "Custom 2";
     this.bar4.DockCol       = 0;
     this.bar4.DockRow       = 0;
     this.bar4.DockStyle     = DevExpress.XtraBars.BarDockStyle.Standalone;
     this.bar4.FloatLocation = new System.Drawing.Point(145, 147);
     this.bar4.Offset        = 11;
     this.bar4.Text          = "Custom 2";
     //
     // bar1
     //
     this.bar1.BarName       = "Tools";
     this.bar1.DockCol       = 0;
     this.bar1.DockRow       = 0;
     this.bar1.DockStyle     = DevExpress.XtraBars.BarDockStyle.Standalone;
     this.bar1.FloatLocation = new System.Drawing.Point(157, 186);
     this.bar1.Offset        = 106;
     this.bar1.Text          = "Tools";
     //
     // bar2
     //
     this.bar2.BarName   = "Custom 3";
     this.bar2.DockCol   = 0;
     this.bar2.DockStyle = DevExpress.XtraBars.BarDockStyle.Top;
     this.bar2.Text      = "Custom 3";
     //
     // bar3
     //
     this.bar3.BarName   = "Custom 2";
     this.bar3.DockCol   = 0;
     this.bar3.DockStyle = DevExpress.XtraBars.BarDockStyle.Top;
     this.bar3.Text      = "Custom 2";
     //
     // MainForm
     //
     this.AutoScaleDimensions = new System.Drawing.SizeF(7F, 14F);
     this.AutoScaleMode       = System.Windows.Forms.AutoScaleMode.Font;
     this.ClientSize          = new System.Drawing.Size(1183, 680);
     this.Controls.Add(this.documentManagerDocking);
     this.Controls.Add(this.ribbonStatusBar);
     this.Controls.Add(this.menuContainerControl);
     this.Controls.Add(this.barDockControlRight);
     this.Controls.Add(this.barDockControl1);
     this.Controls.Add(this.barDockControlLeft);
     this.Controls.Add(this.barDockControlBottom);
     this.Icon           = ((System.Drawing.Icon)(resources.GetObject("$this.Icon")));
     this.IsMdiContainer = true;
     this.Name           = "MainForm";
     this.Ribbon         = this.menuContainerControl;
     this.StatusBar      = this.ribbonStatusBar;
     this.WindowState    = System.Windows.Forms.FormWindowState.Maximized;
     ((System.ComponentModel.ISupportInitialize)(this.tabbedView)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.menuContainerControl)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemMarqueeProgressBar1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemProgressBar1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemProgressBar2)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.mainFormBarManager)).EndInit();
     this.ResumeLayout(false);
     this.PerformLayout();
 }
Example #55
0
 /// <summary>
 /// Required method for Designer support - do not modify
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     this.components = new System.ComponentModel.Container();
     DevExpress.XtraScheduler.TimeRuler timeRuler1 = new DevExpress.XtraScheduler.TimeRuler();
     DevExpress.XtraScheduler.TimeRuler timeRuler2 = new DevExpress.XtraScheduler.TimeRuler();
     System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(FormScheduler));
     this.schedulerControl1 = new DevExpress.XtraScheduler.SchedulerControl();
     this.ribbonControl1 = new DevExpress.XtraBars.Ribbon.RibbonControl();
     this.viewSelectorItem1 = new DevExpress.XtraScheduler.UI.ViewSelectorItem();
     this.viewSelectorItem2 = new DevExpress.XtraScheduler.UI.ViewSelectorItem();
     this.viewSelectorItem3 = new DevExpress.XtraScheduler.UI.ViewSelectorItem();
     this.viewSelectorItem4 = new DevExpress.XtraScheduler.UI.ViewSelectorItem();
     this.viewSelectorItem5 = new DevExpress.XtraScheduler.UI.ViewSelectorItem();
     this.viewNavigatorBackwardItem1 = new DevExpress.XtraScheduler.UI.ViewNavigatorBackwardItem();
     this.viewNavigatorForwardItem1 = new DevExpress.XtraScheduler.UI.ViewNavigatorForwardItem();
     this.viewNavigatorTodayItem1 = new DevExpress.XtraScheduler.UI.ViewNavigatorTodayItem();
     this.viewNavigatorZoomInItem1 = new DevExpress.XtraScheduler.UI.ViewNavigatorZoomInItem();
     this.viewNavigatorZoomOutItem1 = new DevExpress.XtraScheduler.UI.ViewNavigatorZoomOutItem();
     this.barButtonItem1 = new DevExpress.XtraBars.BarButtonItem();
     this.viewSelectorRibbonPage1 = new DevExpress.XtraScheduler.UI.ViewSelectorRibbonPage();
     this.viewSelectorRibbonPageGroup1 = new DevExpress.XtraScheduler.UI.ViewSelectorRibbonPageGroup();
     this.viewNavigatorRibbonPage1 = new DevExpress.XtraScheduler.UI.ViewNavigatorRibbonPage();
     this.viewNavigatorRibbonPageGroup1 = new DevExpress.XtraScheduler.UI.ViewNavigatorRibbonPageGroup();
     this.ribbonPage1 = new DevExpress.XtraBars.Ribbon.RibbonPage();
     this.ribbonPageGroup1 = new DevExpress.XtraBars.Ribbon.RibbonPageGroup();
     this.schedulerStorage1 = new DevExpress.XtraScheduler.SchedulerStorage(this.components);
     this.ribbonViewSelector1 = new DevExpress.XtraScheduler.UI.RibbonViewSelector(this.components);
     this.ribbonViewNavigator1 = new DevExpress.XtraScheduler.UI.RibbonViewNavigator();
     ((System.ComponentModel.ISupportInitialize)(this.schedulerControl1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.ribbonControl1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.schedulerStorage1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.ribbonViewSelector1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.ribbonViewNavigator1)).BeginInit();
     this.SuspendLayout();
     //
     // schedulerControl1
     //
     this.schedulerControl1.Dock = System.Windows.Forms.DockStyle.Fill;
     this.schedulerControl1.Location = new System.Drawing.Point(0, 141);
     this.schedulerControl1.MenuManager = this.ribbonControl1;
     this.schedulerControl1.Name = "schedulerControl1";
     this.schedulerControl1.Size = new System.Drawing.Size(783, 371);
     this.schedulerControl1.Start = new System.DateTime(2006, 1, 31, 0, 0, 0, 0);
     this.schedulerControl1.Storage = this.schedulerStorage1;
     this.schedulerControl1.TabIndex = 0;
     this.schedulerControl1.Text = "schedulerControl1";
     this.schedulerControl1.Views.DayView.TimeRulers.Add(timeRuler1);
     this.schedulerControl1.Views.WorkWeekView.TimeRulers.Add(timeRuler2);
     this.schedulerControl1.EditAppointmentFormShowing += new DevExpress.XtraScheduler.AppointmentFormEventHandler(this.schedulerControl1_EditAppointmentFormShowing);
     //
     // ribbonControl1
     //
     this.ribbonControl1.ApplicationIcon = null;
     this.ribbonControl1.Items.AddRange(new DevExpress.XtraBars.BarItem[] {
     this.viewSelectorItem1,
     this.viewSelectorItem2,
     this.viewSelectorItem3,
     this.viewSelectorItem4,
     this.viewSelectorItem5,
     this.viewNavigatorBackwardItem1,
     this.viewNavigatorForwardItem1,
     this.viewNavigatorTodayItem1,
     this.viewNavigatorZoomInItem1,
     this.viewNavigatorZoomOutItem1,
     this.barButtonItem1});
     this.ribbonControl1.Location = new System.Drawing.Point(0, 0);
     this.ribbonControl1.MaxItemId = 11;
     this.ribbonControl1.Name = "ribbonControl1";
     this.ribbonControl1.Pages.AddRange(new DevExpress.XtraBars.Ribbon.RibbonPage[] {
     this.viewSelectorRibbonPage1,
     this.viewNavigatorRibbonPage1,
     this.ribbonPage1});
     this.ribbonControl1.SelectedPage = this.viewSelectorRibbonPage1;
     this.ribbonControl1.Size = new System.Drawing.Size(783, 141);
     //
     // viewSelectorItem1
     //
     this.viewSelectorItem1.Glyph = ((System.Drawing.Image)(resources.GetObject("viewSelectorItem1.Glyph")));
     this.viewSelectorItem1.GroupIndex = 1;
     this.viewSelectorItem1.Id = 1;
     this.viewSelectorItem1.ItemShortcut = new DevExpress.XtraBars.BarShortcut(((System.Windows.Forms.Keys.Control | System.Windows.Forms.Keys.Alt)
                     | System.Windows.Forms.Keys.D1));
     this.viewSelectorItem1.LargeGlyph = ((System.Drawing.Image)(resources.GetObject("viewSelectorItem1.LargeGlyph")));
     this.viewSelectorItem1.Name = "viewSelectorItem1";
     this.viewSelectorItem1.SchedulerViewType = DevExpress.XtraScheduler.SchedulerViewType.Day;
     //
     // viewSelectorItem2
     //
     this.viewSelectorItem2.Glyph = ((System.Drawing.Image)(resources.GetObject("viewSelectorItem2.Glyph")));
     this.viewSelectorItem2.GroupIndex = 1;
     this.viewSelectorItem2.Id = 2;
     this.viewSelectorItem2.ItemShortcut = new DevExpress.XtraBars.BarShortcut(((System.Windows.Forms.Keys.Control | System.Windows.Forms.Keys.Alt)
                     | System.Windows.Forms.Keys.D2));
     this.viewSelectorItem2.LargeGlyph = ((System.Drawing.Image)(resources.GetObject("viewSelectorItem2.LargeGlyph")));
     this.viewSelectorItem2.Name = "viewSelectorItem2";
     this.viewSelectorItem2.SchedulerViewType = DevExpress.XtraScheduler.SchedulerViewType.WorkWeek;
     //
     // viewSelectorItem3
     //
     this.viewSelectorItem3.Glyph = ((System.Drawing.Image)(resources.GetObject("viewSelectorItem3.Glyph")));
     this.viewSelectorItem3.GroupIndex = 1;
     this.viewSelectorItem3.Id = 3;
     this.viewSelectorItem3.ItemShortcut = new DevExpress.XtraBars.BarShortcut(((System.Windows.Forms.Keys.Control | System.Windows.Forms.Keys.Alt)
                     | System.Windows.Forms.Keys.D3));
     this.viewSelectorItem3.LargeGlyph = ((System.Drawing.Image)(resources.GetObject("viewSelectorItem3.LargeGlyph")));
     this.viewSelectorItem3.Name = "viewSelectorItem3";
     this.viewSelectorItem3.SchedulerViewType = DevExpress.XtraScheduler.SchedulerViewType.Week;
     //
     // viewSelectorItem4
     //
     this.viewSelectorItem4.Glyph = ((System.Drawing.Image)(resources.GetObject("viewSelectorItem4.Glyph")));
     this.viewSelectorItem4.GroupIndex = 1;
     this.viewSelectorItem4.Id = 4;
     this.viewSelectorItem4.ItemShortcut = new DevExpress.XtraBars.BarShortcut(((System.Windows.Forms.Keys.Control | System.Windows.Forms.Keys.Alt)
                     | System.Windows.Forms.Keys.D4));
     this.viewSelectorItem4.LargeGlyph = ((System.Drawing.Image)(resources.GetObject("viewSelectorItem4.LargeGlyph")));
     this.viewSelectorItem4.Name = "viewSelectorItem4";
     this.viewSelectorItem4.SchedulerViewType = DevExpress.XtraScheduler.SchedulerViewType.Month;
     //
     // viewSelectorItem5
     //
     this.viewSelectorItem5.Glyph = ((System.Drawing.Image)(resources.GetObject("viewSelectorItem5.Glyph")));
     this.viewSelectorItem5.GroupIndex = 1;
     this.viewSelectorItem5.Id = 5;
     this.viewSelectorItem5.ItemShortcut = new DevExpress.XtraBars.BarShortcut(((System.Windows.Forms.Keys.Control | System.Windows.Forms.Keys.Alt)
                     | System.Windows.Forms.Keys.D5));
     this.viewSelectorItem5.LargeGlyph = ((System.Drawing.Image)(resources.GetObject("viewSelectorItem5.LargeGlyph")));
     this.viewSelectorItem5.Name = "viewSelectorItem5";
     this.viewSelectorItem5.SchedulerViewType = DevExpress.XtraScheduler.SchedulerViewType.Timeline;
     //
     // viewNavigatorBackwardItem1
     //
     this.viewNavigatorBackwardItem1.Glyph = ((System.Drawing.Image)(resources.GetObject("viewNavigatorBackwardItem1.Glyph")));
     this.viewNavigatorBackwardItem1.GroupIndex = 1;
     this.viewNavigatorBackwardItem1.Id = 6;
     this.viewNavigatorBackwardItem1.LargeGlyph = ((System.Drawing.Image)(resources.GetObject("viewNavigatorBackwardItem1.LargeGlyph")));
     this.viewNavigatorBackwardItem1.Name = "viewNavigatorBackwardItem1";
     //
     // viewNavigatorForwardItem1
     //
     this.viewNavigatorForwardItem1.Glyph = ((System.Drawing.Image)(resources.GetObject("viewNavigatorForwardItem1.Glyph")));
     this.viewNavigatorForwardItem1.GroupIndex = 1;
     this.viewNavigatorForwardItem1.Id = 7;
     this.viewNavigatorForwardItem1.LargeGlyph = ((System.Drawing.Image)(resources.GetObject("viewNavigatorForwardItem1.LargeGlyph")));
     this.viewNavigatorForwardItem1.Name = "viewNavigatorForwardItem1";
     //
     // viewNavigatorTodayItem1
     //
     this.viewNavigatorTodayItem1.Glyph = ((System.Drawing.Image)(resources.GetObject("viewNavigatorTodayItem1.Glyph")));
     this.viewNavigatorTodayItem1.GroupIndex = 1;
     this.viewNavigatorTodayItem1.Id = 8;
     this.viewNavigatorTodayItem1.LargeGlyph = ((System.Drawing.Image)(resources.GetObject("viewNavigatorTodayItem1.LargeGlyph")));
     this.viewNavigatorTodayItem1.Name = "viewNavigatorTodayItem1";
     //
     // viewNavigatorZoomInItem1
     //
     this.viewNavigatorZoomInItem1.Glyph = ((System.Drawing.Image)(resources.GetObject("viewNavigatorZoomInItem1.Glyph")));
     this.viewNavigatorZoomInItem1.GroupIndex = 1;
     this.viewNavigatorZoomInItem1.Id = 9;
     this.viewNavigatorZoomInItem1.ItemShortcut = new DevExpress.XtraBars.BarShortcut((System.Windows.Forms.Keys.Control | System.Windows.Forms.Keys.Add));
     this.viewNavigatorZoomInItem1.LargeGlyph = ((System.Drawing.Image)(resources.GetObject("viewNavigatorZoomInItem1.LargeGlyph")));
     this.viewNavigatorZoomInItem1.Name = "viewNavigatorZoomInItem1";
     //
     // viewNavigatorZoomOutItem1
     //
     this.viewNavigatorZoomOutItem1.Glyph = ((System.Drawing.Image)(resources.GetObject("viewNavigatorZoomOutItem1.Glyph")));
     this.viewNavigatorZoomOutItem1.GroupIndex = 1;
     this.viewNavigatorZoomOutItem1.Id = 10;
     this.viewNavigatorZoomOutItem1.ItemShortcut = new DevExpress.XtraBars.BarShortcut((System.Windows.Forms.Keys.Control | System.Windows.Forms.Keys.Subtract));
     this.viewNavigatorZoomOutItem1.LargeGlyph = ((System.Drawing.Image)(resources.GetObject("viewNavigatorZoomOutItem1.LargeGlyph")));
     this.viewNavigatorZoomOutItem1.Name = "viewNavigatorZoomOutItem1";
     //
     // barButtonItem1
     //
     this.barButtonItem1.Caption = "Show Print Options...";
     this.barButtonItem1.Id = 0;
     this.barButtonItem1.Name = "barButtonItem1";
     this.barButtonItem1.ItemClick += new DevExpress.XtraBars.ItemClickEventHandler(this.barButtonItem1_ItemClick);
     //
     // viewSelectorRibbonPage1
     //
     this.viewSelectorRibbonPage1.Groups.AddRange(new DevExpress.XtraBars.Ribbon.RibbonPageGroup[] {
     this.viewSelectorRibbonPageGroup1});
     this.viewSelectorRibbonPage1.Name = "viewSelectorRibbonPage1";
     //
     // viewSelectorRibbonPageGroup1
     //
     this.viewSelectorRibbonPageGroup1.ItemLinks.Add(this.viewSelectorItem1);
     this.viewSelectorRibbonPageGroup1.ItemLinks.Add(this.viewSelectorItem2);
     this.viewSelectorRibbonPageGroup1.ItemLinks.Add(this.viewSelectorItem3);
     this.viewSelectorRibbonPageGroup1.ItemLinks.Add(this.viewSelectorItem4);
     this.viewSelectorRibbonPageGroup1.ItemLinks.Add(this.viewSelectorItem5);
     this.viewSelectorRibbonPageGroup1.Name = "viewSelectorRibbonPageGroup1";
     //
     // viewNavigatorRibbonPage1
     //
     this.viewNavigatorRibbonPage1.Groups.AddRange(new DevExpress.XtraBars.Ribbon.RibbonPageGroup[] {
     this.viewNavigatorRibbonPageGroup1});
     this.viewNavigatorRibbonPage1.Name = "viewNavigatorRibbonPage1";
     //
     // viewNavigatorRibbonPageGroup1
     //
     this.viewNavigatorRibbonPageGroup1.ItemLinks.Add(this.viewNavigatorBackwardItem1);
     this.viewNavigatorRibbonPageGroup1.ItemLinks.Add(this.viewNavigatorForwardItem1);
     this.viewNavigatorRibbonPageGroup1.ItemLinks.Add(this.viewNavigatorTodayItem1);
     this.viewNavigatorRibbonPageGroup1.ItemLinks.Add(this.viewNavigatorZoomInItem1);
     this.viewNavigatorRibbonPageGroup1.ItemLinks.Add(this.viewNavigatorZoomOutItem1);
     this.viewNavigatorRibbonPageGroup1.Name = "viewNavigatorRibbonPageGroup1";
     //
     // ribbonPage1
     //
     this.ribbonPage1.Groups.AddRange(new DevExpress.XtraBars.Ribbon.RibbonPageGroup[] {
     this.ribbonPageGroup1});
     this.ribbonPage1.Name = "ribbonPage1";
     this.ribbonPage1.Text = "ribbonPage1";
     //
     // ribbonPageGroup1
     //
     this.ribbonPageGroup1.ItemLinks.Add(this.barButtonItem1);
     this.ribbonPageGroup1.Name = "ribbonPageGroup1";
     this.ribbonPageGroup1.Text = "ribbonPageGroup1";
     //
     // ribbonViewSelector1
     //
     this.ribbonViewSelector1.RibbonControl = this.ribbonControl1;
     this.ribbonViewSelector1.SchedulerControl = this.schedulerControl1;
     //
     // ribbonViewNavigator1
     //
     this.ribbonViewNavigator1.RibbonControl = this.ribbonControl1;
     this.ribbonViewNavigator1.SchedulerControl = this.schedulerControl1;
     //
     // FormScheduler
     //
     this.AutoScaleBaseSize = new System.Drawing.Size(5, 13);
     this.ClientSize = new System.Drawing.Size(783, 512);
     this.Controls.Add(this.schedulerControl1);
     this.Controls.Add(this.ribbonControl1);
     this.Name = "FormScheduler";
     this.Text = "FormScheduler";
     ((System.ComponentModel.ISupportInitialize)(this.schedulerControl1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.ribbonControl1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.schedulerStorage1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.ribbonViewSelector1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.ribbonViewNavigator1)).EndInit();
     this.ResumeLayout(false);
 }
 /// <summary>
 /// Required method for Designer support - do not modify
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     this.ribbon = new DevExpress.XtraBars.Ribbon.RibbonControl();
     this.ribbonPage1 = new DevExpress.XtraBars.Ribbon.RibbonPage();
     this.ribbonPageGroup1 = new DevExpress.XtraBars.Ribbon.RibbonPageGroup();
     this.clientPanel = new DevExpress.XtraEditors.PanelControl();
     this.tableLayoutPanel1 = new System.Windows.Forms.TableLayoutPanel();
     this.pictureBox3 = new System.Windows.Forms.PictureBox();
     this.bbtnUpdates = new DevExpress.XtraEditors.SimpleButton();
     this.bbtnSupport = new DevExpress.XtraEditors.SimpleButton();
     this.bbtnCardManager = new DevExpress.XtraEditors.SimpleButton();
     this.bbtnAddCard = new DevExpress.XtraEditors.SimpleButton();
     this.wbNews = new System.Windows.Forms.WebBrowser();
     ((System.ComponentModel.ISupportInitialize)(this.ribbon)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.clientPanel)).BeginInit();
     this.clientPanel.SuspendLayout();
     this.tableLayoutPanel1.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.pictureBox3)).BeginInit();
     this.SuspendLayout();
     //
     // ribbon
     //
     this.ribbon.ApplicationButtonText = null;
     this.ribbon.Location = new System.Drawing.Point(0, 0);
     this.ribbon.MaxItemId = 1;
     this.ribbon.Name = "ribbon";
     this.ribbon.Pages.AddRange(new DevExpress.XtraBars.Ribbon.RibbonPage[] {
     this.ribbonPage1});
     this.ribbon.SelectedPage = this.ribbonPage1;
     this.ribbon.Size = new System.Drawing.Size(860, 143);
     //
     // ribbonPage1
     //
     this.ribbonPage1.Groups.AddRange(new DevExpress.XtraBars.Ribbon.RibbonPageGroup[] {
     this.ribbonPageGroup1});
     this.ribbonPage1.Name = "ribbonPage1";
     this.ribbonPage1.Text = "ribbonPage1";
     //
     // ribbonPageGroup1
     //
     this.ribbonPageGroup1.Name = "ribbonPageGroup1";
     this.ribbonPageGroup1.Text = "ribbonPageGroup1";
     //
     // clientPanel
     //
     this.clientPanel.BorderStyle = DevExpress.XtraEditors.Controls.BorderStyles.NoBorder;
     this.clientPanel.Controls.Add(this.tableLayoutPanel1);
     this.clientPanel.Dock = System.Windows.Forms.DockStyle.Fill;
     this.clientPanel.Location = new System.Drawing.Point(0, 143);
     this.clientPanel.Name = "clientPanel";
     this.clientPanel.Size = new System.Drawing.Size(860, 412);
     this.clientPanel.TabIndex = 2;
     //
     // tableLayoutPanel1
     //
     this.tableLayoutPanel1.ColumnCount = 2;
     this.tableLayoutPanel1.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Absolute, 200F));
     this.tableLayoutPanel1.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 100F));
     this.tableLayoutPanel1.Controls.Add(this.pictureBox3, 0, 0);
     this.tableLayoutPanel1.Controls.Add(this.bbtnUpdates, 0, 4);
     this.tableLayoutPanel1.Controls.Add(this.bbtnSupport, 0, 3);
     this.tableLayoutPanel1.Controls.Add(this.bbtnCardManager, 0, 2);
     this.tableLayoutPanel1.Controls.Add(this.bbtnAddCard, 0, 1);
     this.tableLayoutPanel1.Controls.Add(this.wbNews, 1, 1);
     this.tableLayoutPanel1.Dock = System.Windows.Forms.DockStyle.Fill;
     this.tableLayoutPanel1.Location = new System.Drawing.Point(0, 0);
     this.tableLayoutPanel1.Name = "tableLayoutPanel1";
     this.tableLayoutPanel1.RowCount = 6;
     this.tableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 100F));
     this.tableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 35F));
     this.tableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 35F));
     this.tableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 35F));
     this.tableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 35F));
     this.tableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 100F));
     this.tableLayoutPanel1.Size = new System.Drawing.Size(860, 412);
     this.tableLayoutPanel1.TabIndex = 0;
     //
     // pictureBox3
     //
     this.tableLayoutPanel1.SetColumnSpan(this.pictureBox3, 2);
     this.pictureBox3.Dock = System.Windows.Forms.DockStyle.Fill;
     this.pictureBox3.Location = new System.Drawing.Point(3, 3);
     this.pictureBox3.Name = "pictureBox3";
     this.pictureBox3.Size = new System.Drawing.Size(854, 94);
     this.pictureBox3.TabIndex = 2;
     this.pictureBox3.TabStop = false;
     //
     // bbtnUpdates
     //
     this.bbtnUpdates.AllowFocus = false;
     this.bbtnUpdates.Appearance.Options.UseTextOptions = true;
     this.bbtnUpdates.Appearance.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Near;
     this.bbtnUpdates.Dock = System.Windows.Forms.DockStyle.Fill;
     this.bbtnUpdates.Image = global::SSTCP.Properties.Resources.Refresh;
     this.bbtnUpdates.Location = new System.Drawing.Point(3, 208);
     this.bbtnUpdates.Name = "bbtnUpdates";
     this.bbtnUpdates.Size = new System.Drawing.Size(194, 29);
     this.bbtnUpdates.TabIndex = 6;
     this.bbtnUpdates.Text = "Check for Updates";
     //
     // bbtnSupport
     //
     this.bbtnSupport.AllowFocus = false;
     this.bbtnSupport.Appearance.Options.UseTextOptions = true;
     this.bbtnSupport.Appearance.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Near;
     this.bbtnSupport.Dock = System.Windows.Forms.DockStyle.Fill;
     this.bbtnSupport.Image = global::SSTCP.Properties.Resources.Contact;
     this.bbtnSupport.Location = new System.Drawing.Point(3, 173);
     this.bbtnSupport.Name = "bbtnSupport";
     this.bbtnSupport.Size = new System.Drawing.Size(194, 29);
     this.bbtnSupport.TabIndex = 7;
     this.bbtnSupport.Text = "Support";
     //
     // bbtnCardManager
     //
     this.bbtnCardManager.AllowFocus = false;
     this.bbtnCardManager.Appearance.Options.UseTextOptions = true;
     this.bbtnCardManager.Appearance.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Near;
     this.bbtnCardManager.Dock = System.Windows.Forms.DockStyle.Fill;
     this.bbtnCardManager.Image = global::SSTCP.Properties.Resources.EditBoards;
     this.bbtnCardManager.Location = new System.Drawing.Point(3, 138);
     this.bbtnCardManager.Name = "bbtnCardManager";
     this.bbtnCardManager.Size = new System.Drawing.Size(194, 29);
     this.bbtnCardManager.TabIndex = 8;
     this.bbtnCardManager.Text = "Card Manager";
     this.bbtnCardManager.Click += new System.EventHandler(this.bbtnCardManager_Click);
     //
     // bbtnAddCard
     //
     this.bbtnAddCard.AllowFocus = false;
     this.bbtnAddCard.Appearance.Options.UseTextOptions = true;
     this.bbtnAddCard.Appearance.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Near;
     this.bbtnAddCard.Dock = System.Windows.Forms.DockStyle.Fill;
     this.bbtnAddCard.Image = global::SSTCP.Properties.Resources.NewCard;
     this.bbtnAddCard.Location = new System.Drawing.Point(3, 103);
     this.bbtnAddCard.Name = "bbtnAddCard";
     this.bbtnAddCard.Size = new System.Drawing.Size(194, 29);
     this.bbtnAddCard.TabIndex = 9;
     this.bbtnAddCard.Text = "Add New Card";
     this.bbtnAddCard.Click += new System.EventHandler(this.bbtnAddCard_Click);
     //
     // wbNews
     //
     this.wbNews.Dock = System.Windows.Forms.DockStyle.Fill;
     this.wbNews.Location = new System.Drawing.Point(203, 103);
     this.wbNews.MinimumSize = new System.Drawing.Size(20, 20);
     this.wbNews.Name = "wbNews";
     this.tableLayoutPanel1.SetRowSpan(this.wbNews, 5);
     this.wbNews.Size = new System.Drawing.Size(654, 306);
     this.wbNews.TabIndex = 10;
     //
     // frmStartPage
     //
     this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
     this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
     this.ClientSize = new System.Drawing.Size(860, 555);
     this.Controls.Add(this.clientPanel);
     this.Controls.Add(this.ribbon);
     this.Name = "frmStartPage";
     this.Ribbon = this.ribbon;
     this.Text = "Start Page";
     this.Load += new System.EventHandler(this.frmStartPage_Load);
     ((System.ComponentModel.ISupportInitialize)(this.ribbon)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.clientPanel)).EndInit();
     this.clientPanel.ResumeLayout(false);
     this.tableLayoutPanel1.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.pictureBox3)).EndInit();
     this.ResumeLayout(false);
 }