Пример #1
1
 /// <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.treeList1 = new DevExpress.XtraTreeList.TreeList();
     this.panelControl1 = new DevExpress.XtraEditors.PanelControl();
     ((System.ComponentModel.ISupportInitialize)(this.groupControl1)).BeginInit();
     this.groupControl1.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.treeList1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.panelControl1)).BeginInit();
     this.SuspendLayout();
     //
     // groupControl1
     //
     this.groupControl1.Controls.Add(this.treeList1);
     this.groupControl1.Dock = System.Windows.Forms.DockStyle.Fill;
     this.groupControl1.Location = new System.Drawing.Point(0, 0);
     this.groupControl1.Name = "groupControl1";
     this.groupControl1.Size = new System.Drawing.Size(250, 236);
     this.groupControl1.TabIndex = 8;
     this.groupControl1.Text = "通用树";
     //
     // treeList1
     //
     this.treeList1.Dock = System.Windows.Forms.DockStyle.Fill;
     this.treeList1.Location = new System.Drawing.Point(2, 22);
     this.treeList1.Name = "treeList1";
     this.treeList1.OptionsPrint.UsePrintStyles = true;
     this.treeList1.Size = new System.Drawing.Size(246, 212);
     this.treeList1.TabIndex = 0;
     //
     // panelControl1
     //
     this.panelControl1.Location = new System.Drawing.Point(3, 15);
     this.panelControl1.Name = "panelControl1";
     this.panelControl1.Size = new System.Drawing.Size(250, 218);
     this.panelControl1.TabIndex = 101;
     //
     // CommonTree
     //
     this.AutoScaleDimensions = new System.Drawing.SizeF(7F, 14F);
     this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
     this.Controls.Add(this.groupControl1);
     this.Controls.Add(this.panelControl1);
     this.Name = "CommonTree";
     this.Size = new System.Drawing.Size(250, 236);
     ((System.ComponentModel.ISupportInitialize)(this.groupControl1)).EndInit();
     this.groupControl1.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.treeList1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.panelControl1)).EndInit();
     this.ResumeLayout(false);
 }
Пример #2
0
        /// <summary>
        /// 初始化显示控件
        /// </summary>
        /// <param name="p_Group"></param>
        /// <param name="p_StatusCaption"></param>
        /// <param name="p_ColorStatusName"></param>
        /// <param name="p_ColorStatusColor"></param>
        public static void ColorIniTextBox(DevExpress.XtraEditors.GroupControl p_Group, string p_StatusCaption, string[] p_ColorStatusName, Color[] p_ColorStatusColor)
        {
            p_Group.Controls.Clear();


            int startPosX = 6 + 15 * p_StatusCaption.Length;
            int txtWidth  = 64;

            //增加Lable
            System.Windows.Forms.Label lblStatus = new System.Windows.Forms.Label();
            lblStatus.Location  = new System.Drawing.Point(6, 4);
            lblStatus.Name      = "lblStatus";
            lblStatus.Size      = new System.Drawing.Size(startPosX - 6, 16);
            lblStatus.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
            lblStatus.Text      = p_StatusCaption;
            p_Group.Controls.Add(lblStatus);

            for (int i = 0; i < p_ColorStatusName.Length; i++)//增加TextBox 颜色说明
            {
                System.Windows.Forms.TextBox txtColor = new System.Windows.Forms.TextBox();
                txtColor.Name        = "txtColorStatus" + (i + 1).ToString();
                txtColor.BorderStyle = System.Windows.Forms.BorderStyle.None;
                txtColor.Font        = new System.Drawing.Font("宋体", 10F);
                txtColor.Location    = new System.Drawing.Point(startPosX + txtWidth * i, 4);
                txtColor.ReadOnly    = true;
                txtColor.Size        = new System.Drawing.Size(txtWidth, 16);
                txtColor.TextAlign   = System.Windows.Forms.HorizontalAlignment.Center;
                txtColor.Text        = p_ColorStatusName[i];
                txtColor.BackColor   = p_ColorStatusColor[i];
                p_Group.Controls.Add(txtColor);
            }
        }
Пример #3
0
 public static void ColorIniTextBox(DevExpress.XtraEditors.GroupControl p_Group)
 {
     if (ColorIniFlag)
     {
         FlowColorCommon.ColorIniTextBox(p_Group, "状态", ColorStatusName, ColorStatusColor);
     }
 }
Пример #4
0
        public static DevExpress.Tutorials.ModuleBase ShowModule(string name, DevExpress.XtraEditors.GroupControl group)
        {
            ModuleInfo item          = TutorialsInfo.GetItem(name);
            Cursor     currentCursor = Cursor.Current;

            Cursor.Current = Cursors.WaitCursor;
            group.Parent.SuspendLayout();
            group.SuspendLayout();
            try {
                Control oldTutorial = null;
                if (Instance.CurrentModuleBase != null)
                {
                    oldTutorial = Instance.CurrentModuleBase.TModule;
                }

                TutorialControl tutorial = item.TModule as TutorialControl;
                tutorial.Bounds            = group.DisplayRectangle;
                Instance.CurrentModuleBase = item;
                tutorial.Visible           = false;
                group.Controls.Add(tutorial);
                tutorial.Dock = DockStyle.Fill;

                tutorial.Visible = true;
                if (oldTutorial != null)
                {
                    oldTutorial.Visible = false;
                }
            }
            finally {
                group.ResumeLayout(true);
                group.Parent.ResumeLayout(true);
                Cursor.Current = currentCursor;
            }
            RaiseModuleChanged();
            DevExpress.Tutorials.ModuleBase module = Instance.CurrentModuleBase.TModule as DevExpress.Tutorials.ModuleBase;
            if (module != null)
            {
                module.TutorialInfo.Description       = Instance.CurrentModuleBase.Description;
                module.TutorialInfo.TutorialName      = Instance.CurrentModuleBase.Name;
                module.TutorialInfo.WhatsThisCodeFile = Instance.CurrentModuleBase.CodeFile;
                module.TutorialInfo.WhatsThisXMLFile  = Instance.CurrentModuleBase.XMLFile;
                string xmlFile  = DevExpress.Utils.FilesHelper.FindingFileName(Application.StartupPath, module.TutorialInfo.WhatsThisXMLFile, false);
                string codeFile = DevExpress.Utils.FilesHelper.FindingFileName(Application.StartupPath, module.TutorialInfo.WhatsThisCodeFile, false);
                if (xmlFile == "")
                {
                    module.TutorialInfo.WhatsThisXMLFile = languageDir + module.TutorialInfo.WhatsThisXMLFile;
                }
                if (codeFile == "")
                {
                    module.TutorialInfo.WhatsThisCodeFile = languageDir + module.TutorialInfo.WhatsThisCodeFile;
                }
            }
            return(module);
        }
Пример #5
0
 protected void UpdateGroupControl(DevExpress.XtraEditors.GroupControl grpc, ProCommon.Communal.Language lan, System.Resources.ResourceManager resourceManager)
 {
     if (grpc != null &&
         grpc.Tag != null)
     {
         if (resourceManager != null)
         {
             bool   isChs = (lan == ProCommon.Communal.Language.Chinese);
             string str   = grpc.Tag.ToString();
             grpc.Text = isChs ? resourceManager.GetString("chs_" + str) : resourceManager.GetString("en_" + str);
         }
     }
 }
Пример #6
0
        public static void ShowModule(string name, DevExpress.XtraEditors.GroupControl groupControl, IDXMenuManager menuManager, DevExpress.Utils.Frames.ApplicationCaption caption)
        {
            ModuleInfo item          = DemosInfo.GetItem(name);
            Cursor     currentCursor = Cursor.Current;

            Cursor.Current = Cursors.WaitCursor;
            try
            {
                Control oldTutorial = null;
                if (Instance.CurrentModuleBase != null)
                {
                    if (Instance.CurrentModuleBase.Name == name)
                    {
                        return;
                    }
                    oldTutorial = Instance.CurrentModuleBase.TModule;
                }

                TutorialControl tutorial = item.TModule as TutorialControl;
                tutorial.Bounds            = groupControl.DisplayRectangle;
                Instance.CurrentModuleBase = item;
                tutorial.Visible           = false;
                groupControl.Controls.Add(tutorial);
                tutorial.Dock = DockStyle.Fill;

                //-----Set----
                //   tutorial.DemoMainMenu = menu;
                tutorial.TutorialName = name;
                tutorial.Caption      = caption;
                tutorial.MenuManager  = menuManager;
                //------------

                tutorial.Visible = true;
                item.WasShown    = true;
                //    menu.SchedulerControl = tutorial.PrintingSchedulerControl;
                //  menu.SchedulerReport = tutorial as IDemoSchedulerReport;

                if (oldTutorial != null)
                {
                    ((TutorialControl)oldTutorial).DemoMainMenu = null;
                    oldTutorial.Visible = false;
                }
            }
            finally
            {
                Cursor.Current = currentCursor;
            }
            RaiseModuleChanged();
        }
Пример #7
0
 private void TrimTextEditInGroupControl(DevExpress.XtraEditors.GroupControl gc)
 {
     foreach (Control c in gc.Controls)
     {
         if (c is DevExpress.XtraEditors.TextEdit)
         {
             (c as DevExpress.XtraEditors.TextEdit).Text = (c as DevExpress.XtraEditors.TextEdit).Text.Trim();
         }
         if (c is DevExpress.XtraEditors.MemoEdit)
         {
             (c as DevExpress.XtraEditors.MemoEdit).Text = (c as DevExpress.XtraEditors.MemoEdit).Text.Trim();
         }
         if (c is DevExpress.XtraEditors.GroupControl)
         {
             TrimTextEditInGroupControl(c as DevExpress.XtraEditors.GroupControl);
         }
     }
 }
Пример #8
0
 private void ClearTextEditInGroupControl(DevExpress.XtraEditors.GroupControl gc)
 {
     foreach (Control c in gc.Controls)
     {
         if (c is DevExpress.XtraEditors.TextEdit)
         {
             (c as DevExpress.XtraEditors.TextEdit).Text = "";
         }
         if (c is DevExpress.XtraEditors.MemoEdit)
         {
             (c as DevExpress.XtraEditors.MemoEdit).Text = "";
         }
         if (c is DevExpress.XtraEditors.GroupControl)
         {
             ClearTextEditInGroupControl(c as DevExpress.XtraEditors.GroupControl);
         }
     }
 }
 /// <summary>
 /// Required method for Designer support - do not modify
 /// the contents of this method with the code editor.
 /// </summary>
 protected void InitializeComponent()
 {
     this.components = new System.ComponentModel.Container();
     System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(frmPostMasterSearchQL));
     this.barManager1 = new DevExpress.XtraBars.BarManager(this.components);
     this.MainBar = new DevExpress.XtraBars.Bar();
     this.barButtonItemAdd = new DevExpress.XtraBars.BarButtonItem();
     this.barButtonItemXem = new DevExpress.XtraBars.BarButtonItem();
     this.barButtonItemDelete = new DevExpress.XtraBars.BarButtonItem();
     this.barButtonItemUpdate = new DevExpress.XtraBars.BarButtonItem();
     this.barButtonItemPrint = new DevExpress.XtraBars.BarButtonItem();
     this.popupMenu1 = new DevExpress.XtraBars.PopupMenu(this.components);
     this.barButtonItem4 = new DevExpress.XtraBars.BarButtonItem();
     this.barSubItemInNhan = new DevExpress.XtraBars.BarSubItem();
     this.barButtonItemInBeatcamTrong = new DevExpress.XtraBars.BarButtonItem();
     this.barButtonItemInBeatacamNgoai = new DevExpress.XtraBars.BarButtonItem();
     this.barButtonItemCommit = new DevExpress.XtraBars.BarButtonItem();
     this.barButtonItemNoCommit = new DevExpress.XtraBars.BarButtonItem();
     this.barSubItem1 = new DevExpress.XtraBars.BarSubItem();
     this.barButtonItemSearch = new DevExpress.XtraBars.BarButtonItem();
     this.popupMenuFilter = new DevExpress.XtraBars.PopupMenu(this.components);
     this.barCheckItemFilter = new DevExpress.XtraBars.BarCheckItem();
     this.barCheckItemNangCao = new DevExpress.XtraBars.BarCheckItem();
     this.barCheckItemDonGian = new DevExpress.XtraBars.BarCheckItem();
     this.barButtonItemClose = new DevExpress.XtraBars.BarButtonItem();
     this.barButtonItemThongKe = new DevExpress.XtraBars.BarButtonItem();
     this.barSubItemCotHienThi = new DevExpress.XtraBars.BarSubItem();
     this.barDockControlTop = new DevExpress.XtraBars.BarDockControl();
     this.barDockControlBottom = new DevExpress.XtraBars.BarDockControl();
     this.barDockControlLeft = new DevExpress.XtraBars.BarDockControl();
     this.barDockControlRight = new DevExpress.XtraBars.BarDockControl();
     this.dockManager1 = new DevExpress.XtraBars.Docking.DockManager(this.components);
     this.dockPanelAdvance = new DevExpress.XtraBars.Docking.DockPanel();
     this.controlContainer1 = new DevExpress.XtraBars.Docking.ControlContainer();
     this.filterControl1 = new DevExpress.XtraEditors.FilterControl();
     this.dockPanelSimple = new DevExpress.XtraBars.Docking.DockPanel();
     this.dockPanel1_Container = new DevExpress.XtraBars.Docking.ControlContainer();
     this.popupControlContainerFilter = new DevExpress.XtraBars.PopupControlContainer(this.components);
     this.TenTap = new ProtocolVN.App.VideoLibrary.PLTextEditAutocomplete();
     this.plLabel5 = new DevExpress.XtraEditors.LabelControl();
     this.TapSoDen = new DevExpress.XtraEditors.SpinEdit();
     this.TapSoTu = new DevExpress.XtraEditors.SpinEdit();
     this.plLabel15 = new DevExpress.XtraEditors.LabelControl();
     this.plLabel12 = new DevExpress.XtraEditors.LabelControl();
     this.plLabel3 = new DevExpress.XtraEditors.LabelControl();
     this.SoDKCBHD = new ProtocolVN.Framework.Win.PLMultiCombobox();
     this.PhongBan = new ProtocolVN.Framework.Win.PLDMTreeMultiChoice();
     this.NguoiNhap = new ProtocolVN.Framework.Win.PLMultiCombobox();
     this.ngayNhap = new ProtocolVN.Framework.Win.Trial.PLDateSelection();
     this.MaCT = new DevExpress.XtraEditors.TextEdit();
     this.NoiDung = new ProtocolVN.App.VideoLibrary.PLTextEditAutocomplete();
     this.LoaiLuuTru = new ProtocolVN.Framework.Win.PLMultiCombobox();
     this.PostMaster = new ProtocolVN.Framework.Win.PLMultiCombobox();
     this.TietMuc = new ProtocolVN.Framework.Win.PLMultiCombobox();
     this.plLabel2 = new DevExpress.XtraEditors.LabelControl();
     this.label10 = new DevExpress.XtraEditors.LabelControl();
     this.label1 = new DevExpress.XtraEditors.LabelControl();
     this.plLabel4 = new DevExpress.XtraEditors.LabelControl();
     this.plLabel1 = new DevExpress.XtraEditors.LabelControl();
     this.label29 = new DevExpress.XtraEditors.LabelControl();
     this.label3 = new DevExpress.XtraEditors.LabelControl();
     this.label5 = new DevExpress.XtraEditors.LabelControl();
     this.barStaticItem1 = new DevExpress.XtraBars.BarStaticItem();
     this.barButtonItem1 = new DevExpress.XtraBars.BarButtonItem();
     this.barButtonItem2 = new DevExpress.XtraBars.BarButtonItem();
     this.barButtonItem3 = new DevExpress.XtraBars.BarButtonItem();
     this.splitContainerControl1 = new DevExpress.XtraEditors.SplitContainerControl();
     this.groupControlPM = new DevExpress.XtraEditors.GroupControl();
     this.gridControlMaster = new DevExpress.XtraGrid.GridControl();
     this.gridViewMaster = new DevExpress.XtraGrid.Views.BandedGrid.PLBandedGridView();
     this.Col_PM_Category = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
     this.Col_PM_MaChuongTrinh = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
     this.Col_PM_TenChuongTrinh = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
     this.Col_PM_TietMuc = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
     this.Col_PM_PostMaster = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
     this.Col_PM_TongTap = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
     this.Col_PM_LoaiLuu = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
     this.Col_PM_PopUp = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
     this.Col_PM_ThoiLuongChung = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
     this.Col_PM_TTDinhKem = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
     this.Col_PM_ThanhLy = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
     this.Col_PM_NgayNhapKho = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
     this.Col_PM_Ke = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
     this.Col_PM_Ngan = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
     this.Col_PM_Tang = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
     this.Col_PM_TTHD = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
     this.Col_PM_DVDNgayDuyet = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
     this.Col_PM_DVDNgayHoanTat = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
     this.xtraTabControlDetail = new DevExpress.XtraTab.XtraTabControl();
     this.xtraTabPageDetail = new DevExpress.XtraTab.XtraTabPage();
     this.gridControlDetail = new DevExpress.XtraGrid.GridControl();
     this.gridViewDetail = new DevExpress.XtraGrid.Views.Grid.PLGridView();
     this.Col_BM_ThanhLy = new DevExpress.XtraGrid.Columns.GridColumn();
     this.Col_BM_MaBang = new DevExpress.XtraGrid.Columns.GridColumn();
     this.Col_BM_TapSo = new DevExpress.XtraGrid.Columns.GridColumn();
     this.Col_BM_TenTap = new DevExpress.XtraGrid.Columns.GridColumn();
     this.Col_BM_SoBang = new DevExpress.XtraGrid.Columns.GridColumn();
     this.Col_BM_ThongSo = new DevExpress.XtraGrid.Columns.GridColumn();
     this.Col_BM_ThoiLuong = new DevExpress.XtraGrid.Columns.GridColumn();
     this.Col_BM_SoDKCBHD = new DevExpress.XtraGrid.Columns.GridColumn();
     this.Col_BM_NoiLuuTru = new DevExpress.XtraGrid.Columns.GridColumn();
     this.Col_PM_TienDo = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
     this.gridBandChuongTrinh = new DevExpress.XtraGrid.Views.BandedGrid.GridBand();
     this.gridBandPostMaster = new DevExpress.XtraGrid.Views.BandedGrid.GridBand();
     ((System.ComponentModel.ISupportInitialize)(this.barManager1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.popupMenu1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.popupMenuFilter)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.dockManager1)).BeginInit();
     this.dockPanelAdvance.SuspendLayout();
     this.controlContainer1.SuspendLayout();
     this.dockPanelSimple.SuspendLayout();
     this.dockPanel1_Container.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.popupControlContainerFilter)).BeginInit();
     this.popupControlContainerFilter.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.TenTap.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.TapSoDen.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.TapSoTu.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.SoDKCBHD.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.NguoiNhap.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.MaCT.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.NoiDung.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.LoaiLuuTru.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.PostMaster.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.TietMuc.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.splitContainerControl1)).BeginInit();
     this.splitContainerControl1.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.groupControlPM)).BeginInit();
     this.groupControlPM.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.gridControlMaster)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridViewMaster)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.xtraTabControlDetail)).BeginInit();
     this.xtraTabControlDetail.SuspendLayout();
     this.xtraTabPageDetail.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.gridControlDetail)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridViewDetail)).BeginInit();
     this.SuspendLayout();
     //
     // barManager1
     //
     this.barManager1.Bars.AddRange(new DevExpress.XtraBars.Bar[] {
     this.MainBar});
     this.barManager1.DockControls.Add(this.barDockControlTop);
     this.barManager1.DockControls.Add(this.barDockControlBottom);
     this.barManager1.DockControls.Add(this.barDockControlLeft);
     this.barManager1.DockControls.Add(this.barDockControlRight);
     this.barManager1.DockManager = this.dockManager1;
     this.barManager1.Form = this;
     this.barManager1.Items.AddRange(new DevExpress.XtraBars.BarItem[] {
     this.barButtonItemAdd,
     this.barButtonItemDelete,
     this.barButtonItemUpdate,
     this.barButtonItemPrint,
     this.barStaticItem1,
     this.barButtonItem1,
     this.barButtonItem2,
     this.barButtonItemCommit,
     this.barButtonItemNoCommit,
     this.barSubItem1,
     this.barButtonItemXem,
     this.barButtonItemSearch,
     this.barButtonItemClose,
     this.barCheckItemFilter,
     this.barButtonItem3,
     this.barButtonItem4,
     this.barSubItemCotHienThi,
     this.barSubItemInNhan,
     this.barButtonItemInBeatcamTrong,
     this.barButtonItemInBeatacamNgoai,
     this.barCheckItemNangCao,
     this.barCheckItemDonGian,
     this.barButtonItemThongKe});
     this.barManager1.MaxItemId = 43;
     //
     // MainBar
     //
     this.MainBar.BarName = "MainBar";
     this.MainBar.DockCol = 0;
     this.MainBar.DockRow = 0;
     this.MainBar.DockStyle = DevExpress.XtraBars.BarDockStyle.Top;
     this.MainBar.FloatLocation = new System.Drawing.Point(39, 133);
     this.MainBar.FloatSize = new System.Drawing.Size(72, 73);
     this.MainBar.LinksPersistInfo.AddRange(new DevExpress.XtraBars.LinkPersistInfo[] {
     new DevExpress.XtraBars.LinkPersistInfo(this.barButtonItemAdd),
     new DevExpress.XtraBars.LinkPersistInfo(this.barButtonItemXem),
     new DevExpress.XtraBars.LinkPersistInfo(this.barButtonItemDelete),
     new DevExpress.XtraBars.LinkPersistInfo(this.barButtonItemUpdate),
     new DevExpress.XtraBars.LinkPersistInfo(this.barButtonItemPrint, true),
     new DevExpress.XtraBars.LinkPersistInfo(this.barSubItemInNhan),
     new DevExpress.XtraBars.LinkPersistInfo(this.barButtonItemCommit, true),
     new DevExpress.XtraBars.LinkPersistInfo(this.barButtonItemNoCommit),
     new DevExpress.XtraBars.LinkPersistInfo(this.barSubItem1, true),
     new DevExpress.XtraBars.LinkPersistInfo(this.barButtonItemSearch, true),
     new DevExpress.XtraBars.LinkPersistInfo(this.barButtonItemClose, true),
     new DevExpress.XtraBars.LinkPersistInfo(this.barButtonItemThongKe, true),
     new DevExpress.XtraBars.LinkPersistInfo(this.barSubItemCotHienThi)});
     this.MainBar.OptionsBar.AllowQuickCustomization = false;
     this.MainBar.OptionsBar.DrawDragBorder = false;
     this.MainBar.OptionsBar.RotateWhenVertical = false;
     this.MainBar.OptionsBar.UseWholeRow = true;
     this.MainBar.Text = "Custom 1";
     //
     // barButtonItemAdd
     //
     this.barButtonItemAdd.Caption = "Thêm";
     this.barButtonItemAdd.Id = 0;
     this.barButtonItemAdd.Name = "barButtonItemAdd";
     this.barButtonItemAdd.PaintStyle = DevExpress.XtraBars.BarItemPaintStyle.CaptionGlyph;
     //
     // barButtonItemXem
     //
     this.barButtonItemXem.Caption = "&Xem";
     this.barButtonItemXem.Id = 24;
     this.barButtonItemXem.Name = "barButtonItemXem";
     this.barButtonItemXem.PaintStyle = DevExpress.XtraBars.BarItemPaintStyle.CaptionGlyph;
     //
     // barButtonItemDelete
     //
     this.barButtonItemDelete.Caption = "&Xóa";
     this.barButtonItemDelete.Id = 1;
     this.barButtonItemDelete.Name = "barButtonItemDelete";
     this.barButtonItemDelete.PaintStyle = DevExpress.XtraBars.BarItemPaintStyle.CaptionGlyph;
     //
     // barButtonItemUpdate
     //
     this.barButtonItemUpdate.Caption = "&Sửa";
     this.barButtonItemUpdate.Id = 2;
     this.barButtonItemUpdate.Name = "barButtonItemUpdate";
     this.barButtonItemUpdate.PaintStyle = DevExpress.XtraBars.BarItemPaintStyle.CaptionGlyph;
     //
     // barButtonItemPrint
     //
     this.barButtonItemPrint.ButtonStyle = DevExpress.XtraBars.BarButtonStyle.DropDown;
     this.barButtonItemPrint.Caption = "&In";
     this.barButtonItemPrint.DropDownControl = this.popupMenu1;
     this.barButtonItemPrint.Id = 3;
     this.barButtonItemPrint.Name = "barButtonItemPrint";
     this.barButtonItemPrint.PaintStyle = DevExpress.XtraBars.BarItemPaintStyle.CaptionGlyph;
     //
     // popupMenu1
     //
     this.popupMenu1.LinksPersistInfo.AddRange(new DevExpress.XtraBars.LinkPersistInfo[] {
     new DevExpress.XtraBars.LinkPersistInfo(this.barButtonItem4)});
     this.popupMenu1.Manager = this.barManager1;
     this.popupMenu1.Name = "popupMenu1";
     //
     // barButtonItem4
     //
     this.barButtonItem4.Caption = "Xem trước";
     this.barButtonItem4.Id = 33;
     this.barButtonItem4.Name = "barButtonItem4";
     //
     // barSubItemInNhan
     //
     this.barSubItemInNhan.Caption = "In n&hãn";
     this.barSubItemInNhan.Id = 37;
     this.barSubItemInNhan.LinksPersistInfo.AddRange(new DevExpress.XtraBars.LinkPersistInfo[] {
     new DevExpress.XtraBars.LinkPersistInfo(this.barButtonItemInBeatcamTrong),
     new DevExpress.XtraBars.LinkPersistInfo(this.barButtonItemInBeatacamNgoai)});
     this.barSubItemInNhan.Name = "barSubItemInNhan";
     //
     // barButtonItemInBeatcamTrong
     //
     this.barButtonItemInBeatcamTrong.Caption = "In betacam t&rong";
     this.barButtonItemInBeatcamTrong.Id = 38;
     this.barButtonItemInBeatcamTrong.Name = "barButtonItemInBeatcamTrong";
     this.barButtonItemInBeatcamTrong.ItemClick += new DevExpress.XtraBars.ItemClickEventHandler(this.barButtonItemInBeatcamTrong_ItemClick);
     //
     // barButtonItemInBeatacamNgoai
     //
     this.barButtonItemInBeatacamNgoai.Caption = "In betacam n&goài";
     this.barButtonItemInBeatacamNgoai.Id = 39;
     this.barButtonItemInBeatacamNgoai.Name = "barButtonItemInBeatacamNgoai";
     this.barButtonItemInBeatacamNgoai.ItemClick += new DevExpress.XtraBars.ItemClickEventHandler(this.barButtonItemInBeatacamNgoai_ItemClick);
     //
     // barButtonItemCommit
     //
     this.barButtonItemCommit.Caption = "&Duyệt";
     this.barButtonItemCommit.Id = 17;
     this.barButtonItemCommit.Name = "barButtonItemCommit";
     this.barButtonItemCommit.PaintStyle = DevExpress.XtraBars.BarItemPaintStyle.CaptionGlyph;
     //
     // barButtonItemNoCommit
     //
     this.barButtonItemNoCommit.Caption = "&Không duyệt";
     this.barButtonItemNoCommit.Id = 18;
     this.barButtonItemNoCommit.Name = "barButtonItemNoCommit";
     this.barButtonItemNoCommit.PaintStyle = DevExpress.XtraBars.BarItemPaintStyle.CaptionGlyph;
     //
     // barSubItem1
     //
     this.barSubItem1.Caption = "Nghiệp vụ";
     this.barSubItem1.Id = 20;
     this.barSubItem1.Name = "barSubItem1";
     this.barSubItem1.PaintStyle = DevExpress.XtraBars.BarItemPaintStyle.CaptionGlyph;
     //
     // barButtonItemSearch
     //
     this.barButtonItemSearch.ButtonStyle = DevExpress.XtraBars.BarButtonStyle.DropDown;
     this.barButtonItemSearch.Caption = "Tìm kiếm";
     this.barButtonItemSearch.DropDownControl = this.popupMenuFilter;
     this.barButtonItemSearch.Id = 27;
     this.barButtonItemSearch.Name = "barButtonItemSearch";
     this.barButtonItemSearch.PaintStyle = DevExpress.XtraBars.BarItemPaintStyle.CaptionGlyph;
     //
     // popupMenuFilter
     //
     this.popupMenuFilter.LinksPersistInfo.AddRange(new DevExpress.XtraBars.LinkPersistInfo[] {
     new DevExpress.XtraBars.LinkPersistInfo(this.barCheckItemFilter),
     new DevExpress.XtraBars.LinkPersistInfo(this.barCheckItemNangCao),
     new DevExpress.XtraBars.LinkPersistInfo(this.barCheckItemDonGian)});
     this.popupMenuFilter.Manager = this.barManager1;
     this.popupMenuFilter.Name = "popupMenuFilter";
     //
     // barCheckItemFilter
     //
     this.barCheckItemFilter.Caption = "Điều &kiện lọc";
     this.barCheckItemFilter.Checked = true;
     this.barCheckItemFilter.Id = 29;
     this.barCheckItemFilter.Name = "barCheckItemFilter";
     this.barCheckItemFilter.PaintStyle = DevExpress.XtraBars.BarItemPaintStyle.CaptionGlyph;
     this.barCheckItemFilter.Visibility = DevExpress.XtraBars.BarItemVisibility.Never;
     //
     // barCheckItemNangCao
     //
     this.barCheckItemNangCao.Caption = "Tìm kiếm nâng cao";
     this.barCheckItemNangCao.Id = 40;
     this.barCheckItemNangCao.Name = "barCheckItemNangCao";
     //
     // barCheckItemDonGian
     //
     this.barCheckItemDonGian.Caption = "Tìm kiếm đơn giản";
     this.barCheckItemDonGian.Id = 41;
     this.barCheckItemDonGian.Name = "barCheckItemDonGian";
     //
     // barButtonItemClose
     //
     this.barButtonItemClose.Caption = "Đóng";
     this.barButtonItemClose.Id = 28;
     this.barButtonItemClose.Name = "barButtonItemClose";
     this.barButtonItemClose.PaintStyle = DevExpress.XtraBars.BarItemPaintStyle.CaptionGlyph;
     //
     // barButtonItemThongKe
     //
     this.barButtonItemThongKe.Caption = "&Thống kê";
     this.barButtonItemThongKe.Id = 42;
     this.barButtonItemThongKe.Name = "barButtonItemThongKe";
     this.barButtonItemThongKe.PaintStyle = DevExpress.XtraBars.BarItemPaintStyle.CaptionGlyph;
     //
     // barSubItemCotHienThi
     //
     this.barSubItemCotHienThi.Caption = "Chọn cột hiển thị";
     this.barSubItemCotHienThi.Id = 36;
     this.barSubItemCotHienThi.Name = "barSubItemCotHienThi";
     //
     // barDockControlTop
     //
     this.barDockControlTop.Dock = System.Windows.Forms.DockStyle.Top;
     this.barDockControlTop.Location = new System.Drawing.Point(0, 0);
     this.barDockControlTop.Size = new System.Drawing.Size(1008, 24);
     //
     // barDockControlBottom
     //
     this.barDockControlBottom.Dock = System.Windows.Forms.DockStyle.Bottom;
     this.barDockControlBottom.Location = new System.Drawing.Point(0, 545);
     this.barDockControlBottom.Size = new System.Drawing.Size(1008, 0);
     //
     // barDockControlLeft
     //
     this.barDockControlLeft.Dock = System.Windows.Forms.DockStyle.Left;
     this.barDockControlLeft.Location = new System.Drawing.Point(0, 24);
     this.barDockControlLeft.Size = new System.Drawing.Size(0, 521);
     //
     // barDockControlRight
     //
     this.barDockControlRight.Dock = System.Windows.Forms.DockStyle.Right;
     this.barDockControlRight.Location = new System.Drawing.Point(1008, 24);
     this.barDockControlRight.Size = new System.Drawing.Size(0, 521);
     //
     // dockManager1
     //
     this.dockManager1.DockingOptions.ShowCloseButton = false;
     this.dockManager1.Form = this;
     this.dockManager1.RootPanels.AddRange(new DevExpress.XtraBars.Docking.DockPanel[] {
     this.dockPanelAdvance,
     this.dockPanelSimple});
     this.dockManager1.TopZIndexControls.AddRange(new string[] {
     "DevExpress.XtraBars.BarDockControl",
     "DevExpress.XtraBars.StandaloneBarDockControl",
     "System.Windows.Forms.StatusBar",
     "DevExpress.XtraBars.Ribbon.RibbonStatusBar",
     "DevExpress.XtraBars.Ribbon.RibbonControl"});
     //
     // dockPanelAdvance
     //
     this.dockPanelAdvance.Controls.Add(this.controlContainer1);
     this.dockPanelAdvance.Dock = DevExpress.XtraBars.Docking.DockingStyle.Left;
     this.dockPanelAdvance.ID = new System.Guid("44e36ae0-214f-42cd-8bee-8c8105129b29");
     this.dockPanelAdvance.Location = new System.Drawing.Point(0, 24);
     this.dockPanelAdvance.Name = "dockPanelAdvance";
     this.dockPanelAdvance.OriginalSize = new System.Drawing.Size(200, 200);
     this.dockPanelAdvance.Size = new System.Drawing.Size(200, 521);
     this.dockPanelAdvance.Text = "Điều kiện tìm kiếm nâng cao";
     //
     // controlContainer1
     //
     this.controlContainer1.Controls.Add(this.filterControl1);
     this.controlContainer1.Location = new System.Drawing.Point(3, 25);
     this.controlContainer1.Name = "controlContainer1";
     this.controlContainer1.Size = new System.Drawing.Size(194, 493);
     this.controlContainer1.TabIndex = 0;
     //
     // filterControl1
     //
     this.filterControl1.BorderStyle = DevExpress.XtraEditors.Controls.BorderStyles.NoBorder;
     this.filterControl1.Cursor = System.Windows.Forms.Cursors.Arrow;
     this.filterControl1.Dock = System.Windows.Forms.DockStyle.Fill;
     this.filterControl1.Location = new System.Drawing.Point(0, 0);
     this.filterControl1.Name = "filterControl1";
     this.filterControl1.Size = new System.Drawing.Size(194, 493);
     this.filterControl1.TabIndex = 11;
     this.filterControl1.Text = "filterControl1";
     //
     // dockPanelSimple
     //
     this.dockPanelSimple.Controls.Add(this.dockPanel1_Container);
     this.dockPanelSimple.Dock = DevExpress.XtraBars.Docking.DockingStyle.Top;
     this.dockPanelSimple.FloatVertical = true;
     this.dockPanelSimple.ID = new System.Guid("437240ce-168d-4c05-a0b9-c702ea5e41f7");
     this.dockPanelSimple.Location = new System.Drawing.Point(200, 24);
     this.dockPanelSimple.Name = "dockPanelSimple";
     this.dockPanelSimple.Options.AllowDockLeft = false;
     this.dockPanelSimple.Options.AllowDockRight = false;
     this.dockPanelSimple.OriginalSize = new System.Drawing.Size(200, 111);
     this.dockPanelSimple.Size = new System.Drawing.Size(808, 111);
     this.dockPanelSimple.Text = "Điều kiện tìm kiếm đơn giản";
     //
     // dockPanel1_Container
     //
     this.dockPanel1_Container.Controls.Add(this.popupControlContainerFilter);
     this.dockPanel1_Container.Location = new System.Drawing.Point(3, 25);
     this.dockPanel1_Container.Name = "dockPanel1_Container";
     this.dockPanel1_Container.Size = new System.Drawing.Size(802, 83);
     this.dockPanel1_Container.TabIndex = 0;
     //
     // popupControlContainerFilter
     //
     this.popupControlContainerFilter.BorderStyle = DevExpress.XtraEditors.Controls.BorderStyles.NoBorder;
     this.popupControlContainerFilter.Controls.Add(this.TenTap);
     this.popupControlContainerFilter.Controls.Add(this.plLabel5);
     this.popupControlContainerFilter.Controls.Add(this.TapSoDen);
     this.popupControlContainerFilter.Controls.Add(this.TapSoTu);
     this.popupControlContainerFilter.Controls.Add(this.plLabel15);
     this.popupControlContainerFilter.Controls.Add(this.plLabel12);
     this.popupControlContainerFilter.Controls.Add(this.plLabel3);
     this.popupControlContainerFilter.Controls.Add(this.SoDKCBHD);
     this.popupControlContainerFilter.Controls.Add(this.PhongBan);
     this.popupControlContainerFilter.Controls.Add(this.NguoiNhap);
     this.popupControlContainerFilter.Controls.Add(this.ngayNhap);
     this.popupControlContainerFilter.Controls.Add(this.MaCT);
     this.popupControlContainerFilter.Controls.Add(this.NoiDung);
     this.popupControlContainerFilter.Controls.Add(this.LoaiLuuTru);
     this.popupControlContainerFilter.Controls.Add(this.PostMaster);
     this.popupControlContainerFilter.Controls.Add(this.TietMuc);
     this.popupControlContainerFilter.Controls.Add(this.plLabel2);
     this.popupControlContainerFilter.Controls.Add(this.label10);
     this.popupControlContainerFilter.Controls.Add(this.label1);
     this.popupControlContainerFilter.Controls.Add(this.plLabel4);
     this.popupControlContainerFilter.Controls.Add(this.plLabel1);
     this.popupControlContainerFilter.Controls.Add(this.label29);
     this.popupControlContainerFilter.Controls.Add(this.label3);
     this.popupControlContainerFilter.Controls.Add(this.label5);
     this.popupControlContainerFilter.Dock = System.Windows.Forms.DockStyle.Fill;
     this.popupControlContainerFilter.Location = new System.Drawing.Point(0, 0);
     this.popupControlContainerFilter.Manager = this.barManager1;
     this.popupControlContainerFilter.Name = "popupControlContainerFilter";
     this.popupControlContainerFilter.Size = new System.Drawing.Size(802, 83);
     this.popupControlContainerFilter.TabIndex = 5;
     this.popupControlContainerFilter.Visible = false;
     //
     // TenTap
     //
     this.TenTap._DataSource = null;
     this.TenTap._GetField = null;
     this.TenTap.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
                 | System.Windows.Forms.AnchorStyles.Right)));
     this.TenTap.Location = new System.Drawing.Point(750, 60);
     this.TenTap.Name = "TenTap";
     this.TenTap.Properties.CloseUpKey = new DevExpress.Utils.KeyShortcut(System.Windows.Forms.Keys.None);
     this.TenTap.Size = new System.Drawing.Size(606, 20);
     this.TenTap.TabIndex = 222;
     //
     // plLabel5
     //
     this.plLabel5.Location = new System.Drawing.Point(693, 63);
     this.plLabel5.Name = "plLabel5";
     this.plLabel5.Size = new System.Drawing.Size(37, 13);
     this.plLabel5.TabIndex = 240;
     this.plLabel5.Text = "Tên tập";
     //
     // TapSoDen
     //
     this.TapSoDen.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
                 | System.Windows.Forms.AnchorStyles.Right)));
     this.TapSoDen.EditValue = new decimal(new int[] {
     0,
     0,
     0,
     0});
     this.TapSoDen.Location = new System.Drawing.Point(953, 35);
     this.TapSoDen.Name = "TapSoDen";
     this.TapSoDen.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton()});
     this.TapSoDen.Size = new System.Drawing.Size(606, 20);
     this.TapSoDen.TabIndex = 241;
     //
     // TapSoTu
     //
     this.TapSoTu.EditValue = new decimal(new int[] {
     0,
     0,
     0,
     0});
     this.TapSoTu.Location = new System.Drawing.Point(875, 35);
     this.TapSoTu.Name = "TapSoTu";
     this.TapSoTu.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton()});
     this.TapSoTu.Size = new System.Drawing.Size(42, 20);
     this.TapSoTu.TabIndex = 242;
     //
     // plLabel15
     //
     this.plLabel15.Location = new System.Drawing.Point(923, 39);
     this.plLabel15.Name = "plLabel15";
     this.plLabel15.Size = new System.Drawing.Size(18, 13);
     this.plLabel15.TabIndex = 239;
     this.plLabel15.Text = "đến";
     //
     // plLabel12
     //
     this.plLabel12.Location = new System.Drawing.Point(811, 38);
     this.plLabel12.Name = "plLabel12";
     this.plLabel12.Size = new System.Drawing.Size(32, 13);
     this.plLabel12.TabIndex = 240;
     this.plLabel12.Text = "Tập số";
     //
     // plLabel3
     //
     this.plLabel3.Location = new System.Drawing.Point(811, 8);
     this.plLabel3.Name = "plLabel3";
     this.plLabel3.Size = new System.Drawing.Size(59, 13);
     this.plLabel3.TabIndex = 229;
     this.plLabel3.Text = "Số ĐKCB HD";
     this.plLabel3.ToolTip = "Số đăng ký cá biệt HD";
     //
     // SoDKCBHD
     //
     this.SoDKCBHD.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
                 | System.Windows.Forms.AnchorStyles.Right)));
     this.SoDKCBHD.DataSource = null;
     this.SoDKCBHD.DisplayField = null;
     this.SoDKCBHD.Location = new System.Drawing.Point(875, 5);
     this.SoDKCBHD.Name = "SoDKCBHD";
     this.SoDKCBHD.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.SoDKCBHD.Size = new System.Drawing.Size(606, 20);
     this.SoDKCBHD.TabIndex = 228;
     this.SoDKCBHD.ValueField = null;
     //
     // PhongBan
     //
     this.PhongBan.Location = new System.Drawing.Point(338, 32);
     this.PhongBan.Name = "PhongBan";
     this.PhongBan.Size = new System.Drawing.Size(187, 20);
     this.PhongBan.TabIndex = 10;
     //
     // NguoiNhap
     //
     this.NguoiNhap.DataSource = null;
     this.NguoiNhap.DisplayField = null;
     this.NguoiNhap.Location = new System.Drawing.Point(338, 8);
     this.NguoiNhap.Name = "NguoiNhap";
     this.NguoiNhap.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.NguoiNhap.Size = new System.Drawing.Size(187, 20);
     this.NguoiNhap.TabIndex = 227;
     this.NguoiNhap.ValueField = null;
     //
     // ngayNhap
     //
     this.ngayNhap.Caption = "Từ ngày 22/03/2012 đến ngày 29/03/2012";
     this.ngayNhap.Default = ProtocolVN.Framework.Win.Trial.SelectionTypes.FromDateToDate;
     this.ngayNhap.FirstFrom = new System.DateTime(2012, 3, 22, 15, 55, 8, 468);
     this.ngayNhap.FirstTo = new System.DateTime(2012, 3, 29, 15, 55, 8, 468);
     this.ngayNhap.FromDate = new System.DateTime(2012, 3, 22, 15, 55, 8, 468);
     this.ngayNhap.Location = new System.Drawing.Point(338, 57);
     this.ngayNhap.Name = "ngayNhap";
     this.ngayNhap.ReturnType = ProtocolVN.Framework.Win.Trial.TimeType.Date;
     this.ngayNhap.SecondFrom = new System.DateTime(2012, 3, 22, 15, 55, 8, 468);
     this.ngayNhap.SecondTo = new System.DateTime(2012, 3, 29, 15, 55, 8, 468);
     this.ngayNhap.SelectedType = ProtocolVN.Framework.Win.Trial.SelectionTypes.FromDateToDate;
     this.ngayNhap.Size = new System.Drawing.Size(285, 21);
     this.ngayNhap.TabIndex = 226;
     this.ngayNhap.ToDate = new System.DateTime(2012, 3, 29, 15, 55, 8, 468);
     this.ngayNhap.Types = ((ProtocolVN.Framework.Win.Trial.SelectionTypes)(((((((((ProtocolVN.Framework.Win.Trial.SelectionTypes.OneDate | ProtocolVN.Framework.Win.Trial.SelectionTypes.OneMonth)
                 | ProtocolVN.Framework.Win.Trial.SelectionTypes.OneQuarter)
                 | ProtocolVN.Framework.Win.Trial.SelectionTypes.OneYear)
                 | ProtocolVN.Framework.Win.Trial.SelectionTypes.SixMonths)
                 | ProtocolVN.Framework.Win.Trial.SelectionTypes.FromDateToDate)
                 | ProtocolVN.Framework.Win.Trial.SelectionTypes.FromMonthToMonth)
                 | ProtocolVN.Framework.Win.Trial.SelectionTypes.FromQuarterToQuarter)
                 | ProtocolVN.Framework.Win.Trial.SelectionTypes.FromYearToYear)));
     //
     // MaCT
     //
     this.MaCT.Location = new System.Drawing.Point(48, 8);
     this.MaCT.Name = "MaCT";
     this.MaCT.Size = new System.Drawing.Size(214, 20);
     this.MaCT.TabIndex = 223;
     //
     // NoiDung
     //
     this.NoiDung._DataSource = null;
     this.NoiDung._GetField = null;
     this.NoiDung.Location = new System.Drawing.Point(48, 32);
     this.NoiDung.Name = "NoiDung";
     this.NoiDung.Properties.CloseUpKey = new DevExpress.Utils.KeyShortcut(System.Windows.Forms.Keys.None);
     this.NoiDung.Size = new System.Drawing.Size(214, 20);
     this.NoiDung.TabIndex = 222;
     //
     // LoaiLuuTru
     //
     this.LoaiLuuTru.DataSource = null;
     this.LoaiLuuTru.DisplayField = null;
     this.LoaiLuuTru.Location = new System.Drawing.Point(608, 32);
     this.LoaiLuuTru.Name = "LoaiLuuTru";
     this.LoaiLuuTru.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.LoaiLuuTru.Size = new System.Drawing.Size(185, 20);
     this.LoaiLuuTru.TabIndex = 220;
     this.LoaiLuuTru.ValueField = null;
     //
     // PostMaster
     //
     this.PostMaster.DataSource = null;
     this.PostMaster.DisplayField = null;
     this.PostMaster.Location = new System.Drawing.Point(608, 8);
     this.PostMaster.Name = "PostMaster";
     this.PostMaster.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.PostMaster.Size = new System.Drawing.Size(185, 20);
     this.PostMaster.TabIndex = 220;
     this.PostMaster.ValueField = null;
     //
     // TietMuc
     //
     this.TietMuc.DataSource = null;
     this.TietMuc.DisplayField = null;
     this.TietMuc.Location = new System.Drawing.Point(48, 56);
     this.TietMuc.Name = "TietMuc";
     this.TietMuc.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.TietMuc.Size = new System.Drawing.Size(214, 20);
     this.TietMuc.TabIndex = 216;
     this.TietMuc.ValueField = null;
     //
     // plLabel2
     //
     this.plLabel2.Location = new System.Drawing.Point(544, 38);
     this.plLabel2.Name = "plLabel2";
     this.plLabel2.Size = new System.Drawing.Size(55, 13);
     this.plLabel2.TabIndex = 213;
     this.plLabel2.Text = "Loại lưu trữ";
     //
     // label10
     //
     this.label10.Location = new System.Drawing.Point(544, 12);
     this.label10.Name = "label10";
     this.label10.Size = new System.Drawing.Size(58, 13);
     this.label10.TabIndex = 213;
     this.label10.Text = "Post/Master";
     //
     // label1
     //
     this.label1.Location = new System.Drawing.Point(4, 12);
     this.label1.Name = "label1";
     this.label1.Size = new System.Drawing.Size(30, 13);
     this.label1.TabIndex = 214;
     this.label1.Text = "Mã CT";
     //
     // plLabel4
     //
     this.plLabel4.Location = new System.Drawing.Point(275, 12);
     this.plLabel4.Name = "plLabel4";
     this.plLabel4.Size = new System.Drawing.Size(55, 13);
     this.plLabel4.TabIndex = 217;
     this.plLabel4.Text = "Người nhập";
     //
     // plLabel1
     //
     this.plLabel1.Location = new System.Drawing.Point(275, 36);
     this.plLabel1.Name = "plLabel1";
     this.plLabel1.Size = new System.Drawing.Size(51, 13);
     this.plLabel1.TabIndex = 217;
     this.plLabel1.Text = "Phòng ban";
     //
     // label29
     //
     this.label29.Location = new System.Drawing.Point(274, 59);
     this.label29.Name = "label29";
     this.label29.Size = new System.Drawing.Size(52, 13);
     this.label29.TabIndex = 217;
     this.label29.Text = "Ngày nhập";
     //
     // label3
     //
     this.label3.Location = new System.Drawing.Point(3, 36);
     this.label3.Name = "label3";
     this.label3.Size = new System.Drawing.Size(34, 13);
     this.label3.TabIndex = 218;
     this.label3.Text = "Tên CT";
     //
     // label5
     //
     this.label5.Location = new System.Drawing.Point(2, 60);
     this.label5.Name = "label5";
     this.label5.Size = new System.Drawing.Size(40, 13);
     this.label5.TabIndex = 219;
     this.label5.Text = "Tiết mục";
     //
     // barStaticItem1
     //
     this.barStaticItem1.AutoSize = DevExpress.XtraBars.BarStaticItemSize.None;
     this.barStaticItem1.Border = DevExpress.XtraEditors.Controls.BorderStyles.NoBorder;
     this.barStaticItem1.Id = 13;
     this.barStaticItem1.Name = "barStaticItem1";
     this.barStaticItem1.TextAlignment = System.Drawing.StringAlignment.Near;
     this.barStaticItem1.Width = 100;
     //
     // barButtonItem1
     //
     this.barButtonItem1.Caption = "barButtonItem1";
     this.barButtonItem1.Id = 14;
     this.barButtonItem1.Name = "barButtonItem1";
     //
     // barButtonItem2
     //
     this.barButtonItem2.Caption = "barButtonItem2";
     this.barButtonItem2.Id = 15;
     this.barButtonItem2.Name = "barButtonItem2";
     //
     // barButtonItem3
     //
     this.barButtonItem3.ButtonStyle = DevExpress.XtraBars.BarButtonStyle.DropDown;
     this.barButtonItem3.Caption = "In";
     this.barButtonItem3.Id = 30;
     this.barButtonItem3.Name = "barButtonItem3";
     //
     // splitContainerControl1
     //
     this.splitContainerControl1.Dock = System.Windows.Forms.DockStyle.Fill;
     this.splitContainerControl1.Location = new System.Drawing.Point(200, 135);
     this.splitContainerControl1.Name = "splitContainerControl1";
     this.splitContainerControl1.Panel1.Controls.Add(this.groupControlPM);
     this.splitContainerControl1.Panel1.Text = "splitContainerControl1_Panel1";
     this.splitContainerControl1.Panel2.CaptionLocation = DevExpress.Utils.Locations.Left;
     this.splitContainerControl1.Panel2.Controls.Add(this.xtraTabControlDetail);
     this.splitContainerControl1.Panel2.ShowCaption = true;
     this.splitContainerControl1.Panel2.Text = "splitContainerControl1_Panel2";
     this.splitContainerControl1.Size = new System.Drawing.Size(808, 410);
     this.splitContainerControl1.SplitterPosition = 627;
     this.splitContainerControl1.TabIndex = 4;
     this.splitContainerControl1.Text = "splitContainerControl1";
     //
     // groupControlPM
     //
     this.groupControlPM.Appearance.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(0)))), ((int)(((byte)(0)))), ((int)(((byte)(192)))));
     this.groupControlPM.Appearance.Options.UseBorderColor = true;
     this.groupControlPM.BorderStyle = DevExpress.XtraEditors.Controls.BorderStyles.Simple;
     this.groupControlPM.Controls.Add(this.gridControlMaster);
     this.groupControlPM.Dock = System.Windows.Forms.DockStyle.Fill;
     this.groupControlPM.Location = new System.Drawing.Point(0, 0);
     this.groupControlPM.LookAndFeel.Style = DevExpress.LookAndFeel.LookAndFeelStyle.Flat;
     this.groupControlPM.LookAndFeel.UseDefaultLookAndFeel = false;
     this.groupControlPM.Name = "groupControlPM";
     this.groupControlPM.ShowCaption = false;
     this.groupControlPM.Size = new System.Drawing.Size(627, 410);
     this.groupControlPM.TabIndex = 236;
     this.groupControlPM.Text = "groupControl7";
     //
     // gridControlMaster
     //
     this.gridControlMaster.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("gridControlMaster.BackgroundImage")));
     this.gridControlMaster.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Center;
     this.gridControlMaster.Dock = System.Windows.Forms.DockStyle.Fill;
     this.gridControlMaster.Location = new System.Drawing.Point(2, 2);
     this.gridControlMaster.MainView = this.gridViewMaster;
     this.gridControlMaster.Name = "gridControlMaster";
     this.gridControlMaster.Size = new System.Drawing.Size(623, 406);
     this.gridControlMaster.TabIndex = 10;
     this.gridControlMaster.ViewCollection.AddRange(new DevExpress.XtraGrid.Views.Base.BaseView[] {
     this.gridViewMaster});
     //
     // gridViewMaster
     //
     this.gridViewMaster.Appearance.HeaderPanel.Options.UseTextOptions = true;
     this.gridViewMaster.Appearance.HeaderPanel.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.gridViewMaster.Bands.AddRange(new DevExpress.XtraGrid.Views.BandedGrid.GridBand[] {
     this.gridBandChuongTrinh,
     this.gridBandPostMaster});
     this.gridViewMaster.Columns.AddRange(new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn[] {
     this.Col_PM_MaChuongTrinh,
     this.Col_PM_TenChuongTrinh,
     this.Col_PM_TietMuc,
     this.Col_PM_PostMaster,
     this.Col_PM_ThanhLy,
     this.Col_PM_LoaiLuu,
     this.Col_PM_TongTap,
     this.Col_PM_Ke,
     this.Col_PM_Ngan,
     this.Col_PM_Tang,
     this.Col_PM_PopUp,
     this.Col_PM_TTDinhKem,
     this.Col_PM_NgayNhapKho,
     this.Col_PM_DVDNgayDuyet,
     this.Col_PM_DVDNgayHoanTat,
     this.Col_PM_TTHD,
     this.Col_PM_ThoiLuongChung,
     this.Col_PM_Category,
     this.Col_PM_TienDo});
     this.gridViewMaster.GridControl = this.gridControlMaster;
     this.gridViewMaster.GroupCount = 1;
     this.gridViewMaster.IndicatorWidth = 40;
     this.gridViewMaster.Name = "gridViewMaster";
     this.gridViewMaster.OptionsLayout.Columns.AddNewColumns = false;
     this.gridViewMaster.OptionsNavigation.AutoFocusNewRow = true;
     this.gridViewMaster.OptionsNavigation.EnterMoveNextColumn = true;
     this.gridViewMaster.OptionsPrint.UsePrintStyles = true;
     this.gridViewMaster.OptionsView.ColumnAutoWidth = false;
     this.gridViewMaster.OptionsView.EnableAppearanceEvenRow = true;
     this.gridViewMaster.OptionsView.EnableAppearanceOddRow = true;
     this.gridViewMaster.OptionsView.NewItemRowPosition = DevExpress.XtraGrid.Views.Grid.NewItemRowPosition.Bottom;
     this.gridViewMaster.OptionsView.ShowGroupPanel = false;
     this.gridViewMaster.OptionsView.ShowViewCaption = true;
     this.gridViewMaster.SortInfo.AddRange(new DevExpress.XtraGrid.Columns.GridColumnSortInfo[] {
     new DevExpress.XtraGrid.Columns.GridColumnSortInfo(this.Col_PM_Category, DevExpress.Data.ColumnSortOrder.Ascending)});
     this.gridViewMaster.ViewCaption = "Post/Master (Cấp 2)";
     //
     // Col_PM_Category
     //
     this.Col_PM_Category.Caption = "Category";
     this.Col_PM_Category.Name = "Col_PM_Category";
     this.Col_PM_Category.Visible = true;
     //
     // Col_PM_MaChuongTrinh
     //
     this.Col_PM_MaChuongTrinh.Caption = "Mã chương trình";
     this.Col_PM_MaChuongTrinh.Name = "Col_PM_MaChuongTrinh";
     this.Col_PM_MaChuongTrinh.Visible = true;
     this.Col_PM_MaChuongTrinh.Width = 90;
     //
     // Col_PM_TenChuongTrinh
     //
     this.Col_PM_TenChuongTrinh.Caption = "Tên chương trình";
     this.Col_PM_TenChuongTrinh.Name = "Col_PM_TenChuongTrinh";
     this.Col_PM_TenChuongTrinh.Visible = true;
     this.Col_PM_TenChuongTrinh.Width = 94;
     //
     // Col_PM_TietMuc
     //
     this.Col_PM_TietMuc.Caption = " Tiết mục";
     this.Col_PM_TietMuc.Name = "Col_PM_TietMuc";
     this.Col_PM_TietMuc.Visible = true;
     this.Col_PM_TietMuc.Width = 55;
     //
     // Col_PM_PostMaster
     //
     this.Col_PM_PostMaster.Caption = "Post/Master";
     this.Col_PM_PostMaster.Name = "Col_PM_PostMaster";
     this.Col_PM_PostMaster.OptionsColumn.AllowMove = false;
     this.Col_PM_PostMaster.OptionsColumn.AllowShowHide = false;
     this.Col_PM_PostMaster.Visible = true;
     this.Col_PM_PostMaster.Width = 70;
     //
     // Col_PM_TongTap
     //
     this.Col_PM_TongTap.Caption = "Số tập gốc/cắt";
     this.Col_PM_TongTap.Name = "Col_PM_TongTap";
     this.Col_PM_TongTap.Visible = true;
     this.Col_PM_TongTap.Width = 82;
     //
     // Col_PM_LoaiLuu
     //
     this.Col_PM_LoaiLuu.Caption = "Loại lưu trữ";
     this.Col_PM_LoaiLuu.Name = "Col_PM_LoaiLuu";
     this.Col_PM_LoaiLuu.Visible = true;
     this.Col_PM_LoaiLuu.Width = 67;
     //
     // Col_PM_PopUp
     //
     this.Col_PM_PopUp.Caption = "Pop Up";
     this.Col_PM_PopUp.Name = "Col_PM_PopUp";
     this.Col_PM_PopUp.Visible = true;
     this.Col_PM_PopUp.Width = 46;
     //
     // Col_PM_ThoiLuongChung
     //
     this.Col_PM_ThoiLuongChung.Caption = "Thời lượng chung";
     this.Col_PM_ThoiLuongChung.Name = "Col_PM_ThoiLuongChung";
     this.Col_PM_ThoiLuongChung.Visible = true;
     this.Col_PM_ThoiLuongChung.Width = 94;
     //
     // Col_PM_TTDinhKem
     //
     this.Col_PM_TTDinhKem.Caption = "TT Đính kèm";
     this.Col_PM_TTDinhKem.Name = "Col_PM_TTDinhKem";
     this.Col_PM_TTDinhKem.Visible = true;
     this.Col_PM_TTDinhKem.Width = 71;
     //
     // Col_PM_ThanhLy
     //
     this.Col_PM_ThanhLy.Caption = "Thanh lý";
     this.Col_PM_ThanhLy.Name = "Col_PM_ThanhLy";
     this.Col_PM_ThanhLy.Visible = true;
     this.Col_PM_ThanhLy.Width = 53;
     //
     // Col_PM_NgayNhapKho
     //
     this.Col_PM_NgayNhapKho.Caption = "Ngày nhập kho";
     this.Col_PM_NgayNhapKho.Name = "Col_PM_NgayNhapKho";
     this.Col_PM_NgayNhapKho.Visible = true;
     this.Col_PM_NgayNhapKho.Width = 84;
     //
     // Col_PM_Ke
     //
     this.Col_PM_Ke.Caption = "Kệ";
     this.Col_PM_Ke.Name = "Col_PM_Ke";
     this.Col_PM_Ke.Visible = true;
     this.Col_PM_Ke.Width = 24;
     //
     // Col_PM_Ngan
     //
     this.Col_PM_Ngan.Caption = "Ngăn";
     this.Col_PM_Ngan.Name = "Col_PM_Ngan";
     this.Col_PM_Ngan.Visible = true;
     this.Col_PM_Ngan.Width = 37;
     //
     // Col_PM_Tang
     //
     this.Col_PM_Tang.Caption = "Tầng";
     this.Col_PM_Tang.Name = "Col_PM_Tang";
     this.Col_PM_Tang.Visible = true;
     this.Col_PM_Tang.Width = 36;
     //
     // Col_PM_TTHD
     //
     this.Col_PM_TTHD.Caption = "Thông tin HD";
     this.Col_PM_TTHD.Name = "Col_PM_TTHD";
     this.Col_PM_TTHD.Visible = true;
     this.Col_PM_TTHD.Width = 74;
     //
     // Col_PM_DVDNgayDuyet
     //
     this.Col_PM_DVDNgayDuyet.Caption = "DVD ngày duyệt";
     this.Col_PM_DVDNgayDuyet.Name = "Col_PM_DVDNgayDuyet";
     this.Col_PM_DVDNgayDuyet.Visible = true;
     this.Col_PM_DVDNgayDuyet.Width = 90;
     //
     // Col_PM_DVDNgayHoanTat
     //
     this.Col_PM_DVDNgayHoanTat.Caption = "DVD Ngày hoàn tất";
     this.Col_PM_DVDNgayHoanTat.Name = "Col_PM_DVDNgayHoanTat";
     this.Col_PM_DVDNgayHoanTat.Visible = true;
     this.Col_PM_DVDNgayHoanTat.Width = 104;
     //
     // xtraTabControlDetail
     //
     this.xtraTabControlDetail.Appearance.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(0)))), ((int)(((byte)(0)))), ((int)(((byte)(192)))));
     this.xtraTabControlDetail.Appearance.Options.UseBorderColor = true;
     this.xtraTabControlDetail.BorderStyle = DevExpress.XtraEditors.Controls.BorderStyles.Simple;
     this.xtraTabControlDetail.Dock = System.Windows.Forms.DockStyle.Fill;
     this.xtraTabControlDetail.Location = new System.Drawing.Point(0, 0);
     this.xtraTabControlDetail.LookAndFeel.Style = DevExpress.LookAndFeel.LookAndFeelStyle.Flat;
     this.xtraTabControlDetail.LookAndFeel.UseDefaultLookAndFeel = false;
     this.xtraTabControlDetail.Name = "xtraTabControlDetail";
     this.xtraTabControlDetail.SelectedTabPage = this.xtraTabPageDetail;
     this.xtraTabControlDetail.ShowTabHeader = DevExpress.Utils.DefaultBoolean.False;
     this.xtraTabControlDetail.Size = new System.Drawing.Size(175, 410);
     this.xtraTabControlDetail.TabIndex = 10;
     this.xtraTabControlDetail.TabPages.AddRange(new DevExpress.XtraTab.XtraTabPage[] {
     this.xtraTabPageDetail});
     //
     // xtraTabPageDetail
     //
     this.xtraTabPageDetail.Controls.Add(this.gridControlDetail);
     this.xtraTabPageDetail.Name = "xtraTabPageDetail";
     this.xtraTabPageDetail.Size = new System.Drawing.Size(173, 408);
     this.xtraTabPageDetail.Text = "Danh sách biên mục";
     //
     // gridControlDetail
     //
     this.gridControlDetail.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("gridControlDetail.BackgroundImage")));
     this.gridControlDetail.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Center;
     this.gridControlDetail.Dock = System.Windows.Forms.DockStyle.Fill;
     this.gridControlDetail.Location = new System.Drawing.Point(0, 0);
     this.gridControlDetail.MainView = this.gridViewDetail;
     this.gridControlDetail.MenuManager = this.barManager1;
     this.gridControlDetail.Name = "gridControlDetail";
     this.gridControlDetail.Size = new System.Drawing.Size(173, 408);
     this.gridControlDetail.TabIndex = 0;
     this.gridControlDetail.ViewCollection.AddRange(new DevExpress.XtraGrid.Views.Base.BaseView[] {
     this.gridViewDetail});
     //
     // gridViewDetail
     //
     this.gridViewDetail.Appearance.HeaderPanel.Options.UseTextOptions = true;
     this.gridViewDetail.Appearance.HeaderPanel.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.gridViewDetail.Columns.AddRange(new DevExpress.XtraGrid.Columns.GridColumn[] {
     this.Col_BM_ThanhLy,
     this.Col_BM_MaBang,
     this.Col_BM_TapSo,
     this.Col_BM_TenTap,
     this.Col_BM_SoBang,
     this.Col_BM_ThongSo,
     this.Col_BM_ThoiLuong,
     this.Col_BM_SoDKCBHD,
     this.Col_BM_NoiLuuTru});
     this.gridViewDetail.GridControl = this.gridControlDetail;
     this.gridViewDetail.IndicatorWidth = 40;
     this.gridViewDetail.Name = "gridViewDetail";
     this.gridViewDetail.OptionsBehavior.Editable = false;
     this.gridViewDetail.OptionsLayout.Columns.AddNewColumns = false;
     this.gridViewDetail.OptionsNavigation.AutoFocusNewRow = true;
     this.gridViewDetail.OptionsNavigation.EnterMoveNextColumn = true;
     this.gridViewDetail.OptionsPrint.UsePrintStyles = true;
     this.gridViewDetail.OptionsSelection.MultiSelect = true;
     this.gridViewDetail.OptionsView.ColumnAutoWidth = false;
     this.gridViewDetail.OptionsView.EnableAppearanceEvenRow = true;
     this.gridViewDetail.OptionsView.EnableAppearanceOddRow = true;
     this.gridViewDetail.OptionsView.NewItemRowPosition = DevExpress.XtraGrid.Views.Grid.NewItemRowPosition.Bottom;
     this.gridViewDetail.OptionsView.ShowGroupedColumns = true;
     this.gridViewDetail.OptionsView.ShowGroupPanel = false;
     this.gridViewDetail.OptionsView.ShowViewCaption = true;
     this.gridViewDetail.ViewCaption = "Biên mục (Cấp 3)";
     //
     // Col_BM_ThanhLy
     //
     this.Col_BM_ThanhLy.Caption = "Thanh lý";
     this.Col_BM_ThanhLy.Name = "Col_BM_ThanhLy";
     this.Col_BM_ThanhLy.Visible = true;
     this.Col_BM_ThanhLy.VisibleIndex = 0;
     this.Col_BM_ThanhLy.Width = 53;
     //
     // Col_BM_MaBang
     //
     this.Col_BM_MaBang.Caption = "Mã băng";
     this.Col_BM_MaBang.Name = "Col_BM_MaBang";
     this.Col_BM_MaBang.Visible = true;
     this.Col_BM_MaBang.VisibleIndex = 1;
     this.Col_BM_MaBang.Width = 53;
     //
     // Col_BM_TapSo
     //
     this.Col_BM_TapSo.Caption = "Tập số";
     this.Col_BM_TapSo.Name = "Col_BM_TapSo";
     this.Col_BM_TapSo.Visible = true;
     this.Col_BM_TapSo.VisibleIndex = 2;
     this.Col_BM_TapSo.Width = 44;
     //
     // Col_BM_TenTap
     //
     this.Col_BM_TenTap.Caption = "Tên tập";
     this.Col_BM_TenTap.Name = "Col_BM_TenTap";
     this.Col_BM_TenTap.Visible = true;
     this.Col_BM_TenTap.VisibleIndex = 3;
     this.Col_BM_TenTap.Width = 49;
     //
     // Col_BM_SoBang
     //
     this.Col_BM_SoBang.Caption = "Số băng";
     this.Col_BM_SoBang.Name = "Col_BM_SoBang";
     this.Col_BM_SoBang.Visible = true;
     this.Col_BM_SoBang.VisibleIndex = 4;
     this.Col_BM_SoBang.Width = 51;
     //
     // Col_BM_ThongSo
     //
     this.Col_BM_ThongSo.Caption = "Thông số";
     this.Col_BM_ThongSo.Name = "Col_BM_ThongSo";
     this.Col_BM_ThongSo.Visible = true;
     this.Col_BM_ThongSo.VisibleIndex = 5;
     this.Col_BM_ThongSo.Width = 56;
     //
     // Col_BM_ThoiLuong
     //
     this.Col_BM_ThoiLuong.Caption = "Thời lượng";
     this.Col_BM_ThoiLuong.Name = "Col_BM_ThoiLuong";
     this.Col_BM_ThoiLuong.Visible = true;
     this.Col_BM_ThoiLuong.VisibleIndex = 6;
     this.Col_BM_ThoiLuong.Width = 62;
     //
     // Col_BM_SoDKCBHD
     //
     this.Col_BM_SoDKCBHD.Caption = "Số ĐKCB HD";
     this.Col_BM_SoDKCBHD.Name = "Col_BM_SoDKCBHD";
     this.Col_BM_SoDKCBHD.Visible = true;
     this.Col_BM_SoDKCBHD.VisibleIndex = 7;
     this.Col_BM_SoDKCBHD.Width = 71;
     //
     // Col_BM_NoiLuuTru
     //
     this.Col_BM_NoiLuuTru.Caption = "Nơi lưu trữ";
     this.Col_BM_NoiLuuTru.Name = "Col_BM_NoiLuuTru";
     this.Col_BM_NoiLuuTru.Visible = true;
     this.Col_BM_NoiLuuTru.VisibleIndex = 8;
     this.Col_BM_NoiLuuTru.Width = 63;
     //
     // Col_PM_TienDo
     //
     this.Col_PM_TienDo.Caption = "Tiến độ hậu kỳ";
     this.Col_PM_TienDo.Name = "Col_PM_TienDo";
     this.Col_PM_TienDo.Visible = true;
     //
     // gridBandChuongTrinh
     //
     this.gridBandChuongTrinh.AppearanceHeader.Options.UseTextOptions = true;
     this.gridBandChuongTrinh.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.gridBandChuongTrinh.Caption = "Thông tin chương trình";
     this.gridBandChuongTrinh.Columns.Add(this.Col_PM_Category);
     this.gridBandChuongTrinh.Columns.Add(this.Col_PM_MaChuongTrinh);
     this.gridBandChuongTrinh.Columns.Add(this.Col_PM_TenChuongTrinh);
     this.gridBandChuongTrinh.Columns.Add(this.Col_PM_TietMuc);
     this.gridBandChuongTrinh.Name = "gridBandChuongTrinh";
     this.gridBandChuongTrinh.Width = 314;
     //
     // gridBandPostMaster
     //
     this.gridBandPostMaster.AppearanceHeader.Options.UseTextOptions = true;
     this.gridBandPostMaster.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.gridBandPostMaster.Caption = "Thông tin Post/Master";
     this.gridBandPostMaster.Columns.Add(this.Col_PM_PostMaster);
     this.gridBandPostMaster.Columns.Add(this.Col_PM_TongTap);
     this.gridBandPostMaster.Columns.Add(this.Col_PM_TienDo);
     this.gridBandPostMaster.Columns.Add(this.Col_PM_LoaiLuu);
     this.gridBandPostMaster.Columns.Add(this.Col_PM_PopUp);
     this.gridBandPostMaster.Columns.Add(this.Col_PM_ThoiLuongChung);
     this.gridBandPostMaster.Columns.Add(this.Col_PM_TTDinhKem);
     this.gridBandPostMaster.Columns.Add(this.Col_PM_ThanhLy);
     this.gridBandPostMaster.Columns.Add(this.Col_PM_NgayNhapKho);
     this.gridBandPostMaster.Columns.Add(this.Col_PM_Ke);
     this.gridBandPostMaster.Columns.Add(this.Col_PM_Ngan);
     this.gridBandPostMaster.Columns.Add(this.Col_PM_Tang);
     this.gridBandPostMaster.Columns.Add(this.Col_PM_TTHD);
     this.gridBandPostMaster.Columns.Add(this.Col_PM_DVDNgayDuyet);
     this.gridBandPostMaster.Columns.Add(this.Col_PM_DVDNgayHoanTat);
     this.gridBandPostMaster.Name = "gridBandPostMaster";
     this.gridBandPostMaster.Width = 1007;
     //
     // frmPostMasterSearchQL
     //
     this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
     this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
     this.ClientSize = new System.Drawing.Size(1008, 545);
     this.Controls.Add(this.splitContainerControl1);
     this.Controls.Add(this.dockPanelSimple);
     this.Controls.Add(this.dockPanelAdvance);
     this.Controls.Add(this.barDockControlLeft);
     this.Controls.Add(this.barDockControlRight);
     this.Controls.Add(this.barDockControlBottom);
     this.Controls.Add(this.barDockControlTop);
     this.Name = "frmPostMasterSearchQL";
     this.ShowInTaskbar = false;
     this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen;
     this.Text = "Quản lý Post/Master";
     ((System.ComponentModel.ISupportInitialize)(this.barManager1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.popupMenu1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.popupMenuFilter)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.dockManager1)).EndInit();
     this.dockPanelAdvance.ResumeLayout(false);
     this.controlContainer1.ResumeLayout(false);
     this.dockPanelSimple.ResumeLayout(false);
     this.dockPanel1_Container.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.popupControlContainerFilter)).EndInit();
     this.popupControlContainerFilter.ResumeLayout(false);
     this.popupControlContainerFilter.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(this.TenTap.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.TapSoDen.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.TapSoTu.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.SoDKCBHD.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.NguoiNhap.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.MaCT.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.NoiDung.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.LoaiLuuTru.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.PostMaster.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.TietMuc.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.splitContainerControl1)).EndInit();
     this.splitContainerControl1.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.groupControlPM)).EndInit();
     this.groupControlPM.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.gridControlMaster)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridViewMaster)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.xtraTabControlDetail)).EndInit();
     this.xtraTabControlDetail.ResumeLayout(false);
     this.xtraTabPageDetail.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.gridControlDetail)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridViewDetail)).EndInit();
     this.ResumeLayout(false);
 }
 /// <summary> 
 /// Required method for Designer support - do not modify 
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(PopupRegistered));
     this.groupControlWarning = new DevExpress.XtraEditors.GroupControl();
     this.panelControl1 = new DevExpress.XtraEditors.PanelControl();
     this.panelControlSetting = new DevExpress.XtraEditors.PanelControl();
     this.groupBox1 = new System.Windows.Forms.GroupBox();
     this.textEditADCSerial5 = new DevExpress.XtraEditors.TextEdit();
     this.labelControl6 = new DevExpress.XtraEditors.LabelControl();
     this.textEditADCSerial4 = new DevExpress.XtraEditors.TextEdit();
     this.labelControl5 = new DevExpress.XtraEditors.LabelControl();
     this.textEditADCSerial3 = new DevExpress.XtraEditors.TextEdit();
     this.labelControl4 = new DevExpress.XtraEditors.LabelControl();
     this.textEditADCSerial2 = new DevExpress.XtraEditors.TextEdit();
     this.labelControl3 = new DevExpress.XtraEditors.LabelControl();
     this.textEditADCSerial1 = new DevExpress.XtraEditors.TextEdit();
     this.labelControl2 = new DevExpress.XtraEditors.LabelControl();
     this.textEditProductID = new DevExpress.XtraEditors.TextEdit();
     this.labelControl8 = new DevExpress.XtraEditors.LabelControl();
     this.labelControl1 = new DevExpress.XtraEditors.LabelControl();
     this.panelControl2 = new DevExpress.XtraEditors.PanelControl();
     this.btOK = new DevExpress.XtraEditors.SimpleButton();
     ((System.ComponentModel.ISupportInitialize)(this.groupControlWarning)).BeginInit();
     this.groupControlWarning.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.panelControl1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.panelControlSetting)).BeginInit();
     this.panelControlSetting.SuspendLayout();
     this.groupBox1.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.textEditADCSerial5.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.textEditADCSerial4.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.textEditADCSerial3.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.textEditADCSerial2.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.textEditADCSerial1.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.textEditProductID.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.panelControl2)).BeginInit();
     this.panelControl2.SuspendLayout();
     this.SuspendLayout();
     //
     // groupControlWarning
     //
     this.groupControlWarning.AppearanceCaption.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold);
     this.groupControlWarning.AppearanceCaption.Options.UseFont = true;
     this.groupControlWarning.Controls.Add(this.panelControl1);
     this.groupControlWarning.Controls.Add(this.panelControlSetting);
     this.groupControlWarning.Controls.Add(this.panelControl2);
     this.groupControlWarning.Dock = System.Windows.Forms.DockStyle.Fill;
     this.groupControlWarning.Location = new System.Drawing.Point(20, 20);
     this.groupControlWarning.Name = "groupControlWarning";
     this.groupControlWarning.Padding = new System.Windows.Forms.Padding(5);
     this.groupControlWarning.Size = new System.Drawing.Size(584, 292);
     this.groupControlWarning.TabIndex = 342;
     this.groupControlWarning.Text = "Registration";
     //
     // panelControl1
     //
     this.panelControl1.BorderStyle = DevExpress.XtraEditors.Controls.BorderStyles.NoBorder;
     this.panelControl1.ContentImage = ((System.Drawing.Image)(resources.GetObject("panelControl1.ContentImage")));
     this.panelControl1.Dock = System.Windows.Forms.DockStyle.Left;
     this.panelControl1.Location = new System.Drawing.Point(7, 27);
     this.panelControl1.Name = "panelControl1";
     this.panelControl1.Padding = new System.Windows.Forms.Padding(5);
     this.panelControl1.Size = new System.Drawing.Size(202, 220);
     this.panelControl1.TabIndex = 1;
     //
     // panelControlSetting
     //
     this.panelControlSetting.Controls.Add(this.groupBox1);
     this.panelControlSetting.Controls.Add(this.textEditProductID);
     this.panelControlSetting.Controls.Add(this.labelControl8);
     this.panelControlSetting.Controls.Add(this.labelControl1);
     this.panelControlSetting.Dock = System.Windows.Forms.DockStyle.Right;
     this.panelControlSetting.Location = new System.Drawing.Point(215, 27);
     this.panelControlSetting.Name = "panelControlSetting";
     this.panelControlSetting.Padding = new System.Windows.Forms.Padding(5);
     this.panelControlSetting.Size = new System.Drawing.Size(362, 220);
     this.panelControlSetting.TabIndex = 0;
     //
     // groupBox1
     //
     this.groupBox1.Controls.Add(this.textEditADCSerial5);
     this.groupBox1.Controls.Add(this.labelControl6);
     this.groupBox1.Controls.Add(this.textEditADCSerial4);
     this.groupBox1.Controls.Add(this.labelControl5);
     this.groupBox1.Controls.Add(this.textEditADCSerial3);
     this.groupBox1.Controls.Add(this.labelControl4);
     this.groupBox1.Controls.Add(this.textEditADCSerial2);
     this.groupBox1.Controls.Add(this.labelControl3);
     this.groupBox1.Controls.Add(this.textEditADCSerial1);
     this.groupBox1.Controls.Add(this.labelControl2);
     this.groupBox1.Location = new System.Drawing.Point(11, 54);
     this.groupBox1.Name = "groupBox1";
     this.groupBox1.Size = new System.Drawing.Size(341, 156);
     this.groupBox1.TabIndex = 319;
     this.groupBox1.TabStop = false;
     this.groupBox1.Text = "ADC";
     //
     // textEditADCSerial5
     //
     this.textEditADCSerial5.Location = new System.Drawing.Point(79, 124);
     this.textEditADCSerial5.Name = "textEditADCSerial5";
     this.textEditADCSerial5.Properties.Appearance.BackColor = System.Drawing.Color.White;
     this.textEditADCSerial5.Properties.Appearance.Options.UseBackColor = true;
     this.textEditADCSerial5.Properties.ReadOnly = true;
     this.textEditADCSerial5.Size = new System.Drawing.Size(256, 20);
     this.textEditADCSerial5.TabIndex = 328;
     //
     // labelControl6
     //
     this.labelControl6.Location = new System.Drawing.Point(31, 127);
     this.labelControl6.Name = "labelControl6";
     this.labelControl6.Size = new System.Drawing.Size(42, 13);
     this.labelControl6.TabIndex = 327;
     this.labelControl6.Text = "Serial 5 :";
     //
     // textEditADCSerial4
     //
     this.textEditADCSerial4.Location = new System.Drawing.Point(79, 98);
     this.textEditADCSerial4.Name = "textEditADCSerial4";
     this.textEditADCSerial4.Properties.Appearance.BackColor = System.Drawing.Color.White;
     this.textEditADCSerial4.Properties.Appearance.Options.UseBackColor = true;
     this.textEditADCSerial4.Properties.ReadOnly = true;
     this.textEditADCSerial4.Size = new System.Drawing.Size(256, 20);
     this.textEditADCSerial4.TabIndex = 326;
     //
     // labelControl5
     //
     this.labelControl5.Location = new System.Drawing.Point(31, 101);
     this.labelControl5.Name = "labelControl5";
     this.labelControl5.Size = new System.Drawing.Size(42, 13);
     this.labelControl5.TabIndex = 325;
     this.labelControl5.Text = "Serial 4 :";
     //
     // textEditADCSerial3
     //
     this.textEditADCSerial3.Location = new System.Drawing.Point(79, 72);
     this.textEditADCSerial3.Name = "textEditADCSerial3";
     this.textEditADCSerial3.Properties.Appearance.BackColor = System.Drawing.Color.White;
     this.textEditADCSerial3.Properties.Appearance.Options.UseBackColor = true;
     this.textEditADCSerial3.Properties.ReadOnly = true;
     this.textEditADCSerial3.Size = new System.Drawing.Size(256, 20);
     this.textEditADCSerial3.TabIndex = 324;
     //
     // labelControl4
     //
     this.labelControl4.Location = new System.Drawing.Point(31, 75);
     this.labelControl4.Name = "labelControl4";
     this.labelControl4.Size = new System.Drawing.Size(42, 13);
     this.labelControl4.TabIndex = 323;
     this.labelControl4.Text = "Serial 3 :";
     //
     // textEditADCSerial2
     //
     this.textEditADCSerial2.Location = new System.Drawing.Point(79, 46);
     this.textEditADCSerial2.Name = "textEditADCSerial2";
     this.textEditADCSerial2.Properties.Appearance.BackColor = System.Drawing.Color.White;
     this.textEditADCSerial2.Properties.Appearance.Options.UseBackColor = true;
     this.textEditADCSerial2.Properties.ReadOnly = true;
     this.textEditADCSerial2.Size = new System.Drawing.Size(256, 20);
     this.textEditADCSerial2.TabIndex = 322;
     //
     // labelControl3
     //
     this.labelControl3.Location = new System.Drawing.Point(31, 49);
     this.labelControl3.Name = "labelControl3";
     this.labelControl3.Size = new System.Drawing.Size(42, 13);
     this.labelControl3.TabIndex = 321;
     this.labelControl3.Text = "Serial 2 :";
     //
     // textEditADCSerial1
     //
     this.textEditADCSerial1.Location = new System.Drawing.Point(79, 20);
     this.textEditADCSerial1.Name = "textEditADCSerial1";
     this.textEditADCSerial1.Properties.Appearance.BackColor = System.Drawing.Color.White;
     this.textEditADCSerial1.Properties.Appearance.Options.UseBackColor = true;
     this.textEditADCSerial1.Properties.ReadOnly = true;
     this.textEditADCSerial1.Size = new System.Drawing.Size(256, 20);
     this.textEditADCSerial1.TabIndex = 320;
     //
     // labelControl2
     //
     this.labelControl2.Location = new System.Drawing.Point(31, 23);
     this.labelControl2.Name = "labelControl2";
     this.labelControl2.Size = new System.Drawing.Size(42, 13);
     this.labelControl2.TabIndex = 319;
     this.labelControl2.Text = "Serial 1 :";
     //
     // textEditProductID
     //
     this.textEditProductID.Location = new System.Drawing.Point(90, 31);
     this.textEditProductID.Name = "textEditProductID";
     this.textEditProductID.Properties.Appearance.BackColor = System.Drawing.Color.White;
     this.textEditProductID.Properties.Appearance.Options.UseBackColor = true;
     this.textEditProductID.Properties.ReadOnly = true;
     this.textEditProductID.Size = new System.Drawing.Size(256, 20);
     this.textEditProductID.TabIndex = 318;
     //
     // labelControl8
     //
     this.labelControl8.Location = new System.Drawing.Point(23, 34);
     this.labelControl8.Name = "labelControl8";
     this.labelControl8.Size = new System.Drawing.Size(61, 13);
     this.labelControl8.TabIndex = 317;
     this.labelControl8.Text = "Product ID : ";
     //
     // labelControl1
     //
     this.labelControl1.Appearance.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold);
     this.labelControl1.Location = new System.Drawing.Point(6, 6);
     this.labelControl1.Name = "labelControl1";
     this.labelControl1.Size = new System.Drawing.Size(235, 13);
     this.labelControl1.TabIndex = 0;
     this.labelControl1.Text = "This product has already been registered.";
     //
     // panelControl2
     //
     this.panelControl2.BorderStyle = DevExpress.XtraEditors.Controls.BorderStyles.NoBorder;
     this.panelControl2.Controls.Add(this.btOK);
     this.panelControl2.Dock = System.Windows.Forms.DockStyle.Bottom;
     this.panelControl2.Location = new System.Drawing.Point(7, 247);
     this.panelControl2.Name = "panelControl2";
     this.panelControl2.Size = new System.Drawing.Size(570, 38);
     this.panelControl2.TabIndex = 2;
     //
     // btOK
     //
     this.btOK.Location = new System.Drawing.Point(503, 6);
     this.btOK.Name = "btOK";
     this.btOK.Size = new System.Drawing.Size(57, 23);
     this.btOK.TabIndex = 0;
     this.btOK.Text = "OK";
     this.btOK.Click += new System.EventHandler(this.btOK_Click);
     //
     // PopupRegistered
     //
     this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
     this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
     this.ClientSize = new System.Drawing.Size(624, 332);
     this.Controls.Add(this.groupControlWarning);
     this.Icon = ((System.Drawing.Icon)(resources.GetObject("$this.Icon")));
     this.Name = "PopupRegistered";
     this.Padding = new System.Windows.Forms.Padding(20);
     this.Text = "[ Software Name ]";
     this.TopMost = true;
     ((System.ComponentModel.ISupportInitialize)(this.groupControlWarning)).EndInit();
     this.groupControlWarning.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.panelControl1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.panelControlSetting)).EndInit();
     this.panelControlSetting.ResumeLayout(false);
     this.panelControlSetting.PerformLayout();
     this.groupBox1.ResumeLayout(false);
     this.groupBox1.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(this.textEditADCSerial5.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.textEditADCSerial4.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.textEditADCSerial3.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.textEditADCSerial2.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.textEditADCSerial1.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.textEditProductID.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.groupControlWarning = new DevExpress.XtraEditors.GroupControl();
     this.checkEditAll = new DevExpress.XtraEditors.CheckEdit();
     this.panelControlSetting = new DevExpress.XtraEditors.PanelControl();
     this.labelControl2 = new DevExpress.XtraEditors.LabelControl();
     this.labelControl1 = new DevExpress.XtraEditors.LabelControl();
     this.textEdit_database = new DevExpress.XtraEditors.TextEdit();
     this.textEdit_vacantroom = new DevExpress.XtraEditors.TextEdit();
     this.checkEdit_database = new DevExpress.XtraEditors.CheckEdit();
     this.checkEdit_vacantroom = new DevExpress.XtraEditors.CheckEdit();
     this.checkEdit_overdue_payment = new DevExpress.XtraEditors.CheckEdit();
     this.checkEdit_billingdate = new DevExpress.XtraEditors.CheckEdit();
     this.checkEdit_endofbook = new DevExpress.XtraEditors.CheckEdit();
     this.checkEdit_overdue_checkout = new DevExpress.XtraEditors.CheckEdit();
     this.checkEdit_overdue_checkin = new DevExpress.XtraEditors.CheckEdit();
     this.checkEdit_email = new DevExpress.XtraEditors.CheckEdit();
     this.panelControl3 = new DevExpress.XtraEditors.PanelControl();
     this.textEdit_email = new DevExpress.XtraEditors.TextEdit();
     this.labelControlEmail = new DevExpress.XtraEditors.LabelControl();
     this.labelControlSampleEmail = new DevExpress.XtraEditors.LabelControl();
     this.panelControl1 = new DevExpress.XtraEditors.PanelControl();
     this.bttSave = new DevExpress.XtraEditors.SimpleButton();
     this.bttCancel = new DevExpress.XtraEditors.SimpleButton();
     ((System.ComponentModel.ISupportInitialize)(this.groupControlWarning)).BeginInit();
     this.groupControlWarning.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.checkEditAll.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.panelControlSetting)).BeginInit();
     this.panelControlSetting.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.textEdit_database.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.textEdit_vacantroom.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.checkEdit_database.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.checkEdit_vacantroom.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.checkEdit_overdue_payment.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.checkEdit_billingdate.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.checkEdit_endofbook.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.checkEdit_overdue_checkout.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.checkEdit_overdue_checkin.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.checkEdit_email.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.panelControl3)).BeginInit();
     this.panelControl3.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.textEdit_email.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.panelControl1)).BeginInit();
     this.panelControl1.SuspendLayout();
     this.SuspendLayout();
     //
     // groupControlWarning
     //
     this.groupControlWarning.AppearanceCaption.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold);
     this.groupControlWarning.AppearanceCaption.Options.UseFont = true;
     this.groupControlWarning.Controls.Add(this.checkEditAll);
     this.groupControlWarning.Controls.Add(this.panelControlSetting);
     this.groupControlWarning.Location = new System.Drawing.Point(13, 13);
     this.groupControlWarning.Name = "groupControlWarning";
     this.groupControlWarning.Size = new System.Drawing.Size(599, 244);
     this.groupControlWarning.TabIndex = 342;
     this.groupControlWarning.Text = "รายการแจ้งเตือน";
     //
     // checkEditAll
     //
     this.checkEditAll.Location = new System.Drawing.Point(15, 25);
     this.checkEditAll.Name = "checkEditAll";
     this.checkEditAll.Properties.Caption = "เลือกทั้งหมด";
     this.checkEditAll.Size = new System.Drawing.Size(152, 19);
     this.checkEditAll.TabIndex = 1;
     //
     // panelControlSetting
     //
     this.panelControlSetting.Controls.Add(this.labelControl2);
     this.panelControlSetting.Controls.Add(this.labelControl1);
     this.panelControlSetting.Controls.Add(this.textEdit_database);
     this.panelControlSetting.Controls.Add(this.textEdit_vacantroom);
     this.panelControlSetting.Controls.Add(this.checkEdit_database);
     this.panelControlSetting.Controls.Add(this.checkEdit_vacantroom);
     this.panelControlSetting.Controls.Add(this.checkEdit_overdue_payment);
     this.panelControlSetting.Controls.Add(this.checkEdit_billingdate);
     this.panelControlSetting.Controls.Add(this.checkEdit_endofbook);
     this.panelControlSetting.Controls.Add(this.checkEdit_overdue_checkout);
     this.panelControlSetting.Controls.Add(this.checkEdit_overdue_checkin);
     this.panelControlSetting.Location = new System.Drawing.Point(17, 50);
     this.panelControlSetting.Name = "panelControlSetting";
     this.panelControlSetting.Size = new System.Drawing.Size(564, 181);
     this.panelControlSetting.TabIndex = 0;
     //
     // labelControl2
     //
     this.labelControl2.Location = new System.Drawing.Point(434, 158);
     this.labelControl2.Name = "labelControl2";
     this.labelControl2.Size = new System.Drawing.Size(13, 13);
     this.labelControl2.TabIndex = 3;
     this.labelControl2.Text = "GB";
     //
     // labelControl1
     //
     this.labelControl1.Location = new System.Drawing.Point(434, 131);
     this.labelControl1.Name = "labelControl1";
     this.labelControl1.Size = new System.Drawing.Size(65, 13);
     this.labelControl1.TabIndex = 3;
     this.labelControl1.Text = "(A)  (0.2-1.0)";
     //
     // textEdit_database
     //
     this.textEdit_database.EditValue = "1.000";
     this.textEdit_database.Location = new System.Drawing.Point(368, 154);
     this.textEdit_database.Name = "textEdit_database";
     this.textEdit_database.Properties.Mask.EditMask = "([1]){1}\\.([0]){2}|0\\.([0-9]){1}([2-9]){1}";
     this.textEdit_database.Properties.Mask.MaskType = DevExpress.XtraEditors.Mask.MaskType.RegEx;
     this.textEdit_database.Properties.Mask.ShowPlaceHolders = false;
     this.textEdit_database.Properties.Mask.UseMaskAsDisplayFormat = true;
     this.textEdit_database.Size = new System.Drawing.Size(60, 20);
     this.textEdit_database.TabIndex = 2;
     //
     // textEdit_vacantroom
     //
     this.textEdit_vacantroom.EditValue = "0.2";
     this.textEdit_vacantroom.Location = new System.Drawing.Point(368, 128);
     this.textEdit_vacantroom.Name = "textEdit_vacantroom";
     this.textEdit_vacantroom.Properties.Mask.BeepOnError = true;
     this.textEdit_vacantroom.Properties.Mask.EditMask = "([1]){1}\\.([0]){2}|0\\.([0-9]){1}([2-9]){1}";
     this.textEdit_vacantroom.Properties.Mask.MaskType = DevExpress.XtraEditors.Mask.MaskType.RegEx;
     this.textEdit_vacantroom.Properties.Mask.ShowPlaceHolders = false;
     this.textEdit_vacantroom.Properties.Mask.UseMaskAsDisplayFormat = true;
     this.textEdit_vacantroom.Size = new System.Drawing.Size(60, 20);
     this.textEdit_vacantroom.TabIndex = 2;
     //
     // checkEdit_database
     //
     this.checkEdit_database.Location = new System.Drawing.Point(17, 155);
     this.checkEdit_database.Name = "checkEdit_database";
     this.checkEdit_database.Properties.Caption = "เมื่อขนาดของฐานโฟลเดอร์ฐานข้อมูลสำรองมีขนาดมากกว่า";
     this.checkEdit_database.Size = new System.Drawing.Size(340, 19);
     this.checkEdit_database.TabIndex = 1;
     //
     // checkEdit_vacantroom
     //
     this.checkEdit_vacantroom.Location = new System.Drawing.Point(17, 130);
     this.checkEdit_vacantroom.Name = "checkEdit_vacantroom";
     this.checkEdit_vacantroom.Properties.Caption = "กรณีห้องว่างแต่มีกระแสไฟฟ้าไหลตั้งแต่";
     this.checkEdit_vacantroom.Size = new System.Drawing.Size(289, 19);
     this.checkEdit_vacantroom.TabIndex = 1;
     //
     // checkEdit_overdue_payment
     //
     this.checkEdit_overdue_payment.Location = new System.Drawing.Point(17, 105);
     this.checkEdit_overdue_payment.Name = "checkEdit_overdue_payment";
     this.checkEdit_overdue_payment.Properties.Caption = "เมื่อเกินกำหนดชำระเงิน";
     this.checkEdit_overdue_payment.Size = new System.Drawing.Size(289, 19);
     this.checkEdit_overdue_payment.TabIndex = 1;
     //
     // checkEdit_billingdate
     //
     this.checkEdit_billingdate.Location = new System.Drawing.Point(17, 80);
     this.checkEdit_billingdate.Name = "checkEdit_billingdate";
     this.checkEdit_billingdate.Properties.Caption = "เมื่อถึงกำหนดวันตัดรอบบิล";
     this.checkEdit_billingdate.Size = new System.Drawing.Size(289, 19);
     this.checkEdit_billingdate.TabIndex = 1;
     //
     // checkEdit_endofbook
     //
     this.checkEdit_endofbook.Location = new System.Drawing.Point(17, 55);
     this.checkEdit_endofbook.Name = "checkEdit_endofbook";
     this.checkEdit_endofbook.Properties.Caption = "เมื่อเกินวันที่สิ้นสุดการจอง";
     this.checkEdit_endofbook.Size = new System.Drawing.Size(289, 19);
     this.checkEdit_endofbook.TabIndex = 1;
     //
     // checkEdit_overdue_checkout
     //
     this.checkEdit_overdue_checkout.Location = new System.Drawing.Point(17, 30);
     this.checkEdit_overdue_checkout.Name = "checkEdit_overdue_checkout";
     this.checkEdit_overdue_checkout.Properties.Caption = "เมื่อเกินกำหนดวันที่ย้ายออก";
     this.checkEdit_overdue_checkout.Size = new System.Drawing.Size(289, 19);
     this.checkEdit_overdue_checkout.TabIndex = 1;
     //
     // checkEdit_overdue_checkin
     //
     this.checkEdit_overdue_checkin.Location = new System.Drawing.Point(17, 5);
     this.checkEdit_overdue_checkin.Name = "checkEdit_overdue_checkin";
     this.checkEdit_overdue_checkin.Properties.Caption = "เมื่อเกินกำหนดวันที่ย้ายเข้า";
     this.checkEdit_overdue_checkin.Size = new System.Drawing.Size(289, 19);
     this.checkEdit_overdue_checkin.TabIndex = 1;
     //
     // checkEdit_email
     //
     this.checkEdit_email.Location = new System.Drawing.Point(15, 5);
     this.checkEdit_email.Name = "checkEdit_email";
     this.checkEdit_email.Properties.Caption = "ต้องการส่งรายการแจ้งเตือนทางอีเมล์";
     this.checkEdit_email.Size = new System.Drawing.Size(277, 19);
     this.checkEdit_email.TabIndex = 4;
     this.checkEdit_email.Visible = false;
     //
     // panelControl3
     //
     this.panelControl3.Controls.Add(this.textEdit_email);
     this.panelControl3.Controls.Add(this.labelControlEmail);
     this.panelControl3.Controls.Add(this.labelControlSampleEmail);
     this.panelControl3.Controls.Add(this.checkEdit_email);
     this.panelControl3.Controls.Add(this.panelControl1);
     this.panelControl3.Location = new System.Drawing.Point(13, 264);
     this.panelControl3.Name = "panelControl3";
     this.panelControl3.Size = new System.Drawing.Size(599, 158);
     this.panelControl3.TabIndex = 343;
     //
     // textEdit_email
     //
     this.textEdit_email.EditValue = "";
     this.textEdit_email.Location = new System.Drawing.Point(99, 49);
     this.textEdit_email.Name = "textEdit_email";
     this.textEdit_email.Size = new System.Drawing.Size(366, 20);
     this.textEdit_email.TabIndex = 344;
     this.textEdit_email.Visible = false;
     //
     // labelControlEmail
     //
     this.labelControlEmail.Appearance.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Far;
     this.labelControlEmail.AutoSizeMode = DevExpress.XtraEditors.LabelAutoSizeMode.None;
     this.labelControlEmail.Location = new System.Drawing.Point(42, 52);
     this.labelControlEmail.Name = "labelControlEmail";
     this.labelControlEmail.Size = new System.Drawing.Size(46, 13);
     this.labelControlEmail.TabIndex = 343;
     this.labelControlEmail.Text = "อีเมล์ :";
     this.labelControlEmail.Visible = false;
     //
     // labelControlSampleEmail
     //
     this.labelControlSampleEmail.AutoSizeMode = DevExpress.XtraEditors.LabelAutoSizeMode.None;
     this.labelControlSampleEmail.Location = new System.Drawing.Point(99, 30);
     this.labelControlSampleEmail.Name = "labelControlSampleEmail";
     this.labelControlSampleEmail.Size = new System.Drawing.Size(275, 13);
     this.labelControlSampleEmail.TabIndex = 343;
     this.labelControlSampleEmail.Text = "(ตัวอย่าง [email protected], [email protected])";
     this.labelControlSampleEmail.Visible = false;
     //
     // panelControl1
     //
     this.panelControl1.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
                 | System.Windows.Forms.AnchorStyles.Right)));
     this.panelControl1.BorderStyle = DevExpress.XtraEditors.Controls.BorderStyles.Simple;
     this.panelControl1.Controls.Add(this.bttSave);
     this.panelControl1.Controls.Add(this.bttCancel);
     this.panelControl1.Location = new System.Drawing.Point(150, 75);
     this.panelControl1.Name = "panelControl1";
     this.panelControl1.Size = new System.Drawing.Size(315, 69);
     this.panelControl1.TabIndex = 342;
     //
     // bttSave
     //
     this.bttSave.Image = global::DXWindowsApplication2.Properties.Resources.savedisk;
     this.bttSave.ImageLocation = DevExpress.XtraEditors.ImageLocation.TopCenter;
     this.bttSave.Location = new System.Drawing.Point(82, 7);
     this.bttSave.Name = "bttSave";
     this.bttSave.Size = new System.Drawing.Size(70, 55);
     this.bttSave.TabIndex = 330;
     this.bttSave.Text = "บันทึก";
     //
     // bttCancel
     //
     this.bttCancel.Image = global::DXWindowsApplication2.Properties.Resources.Close;
     this.bttCancel.ImageLocation = DevExpress.XtraEditors.ImageLocation.TopCenter;
     this.bttCancel.Location = new System.Drawing.Point(163, 7);
     this.bttCancel.Name = "bttCancel";
     this.bttCancel.Size = new System.Drawing.Size(70, 55);
     this.bttCancel.TabIndex = 329;
     this.bttCancel.Text = "ยกเลิก";
     //
     // PopupWarningSetting
     //
     this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
     this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
     this.ClientSize = new System.Drawing.Size(624, 434);
     this.Controls.Add(this.panelControl3);
     this.Controls.Add(this.groupControlWarning);
     this.Name = "PopupWarningSetting";
     this.Text = "ตั้งค่ารายการแจ้งเตือน";
     ((System.ComponentModel.ISupportInitialize)(this.groupControlWarning)).EndInit();
     this.groupControlWarning.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.checkEditAll.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.panelControlSetting)).EndInit();
     this.panelControlSetting.ResumeLayout(false);
     this.panelControlSetting.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(this.textEdit_database.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.textEdit_vacantroom.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.checkEdit_database.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.checkEdit_vacantroom.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.checkEdit_overdue_payment.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.checkEdit_billingdate.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.checkEdit_endofbook.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.checkEdit_overdue_checkout.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.checkEdit_overdue_checkin.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.checkEdit_email.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.panelControl3)).EndInit();
     this.panelControl3.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.textEdit_email.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.panelControl1)).EndInit();
     this.panelControl1.ResumeLayout(false);
     this.ResumeLayout(false);
 }
Пример #12
0
 /// <summary>
 /// Required method for Designer support - do not modify
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     this.GroupControl38    = new DevExpress.XtraEditors.GroupControl();
     this.ucMemberID1       = new ACMS.ucMemberID();
     this.dtEditDate        = new DevExpress.XtraEditors.DateEdit();
     this.label2            = new System.Windows.Forms.Label();
     this.dtEdtEndTime      = new DevExpress.XtraEditors.DateEdit();
     this.dtEdtStartTime    = new DevExpress.XtraEditors.DateEdit();
     this.simpleButton2     = new DevExpress.XtraEditors.SimpleButton();
     this.SimpleButton56    = new DevExpress.XtraEditors.SimpleButton();
     this.lkpEdtTherapist   = new DevExpress.XtraEditors.LookUpEdit();
     this.label1            = new System.Windows.Forms.Label();
     this.lkpEdtPackageID   = new DevExpress.XtraEditors.LookUpEdit();
     this.lkpEdtServiceCode = new DevExpress.XtraEditors.LookUpEdit();
     this.MemoEditRemark    = new DevExpress.XtraEditors.MemoEdit();
     this.Label42           = new System.Windows.Forms.Label();
     this.Label36           = new System.Windows.Forms.Label();
     this.Label31           = new System.Windows.Forms.Label();
     this.Label33           = new System.Windows.Forms.Label();
     this.Label34           = new System.Windows.Forms.Label();
     this.Label35           = new System.Windows.Forms.Label();
     this.lkpEdtBranchCode  = new DevExpress.XtraEditors.LookUpEdit();
     this.label3            = new System.Windows.Forms.Label();
     ((System.ComponentModel.ISupportInitialize)(this.GroupControl38)).BeginInit();
     this.GroupControl38.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.dtEditDate.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.dtEdtEndTime.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.dtEdtStartTime.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.lkpEdtTherapist.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.lkpEdtPackageID.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.lkpEdtServiceCode.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.MemoEditRemark.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.lkpEdtBranchCode.Properties)).BeginInit();
     this.SuspendLayout();
     //
     // GroupControl38
     //
     this.GroupControl38.BorderStyle = DevExpress.XtraEditors.Controls.BorderStyles.NoBorder;
     this.GroupControl38.Controls.Add(this.ucMemberID1);
     this.GroupControl38.Controls.Add(this.dtEditDate);
     this.GroupControl38.Controls.Add(this.label2);
     this.GroupControl38.Controls.Add(this.dtEdtEndTime);
     this.GroupControl38.Controls.Add(this.dtEdtStartTime);
     this.GroupControl38.Controls.Add(this.simpleButton2);
     this.GroupControl38.Controls.Add(this.SimpleButton56);
     this.GroupControl38.Controls.Add(this.lkpEdtTherapist);
     this.GroupControl38.Controls.Add(this.label1);
     this.GroupControl38.Controls.Add(this.lkpEdtPackageID);
     this.GroupControl38.Controls.Add(this.lkpEdtServiceCode);
     this.GroupControl38.Controls.Add(this.MemoEditRemark);
     this.GroupControl38.Controls.Add(this.Label42);
     this.GroupControl38.Controls.Add(this.Label36);
     this.GroupControl38.Controls.Add(this.Label31);
     this.GroupControl38.Controls.Add(this.Label33);
     this.GroupControl38.Controls.Add(this.Label34);
     this.GroupControl38.Controls.Add(this.Label35);
     this.GroupControl38.Controls.Add(this.lkpEdtBranchCode);
     this.GroupControl38.Controls.Add(this.label3);
     this.GroupControl38.Dock        = System.Windows.Forms.DockStyle.Fill;
     this.GroupControl38.Location    = new System.Drawing.Point(0, 0);
     this.GroupControl38.Name        = "GroupControl38";
     this.GroupControl38.ShowCaption = false;
     this.GroupControl38.Size        = new System.Drawing.Size(338, 314);
     this.GroupControl38.TabIndex    = 1;
     this.GroupControl38.Text        = "GroupControl1";
     //
     // ucMemberID1
     //
     this.ucMemberID1.EditValue        = "";
     this.ucMemberID1.EditValueChanged = null;
     this.ucMemberID1.Location         = new System.Drawing.Point(96, 14);
     this.ucMemberID1.Name             = "ucMemberID1";
     this.ucMemberID1.Size             = new System.Drawing.Size(182, 20);
     this.ucMemberID1.StrBranchCode    = null;
     this.ucMemberID1.TabIndex         = 0;
     //
     // dtEditDate
     //
     this.dtEditDate.EditValue = new System.DateTime(2006, 1, 1, 0, 0, 0, 0);
     this.dtEditDate.Location  = new System.Drawing.Point(96, 124);
     this.dtEditDate.Name      = "dtEditDate";
     //
     // dtEditDate.Properties
     //
     this.dtEditDate.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
         new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)
     });
     this.dtEditDate.Properties.DisplayFormat.FormatString = "dd/MM/yyyy";
     this.dtEditDate.Properties.DisplayFormat.FormatType   = DevExpress.Utils.FormatType.DateTime;
     this.dtEditDate.Properties.EditFormat.FormatString    = "dd/MM/yyyy";
     this.dtEditDate.Properties.EditFormat.FormatType      = DevExpress.Utils.FormatType.DateTime;
     this.dtEditDate.Properties.Mask.EditMask = "dd/MM/yyyy";
     this.dtEditDate.Size              = new System.Drawing.Size(232, 20);
     this.dtEditDate.TabIndex          = 5;
     this.dtEditDate.EditValueChanged += new System.EventHandler(this.dtEditDate_EditValueChanged);
     //
     // label2
     //
     this.label2.AutoSize = true;
     this.label2.Font     = new System.Drawing.Font("Microsoft Sans Serif", 9.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((System.Byte)(0)));
     this.label2.Location = new System.Drawing.Point(16, 124);
     this.label2.Name     = "label2";
     this.label2.Size     = new System.Drawing.Size(34, 18);
     this.label2.TabIndex = 35;
     this.label2.Text     = "Date";
     //
     // dtEdtEndTime
     //
     this.dtEdtEndTime.EditValue = new System.DateTime(2006, 1, 1, 0, 0, 0, 0);
     this.dtEdtEndTime.Location  = new System.Drawing.Point(96, 168);
     this.dtEdtEndTime.Name      = "dtEdtEndTime";
     //
     // dtEdtEndTime.Properties
     //
     this.dtEdtEndTime.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
         new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo, "", -1, true, false, false, DevExpress.Utils.HorzAlignment.Center, null)
     });
     this.dtEdtEndTime.Properties.DisplayFormat.FormatString = "dd/MM/yyyy hh:mm tt";
     this.dtEdtEndTime.Properties.DisplayFormat.FormatType   = DevExpress.Utils.FormatType.DateTime;
     this.dtEdtEndTime.Properties.EditFormat.FormatString    = "T";
     this.dtEdtEndTime.Properties.EditFormat.FormatType      = DevExpress.Utils.FormatType.DateTime;
     this.dtEdtEndTime.Properties.Mask.EditMask = "T";
     this.dtEdtEndTime.Size     = new System.Drawing.Size(232, 20);
     this.dtEdtEndTime.TabIndex = 7;
     //
     // dtEdtStartTime
     //
     this.dtEdtStartTime.EditValue = new System.DateTime(2006, 1, 1, 0, 0, 0, 0);
     this.dtEdtStartTime.Location  = new System.Drawing.Point(96, 146);
     this.dtEdtStartTime.Name      = "dtEdtStartTime";
     //
     // dtEdtStartTime.Properties
     //
     this.dtEdtStartTime.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
         new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo, "", -1, true, false, false, DevExpress.Utils.HorzAlignment.Center, null)
     });
     this.dtEdtStartTime.Properties.DisplayFormat.FormatString = "dd/MM/yyyy hh:mm tt";
     this.dtEdtStartTime.Properties.DisplayFormat.FormatType   = DevExpress.Utils.FormatType.DateTime;
     this.dtEdtStartTime.Properties.EditFormat.FormatString    = "T";
     this.dtEdtStartTime.Properties.EditFormat.FormatType      = DevExpress.Utils.FormatType.DateTime;
     this.dtEdtStartTime.Properties.Mask.EditMask = "T";
     this.dtEdtStartTime.Properties.Mask.MaskType = DevExpress.XtraEditors.Mask.MaskType.DateTimeAdvancingCaret;
     this.dtEdtStartTime.Size              = new System.Drawing.Size(232, 20);
     this.dtEdtStartTime.TabIndex          = 6;
     this.dtEdtStartTime.EditValueChanged += new System.EventHandler(this.dtEdtStartTime_EditValueChanged);
     //
     // simpleButton2
     //
     this.simpleButton2.DialogResult = System.Windows.Forms.DialogResult.Cancel;
     this.simpleButton2.Location     = new System.Drawing.Point(252, 278);
     this.simpleButton2.Name         = "simpleButton2";
     this.simpleButton2.TabIndex     = 10;
     this.simpleButton2.Text         = "Cancel";
     //
     // SimpleButton56
     //
     this.SimpleButton56.DialogResult = System.Windows.Forms.DialogResult.OK;
     this.SimpleButton56.Location     = new System.Drawing.Point(166, 278);
     this.SimpleButton56.Name         = "SimpleButton56";
     this.SimpleButton56.TabIndex     = 9;
     this.SimpleButton56.Text         = "Save";
     this.SimpleButton56.Click       += new System.EventHandler(this.SimpleButton56_Click_1);
     //
     // lkpEdtTherapist
     //
     this.lkpEdtTherapist.EditValue = "";
     this.lkpEdtTherapist.Location  = new System.Drawing.Point(96, 58);
     this.lkpEdtTherapist.Name      = "lkpEdtTherapist";
     //
     // lkpEdtTherapist.Properties
     //
     this.lkpEdtTherapist.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
         new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)
     });
     this.lkpEdtTherapist.Size     = new System.Drawing.Size(232, 20);
     this.lkpEdtTherapist.TabIndex = 2;
     //
     // label1
     //
     this.label1.AutoSize = true;
     this.label1.Font     = new System.Drawing.Font("Microsoft Sans Serif", 9.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((System.Byte)(0)));
     this.label1.Location = new System.Drawing.Point(16, 14);
     this.label1.Name     = "label1";
     this.label1.Size     = new System.Drawing.Size(73, 18);
     this.label1.TabIndex = 28;
     this.label1.Text     = "Member ID";
     //
     // lkpEdtPackageID
     //
     this.lkpEdtPackageID.EditValue = "";
     this.lkpEdtPackageID.Location  = new System.Drawing.Point(96, 80);
     this.lkpEdtPackageID.Name      = "lkpEdtPackageID";
     //
     // lkpEdtPackageID.Properties
     //
     this.lkpEdtPackageID.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
         new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)
     });
     this.lkpEdtPackageID.Properties.NullText = "";
     this.lkpEdtPackageID.Size              = new System.Drawing.Size(232, 20);
     this.lkpEdtPackageID.TabIndex          = 3;
     this.lkpEdtPackageID.EditValueChanged += new System.EventHandler(this.lkpEdtPackageID_EditValueChanged);
     //
     // lkpEdtServiceCode
     //
     this.lkpEdtServiceCode.EditValue = "";
     this.lkpEdtServiceCode.Location  = new System.Drawing.Point(96, 102);
     this.lkpEdtServiceCode.Name      = "lkpEdtServiceCode";
     //
     // lkpEdtServiceCode.Properties
     //
     this.lkpEdtServiceCode.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
         new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)
     });
     this.lkpEdtServiceCode.Size     = new System.Drawing.Size(232, 20);
     this.lkpEdtServiceCode.TabIndex = 4;
     //
     // MemoEditRemark
     //
     this.MemoEditRemark.EditValue = "";
     this.MemoEditRemark.Location  = new System.Drawing.Point(96, 190);
     this.MemoEditRemark.Name      = "MemoEditRemark";
     //
     // MemoEditRemark.Properties
     //
     this.MemoEditRemark.Properties.Appearance.Font            = new System.Drawing.Font("Tahoma", 9.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((System.Byte)(0)));
     this.MemoEditRemark.Properties.Appearance.Options.UseFont = true;
     this.MemoEditRemark.Size     = new System.Drawing.Size(232, 64);
     this.MemoEditRemark.TabIndex = 8;
     //
     // Label42
     //
     this.Label42.AutoSize = true;
     this.Label42.Font     = new System.Drawing.Font("Microsoft Sans Serif", 9.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((System.Byte)(0)));
     this.Label42.Location = new System.Drawing.Point(16, 192);
     this.Label42.Name     = "Label42";
     this.Label42.Size     = new System.Drawing.Size(60, 18);
     this.Label42.TabIndex = 23;
     this.Label42.Text     = "Remarks";
     //
     // Label36
     //
     this.Label36.AutoSize = true;
     this.Label36.Font     = new System.Drawing.Font("Microsoft Sans Serif", 9.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((System.Byte)(0)));
     this.Label36.Location = new System.Drawing.Point(16, 168);
     this.Label36.Name     = "Label36";
     this.Label36.Size     = new System.Drawing.Size(64, 18);
     this.Label36.TabIndex = 21;
     this.Label36.Text     = "End Time";
     //
     // Label31
     //
     this.Label31.AutoSize = true;
     this.Label31.Font     = new System.Drawing.Font("Microsoft Sans Serif", 9.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((System.Byte)(0)));
     this.Label31.Location = new System.Drawing.Point(16, 146);
     this.Label31.Name     = "Label31";
     this.Label31.Size     = new System.Drawing.Size(69, 18);
     this.Label31.TabIndex = 19;
     this.Label31.Text     = "Start Time";
     //
     // Label33
     //
     this.Label33.AutoSize = true;
     this.Label33.Font     = new System.Drawing.Font("Microsoft Sans Serif", 9.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((System.Byte)(0)));
     this.Label33.Location = new System.Drawing.Point(16, 102);
     this.Label33.Name     = "Label33";
     this.Label33.Size     = new System.Drawing.Size(51, 18);
     this.Label33.TabIndex = 17;
     this.Label33.Text     = "Service";
     //
     // Label34
     //
     this.Label34.AutoSize = true;
     this.Label34.Font     = new System.Drawing.Font("Microsoft Sans Serif", 9.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((System.Byte)(0)));
     this.Label34.Location = new System.Drawing.Point(16, 80);
     this.Label34.Name     = "Label34";
     this.Label34.Size     = new System.Drawing.Size(76, 18);
     this.Label34.TabIndex = 15;
     this.Label34.Text     = "Package ID";
     //
     // Label35
     //
     this.Label35.AutoSize = true;
     this.Label35.Font     = new System.Drawing.Font("Microsoft Sans Serif", 9.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((System.Byte)(0)));
     this.Label35.Location = new System.Drawing.Point(16, 58);
     this.Label35.Name     = "Label35";
     this.Label35.Size     = new System.Drawing.Size(63, 18);
     this.Label35.TabIndex = 13;
     this.Label35.Text     = "Therapist";
     //
     // lkpEdtBranchCode
     //
     this.lkpEdtBranchCode.EditValue = "";
     this.lkpEdtBranchCode.Location  = new System.Drawing.Point(96, 36);
     this.lkpEdtBranchCode.Name      = "lkpEdtBranchCode";
     //
     // lkpEdtBranchCode.Properties
     //
     this.lkpEdtBranchCode.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
         new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)
     });
     this.lkpEdtBranchCode.Size     = new System.Drawing.Size(232, 20);
     this.lkpEdtBranchCode.TabIndex = 1;
     //
     // label3
     //
     this.label3.Font     = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((System.Byte)(134)));
     this.label3.Location = new System.Drawing.Point(16, 36);
     this.label3.Name     = "label3";
     this.label3.Size     = new System.Drawing.Size(72, 20);
     this.label3.TabIndex = 58;
     this.label3.Text     = "Branch";
     //
     // FormNewSpaBooking
     //
     this.AcceptButton      = this.SimpleButton56;
     this.AutoScaleBaseSize = new System.Drawing.Size(5, 13);
     this.CancelButton      = this.simpleButton2;
     this.ClientSize        = new System.Drawing.Size(338, 314);
     this.Controls.Add(this.GroupControl38);
     this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedDialog;
     this.MaximizeBox     = false;
     this.MinimizeBox     = false;
     this.Name            = "FormNewSpaBooking";
     this.ShowInTaskbar   = false;
     this.StartPosition   = System.Windows.Forms.FormStartPosition.CenterParent;
     this.Text            = "Spa Booking";
     this.Load           += new System.EventHandler(this.FormNewSpaBooking_Load);
     ((System.ComponentModel.ISupportInitialize)(this.GroupControl38)).EndInit();
     this.GroupControl38.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.dtEditDate.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.dtEdtEndTime.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.dtEdtStartTime.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.lkpEdtTherapist.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.lkpEdtPackageID.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.lkpEdtServiceCode.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.MemoEditRemark.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.lkpEdtBranchCode.Properties)).EndInit();
     this.ResumeLayout(false);
 }
Пример #13
0
 /// <summary>
 /// Required method for Designer support - do not modify
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     this.components = new System.ComponentModel.Container();
     System.Resources.ResourceManager resources = new System.Resources.ResourceManager(typeof(frmClass));
     this.grpMDClass = new DevExpress.XtraEditors.GroupControl();
     this.btnClass_Add = new DevExpress.XtraEditors.SimpleButton();
     this.imageList1 = new System.Windows.Forms.ImageList(this.components);
     this.btnClass_Del = new DevExpress.XtraEditors.SimpleButton();
     this.btn_Add = new DevExpress.XtraEditors.SimpleButton();
     this.btn_Del = new DevExpress.XtraEditors.SimpleButton();
     this.groupControl2 = new DevExpress.XtraEditors.GroupControl();
     this.gridControlMd_ClassType = new DevExpress.XtraGrid.GridControl();
     this.gridViewMd_ClassType = new DevExpress.XtraGrid.Views.Grid.GridView();
     this.gridColumn3 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn4 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.groupControl1 = new DevExpress.XtraEditors.GroupControl();
     this.gridControlMD_Class = new DevExpress.XtraGrid.GridControl();
     this.gridViewMd_Class = new DevExpress.XtraGrid.Views.Grid.GridView();
     this.gridColumn1 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn2 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.lk_RPClassType = new DevExpress.XtraEditors.Repository.RepositoryItemLookUpEdit();
     ((System.ComponentModel.ISupportInitialize)(this.grpMDClass)).BeginInit();
     this.grpMDClass.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.groupControl2)).BeginInit();
     this.groupControl2.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.gridControlMd_ClassType)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridViewMd_ClassType)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.groupControl1)).BeginInit();
     this.groupControl1.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.gridControlMD_Class)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridViewMd_Class)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.lk_RPClassType)).BeginInit();
     this.SuspendLayout();
     //
     // grpMDClass
     //
     this.grpMDClass.Appearance.BackColor = System.Drawing.SystemColors.Control;
     this.grpMDClass.Appearance.Options.UseBackColor = true;
     this.grpMDClass.BorderStyle = DevExpress.XtraEditors.Controls.BorderStyles.Simple;
     this.grpMDClass.Controls.Add(this.btnClass_Add);
     this.grpMDClass.Controls.Add(this.btnClass_Del);
     this.grpMDClass.Controls.Add(this.btn_Add);
     this.grpMDClass.Controls.Add(this.btn_Del);
     this.grpMDClass.Controls.Add(this.groupControl2);
     this.grpMDClass.Controls.Add(this.groupControl1);
     this.grpMDClass.ImeMode = System.Windows.Forms.ImeMode.On;
     this.grpMDClass.Location = new System.Drawing.Point(8, 0);
     this.grpMDClass.LookAndFeel.Style = DevExpress.LookAndFeel.LookAndFeelStyle.Office2003;
     this.grpMDClass.LookAndFeel.UseDefaultLookAndFeel = false;
     this.grpMDClass.LookAndFeel.UseWindowsXPTheme = false;
     this.grpMDClass.Name = "grpMDClass";
     this.grpMDClass.Size = new System.Drawing.Size(970, 560);
     this.grpMDClass.TabIndex = 33;
     this.grpMDClass.Text = "Class";
     //
     // btnClass_Add
     //
     this.btnClass_Add.Appearance.Font = new System.Drawing.Font("Tahoma", 14.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((System.Byte)(0)));
     this.btnClass_Add.Appearance.Options.UseFont = true;
     this.btnClass_Add.Appearance.Options.UseTextOptions = true;
     this.btnClass_Add.Appearance.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.btnClass_Add.Appearance.TextOptions.VAlignment = DevExpress.Utils.VertAlignment.Top;
     this.btnClass_Add.Appearance.TextOptions.WordWrap = DevExpress.Utils.WordWrap.Wrap;
     this.btnClass_Add.ImageIndex = 0;
     this.btnClass_Add.ImageList = this.imageList1;
     this.btnClass_Add.ImeMode = System.Windows.Forms.ImeMode.On;
     this.btnClass_Add.Location = new System.Drawing.Point(8, 272);
     this.btnClass_Add.Name = "btnClass_Add";
     this.btnClass_Add.Size = new System.Drawing.Size(38, 16);
     this.btnClass_Add.TabIndex = 134;
     this.btnClass_Add.Click += new System.EventHandler(this.btnClass_Add_Click);
     //
     // imageList1
     //
     this.imageList1.ColorDepth = System.Windows.Forms.ColorDepth.Depth24Bit;
     this.imageList1.ImageSize = new System.Drawing.Size(16, 16);
     this.imageList1.ImageStream = ((System.Windows.Forms.ImageListStreamer)(resources.GetObject("imageList1.ImageStream")));
     this.imageList1.TransparentColor = System.Drawing.Color.Magenta;
     //
     // btnClass_Del
     //
     this.btnClass_Del.Appearance.Font = new System.Drawing.Font("Tahoma", 14.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((System.Byte)(0)));
     this.btnClass_Del.Appearance.Options.UseFont = true;
     this.btnClass_Del.Appearance.Options.UseTextOptions = true;
     this.btnClass_Del.Appearance.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.btnClass_Del.Appearance.TextOptions.VAlignment = DevExpress.Utils.VertAlignment.Top;
     this.btnClass_Del.Appearance.TextOptions.WordWrap = DevExpress.Utils.WordWrap.Wrap;
     this.btnClass_Del.ImageIndex = 1;
     this.btnClass_Del.ImageList = this.imageList1;
     this.btnClass_Del.Location = new System.Drawing.Point(48, 272);
     this.btnClass_Del.Name = "btnClass_Del";
     this.btnClass_Del.Size = new System.Drawing.Size(38, 16);
     this.btnClass_Del.TabIndex = 133;
     this.btnClass_Del.Click += new System.EventHandler(this.btnClass_Del_Click);
     //
     // btn_Add
     //
     this.btn_Add.Appearance.Font = new System.Drawing.Font("Tahoma", 14.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((System.Byte)(0)));
     this.btn_Add.Appearance.Options.UseFont = true;
     this.btn_Add.Appearance.Options.UseTextOptions = true;
     this.btn_Add.Appearance.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.btn_Add.Appearance.TextOptions.VAlignment = DevExpress.Utils.VertAlignment.Top;
     this.btn_Add.Appearance.TextOptions.WordWrap = DevExpress.Utils.WordWrap.Wrap;
     this.btn_Add.ImageIndex = 0;
     this.btn_Add.ImageList = this.imageList1;
     this.btn_Add.ImeMode = System.Windows.Forms.ImeMode.On;
     this.btn_Add.Location = new System.Drawing.Point(8, 24);
     this.btn_Add.Name = "btn_Add";
     this.btn_Add.Size = new System.Drawing.Size(38, 16);
     this.btn_Add.TabIndex = 132;
     this.btn_Add.Click += new System.EventHandler(this.btn_Add_Click);
     //
     // btn_Del
     //
     this.btn_Del.Appearance.Font = new System.Drawing.Font("Tahoma", 14.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((System.Byte)(0)));
     this.btn_Del.Appearance.Options.UseFont = true;
     this.btn_Del.Appearance.Options.UseTextOptions = true;
     this.btn_Del.Appearance.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.btn_Del.Appearance.TextOptions.VAlignment = DevExpress.Utils.VertAlignment.Top;
     this.btn_Del.Appearance.TextOptions.WordWrap = DevExpress.Utils.WordWrap.Wrap;
     this.btn_Del.ImageIndex = 1;
     this.btn_Del.ImageList = this.imageList1;
     this.btn_Del.Location = new System.Drawing.Point(48, 24);
     this.btn_Del.Name = "btn_Del";
     this.btn_Del.Size = new System.Drawing.Size(38, 16);
     this.btn_Del.TabIndex = 131;
     this.btn_Del.Click += new System.EventHandler(this.btn_Del_Click);
     //
     // groupControl2
     //
     this.groupControl2.Controls.Add(this.gridControlMd_ClassType);
     this.groupControl2.Location = new System.Drawing.Point(0, 48);
     this.groupControl2.LookAndFeel.Style = DevExpress.LookAndFeel.LookAndFeelStyle.Office2003;
     this.groupControl2.LookAndFeel.UseDefaultLookAndFeel = false;
     this.groupControl2.LookAndFeel.UseWindowsXPTheme = false;
     this.groupControl2.Name = "groupControl2";
     this.groupControl2.Size = new System.Drawing.Size(968, 216);
     this.groupControl2.TabIndex = 128;
     this.groupControl2.Text = "Class Type";
     //
     // gridControlMd_ClassType
     //
     this.gridControlMd_ClassType.Dock = System.Windows.Forms.DockStyle.Top;
     //
     // gridControlMd_ClassType.EmbeddedNavigator
     //
     this.gridControlMd_ClassType.EmbeddedNavigator.Name = "";
     this.gridControlMd_ClassType.Location = new System.Drawing.Point(2, 20);
     this.gridControlMd_ClassType.LookAndFeel.Style = DevExpress.LookAndFeel.LookAndFeelStyle.Skin;
     this.gridControlMd_ClassType.LookAndFeel.UseDefaultLookAndFeel = false;
     this.gridControlMd_ClassType.MainView = this.gridViewMd_ClassType;
     this.gridControlMd_ClassType.Name = "gridControlMd_ClassType";
     this.gridControlMd_ClassType.Size = new System.Drawing.Size(964, 194);
     this.gridControlMd_ClassType.TabIndex = 126;
     this.gridControlMd_ClassType.ViewCollection.AddRange(new DevExpress.XtraGrid.Views.Base.BaseView[] {
                                                                                                            this.gridViewMd_ClassType});
     //
     // gridViewMd_ClassType
     //
     this.gridViewMd_ClassType.Columns.AddRange(new DevExpress.XtraGrid.Columns.GridColumn[] {
                                                                                                 this.gridColumn3,
                                                                                                 this.gridColumn4});
     this.gridViewMd_ClassType.GridControl = this.gridControlMd_ClassType;
     this.gridViewMd_ClassType.Name = "gridViewMd_ClassType";
     this.gridViewMd_ClassType.OptionsCustomization.AllowColumnMoving = false;
     this.gridViewMd_ClassType.OptionsCustomization.AllowFilter = false;
     this.gridViewMd_ClassType.OptionsCustomization.AllowSort = false;
     this.gridViewMd_ClassType.OptionsView.ShowGroupPanel = false;
     this.gridViewMd_ClassType.FocusedRowChanged += new DevExpress.XtraGrid.Views.Base.FocusedRowChangedEventHandler(this.gridViewMd_ClassType_FocusedRowChanged);
     this.gridViewMd_ClassType.LostFocus += new System.EventHandler(this.gridViewMd_ClassType_LostFocus);
     //
     // gridColumn3
     //
     this.gridColumn3.Caption = "Class Type Id";
     this.gridColumn3.FieldName = "nClassTypeID";
     this.gridColumn3.Name = "gridColumn3";
     this.gridColumn3.Visible = true;
     this.gridColumn3.VisibleIndex = 0;
     //
     // gridColumn4
     //
     this.gridColumn4.Caption = "Description";
     this.gridColumn4.FieldName = "strDescription";
     this.gridColumn4.Name = "gridColumn4";
     this.gridColumn4.Visible = true;
     this.gridColumn4.VisibleIndex = 1;
     //
     // groupControl1
     //
     this.groupControl1.Controls.Add(this.gridControlMD_Class);
     this.groupControl1.Location = new System.Drawing.Point(0, 296);
     this.groupControl1.LookAndFeel.SkinName = "The Asphalt World";
     this.groupControl1.LookAndFeel.Style = DevExpress.LookAndFeel.LookAndFeelStyle.Office2003;
     this.groupControl1.LookAndFeel.UseDefaultLookAndFeel = false;
     this.groupControl1.LookAndFeel.UseWindowsXPTheme = false;
     this.groupControl1.Name = "groupControl1";
     this.groupControl1.Size = new System.Drawing.Size(968, 256);
     this.groupControl1.TabIndex = 127;
     this.groupControl1.Text = "Class";
     //
     // gridControlMD_Class
     //
     this.gridControlMD_Class.Dock = System.Windows.Forms.DockStyle.Top;
     //
     // gridControlMD_Class.EmbeddedNavigator
     //
     this.gridControlMD_Class.EmbeddedNavigator.Name = "";
     this.gridControlMD_Class.Location = new System.Drawing.Point(2, 20);
     this.gridControlMD_Class.LookAndFeel.Style = DevExpress.LookAndFeel.LookAndFeelStyle.Skin;
     this.gridControlMD_Class.LookAndFeel.UseDefaultLookAndFeel = false;
     this.gridControlMD_Class.MainView = this.gridViewMd_Class;
     this.gridControlMD_Class.Name = "gridControlMD_Class";
     this.gridControlMD_Class.RepositoryItems.AddRange(new DevExpress.XtraEditors.Repository.RepositoryItem[] {
                                                                                                                  this.lk_RPClassType});
     this.gridControlMD_Class.Size = new System.Drawing.Size(964, 250);
     this.gridControlMD_Class.TabIndex = 127;
     this.gridControlMD_Class.ViewCollection.AddRange(new DevExpress.XtraGrid.Views.Base.BaseView[] {
                                                                                                        this.gridViewMd_Class});
     //
     // gridViewMd_Class
     //
     this.gridViewMd_Class.Columns.AddRange(new DevExpress.XtraGrid.Columns.GridColumn[] {
                                                                                             this.gridColumn1,
                                                                                             this.gridColumn2});
     this.gridViewMd_Class.GridControl = this.gridControlMD_Class;
     this.gridViewMd_Class.Name = "gridViewMd_Class";
     this.gridViewMd_Class.OptionsCustomization.AllowFilter = false;
     this.gridViewMd_Class.OptionsCustomization.AllowSort = false;
     this.gridViewMd_Class.OptionsView.ShowGroupPanel = false;
     this.gridViewMd_Class.LostFocus += new System.EventHandler(this.gridViewMd_Class_LostFocus);
     //
     // gridColumn1
     //
     this.gridColumn1.Caption = "Class Code";
     this.gridColumn1.FieldName = "strClassCode";
     this.gridColumn1.Name = "gridColumn1";
     this.gridColumn1.Visible = true;
     this.gridColumn1.VisibleIndex = 0;
     //
     // gridColumn2
     //
     this.gridColumn2.Caption = "Description";
     this.gridColumn2.FieldName = "strDescription";
     this.gridColumn2.Name = "gridColumn2";
     this.gridColumn2.Visible = true;
     this.gridColumn2.VisibleIndex = 1;
     //
     // lk_RPClassType
     //
     this.lk_RPClassType.AutoHeight = false;
     this.lk_RPClassType.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
                                                                                                 new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.lk_RPClassType.Name = "lk_RPClassType";
     //
     // frmClass
     //
     this.AutoScale = false;
     this.AutoScaleBaseSize = new System.Drawing.Size(5, 13);
     this.BackColor = System.Drawing.Color.White;
     this.ClientSize = new System.Drawing.Size(990, 560);
     this.Controls.Add(this.grpMDClass);
     this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.None;
     this.Name = "frmClass";
     this.Text = "frmClass";
     this.Load += new System.EventHandler(this.frmClass_Load);
     ((System.ComponentModel.ISupportInitialize)(this.grpMDClass)).EndInit();
     this.grpMDClass.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.groupControl2)).EndInit();
     this.groupControl2.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.gridControlMd_ClassType)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridViewMd_ClassType)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.groupControl1)).EndInit();
     this.groupControl1.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.gridControlMD_Class)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridViewMd_Class)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.lk_RPClassType)).EndInit();
     this.ResumeLayout(false);
 }
 /// <summary> 
 /// Required method for Designer support - do not modify 
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     this.panelControl2 = new DevExpress.XtraEditors.PanelControl();
     this.splitContainerControl2 = new DevExpress.XtraEditors.SplitContainerControl();
     this.groupControlList = new DevExpress.XtraEditors.GroupControl();
     this.gridControlItem = new DevExpress.XtraGrid.GridControl();
     this.gridView3 = new DevExpress.XtraGrid.Views.Grid.GridView();
     this.item_id = new DevExpress.XtraGrid.Columns.GridColumn();
     this.grid_name = new DevExpress.XtraGrid.Columns.GridColumn();
     this.grid_price_monthly = new DevExpress.XtraGrid.Columns.GridColumn();
     this.grid_price_daily = new DevExpress.XtraGrid.Columns.GridColumn();
     this.grid_vat_text = new DevExpress.XtraGrid.Columns.GridColumn();
     this.item_type = new DevExpress.XtraGrid.Columns.GridColumn();
     this.grid_type_text = new DevExpress.XtraGrid.Columns.GridColumn();
     this.grid_vat = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridView2 = new DevExpress.XtraGrid.Views.Grid.GridView();
     this.gridView1 = new DevExpress.XtraGrid.Views.Grid.GridView();
     this.panelControl3 = new DevExpress.XtraEditors.PanelControl();
     this.groupControlAddittional = new DevExpress.XtraEditors.GroupControl();
     this.xtraScrollableControl1 = new DevExpress.XtraEditors.XtraScrollableControl();
     this.panelEnable = new DevExpress.XtraEditors.PanelControl();
     this.labelControlRequired = new DevExpress.XtraEditors.LabelControl();
     this.labelControl4 = new DevExpress.XtraEditors.LabelControl();
     this.labelControl1 = new DevExpress.XtraEditors.LabelControl();
     this.labelControl12 = new DevExpress.XtraEditors.LabelControl();
     this.lookUpEditPayType = new DevExpress.XtraEditors.LookUpEdit();
     this.lookUpEditVatType = new DevExpress.XtraEditors.LookUpEdit();
     this.labelBasicinfoType = new DevExpress.XtraEditors.LabelControl();
     this.labelBasicinfoName = new DevExpress.XtraEditors.LabelControl();
     this.labelBasicinfoPriceMonthly = new DevExpress.XtraEditors.LabelControl();
     this.labelBasicinfoPriceDaily = new DevExpress.XtraEditors.LabelControl();
     this.labelBasicinfoDetail = new DevExpress.XtraEditors.LabelControl();
     this.labelControlBaht2 = new DevExpress.XtraEditors.LabelControl();
     this.labelControlBaht = new DevExpress.XtraEditors.LabelControl();
     this.labelBasicinfoVat = new DevExpress.XtraEditors.LabelControl();
     this.textEditItemPriceMonthly = new DevExpress.XtraEditors.TextEdit();
     this.memoEditItemDetail = new DevExpress.XtraEditors.MemoEdit();
     this.textEditItemName = new DevExpress.XtraEditors.TextEdit();
     this.panelControl1 = new DevExpress.XtraEditors.PanelControl();
     this.texthiddenAction = new DevExpress.XtraEditors.TextEdit();
     this.bttDelete = new DevExpress.XtraEditors.SimpleButton();
     this.labelBasicinfoID = new DevExpress.XtraEditors.LabelControl();
     this.textEditItemID = new DevExpress.XtraEditors.TextEdit();
     this.textEditCheckEvent = new DevExpress.XtraEditors.TextEdit();
     this.bttAdd = new DevExpress.XtraEditors.SimpleButton();
     this.bttEdit = new DevExpress.XtraEditors.SimpleButton();
     this.bttCancel = new DevExpress.XtraEditors.SimpleButton();
     this.bttSave = new DevExpress.XtraEditors.SimpleButton();
     this.textEditItemPriceDaily = new DevExpress.XtraEditors.TextEdit();
     ((System.ComponentModel.ISupportInitialize)(this.panelControl2)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.splitContainerControl2)).BeginInit();
     this.splitContainerControl2.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.groupControlList)).BeginInit();
     this.groupControlList.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.gridControlItem)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridView3)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridView2)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridView1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.panelControl3)).BeginInit();
     this.panelControl3.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.groupControlAddittional)).BeginInit();
     this.groupControlAddittional.SuspendLayout();
     this.xtraScrollableControl1.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.panelEnable)).BeginInit();
     this.panelEnable.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.lookUpEditPayType.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.lookUpEditVatType.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.textEditItemPriceMonthly.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.memoEditItemDetail.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.textEditItemName.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.panelControl1)).BeginInit();
     this.panelControl1.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.texthiddenAction.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.textEditItemID.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.textEditCheckEvent.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.textEditItemPriceDaily.Properties)).BeginInit();
     this.SuspendLayout();
     //
     // panelControl2
     //
     this.panelControl2.Appearance.BackColor = System.Drawing.Color.WhiteSmoke;
     this.panelControl2.Appearance.Options.UseBackColor = true;
     this.panelControl2.BorderStyle = DevExpress.XtraEditors.Controls.BorderStyles.NoBorder;
     this.panelControl2.Dock = System.Windows.Forms.DockStyle.Fill;
     this.panelControl2.Location = new System.Drawing.Point(7, 7);
     this.panelControl2.Name = "panelControl2";
     this.panelControl2.Size = new System.Drawing.Size(1079, 614);
     this.panelControl2.TabIndex = 20;
     //
     // splitContainerControl2
     //
     this.splitContainerControl2.Dock = System.Windows.Forms.DockStyle.Fill;
     this.splitContainerControl2.Location = new System.Drawing.Point(7, 7);
     this.splitContainerControl2.Name = "splitContainerControl2";
     this.splitContainerControl2.Panel1.Controls.Add(this.groupControlList);
     this.splitContainerControl2.Panel1.Text = "Panel1";
     this.splitContainerControl2.Panel2.Controls.Add(this.panelControl3);
     this.splitContainerControl2.Panel2.Controls.Add(this.panelControl1);
     this.splitContainerControl2.Panel2.Text = "Panel2";
     this.splitContainerControl2.Size = new System.Drawing.Size(1079, 614);
     this.splitContainerControl2.SplitterPosition = 500;
     this.splitContainerControl2.TabIndex = 22;
     this.splitContainerControl2.Text = "splitContainerControl2";
     //
     // groupControlList
     //
     this.groupControlList.AppearanceCaption.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold);
     this.groupControlList.AppearanceCaption.Options.UseFont = true;
     this.groupControlList.Controls.Add(this.gridControlItem);
     this.groupControlList.Dock = System.Windows.Forms.DockStyle.Fill;
     this.groupControlList.Location = new System.Drawing.Point(0, 0);
     this.groupControlList.Name = "groupControlList";
     this.groupControlList.Size = new System.Drawing.Size(500, 614);
     this.groupControlList.TabIndex = 0;
     this.groupControlList.Text = "รายการค่าใช้จ่ายเพิ่มเติม";
     //
     // gridControlItem
     //
     this.gridControlItem.Dock = System.Windows.Forms.DockStyle.Fill;
     this.gridControlItem.Location = new System.Drawing.Point(2, 22);
     this.gridControlItem.MainView = this.gridView3;
     this.gridControlItem.Name = "gridControlItem";
     this.gridControlItem.Size = new System.Drawing.Size(496, 590);
     this.gridControlItem.TabIndex = 18;
     this.gridControlItem.ViewCollection.AddRange(new DevExpress.XtraGrid.Views.Base.BaseView[] {
     this.gridView3,
     this.gridView2,
     this.gridView1});
     //
     // gridView3
     //
     this.gridView3.Columns.AddRange(new DevExpress.XtraGrid.Columns.GridColumn[] {
     this.item_id,
     this.grid_name,
     this.grid_price_monthly,
     this.grid_price_daily,
     this.grid_vat_text,
     this.item_type,
     this.grid_type_text,
     this.grid_vat});
     this.gridView3.GridControl = this.gridControlItem;
     this.gridView3.Name = "gridView3";
     this.gridView3.OptionsBehavior.AllowAddRows = DevExpress.Utils.DefaultBoolean.False;
     this.gridView3.OptionsBehavior.AllowDeleteRows = DevExpress.Utils.DefaultBoolean.False;
     this.gridView3.OptionsBehavior.Editable = false;
     this.gridView3.OptionsBehavior.ReadOnly = true;
     this.gridView3.OptionsFind.AlwaysVisible = true;
     this.gridView3.OptionsFind.ShowCloseButton = false;
     this.gridView3.OptionsView.ShowGroupPanel = false;
     //
     // item_id
     //
     this.item_id.AppearanceHeader.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold);
     this.item_id.AppearanceHeader.Options.UseFont = true;
     this.item_id.Caption = "รหัสค่าใช่จ่ายเพิ่มเติม";
     this.item_id.DisplayFormat.FormatType = DevExpress.Utils.FormatType.Numeric;
     this.item_id.FieldName = "item_id";
     this.item_id.Name = "item_id";
     this.item_id.OptionsColumn.AllowEdit = false;
     this.item_id.OptionsColumn.AllowFocus = false;
     this.item_id.OptionsColumn.AllowMerge = DevExpress.Utils.DefaultBoolean.False;
     this.item_id.OptionsColumn.AllowMove = false;
     this.item_id.Width = 161;
     //
     // grid_name
     //
     this.grid_name.AppearanceHeader.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold);
     this.grid_name.AppearanceHeader.Options.UseFont = true;
     this.grid_name.Caption = "ชื่อรายการค่าใช้จ่าย";
     this.grid_name.FieldName = "item_name";
     this.grid_name.Name = "grid_name";
     this.grid_name.OptionsColumn.AllowEdit = false;
     this.grid_name.OptionsColumn.AllowFocus = false;
     this.grid_name.OptionsColumn.AllowMerge = DevExpress.Utils.DefaultBoolean.False;
     this.grid_name.OptionsColumn.AllowMove = false;
     this.grid_name.Visible = true;
     this.grid_name.VisibleIndex = 0;
     this.grid_name.Width = 114;
     //
     // grid_price_monthly
     //
     this.grid_price_monthly.AppearanceHeader.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold);
     this.grid_price_monthly.AppearanceHeader.Options.UseFont = true;
     this.grid_price_monthly.Caption = "ราคารายเดือน";
     this.grid_price_monthly.DisplayFormat.FormatString = "{0:n2}";
     this.grid_price_monthly.DisplayFormat.FormatType = DevExpress.Utils.FormatType.Numeric;
     this.grid_price_monthly.FieldName = "item_price_monthly";
     this.grid_price_monthly.Name = "grid_price_monthly";
     this.grid_price_monthly.OptionsColumn.AllowEdit = false;
     this.grid_price_monthly.OptionsColumn.AllowFocus = false;
     this.grid_price_monthly.OptionsColumn.AllowMerge = DevExpress.Utils.DefaultBoolean.False;
     this.grid_price_monthly.OptionsColumn.AllowMove = false;
     this.grid_price_monthly.Visible = true;
     this.grid_price_monthly.VisibleIndex = 2;
     this.grid_price_monthly.Width = 107;
     //
     // grid_price_daily
     //
     this.grid_price_daily.AppearanceHeader.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold);
     this.grid_price_daily.AppearanceHeader.Options.UseFont = true;
     this.grid_price_daily.Caption = "ราคารายวัน";
     this.grid_price_daily.DisplayFormat.FormatString = "{0:n2}";
     this.grid_price_daily.DisplayFormat.FormatType = DevExpress.Utils.FormatType.Numeric;
     this.grid_price_daily.FieldName = "item_price_daily";
     this.grid_price_daily.Name = "grid_price_daily";
     this.grid_price_daily.OptionsColumn.AllowEdit = false;
     this.grid_price_daily.OptionsColumn.AllowFocus = false;
     this.grid_price_daily.OptionsColumn.AllowMerge = DevExpress.Utils.DefaultBoolean.False;
     this.grid_price_daily.OptionsColumn.AllowMove = false;
     this.grid_price_daily.Visible = true;
     this.grid_price_daily.VisibleIndex = 3;
     this.grid_price_daily.Width = 97;
     //
     // grid_vat_text
     //
     this.grid_vat_text.AppearanceHeader.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold);
     this.grid_vat_text.AppearanceHeader.Options.UseFont = true;
     this.grid_vat_text.Caption = "การคิดภาษี";
     this.grid_vat_text.FieldName = "item_vat_text";
     this.grid_vat_text.Name = "grid_vat_text";
     this.grid_vat_text.OptionsColumn.AllowEdit = false;
     this.grid_vat_text.OptionsColumn.AllowFocus = false;
     this.grid_vat_text.OptionsColumn.AllowMerge = DevExpress.Utils.DefaultBoolean.False;
     this.grid_vat_text.OptionsColumn.AllowMove = false;
     this.grid_vat_text.Visible = true;
     this.grid_vat_text.VisibleIndex = 4;
     this.grid_vat_text.Width = 70;
     //
     // item_type
     //
     this.item_type.AppearanceHeader.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold);
     this.item_type.AppearanceHeader.Options.UseFont = true;
     this.item_type.Name = "item_type";
     //
     // grid_type_text
     //
     this.grid_type_text.AppearanceHeader.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold);
     this.grid_type_text.AppearanceHeader.Options.UseFont = true;
     this.grid_type_text.Caption = "รูปแบบค่าใช้จ่าย";
     this.grid_type_text.FieldName = "item_type_text";
     this.grid_type_text.Name = "grid_type_text";
     this.grid_type_text.OptionsColumn.AllowEdit = false;
     this.grid_type_text.OptionsColumn.AllowFocus = false;
     this.grid_type_text.OptionsColumn.AllowMerge = DevExpress.Utils.DefaultBoolean.False;
     this.grid_type_text.OptionsColumn.AllowMove = false;
     this.grid_type_text.Visible = true;
     this.grid_type_text.VisibleIndex = 1;
     this.grid_type_text.Width = 92;
     //
     // grid_vat
     //
     this.grid_vat.Caption = "gridColumn1";
     this.grid_vat.FieldName = "item_vat";
     this.grid_vat.Name = "grid_vat";
     //
     // gridView2
     //
     this.gridView2.GridControl = this.gridControlItem;
     this.gridView2.Name = "gridView2";
     //
     // gridView1
     //
     this.gridView1.GridControl = this.gridControlItem;
     this.gridView1.Name = "gridView1";
     //
     // panelControl3
     //
     this.panelControl3.BorderStyle = DevExpress.XtraEditors.Controls.BorderStyles.NoBorder;
     this.panelControl3.Controls.Add(this.groupControlAddittional);
     this.panelControl3.Dock = System.Windows.Forms.DockStyle.Fill;
     this.panelControl3.Location = new System.Drawing.Point(0, 0);
     this.panelControl3.Name = "panelControl3";
     this.panelControl3.Size = new System.Drawing.Size(574, 548);
     this.panelControl3.TabIndex = 12;
     //
     // groupControlAddittional
     //
     this.groupControlAddittional.AppearanceCaption.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold);
     this.groupControlAddittional.AppearanceCaption.Options.UseFont = true;
     this.groupControlAddittional.Controls.Add(this.xtraScrollableControl1);
     this.groupControlAddittional.Dock = System.Windows.Forms.DockStyle.Fill;
     this.groupControlAddittional.Location = new System.Drawing.Point(0, 0);
     this.groupControlAddittional.Name = "groupControlAddittional";
     this.groupControlAddittional.Size = new System.Drawing.Size(574, 548);
     this.groupControlAddittional.TabIndex = 3;
     this.groupControlAddittional.Text = "ข้อมูลค่าใช้จ่ายเพิ่มเติม";
     //
     // xtraScrollableControl1
     //
     this.xtraScrollableControl1.Controls.Add(this.panelEnable);
     this.xtraScrollableControl1.Dock = System.Windows.Forms.DockStyle.Fill;
     this.xtraScrollableControl1.Location = new System.Drawing.Point(2, 22);
     this.xtraScrollableControl1.Name = "xtraScrollableControl1";
     this.xtraScrollableControl1.Size = new System.Drawing.Size(570, 524);
     this.xtraScrollableControl1.TabIndex = 0;
     //
     // panelEnable
     //
     this.panelEnable.Appearance.BackColor = System.Drawing.Color.Transparent;
     this.panelEnable.Appearance.Options.UseBackColor = true;
     this.panelEnable.BorderStyle = DevExpress.XtraEditors.Controls.BorderStyles.NoBorder;
     this.panelEnable.Controls.Add(this.textEditItemPriceDaily);
     this.panelEnable.Controls.Add(this.labelControlRequired);
     this.panelEnable.Controls.Add(this.labelControl4);
     this.panelEnable.Controls.Add(this.labelControl1);
     this.panelEnable.Controls.Add(this.labelControl12);
     this.panelEnable.Controls.Add(this.lookUpEditPayType);
     this.panelEnable.Controls.Add(this.lookUpEditVatType);
     this.panelEnable.Controls.Add(this.labelBasicinfoType);
     this.panelEnable.Controls.Add(this.labelBasicinfoName);
     this.panelEnable.Controls.Add(this.labelBasicinfoPriceMonthly);
     this.panelEnable.Controls.Add(this.labelBasicinfoPriceDaily);
     this.panelEnable.Controls.Add(this.labelBasicinfoDetail);
     this.panelEnable.Controls.Add(this.labelControlBaht2);
     this.panelEnable.Controls.Add(this.labelControlBaht);
     this.panelEnable.Controls.Add(this.labelBasicinfoVat);
     this.panelEnable.Controls.Add(this.textEditItemPriceMonthly);
     this.panelEnable.Controls.Add(this.memoEditItemDetail);
     this.panelEnable.Controls.Add(this.textEditItemName);
     this.panelEnable.Dock = System.Windows.Forms.DockStyle.Top;
     this.panelEnable.Location = new System.Drawing.Point(0, 0);
     this.panelEnable.Name = "panelEnable";
     this.panelEnable.Size = new System.Drawing.Size(570, 243);
     this.panelEnable.TabIndex = 267;
     //
     // labelControlRequired
     //
     this.labelControlRequired.Appearance.ForeColor = System.Drawing.Color.Red;
     this.labelControlRequired.Location = new System.Drawing.Point(9, 227);
     this.labelControlRequired.Name = "labelControlRequired";
     this.labelControlRequired.Size = new System.Drawing.Size(50, 13);
     this.labelControlRequired.TabIndex = 413;
     this.labelControlRequired.Text = "* โปรดระบุ";
     //
     // labelControl4
     //
     this.labelControl4.Appearance.ForeColor = System.Drawing.Color.Red;
     this.labelControl4.Location = new System.Drawing.Point(9, 121);
     this.labelControl4.Name = "labelControl4";
     this.labelControl4.Size = new System.Drawing.Size(6, 13);
     this.labelControl4.TabIndex = 317;
     this.labelControl4.Text = "*";
     //
     // labelControl1
     //
     this.labelControl1.Appearance.ForeColor = System.Drawing.Color.Red;
     this.labelControl1.Location = new System.Drawing.Point(9, 47);
     this.labelControl1.Name = "labelControl1";
     this.labelControl1.Size = new System.Drawing.Size(6, 13);
     this.labelControl1.TabIndex = 317;
     this.labelControl1.Text = "*";
     //
     // labelControl12
     //
     this.labelControl12.Appearance.ForeColor = System.Drawing.Color.Red;
     this.labelControl12.Location = new System.Drawing.Point(9, 17);
     this.labelControl12.Name = "labelControl12";
     this.labelControl12.Size = new System.Drawing.Size(6, 13);
     this.labelControl12.TabIndex = 317;
     this.labelControl12.Text = "*";
     //
     // lookUpEditPayType
     //
     this.lookUpEditPayType.Location = new System.Drawing.Point(174, 36);
     this.lookUpEditPayType.Name = "lookUpEditPayType";
     this.lookUpEditPayType.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.lookUpEditPayType.Properties.Columns.AddRange(new DevExpress.XtraEditors.Controls.LookUpColumnInfo[] {
     new DevExpress.XtraEditors.Controls.LookUpColumnInfo("paytype_label", " ")});
     this.lookUpEditPayType.Size = new System.Drawing.Size(241, 20);
     this.lookUpEditPayType.TabIndex = 2;
     //
     // lookUpEditVatType
     //
     this.lookUpEditVatType.Location = new System.Drawing.Point(174, 115);
     this.lookUpEditVatType.Name = "lookUpEditVatType";
     this.lookUpEditVatType.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.lookUpEditVatType.Properties.Columns.AddRange(new DevExpress.XtraEditors.Controls.LookUpColumnInfo[] {
     new DevExpress.XtraEditors.Controls.LookUpColumnInfo("vattype_label", " ")});
     this.lookUpEditVatType.Size = new System.Drawing.Size(241, 20);
     this.lookUpEditVatType.TabIndex = 5;
     //
     // labelBasicinfoType
     //
     this.labelBasicinfoType.Appearance.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Far;
     this.labelBasicinfoType.AutoSizeMode = DevExpress.XtraEditors.LabelAutoSizeMode.None;
     this.labelBasicinfoType.Location = new System.Drawing.Point(32, 41);
     this.labelBasicinfoType.Name = "labelBasicinfoType";
     this.labelBasicinfoType.Size = new System.Drawing.Size(122, 13);
     this.labelBasicinfoType.TabIndex = 262;
     this.labelBasicinfoType.Text = "รูปแบบค่าใช้จ่าย :";
     //
     // labelBasicinfoName
     //
     this.labelBasicinfoName.Appearance.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Far;
     this.labelBasicinfoName.AutoSizeMode = DevExpress.XtraEditors.LabelAutoSizeMode.None;
     this.labelBasicinfoName.Location = new System.Drawing.Point(32, 13);
     this.labelBasicinfoName.Name = "labelBasicinfoName";
     this.labelBasicinfoName.Size = new System.Drawing.Size(122, 13);
     this.labelBasicinfoName.TabIndex = 72;
     this.labelBasicinfoName.Text = "ชื่อรายการค่าใช้จ่าย :";
     //
     // labelBasicinfoPriceMonthly
     //
     this.labelBasicinfoPriceMonthly.Appearance.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Far;
     this.labelBasicinfoPriceMonthly.AutoSizeMode = DevExpress.XtraEditors.LabelAutoSizeMode.None;
     this.labelBasicinfoPriceMonthly.Location = new System.Drawing.Point(32, 66);
     this.labelBasicinfoPriceMonthly.Name = "labelBasicinfoPriceMonthly";
     this.labelBasicinfoPriceMonthly.Size = new System.Drawing.Size(122, 13);
     this.labelBasicinfoPriceMonthly.TabIndex = 73;
     this.labelBasicinfoPriceMonthly.Text = "ราคารายเดือน :";
     //
     // labelBasicinfoPriceDaily
     //
     this.labelBasicinfoPriceDaily.Appearance.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Far;
     this.labelBasicinfoPriceDaily.AutoSizeMode = DevExpress.XtraEditors.LabelAutoSizeMode.None;
     this.labelBasicinfoPriceDaily.Location = new System.Drawing.Point(32, 92);
     this.labelBasicinfoPriceDaily.Name = "labelBasicinfoPriceDaily";
     this.labelBasicinfoPriceDaily.Size = new System.Drawing.Size(122, 13);
     this.labelBasicinfoPriceDaily.TabIndex = 75;
     this.labelBasicinfoPriceDaily.Text = "ราคารายวัน :";
     //
     // labelBasicinfoDetail
     //
     this.labelBasicinfoDetail.Appearance.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Far;
     this.labelBasicinfoDetail.AutoSizeMode = DevExpress.XtraEditors.LabelAutoSizeMode.None;
     this.labelBasicinfoDetail.Location = new System.Drawing.Point(26, 142);
     this.labelBasicinfoDetail.Name = "labelBasicinfoDetail";
     this.labelBasicinfoDetail.Size = new System.Drawing.Size(128, 13);
     this.labelBasicinfoDetail.TabIndex = 251;
     this.labelBasicinfoDetail.Text = "รายละเอียดเพิ่มเติม :";
     //
     // labelControlBaht2
     //
     this.labelControlBaht2.AutoSizeMode = DevExpress.XtraEditors.LabelAutoSizeMode.None;
     this.labelControlBaht2.Location = new System.Drawing.Point(421, 91);
     this.labelControlBaht2.Name = "labelControlBaht2";
     this.labelControlBaht2.Size = new System.Drawing.Size(81, 13);
     this.labelControlBaht2.TabIndex = 76;
     this.labelControlBaht2.Text = "บาท";
     //
     // labelControlBaht
     //
     this.labelControlBaht.AutoSizeMode = DevExpress.XtraEditors.LabelAutoSizeMode.None;
     this.labelControlBaht.Location = new System.Drawing.Point(421, 65);
     this.labelControlBaht.Name = "labelControlBaht";
     this.labelControlBaht.Size = new System.Drawing.Size(81, 13);
     this.labelControlBaht.TabIndex = 76;
     this.labelControlBaht.Text = "บาท";
     //
     // labelBasicinfoVat
     //
     this.labelBasicinfoVat.Appearance.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Far;
     this.labelBasicinfoVat.AutoSizeMode = DevExpress.XtraEditors.LabelAutoSizeMode.None;
     this.labelBasicinfoVat.Location = new System.Drawing.Point(32, 118);
     this.labelBasicinfoVat.Name = "labelBasicinfoVat";
     this.labelBasicinfoVat.Size = new System.Drawing.Size(122, 13);
     this.labelBasicinfoVat.TabIndex = 76;
     this.labelBasicinfoVat.Text = "การคิดภาษี :";
     //
     // textEditItemPriceMonthly
     //
     this.textEditItemPriceMonthly.EditValue = "1000000.00";
     this.textEditItemPriceMonthly.Location = new System.Drawing.Point(174, 62);
     this.textEditItemPriceMonthly.Name = "textEditItemPriceMonthly";
     this.textEditItemPriceMonthly.Properties.Appearance.Options.UseTextOptions = true;
     this.textEditItemPriceMonthly.Properties.Appearance.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Far;
     this.textEditItemPriceMonthly.Properties.DisplayFormat.FormatString = "{n2}";
     this.textEditItemPriceMonthly.Properties.DisplayFormat.FormatType = DevExpress.Utils.FormatType.Numeric;
     this.textEditItemPriceMonthly.Properties.EditFormat.FormatString = "{n2}";
     this.textEditItemPriceMonthly.Properties.EditFormat.FormatType = DevExpress.Utils.FormatType.Numeric;
     this.textEditItemPriceMonthly.Properties.Mask.BeepOnError = true;
     this.textEditItemPriceMonthly.Properties.Mask.EditMask = "0*([0-9]{1,7}|1000000)|0*([0-9]{1,7}|1000000)\\.([0-9]){2}";
     this.textEditItemPriceMonthly.Properties.Mask.IgnoreMaskBlank = false;
     this.textEditItemPriceMonthly.Properties.Mask.MaskType = DevExpress.XtraEditors.Mask.MaskType.RegEx;
     this.textEditItemPriceMonthly.Properties.Mask.ShowPlaceHolders = false;
     this.textEditItemPriceMonthly.Properties.Mask.UseMaskAsDisplayFormat = true;
     this.textEditItemPriceMonthly.Properties.MaxLength = 7;
     this.textEditItemPriceMonthly.Size = new System.Drawing.Size(241, 20);
     this.textEditItemPriceMonthly.TabIndex = 3;
     //
     // memoEditItemDetail
     //
     this.memoEditItemDetail.Location = new System.Drawing.Point(174, 143);
     this.memoEditItemDetail.Name = "memoEditItemDetail";
     this.memoEditItemDetail.Properties.MaxLength = 500;
     this.memoEditItemDetail.Size = new System.Drawing.Size(241, 72);
     this.memoEditItemDetail.TabIndex = 6;
     //
     // textEditItemName
     //
     this.textEditItemName.Location = new System.Drawing.Point(174, 10);
     this.textEditItemName.Name = "textEditItemName";
     this.textEditItemName.Properties.Mask.BeepOnError = true;
     this.textEditItemName.Properties.Mask.EditMask = "([a-zA-Z0-9|ก-๙|\\\' \']){0,50}";
     this.textEditItemName.Properties.Mask.IgnoreMaskBlank = false;
     this.textEditItemName.Properties.Mask.MaskType = DevExpress.XtraEditors.Mask.MaskType.RegEx;
     this.textEditItemName.Properties.Mask.UseMaskAsDisplayFormat = true;
     this.textEditItemName.Properties.MaxLength = 50;
     this.textEditItemName.Size = new System.Drawing.Size(241, 20);
     this.textEditItemName.TabIndex = 1;
     //
     // panelControl1
     //
     this.panelControl1.Controls.Add(this.texthiddenAction);
     this.panelControl1.Controls.Add(this.bttDelete);
     this.panelControl1.Controls.Add(this.labelBasicinfoID);
     this.panelControl1.Controls.Add(this.textEditItemID);
     this.panelControl1.Controls.Add(this.textEditCheckEvent);
     this.panelControl1.Controls.Add(this.bttAdd);
     this.panelControl1.Controls.Add(this.bttEdit);
     this.panelControl1.Controls.Add(this.bttCancel);
     this.panelControl1.Controls.Add(this.bttSave);
     this.panelControl1.Dock = System.Windows.Forms.DockStyle.Bottom;
     this.panelControl1.Location = new System.Drawing.Point(0, 548);
     this.panelControl1.Name = "panelControl1";
     this.panelControl1.Size = new System.Drawing.Size(574, 66);
     this.panelControl1.TabIndex = 13;
     //
     // texthiddenAction
     //
     this.texthiddenAction.Location = new System.Drawing.Point(11, 35);
     this.texthiddenAction.Name = "texthiddenAction";
     this.texthiddenAction.Size = new System.Drawing.Size(100, 20);
     this.texthiddenAction.TabIndex = 264;
     this.texthiddenAction.Visible = false;
     //
     // bttDelete
     //
     this.bttDelete.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
     this.bttDelete.Image = global::DXWindowsApplication2.Properties.Resources.delete;
     this.bttDelete.ImageLocation = DevExpress.XtraEditors.ImageLocation.TopCenter;
     this.bttDelete.Location = new System.Drawing.Point(347, 5);
     this.bttDelete.Name = "bttDelete";
     this.bttDelete.Size = new System.Drawing.Size(70, 55);
     this.bttDelete.TabIndex = 20;
     this.bttDelete.Text = "ลบข้อมูล";
     this.bttDelete.Click += new System.EventHandler(this.bttDelete_Click);
     //
     // labelBasicinfoID
     //
     this.labelBasicinfoID.Location = new System.Drawing.Point(17, 6);
     this.labelBasicinfoID.Name = "labelBasicinfoID";
     this.labelBasicinfoID.Padding = new System.Windows.Forms.Padding(10);
     this.labelBasicinfoID.Size = new System.Drawing.Size(46, 33);
     this.labelBasicinfoID.TabIndex = 71;
     this.labelBasicinfoID.Text = "รหัส :";
     this.labelBasicinfoID.Visible = false;
     //
     // textEditItemID
     //
     this.textEditItemID.Location = new System.Drawing.Point(69, 13);
     this.textEditItemID.Name = "textEditItemID";
     this.textEditItemID.Properties.Appearance.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold);
     this.textEditItemID.Properties.Appearance.Options.UseFont = true;
     this.textEditItemID.Properties.ReadOnly = true;
     this.textEditItemID.Size = new System.Drawing.Size(18, 20);
     this.textEditItemID.TabIndex = 248;
     this.textEditItemID.Visible = false;
     //
     // textEditCheckEvent
     //
     this.textEditCheckEvent.EditValue = "";
     this.textEditCheckEvent.Location = new System.Drawing.Point(93, 13);
     this.textEditCheckEvent.Name = "textEditCheckEvent";
     this.textEditCheckEvent.Properties.Mask.BeepOnError = true;
     this.textEditCheckEvent.Properties.Mask.EditMask = "([0-9]*)";
     this.textEditCheckEvent.Properties.Mask.IgnoreMaskBlank = false;
     this.textEditCheckEvent.Properties.Mask.MaskType = DevExpress.XtraEditors.Mask.MaskType.RegEx;
     this.textEditCheckEvent.Properties.MaxLength = 10;
     this.textEditCheckEvent.Size = new System.Drawing.Size(18, 20);
     this.textEditCheckEvent.TabIndex = 258;
     this.textEditCheckEvent.Visible = false;
     //
     // bttAdd
     //
     this.bttAdd.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
     this.bttAdd.Image = global::DXWindowsApplication2.Properties.Resources.Add;
     this.bttAdd.ImageLocation = DevExpress.XtraEditors.ImageLocation.TopCenter;
     this.bttAdd.Location = new System.Drawing.Point(195, 5);
     this.bttAdd.Name = "bttAdd";
     this.bttAdd.Size = new System.Drawing.Size(70, 55);
     this.bttAdd.TabIndex = 18;
     this.bttAdd.Text = "เพิ่มข้อมูล";
     this.bttAdd.Click += new System.EventHandler(this.bttAdd_Click);
     //
     // bttEdit
     //
     this.bttEdit.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
     this.bttEdit.Image = global::DXWindowsApplication2.Properties.Resources.edit;
     this.bttEdit.ImageLocation = DevExpress.XtraEditors.ImageLocation.TopCenter;
     this.bttEdit.Location = new System.Drawing.Point(271, 5);
     this.bttEdit.Name = "bttEdit";
     this.bttEdit.Size = new System.Drawing.Size(70, 55);
     this.bttEdit.TabIndex = 19;
     this.bttEdit.Text = "แก้ไขข้อมูล";
     this.bttEdit.Click += new System.EventHandler(this.bttEdit_Click);
     //
     // bttCancel
     //
     this.bttCancel.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
     this.bttCancel.Enabled = false;
     this.bttCancel.Image = global::DXWindowsApplication2.Properties.Resources.Close;
     this.bttCancel.ImageLocation = DevExpress.XtraEditors.ImageLocation.TopCenter;
     this.bttCancel.Location = new System.Drawing.Point(499, 5);
     this.bttCancel.Name = "bttCancel";
     this.bttCancel.Size = new System.Drawing.Size(70, 55);
     this.bttCancel.TabIndex = 22;
     this.bttCancel.Text = "ยกเลิก";
     this.bttCancel.Click += new System.EventHandler(this.bttCancel_Click);
     //
     // bttSave
     //
     this.bttSave.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
     this.bttSave.Enabled = false;
     this.bttSave.Image = global::DXWindowsApplication2.Properties.Resources.save;
     this.bttSave.ImageLocation = DevExpress.XtraEditors.ImageLocation.TopCenter;
     this.bttSave.Location = new System.Drawing.Point(423, 5);
     this.bttSave.Name = "bttSave";
     this.bttSave.Size = new System.Drawing.Size(70, 55);
     this.bttSave.TabIndex = 21;
     this.bttSave.Text = "บันทึก";
     this.bttSave.Click += new System.EventHandler(this.bttSave_Click);
     //
     // textEditItemPriceDaily
     //
     this.textEditItemPriceDaily.EditValue = "1000000.00";
     this.textEditItemPriceDaily.Location = new System.Drawing.Point(174, 88);
     this.textEditItemPriceDaily.Name = "textEditItemPriceDaily";
     this.textEditItemPriceDaily.Properties.Appearance.Options.UseTextOptions = true;
     this.textEditItemPriceDaily.Properties.Appearance.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Far;
     this.textEditItemPriceDaily.Properties.DisplayFormat.FormatString = "{n2}";
     this.textEditItemPriceDaily.Properties.DisplayFormat.FormatType = DevExpress.Utils.FormatType.Numeric;
     this.textEditItemPriceDaily.Properties.EditFormat.FormatString = "{n2}";
     this.textEditItemPriceDaily.Properties.EditFormat.FormatType = DevExpress.Utils.FormatType.Numeric;
     this.textEditItemPriceDaily.Properties.Mask.BeepOnError = true;
     this.textEditItemPriceDaily.Properties.Mask.EditMask = "0*([0-9]{1,7}|1000000)|0*([0-9]{1,7}|1000000)\\.([0-9]){2}";
     this.textEditItemPriceDaily.Properties.Mask.IgnoreMaskBlank = false;
     this.textEditItemPriceDaily.Properties.Mask.MaskType = DevExpress.XtraEditors.Mask.MaskType.RegEx;
     this.textEditItemPriceDaily.Properties.Mask.ShowPlaceHolders = false;
     this.textEditItemPriceDaily.Properties.Mask.UseMaskAsDisplayFormat = true;
     this.textEditItemPriceDaily.Properties.MaxLength = 7;
     this.textEditItemPriceDaily.Size = new System.Drawing.Size(241, 20);
     this.textEditItemPriceDaily.TabIndex = 414;
     //
     // BasicInfoAdditionItem
     //
     this.Appearance.BackColor = System.Drawing.Color.White;
     this.Appearance.Options.UseBackColor = true;
     this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
     this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
     this.Controls.Add(this.splitContainerControl2);
     this.Controls.Add(this.panelControl2);
     this.Name = "BasicInfoAdditionItem";
     this.Padding = new System.Windows.Forms.Padding(7);
     this.Size = new System.Drawing.Size(1093, 628);
     ((System.ComponentModel.ISupportInitialize)(this.panelControl2)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.splitContainerControl2)).EndInit();
     this.splitContainerControl2.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.groupControlList)).EndInit();
     this.groupControlList.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.gridControlItem)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridView3)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridView2)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridView1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.panelControl3)).EndInit();
     this.panelControl3.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.groupControlAddittional)).EndInit();
     this.groupControlAddittional.ResumeLayout(false);
     this.xtraScrollableControl1.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.panelEnable)).EndInit();
     this.panelEnable.ResumeLayout(false);
     this.panelEnable.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(this.lookUpEditPayType.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.lookUpEditVatType.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.textEditItemPriceMonthly.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.memoEditItemDetail.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.textEditItemName.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.panelControl1)).EndInit();
     this.panelControl1.ResumeLayout(false);
     this.panelControl1.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(this.texthiddenAction.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.textEditItemID.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.textEditCheckEvent.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.textEditItemPriceDaily.Properties)).EndInit();
     this.ResumeLayout(false);
 }
Пример #15
0
 /// <summary>
 /// Required method for Designer support - do not modify
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     this.groupHdrIPP              = new DevExpress.XtraEditors.GroupControl();
     this.hdrIPP                   = new System.Windows.Forms.Label();
     this.grpControlIPP            = new DevExpress.XtraEditors.GroupControl();
     this.lkpEdtMerchantNo         = new DevExpress.XtraEditors.LookUpEdit();
     this.label3                   = new System.Windows.Forms.Label();
     this.txtCreditCard            = new DevExpress.XtraEditors.TextEdit();
     this.CreditCard               = new System.Windows.Forms.Label();
     this.lkpEdtMonthOfInstallment = new DevExpress.XtraEditors.LookUpEdit();
     this.lkpEdtBankCode           = new DevExpress.XtraEditors.LookUpEdit();
     this.btnIPPCancel             = new DevExpress.XtraEditors.SimpleButton();
     this.btnSave                  = new DevExpress.XtraEditors.SimpleButton();
     this.label4                   = new System.Windows.Forms.Label();
     this.label2                   = new System.Windows.Forms.Label();
     ((System.ComponentModel.ISupportInitialize)(this.groupHdrIPP)).BeginInit();
     this.groupHdrIPP.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.grpControlIPP)).BeginInit();
     this.grpControlIPP.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.lkpEdtMerchantNo.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtCreditCard.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.lkpEdtMonthOfInstallment.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.lkpEdtBankCode.Properties)).BeginInit();
     this.SuspendLayout();
     //
     // groupHdrIPP
     //
     this.groupHdrIPP.Appearance.BackColor            = System.Drawing.Color.LightGray;
     this.groupHdrIPP.Appearance.Options.UseBackColor = true;
     this.groupHdrIPP.BorderStyle = DevExpress.XtraEditors.Controls.BorderStyles.NoBorder;
     this.groupHdrIPP.Controls.Add(this.hdrIPP);
     this.groupHdrIPP.Location          = new System.Drawing.Point(0, -1);
     this.groupHdrIPP.LookAndFeel.Style = DevExpress.LookAndFeel.LookAndFeelStyle.Office2003;
     this.groupHdrIPP.LookAndFeel.UseDefaultLookAndFeel = false;
     this.groupHdrIPP.Name     = "groupHdrIPP";
     this.groupHdrIPP.Size     = new System.Drawing.Size(472, 32);
     this.groupHdrIPP.TabIndex = 26;
     this.groupHdrIPP.Text     = "groupControl1";
     //
     // hdrIPP
     //
     this.hdrIPP.BackColor = System.Drawing.Color.Silver;
     this.hdrIPP.Font      = new System.Drawing.Font("Tahoma", 11.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((System.Byte)(0)));
     this.hdrIPP.Location  = new System.Drawing.Point(0, 8);
     this.hdrIPP.Name      = "hdrIPP";
     this.hdrIPP.Size      = new System.Drawing.Size(464, 23);
     this.hdrIPP.TabIndex  = 1;
     this.hdrIPP.Text      = "IPP DETAILS FORM";
     this.hdrIPP.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
     //
     // grpControlIPP
     //
     this.grpControlIPP.BorderStyle = DevExpress.XtraEditors.Controls.BorderStyles.NoBorder;
     this.grpControlIPP.Controls.Add(this.lkpEdtMerchantNo);
     this.grpControlIPP.Controls.Add(this.label3);
     this.grpControlIPP.Controls.Add(this.txtCreditCard);
     this.grpControlIPP.Controls.Add(this.CreditCard);
     this.grpControlIPP.Controls.Add(this.lkpEdtMonthOfInstallment);
     this.grpControlIPP.Controls.Add(this.lkpEdtBankCode);
     this.grpControlIPP.Controls.Add(this.btnIPPCancel);
     this.grpControlIPP.Controls.Add(this.btnSave);
     this.grpControlIPP.Controls.Add(this.label4);
     this.grpControlIPP.Controls.Add(this.label2);
     this.grpControlIPP.Location          = new System.Drawing.Point(0, 32);
     this.grpControlIPP.LookAndFeel.Style = DevExpress.LookAndFeel.LookAndFeelStyle.Skin;
     this.grpControlIPP.LookAndFeel.UseDefaultLookAndFeel = false;
     this.grpControlIPP.Name        = "grpControlIPP";
     this.grpControlIPP.ShowCaption = false;
     this.grpControlIPP.Size        = new System.Drawing.Size(472, 216);
     this.grpControlIPP.TabIndex    = 27;
     this.grpControlIPP.Text        = "groupControl1";
     //
     // lkpEdtMerchantNo
     //
     this.lkpEdtMerchantNo.Location = new System.Drawing.Point(152, 80);
     this.lkpEdtMerchantNo.Name     = "lkpEdtMerchantNo";
     //
     // lkpEdtMerchantNo.Properties
     //
     this.lkpEdtMerchantNo.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
         new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)
     });
     this.lkpEdtMerchantNo.Properties.NullText = "";
     this.lkpEdtMerchantNo.Size     = new System.Drawing.Size(168, 20);
     this.lkpEdtMerchantNo.TabIndex = 4;
     this.lkpEdtMerchantNo.Visible  = false;
     //
     // label3
     //
     this.label3.Font     = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((System.Byte)(0)));
     this.label3.Location = new System.Drawing.Point(32, 80);
     this.label3.Name     = "label3";
     this.label3.TabIndex = 171;
     this.label3.Text     = "Merchant No";
     this.label3.Visible  = false;
     //
     // txtCreditCard
     //
     this.txtCreditCard.AllowDrop = true;
     this.txtCreditCard.EditValue = "";
     this.txtCreditCard.Location  = new System.Drawing.Point(152, 56);
     this.txtCreditCard.Name      = "txtCreditCard";
     //
     // txtCreditCard.Properties
     //
     this.txtCreditCard.Properties.Appearance.Font                   = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((System.Byte)(0)));
     this.txtCreditCard.Properties.Appearance.Options.UseFont        = true;
     this.txtCreditCard.Properties.LookAndFeel.Style                 = DevExpress.LookAndFeel.LookAndFeelStyle.Skin;
     this.txtCreditCard.Properties.LookAndFeel.UseDefaultLookAndFeel = false;
     this.txtCreditCard.Properties.Mask.BeepOnError                  = true;
     this.txtCreditCard.Properties.Mask.EditMask               = "\\d{4}-\\d{4}-\\d{4}-\\d{4}";
     this.txtCreditCard.Properties.Mask.MaskType               = DevExpress.XtraEditors.Mask.MaskType.Regular;
     this.txtCreditCard.Properties.Mask.SaveLiteral            = false;
     this.txtCreditCard.Properties.Mask.UseMaskAsDisplayFormat = true;
     this.txtCreditCard.Properties.MaxLength = 19;
     this.txtCreditCard.Size     = new System.Drawing.Size(168, 20);
     this.txtCreditCard.TabIndex = 5;
     //
     // CreditCard
     //
     this.CreditCard.Font     = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((System.Byte)(0)));
     this.CreditCard.Location = new System.Drawing.Point(32, 56);
     this.CreditCard.Name     = "CreditCard";
     this.CreditCard.TabIndex = 169;
     this.CreditCard.Text     = "Credit Card No";
     //
     // lkpEdtMonthOfInstallment
     //
     this.lkpEdtMonthOfInstallment.Location = new System.Drawing.Point(152, 32);
     this.lkpEdtMonthOfInstallment.Name     = "lkpEdtMonthOfInstallment";
     //
     // lkpEdtMonthOfInstallment.Properties
     //
     this.lkpEdtMonthOfInstallment.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
         new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)
     });
     this.lkpEdtMonthOfInstallment.Properties.NullText = "";
     this.lkpEdtMonthOfInstallment.Size              = new System.Drawing.Size(168, 20);
     this.lkpEdtMonthOfInstallment.TabIndex          = 3;
     this.lkpEdtMonthOfInstallment.EditValueChanged += new System.EventHandler(this.lkpEdtMonthOfInstallment_EditValueChanged);
     //
     // lkpEdtBankCode
     //
     this.lkpEdtBankCode.Location = new System.Drawing.Point(152, 8);
     this.lkpEdtBankCode.Name     = "lkpEdtBankCode";
     //
     // lkpEdtBankCode.Properties
     //
     this.lkpEdtBankCode.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
         new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)
     });
     this.lkpEdtBankCode.Properties.NullText = "";
     this.lkpEdtBankCode.Size              = new System.Drawing.Size(168, 20);
     this.lkpEdtBankCode.TabIndex          = 1;
     this.lkpEdtBankCode.EditValueChanged += new System.EventHandler(this.lkpEdtBankCode_EditValueChanged);
     //
     // btnIPPCancel
     //
     this.btnIPPCancel.DialogResult = System.Windows.Forms.DialogResult.Cancel;
     this.btnIPPCancel.Location     = new System.Drawing.Point(248, 112);
     this.btnIPPCancel.Name         = "btnIPPCancel";
     this.btnIPPCancel.TabIndex     = 7;
     this.btnIPPCancel.Text         = "Cancel";
     //
     // btnSave
     //
     this.btnSave.DialogResult = System.Windows.Forms.DialogResult.OK;
     this.btnSave.Location     = new System.Drawing.Point(160, 112);
     this.btnSave.Name         = "btnSave";
     this.btnSave.Size         = new System.Drawing.Size(80, 24);
     this.btnSave.TabIndex     = 6;
     this.btnSave.Text         = "OK";
     this.btnSave.Click       += new System.EventHandler(this.btnSave_Click);
     //
     // label4
     //
     this.label4.Font     = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((System.Byte)(0)));
     this.label4.Location = new System.Drawing.Point(32, 8);
     this.label4.Name     = "label4";
     this.label4.TabIndex = 28;
     this.label4.Text     = "Bank Code";
     //
     // label2
     //
     this.label2.Font     = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((System.Byte)(0)));
     this.label2.Location = new System.Drawing.Point(32, 32);
     this.label2.Name     = "label2";
     this.label2.Size     = new System.Drawing.Size(120, 16);
     this.label2.TabIndex = 27;
     this.label2.Text     = "Number of Months";
     //
     // frmIPP_Add
     //
     this.AcceptButton      = this.btnSave;
     this.AutoScaleBaseSize = new System.Drawing.Size(5, 13);
     this.CancelButton      = this.btnIPPCancel;
     this.ClientSize        = new System.Drawing.Size(352, 182);
     this.Controls.Add(this.grpControlIPP);
     this.Controls.Add(this.groupHdrIPP);
     this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedDialog;
     this.MaximizeBox     = false;
     this.MinimizeBox     = false;
     this.Name            = "frmIPP_Add";
     this.ShowInTaskbar   = false;
     this.StartPosition   = System.Windows.Forms.FormStartPosition.CenterScreen;
     this.Text            = "Add IPP";
     this.Load           += new System.EventHandler(this.frmIPP_Add_Load);
     ((System.ComponentModel.ISupportInitialize)(this.groupHdrIPP)).EndInit();
     this.groupHdrIPP.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.grpControlIPP)).EndInit();
     this.grpControlIPP.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.lkpEdtMerchantNo.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtCreditCard.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.lkpEdtMonthOfInstallment.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.lkpEdtBankCode.Properties)).EndInit();
     this.ResumeLayout(false);
 }
Пример #16
0
 /// <summary>
 /// Required method for Designer support - do not modify
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     this.components = new System.ComponentModel.Container();
     System.Resources.ResourceManager resources = new System.Resources.ResourceManager(typeof(frmService));
     this.grpMDServiceTop           = new DevExpress.XtraEditors.GroupControl();
     this.Searchpanel               = new System.Windows.Forms.Panel();
     this.btn_Search                = new DevExpress.XtraEditors.SimpleButton();
     this.txtSearch                 = new DevExpress.XtraEditors.TextEdit();
     this.btn_Add                   = new DevExpress.XtraEditors.SimpleButton();
     this.imageList1                = new System.Windows.Forms.ImageList(this.components);
     this.btn_Del                   = new DevExpress.XtraEditors.SimpleButton();
     this.gridControlMd_Service     = new DevExpress.XtraGrid.GridControl();
     this.gridViewMdService         = new DevExpress.XtraGrid.Views.Grid.GridView();
     this.gridColumnSV1             = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumnSV2             = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumnSV3             = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumnSV4             = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumnSV5             = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumnSV6             = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumnSV7             = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumnSV8             = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumnSV9             = new DevExpress.XtraGrid.Columns.GridColumn();
     this.repositoryItemLookUpEdit1 = new DevExpress.XtraEditors.Repository.RepositoryItemLookUpEdit();
     this.gridColumnSV10            = new DevExpress.XtraGrid.Columns.GridColumn();
     ((System.ComponentModel.ISupportInitialize)(this.grpMDServiceTop)).BeginInit();
     this.grpMDServiceTop.SuspendLayout();
     this.Searchpanel.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.txtSearch.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridControlMd_Service)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridViewMdService)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemLookUpEdit1)).BeginInit();
     this.SuspendLayout();
     //
     // grpMDServiceTop
     //
     this.grpMDServiceTop.Appearance.BackColor              = System.Drawing.SystemColors.Control;
     this.grpMDServiceTop.Appearance.Options.UseBackColor   = true;
     this.grpMDServiceTop.AppearanceCaption.Font            = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((System.Byte)(0)));
     this.grpMDServiceTop.AppearanceCaption.Options.UseFont = true;
     this.grpMDServiceTop.Controls.Add(this.Searchpanel);
     this.grpMDServiceTop.Controls.Add(this.btn_Add);
     this.grpMDServiceTop.Controls.Add(this.btn_Del);
     this.grpMDServiceTop.Controls.Add(this.gridControlMd_Service);
     this.grpMDServiceTop.ImeMode           = System.Windows.Forms.ImeMode.On;
     this.grpMDServiceTop.Location          = new System.Drawing.Point(8, 0);
     this.grpMDServiceTop.LookAndFeel.Style = DevExpress.LookAndFeel.LookAndFeelStyle.Office2003;
     this.grpMDServiceTop.LookAndFeel.UseDefaultLookAndFeel = false;
     this.grpMDServiceTop.LookAndFeel.UseWindowsXPTheme     = false;
     this.grpMDServiceTop.Name     = "grpMDServiceTop";
     this.grpMDServiceTop.Size     = new System.Drawing.Size(980, 560);
     this.grpMDServiceTop.TabIndex = 90;
     this.grpMDServiceTop.Text     = "Service";
     //
     // Searchpanel
     //
     this.Searchpanel.Controls.Add(this.btn_Search);
     this.Searchpanel.Controls.Add(this.txtSearch);
     this.Searchpanel.Location = new System.Drawing.Point(512, 24);
     this.Searchpanel.Name     = "Searchpanel";
     this.Searchpanel.Size     = new System.Drawing.Size(464, 24);
     this.Searchpanel.TabIndex = 152;
     //
     // btn_Search
     //
     this.btn_Search.Appearance.Font            = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold);
     this.btn_Search.Appearance.Options.UseFont = true;
     this.btn_Search.ButtonStyle = DevExpress.XtraEditors.Controls.BorderStyles.Simple;
     this.btn_Search.Location    = new System.Drawing.Point(392, 0);
     this.btn_Search.Name        = "btn_Search";
     this.btn_Search.Size        = new System.Drawing.Size(56, 20);
     this.btn_Search.TabIndex    = 137;
     this.btn_Search.Text        = "Search";
     this.btn_Search.Click      += new System.EventHandler(this.btn_Search_Click);
     //
     // txtSearch
     //
     this.txtSearch.EditValue = "";
     this.txtSearch.ImeMode   = System.Windows.Forms.ImeMode.On;
     this.txtSearch.Location  = new System.Drawing.Point(232, 0);
     this.txtSearch.Name      = "txtSearch";
     //
     // txtSearch.Properties
     //
     this.txtSearch.Properties.Appearance.Font                   = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((System.Byte)(0)));
     this.txtSearch.Properties.Appearance.Options.UseFont        = true;
     this.txtSearch.Properties.LookAndFeel.Style                 = DevExpress.LookAndFeel.LookAndFeelStyle.Skin;
     this.txtSearch.Properties.LookAndFeel.UseDefaultLookAndFeel = false;
     this.txtSearch.Size     = new System.Drawing.Size(152, 20);
     this.txtSearch.TabIndex = 136;
     this.txtSearch.KeyDown += new System.Windows.Forms.KeyEventHandler(this.txtSearch_KeyDown);
     //
     // btn_Add
     //
     this.btn_Add.Appearance.Font                   = new System.Drawing.Font("Tahoma", 14.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((System.Byte)(0)));
     this.btn_Add.Appearance.Options.UseFont        = true;
     this.btn_Add.Appearance.Options.UseTextOptions = true;
     this.btn_Add.Appearance.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.btn_Add.Appearance.TextOptions.VAlignment = DevExpress.Utils.VertAlignment.Top;
     this.btn_Add.Appearance.TextOptions.WordWrap   = DevExpress.Utils.WordWrap.Wrap;
     this.btn_Add.ImageIndex = 0;
     this.btn_Add.ImageList  = this.imageList1;
     this.btn_Add.ImeMode    = System.Windows.Forms.ImeMode.On;
     this.btn_Add.Location   = new System.Drawing.Point(8, 32);
     this.btn_Add.Name       = "btn_Add";
     this.btn_Add.Size       = new System.Drawing.Size(38, 16);
     this.btn_Add.TabIndex   = 132;
     this.btn_Add.Click     += new System.EventHandler(this.btn_Add_Click);
     //
     // imageList1
     //
     this.imageList1.ColorDepth       = System.Windows.Forms.ColorDepth.Depth24Bit;
     this.imageList1.ImageSize        = new System.Drawing.Size(16, 16);
     this.imageList1.ImageStream      = ((System.Windows.Forms.ImageListStreamer)(resources.GetObject("imageList1.ImageStream")));
     this.imageList1.TransparentColor = System.Drawing.Color.Magenta;
     //
     // btn_Del
     //
     this.btn_Del.Appearance.Font                   = new System.Drawing.Font("Tahoma", 14.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((System.Byte)(0)));
     this.btn_Del.Appearance.Options.UseFont        = true;
     this.btn_Del.Appearance.Options.UseTextOptions = true;
     this.btn_Del.Appearance.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.btn_Del.Appearance.TextOptions.VAlignment = DevExpress.Utils.VertAlignment.Top;
     this.btn_Del.Appearance.TextOptions.WordWrap   = DevExpress.Utils.WordWrap.Wrap;
     this.btn_Del.ImageIndex = 1;
     this.btn_Del.ImageList  = this.imageList1;
     this.btn_Del.Location   = new System.Drawing.Point(48, 32);
     this.btn_Del.Name       = "btn_Del";
     this.btn_Del.Size       = new System.Drawing.Size(38, 16);
     this.btn_Del.TabIndex   = 131;
     this.btn_Del.Click     += new System.EventHandler(this.btn_Del_Click);
     //
     // gridControlMd_Service
     //
     this.gridControlMd_Service.Dock = System.Windows.Forms.DockStyle.Bottom;
     //
     // gridControlMd_Service.EmbeddedNavigator
     //
     this.gridControlMd_Service.EmbeddedNavigator.Name = "";
     this.gridControlMd_Service.Location          = new System.Drawing.Point(2, 54);
     this.gridControlMd_Service.LookAndFeel.Style = DevExpress.LookAndFeel.LookAndFeelStyle.Skin;
     this.gridControlMd_Service.LookAndFeel.UseDefaultLookAndFeel = false;
     this.gridControlMd_Service.MainView = this.gridViewMdService;
     this.gridControlMd_Service.Name     = "gridControlMd_Service";
     this.gridControlMd_Service.RepositoryItems.AddRange(new DevExpress.XtraEditors.Repository.RepositoryItem[] {
         this.repositoryItemLookUpEdit1
     });
     this.gridControlMd_Service.Size     = new System.Drawing.Size(976, 504);
     this.gridControlMd_Service.TabIndex = 19;
     this.gridControlMd_Service.ViewCollection.AddRange(new DevExpress.XtraGrid.Views.Base.BaseView[] {
         this.gridViewMdService
     });
     //
     // gridViewMdService
     //
     this.gridViewMdService.Columns.AddRange(new DevExpress.XtraGrid.Columns.GridColumn[] {
         this.gridColumnSV1,
         this.gridColumnSV2,
         this.gridColumnSV3,
         this.gridColumnSV4,
         this.gridColumnSV5,
         this.gridColumnSV6,
         this.gridColumnSV7,
         this.gridColumnSV8,
         this.gridColumnSV9,
         this.gridColumnSV10
     });
     this.gridViewMdService.GridControl = this.gridControlMd_Service;
     this.gridViewMdService.Name        = "gridViewMdService";
     this.gridViewMdService.OptionsCustomization.AllowFilter = false;
     this.gridViewMdService.OptionsCustomization.AllowSort   = false;
     this.gridViewMdService.OptionsView.ShowGroupPanel       = false;
     this.gridViewMdService.LostFocus += new System.EventHandler(this.gridViewMdService_LostFocus);
     //
     // gridColumnSV1
     //
     this.gridColumnSV1.Caption      = "Service Code";
     this.gridColumnSV1.FieldName    = "strServiceCode";
     this.gridColumnSV1.Name         = "gridColumnSV1";
     this.gridColumnSV1.Visible      = true;
     this.gridColumnSV1.VisibleIndex = 0;
     this.gridColumnSV1.Width        = 93;
     //
     // gridColumnSV2
     //
     this.gridColumnSV2.Caption      = "Description";
     this.gridColumnSV2.FieldName    = "strDescription";
     this.gridColumnSV2.Name         = "gridColumnSV2";
     this.gridColumnSV2.Visible      = true;
     this.gridColumnSV2.VisibleIndex = 1;
     this.gridColumnSV2.Width        = 93;
     //
     // gridColumnSV3
     //
     this.gridColumnSV3.Caption      = "Duration";
     this.gridColumnSV3.FieldName    = "nDuration";
     this.gridColumnSV3.Name         = "gridColumnSV3";
     this.gridColumnSV3.Visible      = true;
     this.gridColumnSV3.VisibleIndex = 2;
     this.gridColumnSV3.Width        = 93;
     //
     // gridColumnSV4
     //
     this.gridColumnSV4.Caption      = "Comm Level 1";
     this.gridColumnSV4.FieldName    = "mServiceCommission1";
     this.gridColumnSV4.Name         = "gridColumnSV4";
     this.gridColumnSV4.Visible      = true;
     this.gridColumnSV4.VisibleIndex = 3;
     this.gridColumnSV4.Width        = 93;
     //
     // gridColumnSV5
     //
     this.gridColumnSV5.Caption      = "Comm Level 2";
     this.gridColumnSV5.FieldName    = "mServiceCommission2";
     this.gridColumnSV5.Name         = "gridColumnSV5";
     this.gridColumnSV5.Visible      = true;
     this.gridColumnSV5.VisibleIndex = 4;
     this.gridColumnSV5.Width        = 93;
     //
     // gridColumnSV6
     //
     this.gridColumnSV6.Caption      = "Comm Level 3";
     this.gridColumnSV6.FieldName    = "mServiceCommission3";
     this.gridColumnSV6.Name         = "gridColumnSV6";
     this.gridColumnSV6.Visible      = true;
     this.gridColumnSV6.VisibleIndex = 5;
     this.gridColumnSV6.Width        = 93;
     //
     // gridColumnSV7
     //
     this.gridColumnSV7.Caption      = "Comm Level 4";
     this.gridColumnSV7.FieldName    = "mServiceCommission4";
     this.gridColumnSV7.Name         = "gridColumnSV7";
     this.gridColumnSV7.Visible      = true;
     this.gridColumnSV7.VisibleIndex = 6;
     this.gridColumnSV7.Width        = 93;
     //
     // gridColumnSV8
     //
     this.gridColumnSV8.Caption      = "Comm Level 5";
     this.gridColumnSV8.FieldName    = "mServiceCommission5";
     this.gridColumnSV8.Name         = "gridColumnSV8";
     this.gridColumnSV8.Visible      = true;
     this.gridColumnSV8.VisibleIndex = 7;
     this.gridColumnSV8.Width        = 102;
     //
     // gridColumnSV9
     //
     this.gridColumnSV9.Caption      = "Service Type";
     this.gridColumnSV9.ColumnEdit   = this.repositoryItemLookUpEdit1;
     this.gridColumnSV9.FieldName    = "nServiceTypeID";
     this.gridColumnSV9.Name         = "gridColumnSV9";
     this.gridColumnSV9.Visible      = true;
     this.gridColumnSV9.VisibleIndex = 8;
     this.gridColumnSV9.Width        = 94;
     //
     // repositoryItemLookUpEdit1
     //
     this.repositoryItemLookUpEdit1.AutoHeight = false;
     this.repositoryItemLookUpEdit1.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
         new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)
     });
     this.repositoryItemLookUpEdit1.Name = "repositoryItemLookUpEdit1";
     //
     // gridColumnSV10
     //
     this.gridColumnSV10.Caption      = "Base Price";
     this.gridColumnSV10.FieldName    = "mBasePrice";
     this.gridColumnSV10.Name         = "gridColumnSV10";
     this.gridColumnSV10.Visible      = true;
     this.gridColumnSV10.VisibleIndex = 9;
     this.gridColumnSV10.Width        = 88;
     //
     // frmService
     //
     this.AutoScale         = false;
     this.AutoScaleBaseSize = new System.Drawing.Size(5, 13);
     this.BackColor         = System.Drawing.SystemColors.Control;
     this.ClientSize        = new System.Drawing.Size(1000, 560);
     this.Controls.Add(this.grpMDServiceTop);
     this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.None;
     this.Name            = "frmService";
     this.Text            = "frmService";
     this.Load           += new System.EventHandler(this.frmService_Load);
     ((System.ComponentModel.ISupportInitialize)(this.grpMDServiceTop)).EndInit();
     this.grpMDServiceTop.ResumeLayout(false);
     this.Searchpanel.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.txtSearch.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridControlMd_Service)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridViewMdService)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemLookUpEdit1)).EndInit();
     this.ResumeLayout(false);
 }
Пример #17
0
 /// <summary>
 /// Required method for Designer support - do not modify
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     this.grpMDPackageBelow1          = new DevExpress.XtraEditors.GroupControl();
     this.mdPKG_lblStrPackageCategory = new System.Windows.Forms.Label();
     this.mdpkg_txtNCategoryID        = new DevExpress.XtraEditors.TextEdit();
     this.mdPKG_txtStrPackageCode     = new DevExpress.XtraEditors.TextEdit();
     this.btnPackageGrpDelete         = new DevExpress.XtraEditors.SimpleButton();
     this.btnPackageGrpCancel         = new DevExpress.XtraEditors.SimpleButton();
     this.btnPackageGrpUpdate         = new DevExpress.XtraEditors.SimpleButton();
     this.mdPKG_txtMListPrice         = new DevExpress.XtraEditors.TextEdit();
     this.mdPKG_txtStrDescription     = new DevExpress.XtraEditors.TextEdit();
     this.mdPKG_dtValidEnd            = new DevExpress.XtraEditors.DateEdit();
     this.mdPKG_dtValidStart          = new DevExpress.XtraEditors.DateEdit();
     this.mdPKG_lbldtValidEnd         = new System.Windows.Forms.Label();
     this.mdPKG_lbldtValidStart       = new System.Windows.Forms.Label();
     this.mdPKG_lblMListPrice         = new System.Windows.Forms.Label();
     this.mdPKG_lblStrDescription     = new System.Windows.Forms.Label();
     this.mdPKG_lblStrPackageCode     = new System.Windows.Forms.Label();
     this.groupHdrMd_Promotion        = new DevExpress.XtraEditors.GroupControl();
     this.hdrMd_Package = new System.Windows.Forms.Label();
     ((System.ComponentModel.ISupportInitialize)(this.grpMDPackageBelow1)).BeginInit();
     this.grpMDPackageBelow1.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.mdpkg_txtNCategoryID.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.mdPKG_txtStrPackageCode.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.mdPKG_txtMListPrice.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.mdPKG_txtStrDescription.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.mdPKG_dtValidEnd.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.mdPKG_dtValidStart.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.groupHdrMd_Promotion)).BeginInit();
     this.groupHdrMd_Promotion.SuspendLayout();
     this.SuspendLayout();
     //
     // grpMDPackageBelow1
     //
     this.grpMDPackageBelow1.BorderStyle = DevExpress.XtraEditors.Controls.BorderStyles.Simple;
     this.grpMDPackageBelow1.Controls.Add(this.mdPKG_lblStrPackageCategory);
     this.grpMDPackageBelow1.Controls.Add(this.mdpkg_txtNCategoryID);
     this.grpMDPackageBelow1.Controls.Add(this.mdPKG_txtStrPackageCode);
     this.grpMDPackageBelow1.Controls.Add(this.btnPackageGrpDelete);
     this.grpMDPackageBelow1.Controls.Add(this.btnPackageGrpCancel);
     this.grpMDPackageBelow1.Controls.Add(this.btnPackageGrpUpdate);
     this.grpMDPackageBelow1.Controls.Add(this.mdPKG_txtMListPrice);
     this.grpMDPackageBelow1.Controls.Add(this.mdPKG_txtStrDescription);
     this.grpMDPackageBelow1.Controls.Add(this.mdPKG_dtValidEnd);
     this.grpMDPackageBelow1.Controls.Add(this.mdPKG_dtValidStart);
     this.grpMDPackageBelow1.Controls.Add(this.mdPKG_lbldtValidEnd);
     this.grpMDPackageBelow1.Controls.Add(this.mdPKG_lbldtValidStart);
     this.grpMDPackageBelow1.Controls.Add(this.mdPKG_lblMListPrice);
     this.grpMDPackageBelow1.Controls.Add(this.mdPKG_lblStrDescription);
     this.grpMDPackageBelow1.Controls.Add(this.mdPKG_lblStrPackageCode);
     this.grpMDPackageBelow1.Location          = new System.Drawing.Point(0, 32);
     this.grpMDPackageBelow1.LookAndFeel.Style = DevExpress.LookAndFeel.LookAndFeelStyle.Skin;
     this.grpMDPackageBelow1.LookAndFeel.UseDefaultLookAndFeel = false;
     this.grpMDPackageBelow1.Name        = "grpMDPackageBelow1";
     this.grpMDPackageBelow1.ShowCaption = false;
     this.grpMDPackageBelow1.Size        = new System.Drawing.Size(616, 208);
     this.grpMDPackageBelow1.TabIndex    = 8;
     this.grpMDPackageBelow1.Text        = "groupControl1";
     //
     // mdPKG_lblStrPackageCategory
     //
     this.mdPKG_lblStrPackageCategory.BackColor = System.Drawing.Color.Transparent;
     this.mdPKG_lblStrPackageCategory.Font      = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((System.Byte)(0)));
     this.mdPKG_lblStrPackageCategory.Location  = new System.Drawing.Point(264, 16);
     this.mdPKG_lblStrPackageCategory.Name      = "mdPKG_lblStrPackageCategory";
     this.mdPKG_lblStrPackageCategory.Size      = new System.Drawing.Size(112, 16);
     this.mdPKG_lblStrPackageCategory.TabIndex  = 164;
     this.mdPKG_lblStrPackageCategory.Text      = "Package Category";
     this.mdPKG_lblStrPackageCategory.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
     //
     // mdpkg_txtNCategoryID
     //
     this.mdpkg_txtNCategoryID.EditValue = "";
     this.mdpkg_txtNCategoryID.Location  = new System.Drawing.Point(384, 16);
     this.mdpkg_txtNCategoryID.Name      = "mdpkg_txtNCategoryID";
     //
     // mdpkg_txtNCategoryID.Properties
     //
     this.mdpkg_txtNCategoryID.Properties.LookAndFeel.Style = DevExpress.LookAndFeel.LookAndFeelStyle.Skin;
     this.mdpkg_txtNCategoryID.Properties.LookAndFeel.UseDefaultLookAndFeel = false;
     this.mdpkg_txtNCategoryID.Size     = new System.Drawing.Size(104, 20);
     this.mdpkg_txtNCategoryID.TabIndex = 163;
     //
     // mdPKG_txtStrPackageCode
     //
     this.mdPKG_txtStrPackageCode.EditValue = "";
     this.mdPKG_txtStrPackageCode.Location  = new System.Drawing.Point(160, 16);
     this.mdPKG_txtStrPackageCode.Name      = "mdPKG_txtStrPackageCode";
     //
     // mdPKG_txtStrPackageCode.Properties
     //
     this.mdPKG_txtStrPackageCode.Properties.LookAndFeel.Style = DevExpress.LookAndFeel.LookAndFeelStyle.Skin;
     this.mdPKG_txtStrPackageCode.Properties.LookAndFeel.UseDefaultLookAndFeel = false;
     this.mdPKG_txtStrPackageCode.Size     = new System.Drawing.Size(96, 20);
     this.mdPKG_txtStrPackageCode.TabIndex = 162;
     //
     // btnPackageGrpDelete
     //
     this.btnPackageGrpDelete.ButtonStyle       = DevExpress.XtraEditors.Controls.BorderStyles.Simple;
     this.btnPackageGrpDelete.Location          = new System.Drawing.Point(104, 160);
     this.btnPackageGrpDelete.LookAndFeel.Style = DevExpress.LookAndFeel.LookAndFeelStyle.Skin;
     this.btnPackageGrpDelete.LookAndFeel.UseDefaultLookAndFeel = false;
     this.btnPackageGrpDelete.Name     = "btnPackageGrpDelete";
     this.btnPackageGrpDelete.Size     = new System.Drawing.Size(75, 24);
     this.btnPackageGrpDelete.TabIndex = 161;
     this.btnPackageGrpDelete.Text     = "Delete";
     //
     // btnPackageGrpCancel
     //
     this.btnPackageGrpCancel.ButtonStyle = DevExpress.XtraEditors.Controls.BorderStyles.Simple;
     this.btnPackageGrpCancel.Location    = new System.Drawing.Point(184, 160);
     this.btnPackageGrpCancel.Name        = "btnPackageGrpCancel";
     this.btnPackageGrpCancel.Size        = new System.Drawing.Size(75, 24);
     this.btnPackageGrpCancel.TabIndex    = 160;
     this.btnPackageGrpCancel.Text        = "Cancel";
     //
     // btnPackageGrpUpdate
     //
     this.btnPackageGrpUpdate.ButtonStyle       = DevExpress.XtraEditors.Controls.BorderStyles.Simple;
     this.btnPackageGrpUpdate.Location          = new System.Drawing.Point(24, 160);
     this.btnPackageGrpUpdate.LookAndFeel.Style = DevExpress.LookAndFeel.LookAndFeelStyle.Skin;
     this.btnPackageGrpUpdate.LookAndFeel.UseDefaultLookAndFeel = false;
     this.btnPackageGrpUpdate.Name     = "btnPackageGrpUpdate";
     this.btnPackageGrpUpdate.Size     = new System.Drawing.Size(75, 24);
     this.btnPackageGrpUpdate.TabIndex = 159;
     this.btnPackageGrpUpdate.Text     = "Save";
     //
     // mdPKG_txtMListPrice
     //
     this.mdPKG_txtMListPrice.EditValue = "";
     this.mdPKG_txtMListPrice.Location  = new System.Drawing.Point(160, 64);
     this.mdPKG_txtMListPrice.Name      = "mdPKG_txtMListPrice";
     //
     // mdPKG_txtMListPrice.Properties
     //
     this.mdPKG_txtMListPrice.Properties.LookAndFeel.Style = DevExpress.LookAndFeel.LookAndFeelStyle.Skin;
     this.mdPKG_txtMListPrice.Properties.LookAndFeel.UseDefaultLookAndFeel = false;
     this.mdPKG_txtMListPrice.Properties.Mask.EditMask = "#####0.00";
     this.mdPKG_txtMListPrice.Properties.Mask.MaskType = DevExpress.XtraEditors.Mask.MaskType.Numeric;
     this.mdPKG_txtMListPrice.Size     = new System.Drawing.Size(75, 20);
     this.mdPKG_txtMListPrice.TabIndex = 152;
     //
     // mdPKG_txtStrDescription
     //
     this.mdPKG_txtStrDescription.EditValue = "";
     this.mdPKG_txtStrDescription.Location  = new System.Drawing.Point(160, 40);
     this.mdPKG_txtStrDescription.Name      = "mdPKG_txtStrDescription";
     //
     // mdPKG_txtStrDescription.Properties
     //
     this.mdPKG_txtStrDescription.Properties.LookAndFeel.Style = DevExpress.LookAndFeel.LookAndFeelStyle.Skin;
     this.mdPKG_txtStrDescription.Properties.LookAndFeel.UseDefaultLookAndFeel = false;
     this.mdPKG_txtStrDescription.Size     = new System.Drawing.Size(424, 20);
     this.mdPKG_txtStrDescription.TabIndex = 150;
     //
     // mdPKG_dtValidEnd
     //
     this.mdPKG_dtValidEnd.EditValue = new System.DateTime(2005, 12, 28, 0, 0, 0, 0);
     this.mdPKG_dtValidEnd.Location  = new System.Drawing.Point(160, 112);
     this.mdPKG_dtValidEnd.Name      = "mdPKG_dtValidEnd";
     //
     // mdPKG_dtValidEnd.Properties
     //
     this.mdPKG_dtValidEnd.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
         new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)
     });
     this.mdPKG_dtValidEnd.Properties.LookAndFeel.Style = DevExpress.LookAndFeel.LookAndFeelStyle.Skin;
     this.mdPKG_dtValidEnd.Properties.LookAndFeel.UseDefaultLookAndFeel = false;
     this.mdPKG_dtValidEnd.Size     = new System.Drawing.Size(96, 20);
     this.mdPKG_dtValidEnd.TabIndex = 149;
     //
     // mdPKG_dtValidStart
     //
     this.mdPKG_dtValidStart.EditValue = new System.DateTime(2005, 12, 28, 0, 0, 0, 0);
     this.mdPKG_dtValidStart.Location  = new System.Drawing.Point(160, 88);
     this.mdPKG_dtValidStart.Name      = "mdPKG_dtValidStart";
     //
     // mdPKG_dtValidStart.Properties
     //
     this.mdPKG_dtValidStart.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
         new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)
     });
     this.mdPKG_dtValidStart.Properties.LookAndFeel.Style = DevExpress.LookAndFeel.LookAndFeelStyle.Skin;
     this.mdPKG_dtValidStart.Properties.LookAndFeel.UseDefaultLookAndFeel = false;
     this.mdPKG_dtValidStart.Size     = new System.Drawing.Size(96, 20);
     this.mdPKG_dtValidStart.TabIndex = 148;
     //
     // mdPKG_lbldtValidEnd
     //
     this.mdPKG_lbldtValidEnd.BackColor = System.Drawing.Color.Transparent;
     this.mdPKG_lbldtValidEnd.Font      = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((System.Byte)(0)));
     this.mdPKG_lbldtValidEnd.Location  = new System.Drawing.Point(24, 112);
     this.mdPKG_lbldtValidEnd.Name      = "mdPKG_lbldtValidEnd";
     this.mdPKG_lbldtValidEnd.Size      = new System.Drawing.Size(128, 16);
     this.mdPKG_lbldtValidEnd.TabIndex  = 139;
     this.mdPKG_lbldtValidEnd.Text      = "Effective End Date";
     this.mdPKG_lbldtValidEnd.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
     //
     // mdPKG_lbldtValidStart
     //
     this.mdPKG_lbldtValidStart.BackColor = System.Drawing.Color.Transparent;
     this.mdPKG_lbldtValidStart.Font      = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((System.Byte)(0)));
     this.mdPKG_lbldtValidStart.Location  = new System.Drawing.Point(24, 88);
     this.mdPKG_lbldtValidStart.Name      = "mdPKG_lbldtValidStart";
     this.mdPKG_lbldtValidStart.Size      = new System.Drawing.Size(128, 16);
     this.mdPKG_lbldtValidStart.TabIndex  = 138;
     this.mdPKG_lbldtValidStart.Text      = "Effective Start Start";
     this.mdPKG_lbldtValidStart.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
     //
     // mdPKG_lblMListPrice
     //
     this.mdPKG_lblMListPrice.BackColor = System.Drawing.Color.Transparent;
     this.mdPKG_lblMListPrice.Font      = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((System.Byte)(0)));
     this.mdPKG_lblMListPrice.Location  = new System.Drawing.Point(24, 64);
     this.mdPKG_lblMListPrice.Name      = "mdPKG_lblMListPrice";
     this.mdPKG_lblMListPrice.Size      = new System.Drawing.Size(136, 16);
     this.mdPKG_lblMListPrice.TabIndex  = 134;
     this.mdPKG_lblMListPrice.Text      = "Package Group Price";
     this.mdPKG_lblMListPrice.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
     //
     // mdPKG_lblStrDescription
     //
     this.mdPKG_lblStrDescription.BackColor = System.Drawing.Color.Transparent;
     this.mdPKG_lblStrDescription.Font      = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((System.Byte)(0)));
     this.mdPKG_lblStrDescription.Location  = new System.Drawing.Point(24, 40);
     this.mdPKG_lblStrDescription.Name      = "mdPKG_lblStrDescription";
     this.mdPKG_lblStrDescription.Size      = new System.Drawing.Size(96, 16);
     this.mdPKG_lblStrDescription.TabIndex  = 132;
     this.mdPKG_lblStrDescription.Text      = "Description";
     this.mdPKG_lblStrDescription.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
     //
     // mdPKG_lblStrPackageCode
     //
     this.mdPKG_lblStrPackageCode.BackColor = System.Drawing.Color.Transparent;
     this.mdPKG_lblStrPackageCode.Font      = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((System.Byte)(0)));
     this.mdPKG_lblStrPackageCode.Location  = new System.Drawing.Point(24, 16);
     this.mdPKG_lblStrPackageCode.Name      = "mdPKG_lblStrPackageCode";
     this.mdPKG_lblStrPackageCode.Size      = new System.Drawing.Size(128, 16);
     this.mdPKG_lblStrPackageCode.TabIndex  = 131;
     this.mdPKG_lblStrPackageCode.Text      = "Package Group Code";
     this.mdPKG_lblStrPackageCode.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
     //
     // groupHdrMd_Promotion
     //
     this.groupHdrMd_Promotion.Appearance.BackColor            = System.Drawing.Color.FromArgb(((System.Byte)(192)), ((System.Byte)(255)), ((System.Byte)(192)));
     this.groupHdrMd_Promotion.Appearance.Options.UseBackColor = true;
     this.groupHdrMd_Promotion.BorderStyle = DevExpress.XtraEditors.Controls.BorderStyles.NoBorder;
     this.groupHdrMd_Promotion.Controls.Add(this.hdrMd_Package);
     this.groupHdrMd_Promotion.Location          = new System.Drawing.Point(0, 0);
     this.groupHdrMd_Promotion.LookAndFeel.Style = DevExpress.LookAndFeel.LookAndFeelStyle.Office2003;
     this.groupHdrMd_Promotion.LookAndFeel.UseDefaultLookAndFeel = false;
     this.groupHdrMd_Promotion.Name     = "groupHdrMd_Promotion";
     this.groupHdrMd_Promotion.Size     = new System.Drawing.Size(616, 32);
     this.groupHdrMd_Promotion.TabIndex = 7;
     this.groupHdrMd_Promotion.Text     = "groupControl1";
     //
     // hdrMd_Package
     //
     this.hdrMd_Package.BackColor = System.Drawing.Color.FromArgb(((System.Byte)(192)), ((System.Byte)(255)), ((System.Byte)(192)));
     this.hdrMd_Package.Font      = new System.Drawing.Font("Tahoma", 11.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((System.Byte)(0)));
     this.hdrMd_Package.Location  = new System.Drawing.Point(8, 8);
     this.hdrMd_Package.Name      = "hdrMd_Package";
     this.hdrMd_Package.Size      = new System.Drawing.Size(600, 23);
     this.hdrMd_Package.TabIndex  = 1;
     this.hdrMd_Package.Text      = "AMORE PACKAGE GROUP SETUP";
     this.hdrMd_Package.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
     //
     // frmMd_PackageGroup
     //
     this.AutoScaleBaseSize = new System.Drawing.Size(5, 13);
     this.ClientSize        = new System.Drawing.Size(616, 237);
     this.Controls.Add(this.grpMDPackageBelow1);
     this.Controls.Add(this.groupHdrMd_Promotion);
     this.Name = "frmMd_PackageGroup";
     this.Text = "Package Group .....";
     ((System.ComponentModel.ISupportInitialize)(this.grpMDPackageBelow1)).EndInit();
     this.grpMDPackageBelow1.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.mdpkg_txtNCategoryID.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.mdPKG_txtStrPackageCode.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.mdPKG_txtMListPrice.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.mdPKG_txtStrDescription.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.mdPKG_dtValidEnd.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.mdPKG_dtValidStart.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.groupHdrMd_Promotion)).EndInit();
     this.groupHdrMd_Promotion.ResumeLayout(false);
     this.ResumeLayout(false);
 }
Пример #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.groupHdrIPP   = new DevExpress.XtraEditors.GroupControl();
     this.hdrIPP        = new System.Windows.Forms.Label();
     this.groupControl1 = new DevExpress.XtraEditors.GroupControl();
     this.btnCancel     = new DevExpress.XtraEditors.SimpleButton();
     this.btnSave       = new DevExpress.XtraEditors.SimpleButton();
     this.ddlIPP        = new System.Windows.Forms.ComboBox();
     this.label5        = new System.Windows.Forms.Label();
     this.ddlReceipt    = new System.Windows.Forms.ComboBox();
     this.label4        = new System.Windows.Forms.Label();
     ((System.ComponentModel.ISupportInitialize)(this.groupHdrIPP)).BeginInit();
     this.groupHdrIPP.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.groupControl1)).BeginInit();
     this.groupControl1.SuspendLayout();
     this.SuspendLayout();
     //
     // groupHdrIPP
     //
     this.groupHdrIPP.Appearance.BackColor            = System.Drawing.Color.FromArgb(((System.Byte)(192)), ((System.Byte)(255)), ((System.Byte)(192)));
     this.groupHdrIPP.Appearance.Options.UseBackColor = true;
     this.groupHdrIPP.BorderStyle = DevExpress.XtraEditors.Controls.BorderStyles.NoBorder;
     this.groupHdrIPP.Controls.Add(this.hdrIPP);
     this.groupHdrIPP.Location          = new System.Drawing.Point(0, 0);
     this.groupHdrIPP.LookAndFeel.Style = DevExpress.LookAndFeel.LookAndFeelStyle.Office2003;
     this.groupHdrIPP.LookAndFeel.UseDefaultLookAndFeel = false;
     this.groupHdrIPP.Name     = "groupHdrIPP";
     this.groupHdrIPP.Size     = new System.Drawing.Size(320, 32);
     this.groupHdrIPP.TabIndex = 27;
     this.groupHdrIPP.Text     = "groupControl1";
     //
     // hdrIPP
     //
     this.hdrIPP.BackColor = System.Drawing.Color.FromArgb(((System.Byte)(192)), ((System.Byte)(255)), ((System.Byte)(192)));
     this.hdrIPP.Font      = new System.Drawing.Font("Tahoma", 11.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((System.Byte)(0)));
     this.hdrIPP.Location  = new System.Drawing.Point(0, 8);
     this.hdrIPP.Name      = "hdrIPP";
     this.hdrIPP.Size      = new System.Drawing.Size(320, 23);
     this.hdrIPP.TabIndex  = 1;
     this.hdrIPP.Text      = "LINK RECEIPT WITH IPP FORM";
     this.hdrIPP.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
     //
     // groupControl1
     //
     this.groupControl1.Controls.Add(this.btnCancel);
     this.groupControl1.Controls.Add(this.btnSave);
     this.groupControl1.Controls.Add(this.ddlIPP);
     this.groupControl1.Controls.Add(this.label5);
     this.groupControl1.Controls.Add(this.ddlReceipt);
     this.groupControl1.Controls.Add(this.label4);
     this.groupControl1.Location          = new System.Drawing.Point(-8, 32);
     this.groupControl1.LookAndFeel.Style = DevExpress.LookAndFeel.LookAndFeelStyle.Skin;
     this.groupControl1.LookAndFeel.UseDefaultLookAndFeel = false;
     this.groupControl1.Name        = "groupControl1";
     this.groupControl1.ShowCaption = false;
     this.groupControl1.Size        = new System.Drawing.Size(328, 120);
     this.groupControl1.TabIndex    = 28;
     this.groupControl1.Text        = "groupControl1";
     //
     // btnCancel
     //
     this.btnCancel.ButtonStyle = DevExpress.XtraEditors.Controls.BorderStyles.Simple;
     this.btnCancel.Location    = new System.Drawing.Point(232, 80);
     this.btnCancel.Name        = "btnCancel";
     this.btnCancel.Size        = new System.Drawing.Size(62, 20);
     this.btnCancel.TabIndex    = 31;
     this.btnCancel.Text        = "Cancel";
     this.btnCancel.Click      += new System.EventHandler(this.btnCancel_Click);
     //
     // btnSave
     //
     this.btnSave.ButtonStyle = DevExpress.XtraEditors.Controls.BorderStyles.Simple;
     this.btnSave.Location    = new System.Drawing.Point(168, 80);
     this.btnSave.Name        = "btnSave";
     this.btnSave.Size        = new System.Drawing.Size(62, 20);
     this.btnSave.TabIndex    = 30;
     this.btnSave.Text        = "Save";
     this.btnSave.Click      += new System.EventHandler(this.btnSave_Click);
     //
     // ddlIPP
     //
     this.ddlIPP.Location = new System.Drawing.Point(136, 16);
     this.ddlIPP.Name     = "ddlIPP";
     this.ddlIPP.Size     = new System.Drawing.Size(160, 21);
     this.ddlIPP.TabIndex = 29;
     //
     // label5
     //
     this.label5.Font     = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((System.Byte)(134)));
     this.label5.Location = new System.Drawing.Point(44, 18);
     this.label5.Name     = "label5";
     this.label5.Size     = new System.Drawing.Size(76, 23);
     this.label5.TabIndex = 28;
     this.label5.Text     = "IPP ID";
     //
     // ddlReceipt
     //
     this.ddlReceipt.Location = new System.Drawing.Point(136, 42);
     this.ddlReceipt.Name     = "ddlReceipt";
     this.ddlReceipt.Size     = new System.Drawing.Size(160, 21);
     this.ddlReceipt.TabIndex = 27;
     //
     // label4
     //
     this.label4.Font     = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((System.Byte)(134)));
     this.label4.Location = new System.Drawing.Point(44, 48);
     this.label4.Name     = "label4";
     this.label4.Size     = new System.Drawing.Size(76, 23);
     this.label4.TabIndex = 26;
     this.label4.Text     = "Receipt No";
     //
     // frmIPPReceipt
     //
     this.AutoScaleBaseSize = new System.Drawing.Size(5, 13);
     this.ClientSize        = new System.Drawing.Size(320, 149);
     this.Controls.Add(this.groupControl1);
     this.Controls.Add(this.groupHdrIPP);
     this.Name = "frmIPPReceipt";
     this.Text = "IPP vs Receipt";
     ((System.ComponentModel.ISupportInitialize)(this.groupHdrIPP)).EndInit();
     this.groupHdrIPP.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.groupControl1)).EndInit();
     this.groupControl1.ResumeLayout(false);
     this.ResumeLayout(false);
 }
Пример #19
0
 /// <summary>
 /// Required method for Designer support - do not modify
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     this.components = new System.ComponentModel.Container();
     System.Resources.ResourceManager resources = new System.Resources.ResourceManager(typeof(frmDepartment));
     this.grpMDServiceTop           = new DevExpress.XtraEditors.GroupControl();
     this.btn_Add                   = new DevExpress.XtraEditors.SimpleButton();
     this.imageList1                = new System.Windows.Forms.ImageList(this.components);
     this.btn_Del                   = new DevExpress.XtraEditors.SimpleButton();
     this.gridControl1              = new DevExpress.XtraGrid.GridControl();
     this.gridView1                 = new DevExpress.XtraGrid.Views.Grid.GridView();
     this.gridColumn1               = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn2               = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn3               = new DevExpress.XtraGrid.Columns.GridColumn();
     this.repositoryItemLookUpEdit1 = new DevExpress.XtraEditors.Repository.RepositoryItemLookUpEdit();
     this.LK_nDepartHead            = new DevExpress.XtraEditors.Repository.RepositoryItemImageComboBox();
     ((System.ComponentModel.ISupportInitialize)(this.grpMDServiceTop)).BeginInit();
     this.grpMDServiceTop.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.gridControl1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridView1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemLookUpEdit1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.LK_nDepartHead)).BeginInit();
     this.SuspendLayout();
     //
     // grpMDServiceTop
     //
     this.grpMDServiceTop.Appearance.BackColor              = System.Drawing.SystemColors.Control;
     this.grpMDServiceTop.Appearance.Options.UseBackColor   = true;
     this.grpMDServiceTop.AppearanceCaption.Font            = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((System.Byte)(0)));
     this.grpMDServiceTop.AppearanceCaption.Options.UseFont = true;
     this.grpMDServiceTop.Controls.Add(this.btn_Add);
     this.grpMDServiceTop.Controls.Add(this.btn_Del);
     this.grpMDServiceTop.Controls.Add(this.gridControl1);
     this.grpMDServiceTop.ImeMode           = System.Windows.Forms.ImeMode.On;
     this.grpMDServiceTop.Location          = new System.Drawing.Point(0, 0);
     this.grpMDServiceTop.LookAndFeel.Style = DevExpress.LookAndFeel.LookAndFeelStyle.Office2003;
     this.grpMDServiceTop.LookAndFeel.UseDefaultLookAndFeel = false;
     this.grpMDServiceTop.LookAndFeel.UseWindowsXPTheme     = false;
     this.grpMDServiceTop.Name     = "grpMDServiceTop";
     this.grpMDServiceTop.Size     = new System.Drawing.Size(984, 560);
     this.grpMDServiceTop.TabIndex = 91;
     this.grpMDServiceTop.Text     = "Department";
     //
     // btn_Add
     //
     this.btn_Add.Appearance.Font                   = new System.Drawing.Font("Tahoma", 14.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((System.Byte)(0)));
     this.btn_Add.Appearance.Options.UseFont        = true;
     this.btn_Add.Appearance.Options.UseTextOptions = true;
     this.btn_Add.Appearance.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.btn_Add.Appearance.TextOptions.VAlignment = DevExpress.Utils.VertAlignment.Top;
     this.btn_Add.Appearance.TextOptions.WordWrap   = DevExpress.Utils.WordWrap.Wrap;
     this.btn_Add.ImageIndex = 0;
     this.btn_Add.ImageList  = this.imageList1;
     this.btn_Add.ImeMode    = System.Windows.Forms.ImeMode.On;
     this.btn_Add.Location   = new System.Drawing.Point(8, 24);
     this.btn_Add.Name       = "btn_Add";
     this.btn_Add.Size       = new System.Drawing.Size(38, 16);
     this.btn_Add.TabIndex   = 130;
     this.btn_Add.Click     += new System.EventHandler(this.btn_Add_Click);
     //
     // imageList1
     //
     this.imageList1.ColorDepth       = System.Windows.Forms.ColorDepth.Depth24Bit;
     this.imageList1.ImageSize        = new System.Drawing.Size(16, 16);
     this.imageList1.ImageStream      = ((System.Windows.Forms.ImageListStreamer)(resources.GetObject("imageList1.ImageStream")));
     this.imageList1.TransparentColor = System.Drawing.Color.Magenta;
     //
     // btn_Del
     //
     this.btn_Del.Appearance.Font                   = new System.Drawing.Font("Tahoma", 14.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((System.Byte)(0)));
     this.btn_Del.Appearance.Options.UseFont        = true;
     this.btn_Del.Appearance.Options.UseTextOptions = true;
     this.btn_Del.Appearance.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.btn_Del.Appearance.TextOptions.VAlignment = DevExpress.Utils.VertAlignment.Top;
     this.btn_Del.Appearance.TextOptions.WordWrap   = DevExpress.Utils.WordWrap.Wrap;
     this.btn_Del.ImageIndex = 1;
     this.btn_Del.ImageList  = this.imageList1;
     this.btn_Del.Location   = new System.Drawing.Point(48, 24);
     this.btn_Del.Name       = "btn_Del";
     this.btn_Del.Size       = new System.Drawing.Size(38, 16);
     this.btn_Del.TabIndex   = 129;
     this.btn_Del.Click     += new System.EventHandler(this.btn_Del_Click);
     //
     // gridControl1
     //
     this.gridControl1.Dock = System.Windows.Forms.DockStyle.Bottom;
     //
     // gridControl1.EmbeddedNavigator
     //
     this.gridControl1.EmbeddedNavigator.Name = "";
     this.gridControl1.Location          = new System.Drawing.Point(2, 46);
     this.gridControl1.LookAndFeel.Style = DevExpress.LookAndFeel.LookAndFeelStyle.Skin;
     this.gridControl1.LookAndFeel.UseDefaultLookAndFeel = false;
     this.gridControl1.MainView = this.gridView1;
     this.gridControl1.Name     = "gridControl1";
     this.gridControl1.RepositoryItems.AddRange(new DevExpress.XtraEditors.Repository.RepositoryItem[] {
         this.LK_nDepartHead,
         this.repositoryItemLookUpEdit1
     });
     this.gridControl1.Size     = new System.Drawing.Size(980, 512);
     this.gridControl1.TabIndex = 19;
     this.gridControl1.ViewCollection.AddRange(new DevExpress.XtraGrid.Views.Base.BaseView[] {
         this.gridView1
     });
     //
     // gridView1
     //
     this.gridView1.Columns.AddRange(new DevExpress.XtraGrid.Columns.GridColumn[] {
         this.gridColumn1,
         this.gridColumn2,
         this.gridColumn3
     });
     this.gridView1.GridControl = this.gridControl1;
     this.gridView1.Name        = "gridView1";
     this.gridView1.OptionsCustomization.AllowFilter = false;
     this.gridView1.OptionsCustomization.AllowSort   = false;
     this.gridView1.OptionsView.ShowGroupPanel       = false;
     this.gridView1.LostFocus += new System.EventHandler(this.gridView1_LostFocus);
     //
     // gridColumn1
     //
     this.gridColumn1.Caption      = "Department ID";
     this.gridColumn1.FieldName    = "nDepartmentID";
     this.gridColumn1.Name         = "gridColumn1";
     this.gridColumn1.Visible      = true;
     this.gridColumn1.VisibleIndex = 0;
     this.gridColumn1.Width        = 152;
     //
     // gridColumn2
     //
     this.gridColumn2.Caption      = "Description";
     this.gridColumn2.FieldName    = "strDescription";
     this.gridColumn2.Name         = "gridColumn2";
     this.gridColumn2.Visible      = true;
     this.gridColumn2.VisibleIndex = 1;
     this.gridColumn2.Width        = 556;
     //
     // gridColumn3
     //
     this.gridColumn3.Caption      = "Department Head";
     this.gridColumn3.ColumnEdit   = this.repositoryItemLookUpEdit1;
     this.gridColumn3.FieldName    = "nDepartHead";
     this.gridColumn3.Name         = "gridColumn3";
     this.gridColumn3.Visible      = true;
     this.gridColumn3.VisibleIndex = 2;
     this.gridColumn3.Width        = 227;
     //
     // repositoryItemLookUpEdit1
     //
     this.repositoryItemLookUpEdit1.AutoHeight = false;
     this.repositoryItemLookUpEdit1.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
         new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)
     });
     this.repositoryItemLookUpEdit1.Name = "repositoryItemLookUpEdit1";
     //
     // LK_nDepartHead
     //
     this.LK_nDepartHead.AutoHeight = false;
     this.LK_nDepartHead.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
         new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)
     });
     this.LK_nDepartHead.Name = "LK_nDepartHead";
     //
     // frmDepartment
     //
     this.AutoScale         = false;
     this.AutoScaleBaseSize = new System.Drawing.Size(5, 13);
     this.BackColor         = System.Drawing.SystemColors.Control;
     this.ClientSize        = new System.Drawing.Size(1000, 560);
     this.Controls.Add(this.grpMDServiceTop);
     this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.None;
     this.Name            = "frmDepartment";
     this.Text            = "frmDepartment";
     this.Load           += new System.EventHandler(this.frmDepartment_Load);
     ((System.ComponentModel.ISupportInitialize)(this.grpMDServiceTop)).EndInit();
     this.grpMDServiceTop.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.gridControl1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridView1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemLookUpEdit1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.LK_nDepartHead)).EndInit();
     this.ResumeLayout(false);
 }
 /// <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(fmBoiduong));
     this.cboManv = new System.Windows.Forms.ComboBox();
     this.txtTennv = new DevExpress.XtraEditors.TextEdit();
     this.txtChucvu = new DevExpress.XtraEditors.TextEdit();
     this.labelControl7 = new DevExpress.XtraEditors.LabelControl();
     this.dtpNgayve = new System.Windows.Forms.DateTimePicker();
     this.dtpNgaydi = new System.Windows.Forms.DateTimePicker();
     this.labelControl6 = new DevExpress.XtraEditors.LabelControl();
     this.labelControl5 = new DevExpress.XtraEditors.LabelControl();
     this.btnOut = new DevExpress.XtraEditors.SimpleButton();
     this.btnClear = new DevExpress.XtraEditors.SimpleButton();
     this.btnDelete = new DevExpress.XtraEditors.SimpleButton();
     this.btnEdit = new DevExpress.XtraEditors.SimpleButton();
     this.btnAdd = new DevExpress.XtraEditors.SimpleButton();
     this.txtNoiBD = new DevExpress.XtraEditors.TextEdit();
     this.labelControl3 = new DevExpress.XtraEditors.LabelControl();
     this.labelControl2 = new DevExpress.XtraEditors.LabelControl();
     this.labelControl1 = new DevExpress.XtraEditors.LabelControl();
     this.clmMaBoiDuong = ((System.Windows.Forms.ColumnHeader)(new System.Windows.Forms.ColumnHeader()));
     this.clmNgayve = ((System.Windows.Forms.ColumnHeader)(new System.Windows.Forms.ColumnHeader()));
     this.clmNgaydi = ((System.Windows.Forms.ColumnHeader)(new System.Windows.Forms.ColumnHeader()));
     this.clmNoibd = ((System.Windows.Forms.ColumnHeader)(new System.Windows.Forms.ColumnHeader()));
     this.clmChucvu = ((System.Windows.Forms.ColumnHeader)(new System.Windows.Forms.ColumnHeader()));
     this.clmTennv = ((System.Windows.Forms.ColumnHeader)(new System.Windows.Forms.ColumnHeader()));
     this.clmManv = ((System.Windows.Forms.ColumnHeader)(new System.Windows.Forms.ColumnHeader()));
     this.LVBD = new System.Windows.Forms.ListView();
     this.groupControl1 = new DevExpress.XtraEditors.GroupControl();
     this.panelControl1 = new DevExpress.XtraEditors.PanelControl();
     this.labelControl4 = new DevExpress.XtraEditors.LabelControl();
     ((System.ComponentModel.ISupportInitialize)(this.txtTennv.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtChucvu.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtNoiBD.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.groupControl1)).BeginInit();
     this.groupControl1.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.panelControl1)).BeginInit();
     this.panelControl1.SuspendLayout();
     this.SuspendLayout();
     //
     // cboManv
     //
     this.cboManv.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
     this.cboManv.Font = new System.Drawing.Font("Tahoma", 10.8F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.cboManv.FormattingEnabled = true;
     this.cboManv.Location = new System.Drawing.Point(195, 34);
     this.cboManv.Name = "cboManv";
     this.cboManv.Size = new System.Drawing.Size(215, 30);
     this.cboManv.TabIndex = 20;
     this.cboManv.SelectedIndexChanged += new System.EventHandler(this.cboManv_SelectedIndexChanged);
     //
     // txtTennv
     //
     this.txtTennv.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.txtTennv.Enabled = false;
     this.txtTennv.Location = new System.Drawing.Point(195, 91);
     this.txtTennv.Name = "txtTennv";
     this.txtTennv.Properties.Appearance.Font = new System.Drawing.Font("Tahoma", 10.8F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.txtTennv.Properties.Appearance.Options.UseFont = true;
     this.txtTennv.Size = new System.Drawing.Size(215, 28);
     this.txtTennv.TabIndex = 19;
     //
     // txtChucvu
     //
     this.txtChucvu.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.txtChucvu.Enabled = false;
     this.txtChucvu.Location = new System.Drawing.Point(195, 147);
     this.txtChucvu.Name = "txtChucvu";
     this.txtChucvu.Properties.Appearance.Font = new System.Drawing.Font("Tahoma", 10.8F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.txtChucvu.Properties.Appearance.Options.UseFont = true;
     this.txtChucvu.Size = new System.Drawing.Size(215, 28);
     this.txtChucvu.TabIndex = 18;
     //
     // labelControl7
     //
     this.labelControl7.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.labelControl7.Appearance.Font = new System.Drawing.Font("Tahoma", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.labelControl7.Appearance.Options.UseFont = true;
     this.labelControl7.Location = new System.Drawing.Point(28, 37);
     this.labelControl7.Name = "labelControl7";
     this.labelControl7.Size = new System.Drawing.Size(126, 24);
     this.labelControl7.TabIndex = 17;
     this.labelControl7.Text = "Mã nhân viên:";
     //
     // dtpNgayve
     //
     this.dtpNgayve.Font = new System.Drawing.Font("Tahoma", 10.8F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.dtpNgayve.Format = System.Windows.Forms.DateTimePickerFormat.Short;
     this.dtpNgayve.Location = new System.Drawing.Point(195, 315);
     this.dtpNgayve.Name = "dtpNgayve";
     this.dtpNgayve.Size = new System.Drawing.Size(215, 29);
     this.dtpNgayve.TabIndex = 16;
     //
     // dtpNgaydi
     //
     this.dtpNgaydi.Font = new System.Drawing.Font("Tahoma", 10.8F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.dtpNgaydi.Format = System.Windows.Forms.DateTimePickerFormat.Short;
     this.dtpNgaydi.Location = new System.Drawing.Point(195, 259);
     this.dtpNgaydi.Name = "dtpNgaydi";
     this.dtpNgaydi.Size = new System.Drawing.Size(215, 29);
     this.dtpNgaydi.TabIndex = 15;
     //
     // labelControl6
     //
     this.labelControl6.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.labelControl6.Appearance.Font = new System.Drawing.Font("Tahoma", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.labelControl6.Appearance.Options.UseFont = true;
     this.labelControl6.Location = new System.Drawing.Point(28, 317);
     this.labelControl6.Name = "labelControl6";
     this.labelControl6.Size = new System.Drawing.Size(79, 24);
     this.labelControl6.TabIndex = 14;
     this.labelControl6.Text = "Ngày về:";
     //
     // labelControl5
     //
     this.labelControl5.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.labelControl5.Appearance.Font = new System.Drawing.Font("Tahoma", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.labelControl5.Appearance.Options.UseFont = true;
     this.labelControl5.Location = new System.Drawing.Point(28, 261);
     this.labelControl5.Name = "labelControl5";
     this.labelControl5.Size = new System.Drawing.Size(74, 24);
     this.labelControl5.TabIndex = 13;
     this.labelControl5.Text = "Ngày đi:";
     //
     // btnOut
     //
     this.btnOut.Appearance.Font = new System.Drawing.Font("Tahoma", 10.8F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.btnOut.Appearance.Options.UseFont = true;
     this.btnOut.ImageOptions.Image = ((System.Drawing.Image)(resources.GetObject("btnOut.ImageOptions.Image")));
     this.btnOut.Location = new System.Drawing.Point(249, 407);
     this.btnOut.Name = "btnOut";
     this.btnOut.Size = new System.Drawing.Size(124, 39);
     this.btnOut.TabIndex = 10;
     this.btnOut.Text = "Thoát";
     this.btnOut.Click += new System.EventHandler(this.btnOut_Click);
     //
     // btnClear
     //
     this.btnClear.Appearance.Font = new System.Drawing.Font("Tahoma", 10.8F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.btnClear.Appearance.Options.UseFont = true;
     this.btnClear.ImageOptions.Image = ((System.Drawing.Image)(resources.GetObject("btnClear.ImageOptions.Image")));
     this.btnClear.Location = new System.Drawing.Point(92, 407);
     this.btnClear.Name = "btnClear";
     this.btnClear.Size = new System.Drawing.Size(124, 39);
     this.btnClear.TabIndex = 9;
     this.btnClear.Text = "Hũy";
     this.btnClear.Click += new System.EventHandler(this.btnClear_Click);
     //
     // btnDelete
     //
     this.btnDelete.Appearance.Font = new System.Drawing.Font("Tahoma", 10.8F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.btnDelete.Appearance.Options.UseFont = true;
     this.btnDelete.ImageOptions.Image = ((System.Drawing.Image)(resources.GetObject("btnDelete.ImageOptions.Image")));
     this.btnDelete.Location = new System.Drawing.Point(315, 362);
     this.btnDelete.Name = "btnDelete";
     this.btnDelete.Size = new System.Drawing.Size(124, 39);
     this.btnDelete.TabIndex = 8;
     this.btnDelete.Text = "Xóa";
     this.btnDelete.Click += new System.EventHandler(this.btnDelete_Click);
     //
     // btnEdit
     //
     this.btnEdit.Appearance.Font = new System.Drawing.Font("Tahoma", 10.8F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.btnEdit.Appearance.Options.UseFont = true;
     this.btnEdit.ImageOptions.Image = ((System.Drawing.Image)(resources.GetObject("btnEdit.ImageOptions.Image")));
     this.btnEdit.Location = new System.Drawing.Point(170, 362);
     this.btnEdit.Name = "btnEdit";
     this.btnEdit.Size = new System.Drawing.Size(124, 39);
     this.btnEdit.TabIndex = 7;
     this.btnEdit.Text = "Sửa";
     this.btnEdit.Click += new System.EventHandler(this.btnEdit_Click);
     //
     // btnAdd
     //
     this.btnAdd.Appearance.Font = new System.Drawing.Font("Tahoma", 10.8F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.btnAdd.Appearance.Options.UseFont = true;
     this.btnAdd.ImageOptions.Image = ((System.Drawing.Image)(resources.GetObject("btnAdd.ImageOptions.Image")));
     this.btnAdd.Location = new System.Drawing.Point(25, 362);
     this.btnAdd.Name = "btnAdd";
     this.btnAdd.Size = new System.Drawing.Size(124, 39);
     this.btnAdd.TabIndex = 6;
     this.btnAdd.Text = "Thêm";
     this.btnAdd.Click += new System.EventHandler(this.btnAdd_Click);
     //
     // txtNoiBD
     //
     this.txtNoiBD.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.txtNoiBD.Location = new System.Drawing.Point(195, 203);
     this.txtNoiBD.Name = "txtNoiBD";
     this.txtNoiBD.Properties.Appearance.Font = new System.Drawing.Font("Tahoma", 10.8F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.txtNoiBD.Properties.Appearance.Options.UseFont = true;
     this.txtNoiBD.Size = new System.Drawing.Size(215, 28);
     this.txtNoiBD.TabIndex = 5;
     //
     // labelControl3
     //
     this.labelControl3.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.labelControl3.Appearance.Font = new System.Drawing.Font("Tahoma", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.labelControl3.Appearance.Options.UseFont = true;
     this.labelControl3.Location = new System.Drawing.Point(28, 205);
     this.labelControl3.Name = "labelControl3";
     this.labelControl3.Size = new System.Drawing.Size(131, 24);
     this.labelControl3.TabIndex = 2;
     this.labelControl3.Text = "Nơi bồi dưỡng:";
     //
     // labelControl2
     //
     this.labelControl2.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.labelControl2.Appearance.Font = new System.Drawing.Font("Tahoma", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.labelControl2.Appearance.Options.UseFont = true;
     this.labelControl2.Location = new System.Drawing.Point(28, 149);
     this.labelControl2.Name = "labelControl2";
     this.labelControl2.Size = new System.Drawing.Size(78, 24);
     this.labelControl2.TabIndex = 1;
     this.labelControl2.Text = "Chức vụ:";
     //
     // labelControl1
     //
     this.labelControl1.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.labelControl1.Appearance.Font = new System.Drawing.Font("Tahoma", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.labelControl1.Appearance.Options.UseFont = true;
     this.labelControl1.Location = new System.Drawing.Point(28, 93);
     this.labelControl1.Name = "labelControl1";
     this.labelControl1.Size = new System.Drawing.Size(134, 24);
     this.labelControl1.TabIndex = 0;
     this.labelControl1.Text = "Tên nhân viên:";
     //
     // clmMaBoiDuong
     //
     this.clmMaBoiDuong.Text = "MaBoiDuong";
     this.clmMaBoiDuong.Width = 0;
     //
     // clmNgayve
     //
     this.clmNgayve.Text = "Ngày về";
     this.clmNgayve.TextAlign = System.Windows.Forms.HorizontalAlignment.Center;
     this.clmNgayve.Width = 100;
     //
     // clmNgaydi
     //
     this.clmNgaydi.Text = "Ngày đi";
     this.clmNgaydi.TextAlign = System.Windows.Forms.HorizontalAlignment.Center;
     this.clmNgaydi.Width = 100;
     //
     // clmNoibd
     //
     this.clmNoibd.Text = "Nơi bồi dưỡng";
     this.clmNoibd.TextAlign = System.Windows.Forms.HorizontalAlignment.Center;
     this.clmNoibd.Width = 120;
     //
     // clmChucvu
     //
     this.clmChucvu.Text = "Chức vụ";
     this.clmChucvu.Width = 100;
     //
     // clmTennv
     //
     this.clmTennv.Text = "Tên nhân viên";
     this.clmTennv.TextAlign = System.Windows.Forms.HorizontalAlignment.Center;
     this.clmTennv.Width = 120;
     //
     // clmManv
     //
     this.clmManv.Text = "Mã nhân viên";
     this.clmManv.Width = 100;
     //
     // LVBD
     //
     this.LVBD.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.LVBD.Columns.AddRange(new System.Windows.Forms.ColumnHeader[] {
     this.clmManv,
     this.clmTennv,
     this.clmChucvu,
     this.clmNoibd,
     this.clmNgaydi,
     this.clmNgayve,
     this.clmMaBoiDuong});
     this.LVBD.FullRowSelect = true;
     this.LVBD.GridLines = true;
     this.LVBD.Location = new System.Drawing.Point(526, 119);
     this.LVBD.Name = "LVBD";
     this.LVBD.Size = new System.Drawing.Size(624, 417);
     this.LVBD.TabIndex = 11;
     this.LVBD.UseCompatibleStateImageBehavior = false;
     this.LVBD.View = System.Windows.Forms.View.Details;
     this.LVBD.SelectedIndexChanged += new System.EventHandler(this.LVBD_SelectedIndexChanged);
     //
     // groupControl1
     //
     this.groupControl1.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
     | System.Windows.Forms.AnchorStyles.Left)));
     this.groupControl1.Controls.Add(this.cboManv);
     this.groupControl1.Controls.Add(this.txtTennv);
     this.groupControl1.Controls.Add(this.txtChucvu);
     this.groupControl1.Controls.Add(this.labelControl7);
     this.groupControl1.Controls.Add(this.dtpNgayve);
     this.groupControl1.Controls.Add(this.dtpNgaydi);
     this.groupControl1.Controls.Add(this.labelControl6);
     this.groupControl1.Controls.Add(this.labelControl5);
     this.groupControl1.Controls.Add(this.btnOut);
     this.groupControl1.Controls.Add(this.btnClear);
     this.groupControl1.Controls.Add(this.btnDelete);
     this.groupControl1.Controls.Add(this.btnEdit);
     this.groupControl1.Controls.Add(this.btnAdd);
     this.groupControl1.Controls.Add(this.txtNoiBD);
     this.groupControl1.Controls.Add(this.labelControl3);
     this.groupControl1.Controls.Add(this.labelControl2);
     this.groupControl1.Controls.Add(this.labelControl1);
     this.groupControl1.Location = new System.Drawing.Point(37, 94);
     this.groupControl1.Name = "groupControl1";
     this.groupControl1.Size = new System.Drawing.Size(452, 453);
     this.groupControl1.TabIndex = 10;
     this.groupControl1.Text = "Thông tin bồi dưỡng";
     //
     // panelControl1
     //
     this.panelControl1.BorderStyle = DevExpress.XtraEditors.Controls.BorderStyles.NoBorder;
     this.panelControl1.Controls.Add(this.labelControl4);
     this.panelControl1.Dock = System.Windows.Forms.DockStyle.Top;
     this.panelControl1.Location = new System.Drawing.Point(0, 0);
     this.panelControl1.Name = "panelControl1";
     this.panelControl1.Size = new System.Drawing.Size(1182, 82);
     this.panelControl1.TabIndex = 9;
     //
     // labelControl4
     //
     this.labelControl4.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)));
     this.labelControl4.Appearance.Font = new System.Drawing.Font("Tahoma", 19.8F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.labelControl4.Appearance.Options.UseFont = true;
     this.labelControl4.Location = new System.Drawing.Point(474, 21);
     this.labelControl4.Name = "labelControl4";
     this.labelControl4.Size = new System.Drawing.Size(234, 40);
     this.labelControl4.TabIndex = 0;
     this.labelControl4.Text = "Bảng Bồi Dưỡng";
     //
     // fmBoiduong
     //
     this.AutoScaleDimensions = new System.Drawing.SizeF(7F, 16F);
     this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
     this.ClientSize = new System.Drawing.Size(1182, 553);
     this.Controls.Add(this.LVBD);
     this.Controls.Add(this.groupControl1);
     this.Controls.Add(this.panelControl1);
     this.Name = "fmBoiduong";
     this.Text = "Bồi dưỡng";
     this.Load += new System.EventHandler(this.fmBoiDuong_Load);
     ((System.ComponentModel.ISupportInitialize)(this.txtTennv.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtChucvu.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtNoiBD.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.groupControl1)).EndInit();
     this.groupControl1.ResumeLayout(false);
     this.groupControl1.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(this.panelControl1)).EndInit();
     this.panelControl1.ResumeLayout(false);
     this.panelControl1.PerformLayout();
     this.ResumeLayout(false);
 }
 /// <summary>
 /// Required method for Designer support - do not modify
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     this.components = new System.ComponentModel.Container();
     DevExpress.Utils.SerializableAppearanceObject serializableAppearanceObject1 = new DevExpress.Utils.SerializableAppearanceObject();
     System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(AccTypesFrm));
     this.TreeListAcc = new DevExpress.XtraTreeList.TreeList();
     this.treeListColumn1 = new DevExpress.XtraTreeList.Columns.TreeListColumn();
     this.treeListColumn6 = new DevExpress.XtraTreeList.Columns.TreeListColumn();
     this.treeListColumn2 = new DevExpress.XtraTreeList.Columns.TreeListColumn();
     this.repositoryItemButtonEdit1 = new DevExpress.XtraEditors.Repository.RepositoryItemButtonEdit();
     this.treeListColumn3 = new DevExpress.XtraTreeList.Columns.TreeListColumn();
     this.treeListColumn4 = new DevExpress.XtraTreeList.Columns.TreeListColumn();
     this.treeListColumn5 = new DevExpress.XtraTreeList.Columns.TreeListColumn();
     this.treeListColumn7 = new DevExpress.XtraTreeList.Columns.TreeListColumn();
     this.imageCollectionNodes = new DevExpress.Utils.ImageCollection(this.components);
     this.GCCodes = new DevExpress.XtraEditors.GroupControl();
     this.labelControl15 = new DevExpress.XtraEditors.LabelControl();
     this.LlHyCode = new DevExpress.XtraEditors.LabelControl();
     this.LblAccCode = new DevExpress.XtraEditors.LabelControl();
     this.LblParentName = new DevExpress.XtraEditors.LabelControl();
     this.LblTreeID = new DevExpress.XtraEditors.LabelControl();
     this.labelControl1 = new DevExpress.XtraEditors.LabelControl();
     this.GCDetails = new DevExpress.XtraEditors.GroupControl();
     this.LUEAccEndCount = new DevExpress.XtraEditors.LookUpEdit();
     this.LUEAccType = new DevExpress.XtraEditors.LookUpEdit();
     this.TxtBudge = new DevExpress.XtraEditors.TextEdit();
     this.TxtAccName = new DevExpress.XtraEditors.TextEdit();
     this.labelControl10 = new DevExpress.XtraEditors.LabelControl();
     this.labelControl9 = new DevExpress.XtraEditors.LabelControl();
     this.labelControl8 = new DevExpress.XtraEditors.LabelControl();
     this.labelControl7 = new DevExpress.XtraEditors.LabelControl();
     this.groupControl3 = new DevExpress.XtraEditors.GroupControl();
     this.BtnCancel = new DevExpress.XtraEditors.SimpleButton();
     this.BtnDelete = new DevExpress.XtraEditors.SimpleButton();
     this.BtnSave = new DevExpress.XtraEditors.SimpleButton();
     this.BtnNew = new DevExpress.XtraEditors.SimpleButton();
     ((System.ComponentModel.ISupportInitialize)(this.TreeListAcc)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemButtonEdit1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.imageCollectionNodes)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.GCCodes)).BeginInit();
     this.GCCodes.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.GCDetails)).BeginInit();
     this.GCDetails.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.LUEAccEndCount.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.LUEAccType.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.TxtBudge.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.TxtAccName.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.groupControl3)).BeginInit();
     this.groupControl3.SuspendLayout();
     this.SuspendLayout();
     //
     // TreeListAcc
     //
     this.TreeListAcc.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.TreeListAcc.Columns.AddRange(new DevExpress.XtraTreeList.Columns.TreeListColumn[] {
     this.treeListColumn1,
     this.treeListColumn6,
     this.treeListColumn2,
     this.treeListColumn3,
     this.treeListColumn4,
     this.treeListColumn5,
     this.treeListColumn7});
     this.TreeListAcc.Location = new System.Drawing.Point(10, 12);
     this.TreeListAcc.Name = "TreeListAcc";
     this.TreeListAcc.BeginUnboundLoad();
     this.TreeListAcc.AppendNode(new object[] {
     "شجرة الحسابات",
     null,
     null,
     null,
     null,
     null,
     null}, -1, 0, 1, -1);
     this.TreeListAcc.EndUnboundLoad();
     this.TreeListAcc.OptionsBehavior.Editable = false;
     this.TreeListAcc.OptionsBehavior.PopulateServiceColumns = true;
     this.TreeListAcc.OptionsLayout.AddNewColumns = false;
     this.TreeListAcc.OptionsSelection.EnableAppearanceFocusedCell = false;
     this.TreeListAcc.RepositoryItems.AddRange(new DevExpress.XtraEditors.Repository.RepositoryItem[] {
     this.repositoryItemButtonEdit1});
     this.TreeListAcc.RightToLeft = System.Windows.Forms.RightToLeft.Yes;
     this.TreeListAcc.SelectImageList = this.imageCollectionNodes;
     this.TreeListAcc.Size = new System.Drawing.Size(840, 300);
     this.TreeListAcc.TabIndex = 0;
     this.TreeListAcc.AfterExpand += new DevExpress.XtraTreeList.NodeEventHandler(this.TreeListAcc_AfterExpand);
     this.TreeListAcc.FocusedNodeChanged += new DevExpress.XtraTreeList.FocusedNodeChangedEventHandler(this.TreeListAcc_FocusedNodeChanged);
     //
     // treeListColumn1
     //
     this.treeListColumn1.Caption = "-   الحســــابات   -";
     this.treeListColumn1.FieldName = "اسم الحساب";
     this.treeListColumn1.MinWidth = 91;
     this.treeListColumn1.Name = "treeListColumn1";
     this.treeListColumn1.Visible = true;
     this.treeListColumn1.VisibleIndex = 0;
     this.treeListColumn1.Width = 91;
     //
     // treeListColumn6
     //
     this.treeListColumn6.Caption = "كود الدليل";
     this.treeListColumn6.FieldName = "AccountTreeId";
     this.treeListColumn6.Name = "treeListColumn6";
     this.treeListColumn6.Visible = true;
     this.treeListColumn6.VisibleIndex = 1;
     //
     // treeListColumn2
     //
     this.treeListColumn2.Caption = "اسم الحساب";
     this.treeListColumn2.ColumnEdit = this.repositoryItemButtonEdit1;
     this.treeListColumn2.FieldName = "AccountDes";
     this.treeListColumn2.Name = "treeListColumn2";
     this.treeListColumn2.Visible = true;
     this.treeListColumn2.VisibleIndex = 2;
     //
     // repositoryItemButtonEdit1
     //
     this.repositoryItemButtonEdit1.AllowNullInput = DevExpress.Utils.DefaultBoolean.False;
     this.repositoryItemButtonEdit1.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.OK, "حفظ", 30, true, true, false, DevExpress.XtraEditors.ImageLocation.MiddleCenter, null, new DevExpress.Utils.KeyShortcut(System.Windows.Forms.Keys.None), serializableAppearanceObject1, "", null, null, true)});
     this.repositoryItemButtonEdit1.MaxLength = 150;
     this.repositoryItemButtonEdit1.Name = "repositoryItemButtonEdit1";
     //
     // treeListColumn3
     //
     this.treeListColumn3.Caption = "طبيعة الحساب";
     this.treeListColumn3.FieldName = "AccNatueName";
     this.treeListColumn3.Name = "treeListColumn3";
     this.treeListColumn3.Visible = true;
     this.treeListColumn3.VisibleIndex = 3;
     //
     // treeListColumn4
     //
     this.treeListColumn4.Caption = "مبلغ الموازنه";
     this.treeListColumn4.FieldName = "AccountBudget";
     this.treeListColumn4.Name = "treeListColumn4";
     this.treeListColumn4.Visible = true;
     this.treeListColumn4.VisibleIndex = 4;
     //
     // treeListColumn5
     //
     this.treeListColumn5.Caption = "كود الحساب الختامي";
     this.treeListColumn5.FieldName = "AsKhtamiaccName";
     this.treeListColumn5.Name = "treeListColumn5";
     this.treeListColumn5.Visible = true;
     this.treeListColumn5.VisibleIndex = 5;
     //
     // treeListColumn7
     //
     this.treeListColumn7.Caption = "AccountId";
     this.treeListColumn7.FieldName = "AccountId";
     this.treeListColumn7.Name = "treeListColumn7";
     this.treeListColumn7.Visible = true;
     this.treeListColumn7.VisibleIndex = 6;
     //
     // imageCollectionNodes
     //
     this.imageCollectionNodes.ImageStream = ((DevExpress.Utils.ImageCollectionStreamer)(resources.GetObject("imageCollectionNodes.ImageStream")));
     this.imageCollectionNodes.Images.SetKeyName(0, "NodeItems.jpg");
     this.imageCollectionNodes.Images.SetKeyName(1, "NodeSelected.png");
     this.imageCollectionNodes.Images.SetKeyName(2, "NodeNotSelected.png");
     //
     // GCCodes
     //
     this.GCCodes.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
     this.GCCodes.Controls.Add(this.labelControl15);
     this.GCCodes.Controls.Add(this.LlHyCode);
     this.GCCodes.Controls.Add(this.LblAccCode);
     this.GCCodes.Controls.Add(this.LblParentName);
     this.GCCodes.Controls.Add(this.LblTreeID);
     this.GCCodes.Controls.Add(this.labelControl1);
     this.GCCodes.Location = new System.Drawing.Point(12, 318);
     this.GCCodes.Name = "GCCodes";
     this.GCCodes.RightToLeft = System.Windows.Forms.RightToLeft.Yes;
     this.GCCodes.Size = new System.Drawing.Size(293, 136);
     this.GCCodes.TabIndex = 1;
     this.GCCodes.Text = "اكواد";
     this.GCCodes.Visible = false;
     //
     // labelControl15
     //
     this.labelControl15.Location = new System.Drawing.Point(175, 34);
     this.labelControl15.Name = "labelControl15";
     this.labelControl15.Size = new System.Drawing.Size(93, 13);
     this.labelControl15.TabIndex = 0;
     this.labelControl15.Text = "اسم الحساب الاب";
     //
     // LlHyCode
     //
     this.LlHyCode.Location = new System.Drawing.Point(85, 85);
     this.LlHyCode.Name = "LlHyCode";
     this.LlHyCode.Size = new System.Drawing.Size(128, 13);
     this.LlHyCode.TabIndex = 0;
     this.LlHyCode.Text = "كود الحساب في الدليل";
     //
     // LblAccCode
     //
     this.LblAccCode.Appearance.Options.UseTextOptions = true;
     this.LblAccCode.Appearance.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.LblAccCode.Location = new System.Drawing.Point(31, 53);
     this.LblAccCode.Name = "LblAccCode";
     this.LblAccCode.Size = new System.Drawing.Size(25, 13);
     this.LblAccCode.TabIndex = 0;
     this.LblAccCode.Text = "None";
     //
     // LblParentName
     //
     this.LblParentName.Location = new System.Drawing.Point(31, 34);
     this.LblParentName.Name = "LblParentName";
     this.LblParentName.Size = new System.Drawing.Size(25, 13);
     this.LblParentName.TabIndex = 0;
     this.LblParentName.Text = "None";
     //
     // LblTreeID
     //
     this.LblTreeID.Appearance.Options.UseTextOptions = true;
     this.LblTreeID.Appearance.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.LblTreeID.Location = new System.Drawing.Point(137, 104);
     this.LblTreeID.Name = "LblTreeID";
     this.LblTreeID.Size = new System.Drawing.Size(25, 13);
     this.LblTreeID.TabIndex = 0;
     this.LblTreeID.Text = "None";
     //
     // labelControl1
     //
     this.labelControl1.Location = new System.Drawing.Point(205, 53);
     this.labelControl1.Name = "labelControl1";
     this.labelControl1.Size = new System.Drawing.Size(63, 13);
     this.labelControl1.TabIndex = 0;
     this.labelControl1.Text = "كود الحساب";
     //
     // GCDetails
     //
     this.GCDetails.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)
                 | System.Windows.Forms.AnchorStyles.Right)));
     this.GCDetails.Controls.Add(this.LUEAccEndCount);
     this.GCDetails.Controls.Add(this.LUEAccType);
     this.GCDetails.Controls.Add(this.TxtBudge);
     this.GCDetails.Controls.Add(this.TxtAccName);
     this.GCDetails.Controls.Add(this.labelControl10);
     this.GCDetails.Controls.Add(this.labelControl9);
     this.GCDetails.Controls.Add(this.labelControl8);
     this.GCDetails.Controls.Add(this.labelControl7);
     this.GCDetails.Location = new System.Drawing.Point(311, 318);
     this.GCDetails.Name = "GCDetails";
     this.GCDetails.Size = new System.Drawing.Size(319, 136);
     this.GCDetails.TabIndex = 1;
     this.GCDetails.Text = "تفاصيل الحساب";
     this.GCDetails.Visible = false;
     //
     // LUEAccEndCount
     //
     this.LUEAccEndCount.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
     this.LUEAccEndCount.Location = new System.Drawing.Point(12, 105);
     this.LUEAccEndCount.Name = "LUEAccEndCount";
     this.LUEAccEndCount.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.LUEAccEndCount.Properties.Columns.AddRange(new DevExpress.XtraEditors.Controls.LookUpColumnInfo[] {
     new DevExpress.XtraEditors.Controls.LookUpColumnInfo("KhtamiaccID", "KhtamiaccID", 20, DevExpress.Utils.FormatType.None, "", false, DevExpress.Utils.HorzAlignment.Default),
     new DevExpress.XtraEditors.Controls.LookUpColumnInfo("KhtamiaccName", "اسماء الاكواد الختاميه")});
     this.LUEAccEndCount.Properties.NullText = "";
     this.LUEAccEndCount.Properties.NullValuePrompt = "اختار الحساب الختامي";
     this.LUEAccEndCount.Size = new System.Drawing.Size(187, 19);
     this.LUEAccEndCount.TabIndex = 4;
     //
     // LUEAccType
     //
     this.LUEAccType.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
     this.LUEAccType.Location = new System.Drawing.Point(12, 55);
     this.LUEAccType.Name = "LUEAccType";
     this.LUEAccType.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.LUEAccType.Properties.Columns.AddRange(new DevExpress.XtraEditors.Controls.LookUpColumnInfo[] {
     new DevExpress.XtraEditors.Controls.LookUpColumnInfo("AccNatueID", "AccNatueID", 20, DevExpress.Utils.FormatType.None, "", false, DevExpress.Utils.HorzAlignment.Default),
     new DevExpress.XtraEditors.Controls.LookUpColumnInfo("AccNatueName", "انوع طبيعة الحسابات")});
     this.LUEAccType.Properties.NullText = "";
     this.LUEAccType.Properties.NullValuePrompt = "اختار طبيعة";
     this.LUEAccType.Size = new System.Drawing.Size(187, 19);
     this.LUEAccType.TabIndex = 2;
     //
     // TxtBudge
     //
     this.TxtBudge.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
     this.TxtBudge.Location = new System.Drawing.Point(12, 80);
     this.TxtBudge.Name = "TxtBudge";
     this.TxtBudge.Properties.Mask.EditMask = "#####.00";
     this.TxtBudge.Properties.Mask.MaskType = DevExpress.XtraEditors.Mask.MaskType.Numeric;
     this.TxtBudge.Properties.Mask.UseMaskAsDisplayFormat = true;
     this.TxtBudge.Properties.MaxLength = 8;
     this.TxtBudge.Size = new System.Drawing.Size(187, 19);
     this.TxtBudge.TabIndex = 3;
     //
     // TxtAccName
     //
     this.TxtAccName.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
     this.TxtAccName.Location = new System.Drawing.Point(12, 30);
     this.TxtAccName.Name = "TxtAccName";
     this.TxtAccName.Properties.MaxLength = 150;
     this.TxtAccName.Size = new System.Drawing.Size(187, 19);
     this.TxtAccName.TabIndex = 1;
     this.TxtAccName.EditValueChanged += new System.EventHandler(this.TxtAccName_EditValueChanged);
     //
     // labelControl10
     //
     this.labelControl10.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
     this.labelControl10.Location = new System.Drawing.Point(205, 108);
     this.labelControl10.Name = "labelControl10";
     this.labelControl10.Size = new System.Drawing.Size(102, 13);
     this.labelControl10.TabIndex = 0;
     this.labelControl10.Text = "كود الحساب الختام";
     //
     // labelControl9
     //
     this.labelControl9.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
     this.labelControl9.Location = new System.Drawing.Point(233, 83);
     this.labelControl9.Name = "labelControl9";
     this.labelControl9.Size = new System.Drawing.Size(74, 13);
     this.labelControl9.TabIndex = 0;
     this.labelControl9.Text = "مبلغ الموازنه";
     //
     // labelControl8
     //
     this.labelControl8.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
     this.labelControl8.Location = new System.Drawing.Point(224, 58);
     this.labelControl8.Name = "labelControl8";
     this.labelControl8.Size = new System.Drawing.Size(83, 13);
     this.labelControl8.TabIndex = 0;
     this.labelControl8.Text = "طبيعة الحساب";
     //
     // labelControl7
     //
     this.labelControl7.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
     this.labelControl7.Location = new System.Drawing.Point(239, 33);
     this.labelControl7.Name = "labelControl7";
     this.labelControl7.Size = new System.Drawing.Size(68, 13);
     this.labelControl7.TabIndex = 0;
     this.labelControl7.Text = "اسم الحساب";
     //
     // groupControl3
     //
     this.groupControl3.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
     this.groupControl3.Controls.Add(this.BtnCancel);
     this.groupControl3.Controls.Add(this.BtnDelete);
     this.groupControl3.Controls.Add(this.BtnSave);
     this.groupControl3.Controls.Add(this.BtnNew);
     this.groupControl3.Location = new System.Drawing.Point(636, 318);
     this.groupControl3.Name = "groupControl3";
     this.groupControl3.Size = new System.Drawing.Size(214, 136);
     this.groupControl3.TabIndex = 5;
     this.groupControl3.Text = "الاوامر";
     //
     // BtnCancel
     //
     this.BtnCancel.Location = new System.Drawing.Point(134, 33);
     this.BtnCancel.Name = "BtnCancel";
     this.BtnCancel.Size = new System.Drawing.Size(72, 81);
     this.BtnCancel.TabIndex = 8;
     this.BtnCancel.Text = "الغاء الامر";
     this.BtnCancel.Visible = false;
     this.BtnCancel.Click += new System.EventHandler(this.BtnCancel_Click);
     //
     // BtnDelete
     //
     this.BtnDelete.Enabled = false;
     this.BtnDelete.Location = new System.Drawing.Point(8, 91);
     this.BtnDelete.Name = "BtnDelete";
     this.BtnDelete.Size = new System.Drawing.Size(120, 23);
     this.BtnDelete.TabIndex = 7;
     this.BtnDelete.Text = "حذف";
     this.BtnDelete.Click += new System.EventHandler(this.BtnDelete_Click);
     //
     // BtnSave
     //
     this.BtnSave.Enabled = false;
     this.BtnSave.Location = new System.Drawing.Point(8, 62);
     this.BtnSave.Name = "BtnSave";
     this.BtnSave.Size = new System.Drawing.Size(120, 23);
     this.BtnSave.TabIndex = 6;
     this.BtnSave.Text = "حفظ";
     this.BtnSave.Visible = false;
     this.BtnSave.Click += new System.EventHandler(this.BtnSave_Click);
     //
     // BtnNew
     //
     this.BtnNew.Location = new System.Drawing.Point(8, 33);
     this.BtnNew.Name = "BtnNew";
     this.BtnNew.Size = new System.Drawing.Size(120, 23);
     this.BtnNew.TabIndex = 5;
     this.BtnNew.Text = "جديد";
     this.BtnNew.Click += new System.EventHandler(this.BtnNew_Click);
     //
     // AccTypesFrm
     //
     this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
     this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
     this.ClientSize = new System.Drawing.Size(862, 462);
     this.Controls.Add(this.groupControl3);
     this.Controls.Add(this.GCDetails);
     this.Controls.Add(this.GCCodes);
     this.Controls.Add(this.TreeListAcc);
     this.MinimumSize = new System.Drawing.Size(870, 496);
     this.Name = "AccTypesFrm";
     this.Text = "الحسابات";
     this.Load += new System.EventHandler(this.AccTypesFrm_Load);
     ((System.ComponentModel.ISupportInitialize)(this.TreeListAcc)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemButtonEdit1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.imageCollectionNodes)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.GCCodes)).EndInit();
     this.GCCodes.ResumeLayout(false);
     this.GCCodes.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(this.GCDetails)).EndInit();
     this.GCDetails.ResumeLayout(false);
     this.GCDetails.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(this.LUEAccEndCount.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.LUEAccType.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.TxtBudge.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.TxtAccName.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.groupControl3)).EndInit();
     this.groupControl3.ResumeLayout(false);
     this.ResumeLayout(false);
 }
Пример #22
0
 /// <summary>
 /// Required method for Designer support - do not modify
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     this.components          = new System.ComponentModel.Container();
     this.defaultLookAndFeel1 = new DevExpress.LookAndFeel.DefaultLookAndFeel(this.components);
     this.label1        = new System.Windows.Forms.Label();
     this.groupControl1 = new DevExpress.XtraEditors.GroupControl();
     this.comboBoxEdit1 = new DevExpress.XtraEditors.ComboBoxEdit();
     this.panel1        = new System.Windows.Forms.Panel();
     this.buttonEdit1   = new DevExpress.XtraEditors.ButtonEdit();
     this.label2        = new System.Windows.Forms.Label();
     ((System.ComponentModel.ISupportInitialize)(this.groupControl1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.comboBoxEdit1.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.buttonEdit1.Properties)).BeginInit();
     this.SuspendLayout();
     //
     // label1
     //
     this.label1.Location = new System.Drawing.Point(12, 11);
     this.label1.Name     = "label1";
     this.label1.Size     = new System.Drawing.Size(72, 16);
     this.label1.TabIndex = 9;
     this.label1.Text     = "Active Skin:";
     //
     // groupControl1
     //
     this.groupControl1.Location = new System.Drawing.Point(168, 56);
     this.groupControl1.Name     = "groupControl1";
     this.groupControl1.Size     = new System.Drawing.Size(150, 96);
     this.groupControl1.TabIndex = 8;
     this.groupControl1.Text     = "groupControl1";
     //
     // comboBoxEdit1
     //
     this.comboBoxEdit1.EditValue = "comboBoxEdit1";
     this.comboBoxEdit1.Location  = new System.Drawing.Point(96, 8);
     this.comboBoxEdit1.Name      = "comboBoxEdit1";
     this.comboBoxEdit1.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
         new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)
     });
     this.comboBoxEdit1.Properties.TextEditStyle = DevExpress.XtraEditors.Controls.TextEditStyles.DisableTextEditor;
     this.comboBoxEdit1.Size                  = new System.Drawing.Size(222, 20);
     this.comboBoxEdit1.TabIndex              = 7;
     this.comboBoxEdit1.SelectedValueChanged += new System.EventHandler(this.comboBoxEdit1_SelectedValueChanged);
     //
     // panel1
     //
     this.panel1.Location = new System.Drawing.Point(15, 120);
     this.panel1.Name     = "panel1";
     this.panel1.Size     = new System.Drawing.Size(136, 32);
     this.panel1.TabIndex = 6;
     this.panel1.Paint   += new System.Windows.Forms.PaintEventHandler(this.panel1_Paint);
     //
     // buttonEdit1
     //
     this.buttonEdit1.EditValue = "buttonEdit1";
     this.buttonEdit1.Location  = new System.Drawing.Point(12, 53);
     this.buttonEdit1.Name      = "buttonEdit1";
     this.buttonEdit1.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
         new DevExpress.XtraEditors.Controls.EditorButton()
     });
     this.buttonEdit1.Size     = new System.Drawing.Size(136, 20);
     this.buttonEdit1.TabIndex = 5;
     //
     // label2
     //
     this.label2.Location = new System.Drawing.Point(12, 101);
     this.label2.Name     = "label2";
     this.label2.Size     = new System.Drawing.Size(100, 16);
     this.label2.TabIndex = 10;
     this.label2.Text     = "Border Color:";
     //
     // Form1
     //
     this.AutoScaleBaseSize = new System.Drawing.Size(5, 13);
     this.ClientSize        = new System.Drawing.Size(330, 170);
     this.Controls.Add(this.label2);
     this.Controls.Add(this.label1);
     this.Controls.Add(this.groupControl1);
     this.Controls.Add(this.comboBoxEdit1);
     this.Controls.Add(this.panel1);
     this.Controls.Add(this.buttonEdit1);
     this.Name  = "Form1";
     this.Text  = "Get editor\'s border color from the active skin";
     this.Load += new System.EventHandler(this.Form1_Load);
     ((System.ComponentModel.ISupportInitialize)(this.groupControl1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.comboBoxEdit1.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.buttonEdit1.Properties)).EndInit();
     this.ResumeLayout(false);
 }
Пример #23
0
 /// <summary>
 /// 设计器支持所需的方法 - 不要使用代码编辑器修改
 /// 此方法的内容。
 /// </summary>
 private void InitializeComponent()
 {
     System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(frmVendorQuery));
     this.groupControlDataList   = new DevExpress.XtraEditors.GroupControl();
     this.gridControlDetail      = new DevExpress.XtraGrid.GridControl();
     this.gridView1              = new DevExpress.XtraGrid.Views.Grid.GridView();
     this.gridColumnVendorID     = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumnVendorAttn   = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumnVendorName   = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumnVendorTypeID = new DevExpress.XtraGrid.Columns.GridColumn();
     this.drpGridYesOrNo         = new DevExpress.XtraEditors.Repository.RepositoryItemImageComboBox();
     this.groupControlQuery      = new DevExpress.XtraEditors.GroupControl();
     this.txtQVendorNM           = new DevExpress.XtraEditors.TextEdit();
     this.label1   = new System.Windows.Forms.Label();
     this.btnLoad  = new DevExpress.XtraEditors.SimpleButton();
     this.btnQuery = new DevExpress.XtraEditors.SimpleButton();
     ((System.ComponentModel.ISupportInitialize)(this.HTBaseUIDBRead)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.groupControlDataList)).BeginInit();
     this.groupControlDataList.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.gridControlDetail)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridView1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.drpGridYesOrNo)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.groupControlQuery)).BeginInit();
     this.groupControlQuery.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.txtQVendorNM.Properties)).BeginInit();
     this.SuspendLayout();
     //
     // BaseIlYesOrNo
     //
     this.BaseIlYesOrNo.ImageStream = ((System.Windows.Forms.ImageListStreamer)(resources.GetObject("BaseIlYesOrNo.ImageStream")));
     this.BaseIlYesOrNo.Images.SetKeyName(0, "");
     this.BaseIlYesOrNo.Images.SetKeyName(1, "");
     //
     // BaseIlAll
     //
     this.BaseIlAll.ImageStream = ((System.Windows.Forms.ImageListStreamer)(resources.GetObject("BaseIlAll.ImageStream")));
     this.BaseIlAll.Images.SetKeyName(0, "");
     this.BaseIlAll.Images.SetKeyName(1, "");
     this.BaseIlAll.Images.SetKeyName(2, "");
     this.BaseIlAll.Images.SetKeyName(3, "");
     this.BaseIlAll.Images.SetKeyName(4, "");
     this.BaseIlAll.Images.SetKeyName(5, "");
     this.BaseIlAll.Images.SetKeyName(6, "");
     this.BaseIlAll.Images.SetKeyName(7, "");
     this.BaseIlAll.Images.SetKeyName(8, "");
     this.BaseIlAll.Images.SetKeyName(9, "");
     this.BaseIlAll.Images.SetKeyName(10, "");
     this.BaseIlAll.Images.SetKeyName(11, "");
     this.BaseIlAll.Images.SetKeyName(12, "");
     this.BaseIlAll.Images.SetKeyName(13, "");
     this.BaseIlAll.Images.SetKeyName(14, "");
     this.BaseIlAll.Images.SetKeyName(15, "");
     this.BaseIlAll.Images.SetKeyName(16, "");
     this.BaseIlAll.Images.SetKeyName(17, "");
     this.BaseIlAll.Images.SetKeyName(18, "");
     this.BaseIlAll.Images.SetKeyName(19, "");
     this.BaseIlAll.Images.SetKeyName(20, "");
     this.BaseIlAll.Images.SetKeyName(21, "");
     this.BaseIlAll.Images.SetKeyName(22, "");
     this.BaseIlAll.Images.SetKeyName(23, "");
     this.BaseIlAll.Images.SetKeyName(24, "");
     this.BaseIlAll.Images.SetKeyName(25, "");
     this.BaseIlAll.Images.SetKeyName(26, "");
     this.BaseIlAll.Images.SetKeyName(27, "");
     this.BaseIlAll.Images.SetKeyName(28, "");
     this.BaseIlAll.Images.SetKeyName(29, "");
     this.BaseIlAll.Images.SetKeyName(30, "");
     this.BaseIlAll.Images.SetKeyName(31, "");
     this.BaseIlAll.Images.SetKeyName(32, "");
     this.BaseIlAll.Images.SetKeyName(33, "");
     this.BaseIlAll.Images.SetKeyName(34, "");
     //
     // groupControlDataList
     //
     this.groupControlDataList.AppearanceCaption.ForeColor            = System.Drawing.Color.FromArgb(((int)(((byte)(64)))), ((int)(((byte)(64)))), ((int)(((byte)(64)))));
     this.groupControlDataList.AppearanceCaption.Options.UseForeColor = true;
     this.groupControlDataList.Controls.Add(this.gridControlDetail);
     this.groupControlDataList.Dock     = System.Windows.Forms.DockStyle.Fill;
     this.groupControlDataList.Location = new System.Drawing.Point(0, 59);
     this.groupControlDataList.Name     = "groupControlDataList";
     this.groupControlDataList.Size     = new System.Drawing.Size(520, 387);
     this.groupControlDataList.TabIndex = 15;
     this.groupControlDataList.Text     = "数据列表";
     //
     // gridControlDetail
     //
     this.gridControlDetail.Dock              = System.Windows.Forms.DockStyle.Fill;
     this.gridControlDetail.Location          = new System.Drawing.Point(2, 22);
     this.gridControlDetail.LookAndFeel.Style = DevExpress.LookAndFeel.LookAndFeelStyle.UltraFlat;
     this.gridControlDetail.MainView          = this.gridView1;
     this.gridControlDetail.Name              = "gridControlDetail";
     this.gridControlDetail.RepositoryItems.AddRange(new DevExpress.XtraEditors.Repository.RepositoryItem[] {
         this.drpGridYesOrNo
     });
     this.gridControlDetail.Size     = new System.Drawing.Size(516, 363);
     this.gridControlDetail.TabIndex = 33;
     this.gridControlDetail.ViewCollection.AddRange(new DevExpress.XtraGrid.Views.Base.BaseView[] {
         this.gridView1
     });
     this.gridControlDetail.DoubleClick += new System.EventHandler(this.btnLoad_Click);
     //
     // gridView1
     //
     this.gridView1.BorderStyle          = DevExpress.XtraEditors.Controls.BorderStyles.Office2003;
     this.gridView1.ColumnPanelRowHeight = 22;
     this.gridView1.Columns.AddRange(new DevExpress.XtraGrid.Columns.GridColumn[] {
         this.gridColumnVendorID,
         this.gridColumnVendorAttn,
         this.gridColumnVendorName,
         this.gridColumnVendorTypeID
     });
     this.gridView1.GridControl = this.gridControlDetail;
     this.gridView1.Name        = "gridView1";
     this.gridView1.OptionsSelection.EnableAppearanceFocusedCell = false;
     this.gridView1.OptionsSelection.EnableAppearanceFocusedRow  = false;
     this.gridView1.OptionsView.ColumnAutoWidth = false;
     this.gridView1.OptionsView.ShowGroupPanel  = false;
     this.gridView1.RowHeight     = 22;
     this.gridView1.RowCellStyle += new DevExpress.XtraGrid.Views.Grid.RowCellStyleEventHandler(this.gridView1_RowCellStyle);
     this.gridView1.DoubleClick  += new System.EventHandler(this.btnLoad_Click);
     //
     // gridColumnVendorID
     //
     this.gridColumnVendorID.Caption      = "编号";
     this.gridColumnVendorID.FieldName    = "VendorID";
     this.gridColumnVendorID.Name         = "gridColumnVendorID";
     this.gridColumnVendorID.Visible      = true;
     this.gridColumnVendorID.VisibleIndex = 0;
     this.gridColumnVendorID.Width        = 84;
     //
     // gridColumnVendorAttn
     //
     this.gridColumnVendorAttn.Caption      = "简称";
     this.gridColumnVendorAttn.FieldName    = "VendorAttn";
     this.gridColumnVendorAttn.Name         = "gridColumnVendorAttn";
     this.gridColumnVendorAttn.Visible      = true;
     this.gridColumnVendorAttn.VisibleIndex = 1;
     this.gridColumnVendorAttn.Width        = 123;
     //
     // gridColumnVendorName
     //
     this.gridColumnVendorName.Caption      = "名称";
     this.gridColumnVendorName.FieldName    = "VendorName";
     this.gridColumnVendorName.Name         = "gridColumnVendorName";
     this.gridColumnVendorName.Visible      = true;
     this.gridColumnVendorName.VisibleIndex = 2;
     this.gridColumnVendorName.Width        = 279;
     //
     // gridColumnVendorTypeID
     //
     this.gridColumnVendorTypeID.Caption   = "单位类型";
     this.gridColumnVendorTypeID.FieldName = "VendorTypeID";
     this.gridColumnVendorTypeID.Name      = "gridColumnVendorTypeID";
     //
     // drpGridYesOrNo
     //
     this.drpGridYesOrNo.AutoHeight = false;
     this.drpGridYesOrNo.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
         new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)
     });
     this.drpGridYesOrNo.GlyphAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.drpGridYesOrNo.Items.AddRange(new DevExpress.XtraEditors.Controls.ImageComboBoxItem[] {
         new DevExpress.XtraEditors.Controls.ImageComboBoxItem("是", 1, 1),
         new DevExpress.XtraEditors.Controls.ImageComboBoxItem("否", 0, 0)
     });
     this.drpGridYesOrNo.Name        = "drpGridYesOrNo";
     this.drpGridYesOrNo.SmallImages = this.BaseIlYesOrNo;
     //
     // groupControlQuery
     //
     this.groupControlQuery.AppearanceCaption.ForeColor            = System.Drawing.Color.FromArgb(((int)(((byte)(64)))), ((int)(((byte)(64)))), ((int)(((byte)(64)))));
     this.groupControlQuery.AppearanceCaption.Options.UseForeColor = true;
     this.groupControlQuery.Controls.Add(this.txtQVendorNM);
     this.groupControlQuery.Controls.Add(this.label1);
     this.groupControlQuery.Controls.Add(this.btnLoad);
     this.groupControlQuery.Controls.Add(this.btnQuery);
     this.groupControlQuery.Dock     = System.Windows.Forms.DockStyle.Top;
     this.groupControlQuery.Location = new System.Drawing.Point(0, 0);
     this.groupControlQuery.Name     = "groupControlQuery";
     this.groupControlQuery.Size     = new System.Drawing.Size(520, 59);
     this.groupControlQuery.TabIndex = 14;
     this.groupControlQuery.Text     = "查询";
     //
     // txtQVendorNM
     //
     this.txtQVendorNM.EditValue = "";
     this.txtQVendorNM.Location  = new System.Drawing.Point(74, 28);
     this.txtQVendorNM.Name      = "txtQVendorNM";
     this.txtQVendorNM.Properties.BorderStyle = DevExpress.XtraEditors.Controls.BorderStyles.Style3D;
     this.txtQVendorNM.Size              = new System.Drawing.Size(240, 22);
     this.txtQVendorNM.TabIndex          = 3;
     this.txtQVendorNM.EditValueChanged += new System.EventHandler(this.txtQVendorNM_EditValueChanged);
     this.txtQVendorNM.KeyDown          += new System.Windows.Forms.KeyEventHandler(this.txtQVendorNM_KeyDown);
     //
     // label1
     //
     this.label1.AutoSize = true;
     this.label1.Location = new System.Drawing.Point(11, 33);
     this.label1.Name     = "label1";
     this.label1.Size     = new System.Drawing.Size(53, 12);
     this.label1.TabIndex = 40;
     this.label1.Text     = "单位名称";
     this.label1.Click   += new System.EventHandler(this.label1_Click);
     //
     // btnLoad
     //
     this.btnLoad.ButtonStyle = DevExpress.XtraEditors.Controls.BorderStyles.Office2003;
     this.btnLoad.Location    = new System.Drawing.Point(424, 28);
     this.btnLoad.Name        = "btnLoad";
     this.btnLoad.Size        = new System.Drawing.Size(75, 23);
     this.btnLoad.TabIndex    = 5;
     this.btnLoad.Text        = "加载";
     this.btnLoad.Click      += new System.EventHandler(this.btnLoad_Click);
     //
     // btnQuery
     //
     this.btnQuery.ButtonStyle = DevExpress.XtraEditors.Controls.BorderStyles.Office2003;
     this.btnQuery.Location    = new System.Drawing.Point(320, 28);
     this.btnQuery.Name        = "btnQuery";
     this.btnQuery.Size        = new System.Drawing.Size(75, 23);
     this.btnQuery.TabIndex    = 4;
     this.btnQuery.Text        = "查询";
     this.btnQuery.Click      += new System.EventHandler(this.btnQuery_Click);
     //
     // frmVendorQuery
     //
     this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 12F);
     this.ClientSize          = new System.Drawing.Size(520, 446);
     this.Controls.Add(this.groupControlDataList);
     this.Controls.Add(this.groupControlQuery);
     this.ImeMode        = System.Windows.Forms.ImeMode.On;
     this.MDISubShowFlag = true;
     this.Name           = "frmVendorQuery";
     this.Text           = "查询";
     this.Load          += new System.EventHandler(this.frmVendorQuery_Load);
     this.Controls.SetChildIndex(this.groupControlQuery, 0);
     this.Controls.SetChildIndex(this.groupControlDataList, 0);
     this.Controls.SetChildIndex(this.BaseFocusLabelTemp, 0);
     ((System.ComponentModel.ISupportInitialize)(this.HTBaseUIDBRead)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.groupControlDataList)).EndInit();
     this.groupControlDataList.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.gridControlDetail)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridView1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.drpGridYesOrNo)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.groupControlQuery)).EndInit();
     this.groupControlQuery.ResumeLayout(false);
     this.groupControlQuery.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(this.txtQVendorNM.Properties)).EndInit();
     this.ResumeLayout(false);
 }
Пример #24
0
 /// <summary>
 /// Required method for Designer support - do not modify
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     this.panelControl2            = new DevExpress.XtraEditors.PanelControl();
     this.sbtnCancel               = new DevExpress.XtraEditors.SimpleButton();
     this.sbtnOK                   = new DevExpress.XtraEditors.SimpleButton();
     this.groupControl1            = new DevExpress.XtraEditors.GroupControl();
     this.gridControl1             = new DevExpress.XtraGrid.GridControl();
     this.gridView1                = new DevExpress.XtraGrid.Views.Grid.GridView();
     this.gridColumn1              = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn2              = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn3              = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn4              = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn5              = new DevExpress.XtraGrid.Columns.GridColumn();
     this.repositoryItemCheckEdit1 = new DevExpress.XtraEditors.Repository.RepositoryItemCheckEdit();
     this.repositoryItemCheckEdit2 = new DevExpress.XtraEditors.Repository.RepositoryItemCheckEdit();
     this.repositoryItemCheckEdit3 = new DevExpress.XtraEditors.Repository.RepositoryItemCheckEdit();
     this.repositoryItemCheckEdit4 = new DevExpress.XtraEditors.Repository.RepositoryItemCheckEdit();
     this.repositoryItemCheckEdit5 = new DevExpress.XtraEditors.Repository.RepositoryItemCheckEdit();
     this.repositoryItemCheckEdit6 = new DevExpress.XtraEditors.Repository.RepositoryItemCheckEdit();
     this.repositoryItemCheckEdit7 = new DevExpress.XtraEditors.Repository.RepositoryItemCheckEdit();
     this.panelControl1            = new DevExpress.XtraEditors.PanelControl();
     this.label1                   = new System.Windows.Forms.Label();
     this.sbtnSearch               = new DevExpress.XtraEditors.SimpleButton();
     this.txtSearchKey             = new DevExpress.XtraEditors.TextEdit();
     ((System.ComponentModel.ISupportInitialize)(this.panelControl2)).BeginInit();
     this.panelControl2.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.groupControl1)).BeginInit();
     this.groupControl1.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.gridControl1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridView1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemCheckEdit1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemCheckEdit2)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemCheckEdit3)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemCheckEdit4)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemCheckEdit5)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemCheckEdit6)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemCheckEdit7)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.panelControl1)).BeginInit();
     this.panelControl1.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.txtSearchKey.Properties)).BeginInit();
     this.SuspendLayout();
     //
     // panelControl2
     //
     this.panelControl2.Controls.Add(this.sbtnCancel);
     this.panelControl2.Controls.Add(this.sbtnOK);
     this.panelControl2.Dock     = System.Windows.Forms.DockStyle.Bottom;
     this.panelControl2.Location = new System.Drawing.Point(0, 463);
     this.panelControl2.Name     = "panelControl2";
     this.panelControl2.Size     = new System.Drawing.Size(936, 38);
     this.panelControl2.TabIndex = 3;
     this.panelControl2.Text     = "panelControl2";
     //
     // sbtnCancel
     //
     this.sbtnCancel.Anchor       = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
     this.sbtnCancel.DialogResult = System.Windows.Forms.DialogResult.Cancel;
     this.sbtnCancel.Location     = new System.Drawing.Point(854, 8);
     this.sbtnCancel.Name         = "sbtnCancel";
     this.sbtnCancel.TabIndex     = 1;
     this.sbtnCancel.Text         = "Cancel";
     this.sbtnCancel.Click       += new System.EventHandler(this.sbtnCancel_Click);
     //
     // sbtnOK
     //
     this.sbtnOK.Anchor   = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
     this.sbtnOK.Location = new System.Drawing.Point(770, 8);
     this.sbtnOK.Name     = "sbtnOK";
     this.sbtnOK.TabIndex = 0;
     this.sbtnOK.Text     = "OK";
     this.sbtnOK.Click   += new System.EventHandler(this.sbtnOK_Click);
     //
     // groupControl1
     //
     this.groupControl1.Controls.Add(this.gridControl1);
     this.groupControl1.Location = new System.Drawing.Point(0, 40);
     this.groupControl1.LookAndFeel.UseDefaultLookAndFeel = false;
     this.groupControl1.Name     = "groupControl1";
     this.groupControl1.Size     = new System.Drawing.Size(936, 424);
     this.groupControl1.TabIndex = 4;
     //
     // gridControl1
     //
     this.gridControl1.Dock = System.Windows.Forms.DockStyle.Fill;
     //
     // gridControl1.EmbeddedNavigator
     //
     this.gridControl1.EmbeddedNavigator.Name = "";
     this.gridControl1.Location = new System.Drawing.Point(4, 18);
     this.gridControl1.MainView = this.gridView1;
     this.gridControl1.Name     = "gridControl1";
     this.gridControl1.RepositoryItems.AddRange(new DevExpress.XtraEditors.Repository.RepositoryItem[] {
         this.repositoryItemCheckEdit1,
         this.repositoryItemCheckEdit2,
         this.repositoryItemCheckEdit3,
         this.repositoryItemCheckEdit4,
         this.repositoryItemCheckEdit5,
         this.repositoryItemCheckEdit6,
         this.repositoryItemCheckEdit7
     });
     this.gridControl1.Size     = new System.Drawing.Size(928, 402);
     this.gridControl1.TabIndex = 2;
     this.gridControl1.ViewCollection.AddRange(new DevExpress.XtraGrid.Views.Base.BaseView[] {
         this.gridView1
     });
     //
     // gridView1
     //
     this.gridView1.Appearance.ColumnFilterButton.BackColor                    = System.Drawing.Color.FromArgb(((System.Byte)(236)), ((System.Byte)(232)), ((System.Byte)(201)));
     this.gridView1.Appearance.ColumnFilterButton.BorderColor                  = System.Drawing.Color.FromArgb(((System.Byte)(236)), ((System.Byte)(232)), ((System.Byte)(201)));
     this.gridView1.Appearance.ColumnFilterButton.ForeColor                    = System.Drawing.Color.Black;
     this.gridView1.Appearance.ColumnFilterButton.Options.UseBackColor         = true;
     this.gridView1.Appearance.ColumnFilterButton.Options.UseBorderColor       = true;
     this.gridView1.Appearance.ColumnFilterButton.Options.UseForeColor         = true;
     this.gridView1.Appearance.ColumnFilterButtonActive.BackColor              = System.Drawing.Color.FromArgb(((System.Byte)(221)), ((System.Byte)(231)), ((System.Byte)(234)));
     this.gridView1.Appearance.ColumnFilterButtonActive.BorderColor            = System.Drawing.Color.FromArgb(((System.Byte)(221)), ((System.Byte)(231)), ((System.Byte)(234)));
     this.gridView1.Appearance.ColumnFilterButtonActive.ForeColor              = System.Drawing.Color.Black;
     this.gridView1.Appearance.ColumnFilterButtonActive.Options.UseBackColor   = true;
     this.gridView1.Appearance.ColumnFilterButtonActive.Options.UseBorderColor = true;
     this.gridView1.Appearance.ColumnFilterButtonActive.Options.UseForeColor   = true;
     this.gridView1.Appearance.Empty.BackColor                          = System.Drawing.Color.FromArgb(((System.Byte)(236)), ((System.Byte)(232)), ((System.Byte)(201)));
     this.gridView1.Appearance.Empty.BackColor2                         = System.Drawing.Color.White;
     this.gridView1.Appearance.Empty.Options.UseBackColor               = true;
     this.gridView1.Appearance.EvenRow.BackColor                        = System.Drawing.Color.FromArgb(((System.Byte)(221)), ((System.Byte)(231)), ((System.Byte)(234)));
     this.gridView1.Appearance.EvenRow.BorderColor                      = System.Drawing.Color.FromArgb(((System.Byte)(221)), ((System.Byte)(231)), ((System.Byte)(234)));
     this.gridView1.Appearance.EvenRow.ForeColor                        = System.Drawing.Color.Black;
     this.gridView1.Appearance.EvenRow.Options.UseBackColor             = true;
     this.gridView1.Appearance.EvenRow.Options.UseBorderColor           = true;
     this.gridView1.Appearance.EvenRow.Options.UseForeColor             = true;
     this.gridView1.Appearance.FilterCloseButton.BackColor              = System.Drawing.Color.FromArgb(((System.Byte)(216)), ((System.Byte)(209)), ((System.Byte)(179)));
     this.gridView1.Appearance.FilterCloseButton.BorderColor            = System.Drawing.Color.FromArgb(((System.Byte)(216)), ((System.Byte)(209)), ((System.Byte)(179)));
     this.gridView1.Appearance.FilterCloseButton.ForeColor              = System.Drawing.Color.Black;
     this.gridView1.Appearance.FilterCloseButton.Options.UseBackColor   = true;
     this.gridView1.Appearance.FilterCloseButton.Options.UseBorderColor = true;
     this.gridView1.Appearance.FilterCloseButton.Options.UseForeColor   = true;
     this.gridView1.Appearance.FilterPanel.BackColor                    = System.Drawing.Color.FromArgb(((System.Byte)(236)), ((System.Byte)(232)), ((System.Byte)(201)));
     this.gridView1.Appearance.FilterPanel.BackColor2                   = System.Drawing.Color.White;
     this.gridView1.Appearance.FilterPanel.ForeColor                    = System.Drawing.Color.Black;
     this.gridView1.Appearance.FilterPanel.Options.UseBackColor         = true;
     this.gridView1.Appearance.FilterPanel.Options.UseForeColor         = true;
     this.gridView1.Appearance.FixedLine.BackColor                      = System.Drawing.Color.FromArgb(((System.Byte)(122)), ((System.Byte)(114)), ((System.Byte)(113)));
     this.gridView1.Appearance.FixedLine.Options.UseBackColor           = true;
     this.gridView1.Appearance.FocusedCell.BackColor                    = System.Drawing.Color.White;
     this.gridView1.Appearance.FocusedCell.ForeColor                    = System.Drawing.Color.Black;
     this.gridView1.Appearance.FocusedCell.Options.UseBackColor         = true;
     this.gridView1.Appearance.FocusedCell.Options.UseForeColor         = true;
     this.gridView1.Appearance.FocusedRow.BackColor                     = System.Drawing.Color.FromArgb(((System.Byte)(200)), ((System.Byte)(192)), ((System.Byte)(157)));
     this.gridView1.Appearance.FocusedRow.BorderColor                   = System.Drawing.Color.FromArgb(((System.Byte)(226)), ((System.Byte)(219)), ((System.Byte)(188)));
     this.gridView1.Appearance.FocusedRow.ForeColor                     = System.Drawing.Color.Black;
     this.gridView1.Appearance.FocusedRow.Options.UseBackColor          = true;
     this.gridView1.Appearance.FocusedRow.Options.UseBorderColor        = true;
     this.gridView1.Appearance.FocusedRow.Options.UseForeColor          = true;
     this.gridView1.Appearance.FooterPanel.BackColor                    = System.Drawing.Color.FromArgb(((System.Byte)(216)), ((System.Byte)(209)), ((System.Byte)(170)));
     this.gridView1.Appearance.FooterPanel.BorderColor                  = System.Drawing.Color.FromArgb(((System.Byte)(216)), ((System.Byte)(209)), ((System.Byte)(170)));
     this.gridView1.Appearance.FooterPanel.ForeColor                    = System.Drawing.Color.Black;
     this.gridView1.Appearance.FooterPanel.Options.UseBackColor         = true;
     this.gridView1.Appearance.FooterPanel.Options.UseBorderColor       = true;
     this.gridView1.Appearance.FooterPanel.Options.UseForeColor         = true;
     this.gridView1.Appearance.GroupButton.BackColor                    = System.Drawing.Color.FromArgb(((System.Byte)(216)), ((System.Byte)(209)), ((System.Byte)(179)));
     this.gridView1.Appearance.GroupButton.BorderColor                  = System.Drawing.Color.FromArgb(((System.Byte)(216)), ((System.Byte)(209)), ((System.Byte)(179)));
     this.gridView1.Appearance.GroupButton.Options.UseBackColor         = true;
     this.gridView1.Appearance.GroupButton.Options.UseBorderColor       = true;
     this.gridView1.Appearance.GroupFooter.BackColor                    = System.Drawing.Color.FromArgb(((System.Byte)(236)), ((System.Byte)(232)), ((System.Byte)(201)));
     this.gridView1.Appearance.GroupFooter.BorderColor                  = System.Drawing.Color.FromArgb(((System.Byte)(236)), ((System.Byte)(232)), ((System.Byte)(201)));
     this.gridView1.Appearance.GroupFooter.ForeColor                    = System.Drawing.Color.Black;
     this.gridView1.Appearance.GroupFooter.Options.UseBackColor         = true;
     this.gridView1.Appearance.GroupFooter.Options.UseBorderColor       = true;
     this.gridView1.Appearance.GroupFooter.Options.UseForeColor         = true;
     this.gridView1.Appearance.GroupPanel.BackColor                     = System.Drawing.Color.FromArgb(((System.Byte)(246)), ((System.Byte)(242)), ((System.Byte)(213)));
     this.gridView1.Appearance.GroupPanel.BackColor2                    = System.Drawing.Color.White;
     this.gridView1.Appearance.GroupPanel.ForeColor                     = System.Drawing.Color.Black;
     this.gridView1.Appearance.GroupPanel.Options.UseBackColor          = true;
     this.gridView1.Appearance.GroupPanel.Options.UseForeColor          = true;
     this.gridView1.Appearance.GroupRow.BackColor                       = System.Drawing.Color.FromArgb(((System.Byte)(236)), ((System.Byte)(232)), ((System.Byte)(201)));
     this.gridView1.Appearance.GroupRow.BorderColor                     = System.Drawing.Color.FromArgb(((System.Byte)(236)), ((System.Byte)(232)), ((System.Byte)(201)));
     this.gridView1.Appearance.GroupRow.ForeColor                       = System.Drawing.Color.Black;
     this.gridView1.Appearance.GroupRow.Options.UseBackColor            = true;
     this.gridView1.Appearance.GroupRow.Options.UseBorderColor          = true;
     this.gridView1.Appearance.GroupRow.Options.UseForeColor            = true;
     this.gridView1.Appearance.HeaderPanel.BackColor                    = System.Drawing.Color.FromArgb(((System.Byte)(216)), ((System.Byte)(209)), ((System.Byte)(170)));
     this.gridView1.Appearance.HeaderPanel.BorderColor                  = System.Drawing.Color.FromArgb(((System.Byte)(216)), ((System.Byte)(209)), ((System.Byte)(170)));
     this.gridView1.Appearance.HeaderPanel.ForeColor                    = System.Drawing.Color.Black;
     this.gridView1.Appearance.HeaderPanel.Options.UseBackColor         = true;
     this.gridView1.Appearance.HeaderPanel.Options.UseBorderColor       = true;
     this.gridView1.Appearance.HeaderPanel.Options.UseForeColor         = true;
     this.gridView1.Appearance.HideSelectionRow.BackColor               = System.Drawing.Color.FromArgb(((System.Byte)(237)), ((System.Byte)(230)), ((System.Byte)(203)));
     this.gridView1.Appearance.HideSelectionRow.BorderColor             = System.Drawing.Color.FromArgb(((System.Byte)(237)), ((System.Byte)(230)), ((System.Byte)(203)));
     this.gridView1.Appearance.HideSelectionRow.ForeColor               = System.Drawing.Color.Black;
     this.gridView1.Appearance.HideSelectionRow.Options.UseBackColor    = true;
     this.gridView1.Appearance.HideSelectionRow.Options.UseBorderColor  = true;
     this.gridView1.Appearance.HideSelectionRow.Options.UseForeColor    = true;
     this.gridView1.Appearance.HorzLine.BackColor                       = System.Drawing.Color.FromArgb(((System.Byte)(216)), ((System.Byte)(209)), ((System.Byte)(170)));
     this.gridView1.Appearance.HorzLine.Options.UseBackColor            = true;
     this.gridView1.Appearance.OddRow.BackColor                         = System.Drawing.Color.FromArgb(((System.Byte)(242)), ((System.Byte)(244)), ((System.Byte)(236)));
     this.gridView1.Appearance.OddRow.BorderColor                       = System.Drawing.Color.FromArgb(((System.Byte)(242)), ((System.Byte)(244)), ((System.Byte)(236)));
     this.gridView1.Appearance.OddRow.ForeColor                         = System.Drawing.Color.Black;
     this.gridView1.Appearance.OddRow.Options.UseBackColor              = true;
     this.gridView1.Appearance.OddRow.Options.UseBorderColor            = true;
     this.gridView1.Appearance.OddRow.Options.UseForeColor              = true;
     this.gridView1.Appearance.Preview.BackColor                        = System.Drawing.Color.FromArgb(((System.Byte)(251)), ((System.Byte)(252)), ((System.Byte)(247)));
     this.gridView1.Appearance.Preview.Font                       = new System.Drawing.Font("Verdana", 7.5F);
     this.gridView1.Appearance.Preview.ForeColor                  = System.Drawing.Color.FromArgb(((System.Byte)(148)), ((System.Byte)(148)), ((System.Byte)(148)));
     this.gridView1.Appearance.Preview.Options.UseBackColor       = true;
     this.gridView1.Appearance.Preview.Options.UseFont            = true;
     this.gridView1.Appearance.Preview.Options.UseForeColor       = true;
     this.gridView1.Appearance.Row.BackColor                      = System.Drawing.Color.FromArgb(((System.Byte)(242)), ((System.Byte)(244)), ((System.Byte)(236)));
     this.gridView1.Appearance.Row.ForeColor                      = System.Drawing.Color.Black;
     this.gridView1.Appearance.Row.Options.UseBackColor           = true;
     this.gridView1.Appearance.Row.Options.UseForeColor           = true;
     this.gridView1.Appearance.RowSeparator.BackColor             = System.Drawing.Color.FromArgb(((System.Byte)(236)), ((System.Byte)(232)), ((System.Byte)(201)));
     this.gridView1.Appearance.RowSeparator.BackColor2            = System.Drawing.Color.White;
     this.gridView1.Appearance.RowSeparator.Options.UseBackColor  = true;
     this.gridView1.Appearance.SelectedRow.BackColor              = System.Drawing.Color.FromArgb(((System.Byte)(221)), ((System.Byte)(215)), ((System.Byte)(188)));
     this.gridView1.Appearance.SelectedRow.BorderColor            = System.Drawing.Color.FromArgb(((System.Byte)(237)), ((System.Byte)(230)), ((System.Byte)(203)));
     this.gridView1.Appearance.SelectedRow.ForeColor              = System.Drawing.Color.Black;
     this.gridView1.Appearance.SelectedRow.Options.UseBackColor   = true;
     this.gridView1.Appearance.SelectedRow.Options.UseBorderColor = true;
     this.gridView1.Appearance.SelectedRow.Options.UseForeColor   = true;
     this.gridView1.Appearance.TopNewRow.BackColor                = System.Drawing.Color.White;
     this.gridView1.Appearance.TopNewRow.Options.UseBackColor     = true;
     this.gridView1.Appearance.VertLine.BackColor                 = System.Drawing.Color.FromArgb(((System.Byte)(216)), ((System.Byte)(209)), ((System.Byte)(170)));
     this.gridView1.Appearance.VertLine.Options.UseBackColor      = true;
     this.gridView1.Columns.AddRange(new DevExpress.XtraGrid.Columns.GridColumn[] {
         this.gridColumn1,
         this.gridColumn2,
         this.gridColumn3,
         this.gridColumn4,
         this.gridColumn5
     });
     this.gridView1.GridControl = this.gridControl1;
     this.gridView1.Name        = "gridView1";
     this.gridView1.OptionsBehavior.AllowIncrementalSearch = true;
     this.gridView1.OptionsBehavior.Editable = false;
     this.gridView1.OptionsCustomization.AllowColumnMoving = false;
     this.gridView1.OptionsCustomization.AllowFilter       = false;
     this.gridView1.OptionsView.EnableAppearanceEvenRow    = true;
     this.gridView1.OptionsView.EnableAppearanceOddRow     = true;
     this.gridView1.OptionsView.ShowGroupPanel             = false;
     this.gridView1.DoubleClick += new System.EventHandler(this.gridView1_DoubleClick);
     //
     // gridColumn1
     //
     this.gridColumn1.Caption      = "Employee Id";
     this.gridColumn1.FieldName    = "nEmployeeID";
     this.gridColumn1.Name         = "gridColumn1";
     this.gridColumn1.Visible      = true;
     this.gridColumn1.VisibleIndex = 0;
     //
     // gridColumn2
     //
     this.gridColumn2.Caption      = "Employee Name";
     this.gridColumn2.FieldName    = "strEmployeeName";
     this.gridColumn2.Name         = "gridColumn2";
     this.gridColumn2.Visible      = true;
     this.gridColumn2.VisibleIndex = 1;
     //
     // gridColumn3
     //
     this.gridColumn3.Caption      = "Job Position";
     this.gridColumn3.FieldName    = "strJobPositionCode";
     this.gridColumn3.Name         = "gridColumn3";
     this.gridColumn3.Visible      = true;
     this.gridColumn3.VisibleIndex = 2;
     //
     // gridColumn4
     //
     this.gridColumn4.Caption      = "Branch";
     this.gridColumn4.FieldName    = "strBranchCode";
     this.gridColumn4.Name         = "gridColumn4";
     this.gridColumn4.Visible      = true;
     this.gridColumn4.VisibleIndex = 3;
     //
     // gridColumn5
     //
     this.gridColumn5.Caption = "Start Date";
     this.gridColumn5.DisplayFormat.FormatString = "{0:dd/MM/yyyy}";
     this.gridColumn5.DisplayFormat.FormatType   = DevExpress.Utils.FormatType.DateTime;
     this.gridColumn5.FieldName    = "dtEmployeeStartDate";
     this.gridColumn5.Name         = "gridColumn5";
     this.gridColumn5.Visible      = true;
     this.gridColumn5.VisibleIndex = 4;
     //
     // repositoryItemCheckEdit1
     //
     this.repositoryItemCheckEdit1.AutoHeight = false;
     this.repositoryItemCheckEdit1.Name       = "repositoryItemCheckEdit1";
     this.repositoryItemCheckEdit1.NullStyle  = DevExpress.XtraEditors.Controls.StyleIndeterminate.Unchecked;
     //
     // repositoryItemCheckEdit2
     //
     this.repositoryItemCheckEdit2.AutoHeight = false;
     this.repositoryItemCheckEdit2.Name       = "repositoryItemCheckEdit2";
     this.repositoryItemCheckEdit2.NullStyle  = DevExpress.XtraEditors.Controls.StyleIndeterminate.Unchecked;
     //
     // repositoryItemCheckEdit3
     //
     this.repositoryItemCheckEdit3.AutoHeight = false;
     this.repositoryItemCheckEdit3.Name       = "repositoryItemCheckEdit3";
     this.repositoryItemCheckEdit3.NullStyle  = DevExpress.XtraEditors.Controls.StyleIndeterminate.Unchecked;
     //
     // repositoryItemCheckEdit4
     //
     this.repositoryItemCheckEdit4.AutoHeight = false;
     this.repositoryItemCheckEdit4.Name       = "repositoryItemCheckEdit4";
     this.repositoryItemCheckEdit4.NullStyle  = DevExpress.XtraEditors.Controls.StyleIndeterminate.Unchecked;
     //
     // repositoryItemCheckEdit5
     //
     this.repositoryItemCheckEdit5.AutoHeight = false;
     this.repositoryItemCheckEdit5.Name       = "repositoryItemCheckEdit5";
     this.repositoryItemCheckEdit5.NullStyle  = DevExpress.XtraEditors.Controls.StyleIndeterminate.Unchecked;
     //
     // repositoryItemCheckEdit6
     //
     this.repositoryItemCheckEdit6.AutoHeight = false;
     this.repositoryItemCheckEdit6.Name       = "repositoryItemCheckEdit6";
     this.repositoryItemCheckEdit6.NullStyle  = DevExpress.XtraEditors.Controls.StyleIndeterminate.Unchecked;
     //
     // repositoryItemCheckEdit7
     //
     this.repositoryItemCheckEdit7.AutoHeight = false;
     this.repositoryItemCheckEdit7.Name       = "repositoryItemCheckEdit7";
     this.repositoryItemCheckEdit7.NullStyle  = DevExpress.XtraEditors.Controls.StyleIndeterminate.Unchecked;
     //
     // panelControl1
     //
     this.panelControl1.Controls.Add(this.label1);
     this.panelControl1.Controls.Add(this.sbtnSearch);
     this.panelControl1.Controls.Add(this.txtSearchKey);
     this.panelControl1.Dock     = System.Windows.Forms.DockStyle.Top;
     this.panelControl1.Location = new System.Drawing.Point(0, 0);
     this.panelControl1.Name     = "panelControl1";
     this.panelControl1.Size     = new System.Drawing.Size(936, 48);
     this.panelControl1.TabIndex = 5;
     this.panelControl1.Text     = "panelControl1";
     //
     // label1
     //
     this.label1.Font     = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((System.Byte)(134)));
     this.label1.Location = new System.Drawing.Point(16, 16);
     this.label1.Name     = "label1";
     this.label1.Size     = new System.Drawing.Size(120, 23);
     this.label1.TabIndex = 2;
     this.label1.Text     = "Employee Id / Name";
     //
     // sbtnSearch
     //
     this.sbtnSearch.Location = new System.Drawing.Point(296, 16);
     this.sbtnSearch.Name     = "sbtnSearch";
     this.sbtnSearch.TabIndex = 1;
     this.sbtnSearch.Text     = "Search";
     this.sbtnSearch.Click   += new System.EventHandler(this.sbtnSearch_Click);
     //
     // txtSearchKey
     //
     this.txtSearchKey.EditValue = "";
     this.txtSearchKey.Location  = new System.Drawing.Point(144, 16);
     this.txtSearchKey.Name      = "txtSearchKey";
     this.txtSearchKey.Size      = new System.Drawing.Size(146, 20);
     this.txtSearchKey.TabIndex  = 0;
     //
     // frmSearchEmployee
     //
     this.AutoScaleBaseSize = new System.Drawing.Size(5, 13);
     this.ClientSize        = new System.Drawing.Size(936, 501);
     this.Controls.Add(this.panelControl1);
     this.Controls.Add(this.groupControl1);
     this.Controls.Add(this.panelControl2);
     this.Name  = "frmSearchEmployee";
     this.Text  = "Search Employee";
     this.Load += new System.EventHandler(this.frmSearchEmployee_Load);
     ((System.ComponentModel.ISupportInitialize)(this.panelControl2)).EndInit();
     this.panelControl2.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.groupControl1)).EndInit();
     this.groupControl1.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.gridControl1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridView1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemCheckEdit1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemCheckEdit2)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemCheckEdit3)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemCheckEdit4)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemCheckEdit5)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemCheckEdit6)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemCheckEdit7)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.panelControl1)).EndInit();
     this.panelControl1.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.txtSearchKey.Properties)).EndInit();
     this.ResumeLayout(false);
 }
Пример #25
0
 /// <summary>
 /// Required method for Designer support - do not modify
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     this.label1 = new System.Windows.Forms.Label();
     this.cmbBranch = new DevExpress.XtraEditors.ImageComboBoxEdit();
     this.groupControl1 = new DevExpress.XtraEditors.GroupControl();
     this.panelSun = new System.Windows.Forms.Panel();
     this.panelMonday = new System.Windows.Forms.Panel();
     this.lblMon = new System.Windows.Forms.Label();
     this.txtMonday = new System.Windows.Forms.Label();
     this.panel4 = new System.Windows.Forms.Panel();
     this.lblTUE = new System.Windows.Forms.Label();
     this.txtTUE = new System.Windows.Forms.Label();
     this.panelFriday = new System.Windows.Forms.Panel();
     this.lblFRI = new System.Windows.Forms.Label();
     this.txtFriday = new System.Windows.Forms.Label();
     this.panelSat = new System.Windows.Forms.Panel();
     this.panelFri = new System.Windows.Forms.Panel();
     this.panelThu = new System.Windows.Forms.Panel();
     this.panelWed = new System.Windows.Forms.Panel();
     this.panelTue = new System.Windows.Forms.Panel();
     this.panelMon = new System.Windows.Forms.Panel();
     this.panelWednesday = new System.Windows.Forms.Panel();
     this.lblWED = new System.Windows.Forms.Label();
     this.txtWED = new System.Windows.Forms.Label();
     this.panelThursday = new System.Windows.Forms.Panel();
     this.lblThu = new System.Windows.Forms.Label();
     this.txtThur = new System.Windows.Forms.Label();
     this.panelSaturday = new System.Windows.Forms.Panel();
     this.lblSAT = new System.Windows.Forms.Label();
     this.txtSAT = new System.Windows.Forms.Label();
     this.panelSunday = new System.Windows.Forms.Panel();
     this.lblSUN = new System.Windows.Forms.Label();
     this.txtSunday = new System.Windows.Forms.Label();
     this.btnNextWeek = new DevExpress.XtraEditors.SimpleButton();
     this.btnPastWeek = new DevExpress.XtraEditors.SimpleButton();
     this.groupBox1 = new System.Windows.Forms.GroupBox();
     this.dtClassDate = new System.Windows.Forms.MonthCalendar();
     ((System.ComponentModel.ISupportInitialize)(this.cmbBranch.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.groupControl1)).BeginInit();
     this.groupControl1.SuspendLayout();
     this.panelMonday.SuspendLayout();
     this.panel4.SuspendLayout();
     this.panelFriday.SuspendLayout();
     this.panelWednesday.SuspendLayout();
     this.panelThursday.SuspendLayout();
     this.panelSaturday.SuspendLayout();
     this.panelSunday.SuspendLayout();
     this.groupBox1.SuspendLayout();
     this.SuspendLayout();
     //
     // label1
     //
     this.label1.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.5F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
     this.label1.Location = new System.Drawing.Point(16, 93);
     this.label1.Name = "label1";
     this.label1.Size = new System.Drawing.Size(56, 40);
     this.label1.TabIndex = 52;
     this.label1.Text = "Branch";
     this.label1.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
     //
     // cmbBranch
     //
     this.cmbBranch.Location = new System.Drawing.Point(80, 104);
     this.cmbBranch.Name = "cmbBranch";
     this.cmbBranch.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.cmbBranch.Size = new System.Drawing.Size(176, 20);
     this.cmbBranch.TabIndex = 51;
     this.cmbBranch.SelectedValueChanged += new System.EventHandler(this.cmbBranch_SelectedValueChanged);
     //
     // groupControl1
     //
     this.groupControl1.Appearance.BackColor = System.Drawing.Color.Transparent;
     this.groupControl1.Appearance.Options.UseBackColor = true;
     this.groupControl1.BorderStyle = DevExpress.XtraEditors.Controls.BorderStyles.NoBorder;
     this.groupControl1.Controls.Add(this.panelSun);
     this.groupControl1.Controls.Add(this.panelMonday);
     this.groupControl1.Controls.Add(this.panel4);
     this.groupControl1.Controls.Add(this.panelFriday);
     this.groupControl1.Controls.Add(this.panelSat);
     this.groupControl1.Controls.Add(this.panelFri);
     this.groupControl1.Controls.Add(this.panelThu);
     this.groupControl1.Controls.Add(this.panelWed);
     this.groupControl1.Controls.Add(this.panelTue);
     this.groupControl1.Controls.Add(this.panelMon);
     this.groupControl1.Controls.Add(this.panelWednesday);
     this.groupControl1.Controls.Add(this.panelThursday);
     this.groupControl1.Controls.Add(this.panelSaturday);
     this.groupControl1.Controls.Add(this.panelSunday);
     this.groupControl1.Location = new System.Drawing.Point(0, 120);
     this.groupControl1.LookAndFeel.UseDefaultLookAndFeel = false;
     this.groupControl1.Name = "groupControl1";
     this.groupControl1.ShowCaption = false;
     this.groupControl1.Size = new System.Drawing.Size(912, 568);
     this.groupControl1.TabIndex = 32;
     //
     // panelSun
     //
     this.panelSun.BackColor = System.Drawing.Color.Transparent;
     this.panelSun.Location = new System.Drawing.Point(8, 56);
     this.panelSun.Name = "panelSun";
     this.panelSun.Size = new System.Drawing.Size(128, 480);
     this.panelSun.TabIndex = 55;
     //
     // panelMonday
     //
     this.panelMonday.BackColor = System.Drawing.Color.WhiteSmoke;
     this.panelMonday.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
     this.panelMonday.Controls.Add(this.lblMon);
     this.panelMonday.Controls.Add(this.txtMonday);
     this.panelMonday.Location = new System.Drawing.Point(136, 24);
     this.panelMonday.Name = "panelMonday";
     this.panelMonday.Size = new System.Drawing.Size(128, 32);
     this.panelMonday.TabIndex = 54;
     //
     // lblMon
     //
     this.lblMon.BackColor = System.Drawing.Color.PowderBlue;
     this.lblMon.Font = new System.Drawing.Font("Tahoma", 6.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.lblMon.Location = new System.Drawing.Point(0, 0);
     this.lblMon.Name = "lblMon";
     this.lblMon.Size = new System.Drawing.Size(128, 16);
     this.lblMon.TabIndex = 1;
     this.lblMon.Text = "MON";
     this.lblMon.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
     //
     // txtMonday
     //
     this.txtMonday.BackColor = System.Drawing.Color.PowderBlue;
     this.txtMonday.Font = new System.Drawing.Font("Tahoma", 6.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.txtMonday.Location = new System.Drawing.Point(0, 16);
     this.txtMonday.Name = "txtMonday";
     this.txtMonday.Size = new System.Drawing.Size(128, 16);
     this.txtMonday.TabIndex = 2;
     this.txtMonday.Text = "17/6/2005";
     this.txtMonday.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
     //
     // panel4
     //
     this.panel4.BackColor = System.Drawing.Color.WhiteSmoke;
     this.panel4.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
     this.panel4.Controls.Add(this.lblTUE);
     this.panel4.Controls.Add(this.txtTUE);
     this.panel4.Location = new System.Drawing.Point(264, 24);
     this.panel4.Name = "panel4";
     this.panel4.Size = new System.Drawing.Size(128, 32);
     this.panel4.TabIndex = 52;
     //
     // lblTUE
     //
     this.lblTUE.BackColor = System.Drawing.Color.PowderBlue;
     this.lblTUE.Font = new System.Drawing.Font("Tahoma", 6.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.lblTUE.Location = new System.Drawing.Point(0, 0);
     this.lblTUE.Name = "lblTUE";
     this.lblTUE.Size = new System.Drawing.Size(128, 16);
     this.lblTUE.TabIndex = 1;
     this.lblTUE.Text = "TUE";
     this.lblTUE.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
     //
     // txtTUE
     //
     this.txtTUE.BackColor = System.Drawing.Color.PowderBlue;
     this.txtTUE.Font = new System.Drawing.Font("Tahoma", 6.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.txtTUE.Location = new System.Drawing.Point(0, 16);
     this.txtTUE.Name = "txtTUE";
     this.txtTUE.Size = new System.Drawing.Size(128, 16);
     this.txtTUE.TabIndex = 2;
     this.txtTUE.Text = "17/6/2005";
     this.txtTUE.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
     //
     // panelFriday
     //
     this.panelFriday.BackColor = System.Drawing.Color.WhiteSmoke;
     this.panelFriday.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
     this.panelFriday.Controls.Add(this.lblFRI);
     this.panelFriday.Controls.Add(this.txtFriday);
     this.panelFriday.Location = new System.Drawing.Point(648, 24);
     this.panelFriday.Name = "panelFriday";
     this.panelFriday.Size = new System.Drawing.Size(128, 32);
     this.panelFriday.TabIndex = 48;
     //
     // lblFRI
     //
     this.lblFRI.BackColor = System.Drawing.Color.PowderBlue;
     this.lblFRI.Font = new System.Drawing.Font("Tahoma", 6.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.lblFRI.Location = new System.Drawing.Point(0, 0);
     this.lblFRI.Name = "lblFRI";
     this.lblFRI.Size = new System.Drawing.Size(128, 16);
     this.lblFRI.TabIndex = 1;
     this.lblFRI.Text = "FRI";
     this.lblFRI.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
     //
     // txtFriday
     //
     this.txtFriday.BackColor = System.Drawing.Color.PowderBlue;
     this.txtFriday.Font = new System.Drawing.Font("Tahoma", 6.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.txtFriday.Location = new System.Drawing.Point(0, 16);
     this.txtFriday.Name = "txtFriday";
     this.txtFriday.Size = new System.Drawing.Size(128, 16);
     this.txtFriday.TabIndex = 2;
     this.txtFriday.Text = "17/6/2005";
     this.txtFriday.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
     //
     // panelSat
     //
     this.panelSat.BackColor = System.Drawing.Color.Transparent;
     this.panelSat.Location = new System.Drawing.Point(776, 56);
     this.panelSat.Name = "panelSat";
     this.panelSat.Size = new System.Drawing.Size(128, 480);
     this.panelSat.TabIndex = 42;
     //
     // panelFri
     //
     this.panelFri.BackColor = System.Drawing.Color.Transparent;
     this.panelFri.Location = new System.Drawing.Point(648, 56);
     this.panelFri.Name = "panelFri";
     this.panelFri.Size = new System.Drawing.Size(128, 480);
     this.panelFri.TabIndex = 37;
     //
     // panelThu
     //
     this.panelThu.BackColor = System.Drawing.Color.Transparent;
     this.panelThu.Location = new System.Drawing.Point(520, 56);
     this.panelThu.Name = "panelThu";
     this.panelThu.Size = new System.Drawing.Size(128, 480);
     this.panelThu.TabIndex = 36;
     //
     // panelWed
     //
     this.panelWed.BackColor = System.Drawing.Color.Transparent;
     this.panelWed.Location = new System.Drawing.Point(392, 56);
     this.panelWed.Name = "panelWed";
     this.panelWed.Size = new System.Drawing.Size(128, 480);
     this.panelWed.TabIndex = 35;
     //
     // panelTue
     //
     this.panelTue.BackColor = System.Drawing.Color.Transparent;
     this.panelTue.Location = new System.Drawing.Point(264, 56);
     this.panelTue.Name = "panelTue";
     this.panelTue.Size = new System.Drawing.Size(128, 480);
     this.panelTue.TabIndex = 34;
     this.panelTue.Paint += new System.Windows.Forms.PaintEventHandler(this.panelTue_Paint);
     //
     // panelMon
     //
     this.panelMon.BackColor = System.Drawing.Color.Transparent;
     this.panelMon.Location = new System.Drawing.Point(136, 56);
     this.panelMon.Name = "panelMon";
     this.panelMon.Size = new System.Drawing.Size(128, 480);
     this.panelMon.TabIndex = 33;
     //
     // panelWednesday
     //
     this.panelWednesday.BackColor = System.Drawing.Color.WhiteSmoke;
     this.panelWednesday.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
     this.panelWednesday.Controls.Add(this.lblWED);
     this.panelWednesday.Controls.Add(this.txtWED);
     this.panelWednesday.Location = new System.Drawing.Point(392, 24);
     this.panelWednesday.Name = "panelWednesday";
     this.panelWednesday.Size = new System.Drawing.Size(128, 32);
     this.panelWednesday.TabIndex = 51;
     //
     // lblWED
     //
     this.lblWED.BackColor = System.Drawing.Color.PowderBlue;
     this.lblWED.Font = new System.Drawing.Font("Tahoma", 6.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.lblWED.Location = new System.Drawing.Point(0, 0);
     this.lblWED.Name = "lblWED";
     this.lblWED.Size = new System.Drawing.Size(128, 16);
     this.lblWED.TabIndex = 1;
     this.lblWED.Text = "WED";
     this.lblWED.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
     //
     // txtWED
     //
     this.txtWED.BackColor = System.Drawing.Color.PowderBlue;
     this.txtWED.Font = new System.Drawing.Font("Tahoma", 6.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.txtWED.Location = new System.Drawing.Point(0, 16);
     this.txtWED.Name = "txtWED";
     this.txtWED.Size = new System.Drawing.Size(128, 16);
     this.txtWED.TabIndex = 2;
     this.txtWED.Text = "17/6/2005";
     this.txtWED.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
     //
     // panelThursday
     //
     this.panelThursday.BackColor = System.Drawing.Color.WhiteSmoke;
     this.panelThursday.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
     this.panelThursday.Controls.Add(this.lblThu);
     this.panelThursday.Controls.Add(this.txtThur);
     this.panelThursday.Location = new System.Drawing.Point(520, 24);
     this.panelThursday.Name = "panelThursday";
     this.panelThursday.Size = new System.Drawing.Size(128, 32);
     this.panelThursday.TabIndex = 51;
     //
     // lblThu
     //
     this.lblThu.BackColor = System.Drawing.Color.PowderBlue;
     this.lblThu.Font = new System.Drawing.Font("Tahoma", 6.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.lblThu.Location = new System.Drawing.Point(0, 0);
     this.lblThu.Name = "lblThu";
     this.lblThu.Size = new System.Drawing.Size(128, 16);
     this.lblThu.TabIndex = 1;
     this.lblThu.Text = "THU";
     this.lblThu.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
     //
     // txtThur
     //
     this.txtThur.BackColor = System.Drawing.Color.PowderBlue;
     this.txtThur.Font = new System.Drawing.Font("Tahoma", 6.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.txtThur.Location = new System.Drawing.Point(0, 16);
     this.txtThur.Name = "txtThur";
     this.txtThur.Size = new System.Drawing.Size(128, 16);
     this.txtThur.TabIndex = 2;
     this.txtThur.Text = "17/6/2005";
     this.txtThur.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
     //
     // panelSaturday
     //
     this.panelSaturday.BackColor = System.Drawing.Color.WhiteSmoke;
     this.panelSaturday.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
     this.panelSaturday.Controls.Add(this.lblSAT);
     this.panelSaturday.Controls.Add(this.txtSAT);
     this.panelSaturday.Location = new System.Drawing.Point(776, 24);
     this.panelSaturday.Name = "panelSaturday";
     this.panelSaturday.Size = new System.Drawing.Size(128, 32);
     this.panelSaturday.TabIndex = 50;
     //
     // lblSAT
     //
     this.lblSAT.BackColor = System.Drawing.Color.PowderBlue;
     this.lblSAT.Font = new System.Drawing.Font("Tahoma", 6.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.lblSAT.Location = new System.Drawing.Point(0, 0);
     this.lblSAT.Name = "lblSAT";
     this.lblSAT.Size = new System.Drawing.Size(128, 16);
     this.lblSAT.TabIndex = 1;
     this.lblSAT.Text = "SAT";
     this.lblSAT.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
     //
     // txtSAT
     //
     this.txtSAT.BackColor = System.Drawing.Color.PowderBlue;
     this.txtSAT.Font = new System.Drawing.Font("Tahoma", 6.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.txtSAT.Location = new System.Drawing.Point(0, 16);
     this.txtSAT.Name = "txtSAT";
     this.txtSAT.Size = new System.Drawing.Size(128, 16);
     this.txtSAT.TabIndex = 2;
     this.txtSAT.Text = "17/6/2005";
     this.txtSAT.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
     //
     // panelSunday
     //
     this.panelSunday.BackColor = System.Drawing.Color.WhiteSmoke;
     this.panelSunday.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
     this.panelSunday.Controls.Add(this.lblSUN);
     this.panelSunday.Controls.Add(this.txtSunday);
     this.panelSunday.Location = new System.Drawing.Point(8, 24);
     this.panelSunday.Name = "panelSunday";
     this.panelSunday.Size = new System.Drawing.Size(128, 32);
     this.panelSunday.TabIndex = 52;
     //
     // lblSUN
     //
     this.lblSUN.BackColor = System.Drawing.Color.PowderBlue;
     this.lblSUN.Font = new System.Drawing.Font("Tahoma", 6.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.lblSUN.Location = new System.Drawing.Point(0, 0);
     this.lblSUN.Name = "lblSUN";
     this.lblSUN.Size = new System.Drawing.Size(128, 16);
     this.lblSUN.TabIndex = 1;
     this.lblSUN.Text = "SUN";
     this.lblSUN.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
     //
     // txtSunday
     //
     this.txtSunday.BackColor = System.Drawing.Color.PowderBlue;
     this.txtSunday.Font = new System.Drawing.Font("Tahoma", 6.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.txtSunday.Location = new System.Drawing.Point(0, 16);
     this.txtSunday.Name = "txtSunday";
     this.txtSunday.Size = new System.Drawing.Size(128, 16);
     this.txtSunday.TabIndex = 2;
     this.txtSunday.Text = "17/6/2005";
     this.txtSunday.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
     //
     // btnNextWeek
     //
     this.btnNextWeek.Appearance.BackColor = System.Drawing.Color.LightGray;
     this.btnNextWeek.Appearance.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold);
     this.btnNextWeek.Appearance.Options.UseBackColor = true;
     this.btnNextWeek.Appearance.Options.UseFont = true;
     this.btnNextWeek.ButtonStyle = DevExpress.XtraEditors.Controls.BorderStyles.Simple;
     this.btnNextWeek.Location = new System.Drawing.Point(683, 88);
     this.btnNextWeek.Name = "btnNextWeek";
     this.btnNextWeek.Size = new System.Drawing.Size(96, 40);
     this.btnNextWeek.TabIndex = 47;
     this.btnNextWeek.Text = "Next >>";
     this.btnNextWeek.Click += new System.EventHandler(this.btnNextWeek_Click);
     //
     // btnPastWeek
     //
     this.btnPastWeek.Appearance.BackColor = System.Drawing.Color.LightGray;
     this.btnPastWeek.Appearance.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold);
     this.btnPastWeek.Appearance.Options.UseBackColor = true;
     this.btnPastWeek.Appearance.Options.UseFont = true;
     this.btnPastWeek.ButtonStyle = DevExpress.XtraEditors.Controls.BorderStyles.Simple;
     this.btnPastWeek.Location = new System.Drawing.Point(352, 88);
     this.btnPastWeek.Name = "btnPastWeek";
     this.btnPastWeek.Size = new System.Drawing.Size(96, 40);
     this.btnPastWeek.TabIndex = 46;
     this.btnPastWeek.Text = "<< Previous";
     this.btnPastWeek.Click += new System.EventHandler(this.btnPastWeek_Click);
     //
     // groupBox1
     //
     this.groupBox1.Controls.Add(this.dtClassDate);
     this.groupBox1.Controls.Add(this.cmbBranch);
     this.groupBox1.Controls.Add(this.label1);
     this.groupBox1.Controls.Add(this.btnPastWeek);
     this.groupBox1.Controls.Add(this.btnNextWeek);
     this.groupBox1.Location = new System.Drawing.Point(0, 0);
     this.groupBox1.Name = "groupBox1";
     this.groupBox1.Size = new System.Drawing.Size(912, 136);
     this.groupBox1.TabIndex = 58;
     this.groupBox1.TabStop = false;
     //
     // dtClassDate
     //
     this.dtClassDate.Location = new System.Drawing.Point(472, 0);
     this.dtClassDate.Name = "dtClassDate";
     this.dtClassDate.TabIndex = 56;
     this.dtClassDate.DateChanged += new System.Windows.Forms.DateRangeEventHandler(this.dtClassDate_DateChanged);
     //
     // RPClassAnalysis
     //
     this.AutoScroll = true;
     this.ClientSize = new System.Drawing.Size(928, 592);
     this.Controls.Add(this.groupBox1);
     this.Controls.Add(this.groupControl1);
     this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedToolWindow;
     this.Name = "RPClassAnalysis";
     this.Text = "Class Analysis";
     this.WindowState = System.Windows.Forms.FormWindowState.Maximized;
     this.Load += new System.EventHandler(this.RPClassAnalysis_Load);
     ((System.ComponentModel.ISupportInitialize)(this.cmbBranch.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.groupControl1)).EndInit();
     this.groupControl1.ResumeLayout(false);
     this.panelMonday.ResumeLayout(false);
     this.panel4.ResumeLayout(false);
     this.panelFriday.ResumeLayout(false);
     this.panelWednesday.ResumeLayout(false);
     this.panelThursday.ResumeLayout(false);
     this.panelSaturday.ResumeLayout(false);
     this.panelSunday.ResumeLayout(false);
     this.groupBox1.ResumeLayout(false);
     this.ResumeLayout(false);
 }
Пример #26
0
 /// <summary>
 /// Required method for Designer support - do not modify
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     this.btnOTHERS         = new DevExpress.XtraEditors.SimpleButton();
     this.btnCheque         = new DevExpress.XtraEditors.SimpleButton();
     this.btnVoucher        = new DevExpress.XtraEditors.SimpleButton();
     this.btnIPP            = new DevExpress.XtraEditors.SimpleButton();
     this.btnVisa           = new DevExpress.XtraEditors.SimpleButton();
     this.btnNETS           = new DevExpress.XtraEditors.SimpleButton();
     this.btnCash           = new DevExpress.XtraEditors.SimpleButton();
     this.GroupControl2     = new DevExpress.XtraEditors.GroupControl();
     this.groupControl1     = new DevExpress.XtraEditors.GroupControl();
     this.Label10           = new System.Windows.Forms.Label();
     this.lblBalance        = new System.Windows.Forms.Label();
     this.lblDiscountAmt    = new System.Windows.Forms.Label();
     this.label22           = new System.Windows.Forms.Label();
     this.lblNettAmt        = new System.Windows.Forms.Label();
     this.lblGST            = new System.Windows.Forms.Label();
     this.label11           = new System.Windows.Forms.Label();
     this.label33           = new System.Windows.Forms.Label();
     this.lblTotalAmt       = new System.Windows.Forms.Label();
     this.label             = new System.Windows.Forms.Label();
     this.label1            = new System.Windows.Forms.Label();
     this.gridControl1      = new DevExpress.XtraGrid.GridControl();
     this.gridView1         = new DevExpress.XtraGrid.Views.Grid.GridView();
     this.colPaymentCode    = new DevExpress.XtraGrid.Columns.GridColumn();
     this.colAmount         = new DevExpress.XtraGrid.Columns.GridColumn();
     this.colstrReferenceNo = new DevExpress.XtraGrid.Columns.GridColumn();
     this.btnPrint          = new DevExpress.XtraEditors.SimpleButton();
     this.simpleButton1     = new DevExpress.XtraEditors.SimpleButton();
     this.simpleButton2     = new DevExpress.XtraEditors.SimpleButton();
     ((System.ComponentModel.ISupportInitialize)(this.GroupControl2)).BeginInit();
     this.GroupControl2.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.groupControl1)).BeginInit();
     this.groupControl1.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.gridControl1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridView1)).BeginInit();
     this.SuspendLayout();
     //
     // btnOTHERS
     //
     this.btnOTHERS.Appearance.Font                   = new System.Drawing.Font("Tahoma", 18F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((System.Byte)(0)));
     this.btnOTHERS.Appearance.Options.UseFont        = true;
     this.btnOTHERS.Appearance.Options.UseTextOptions = true;
     this.btnOTHERS.Appearance.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.btnOTHERS.Appearance.TextOptions.VAlignment = DevExpress.Utils.VertAlignment.Top;
     this.btnOTHERS.Appearance.TextOptions.WordWrap   = DevExpress.Utils.WordWrap.Wrap;
     this.btnOTHERS.Location = new System.Drawing.Point(8, 320);
     this.btnOTHERS.Name     = "btnOTHERS";
     this.btnOTHERS.Size     = new System.Drawing.Size(136, 40);
     this.btnOTHERS.TabIndex = 60;
     this.btnOTHERS.Text     = "OTHERS";
     this.btnOTHERS.Click   += new System.EventHandler(this.btnOTHERS_Click);
     //
     // btnCheque
     //
     this.btnCheque.Appearance.Font                   = new System.Drawing.Font("Tahoma", 18F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((System.Byte)(0)));
     this.btnCheque.Appearance.Options.UseFont        = true;
     this.btnCheque.Appearance.Options.UseTextOptions = true;
     this.btnCheque.Appearance.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.btnCheque.Appearance.TextOptions.VAlignment = DevExpress.Utils.VertAlignment.Top;
     this.btnCheque.Appearance.TextOptions.WordWrap   = DevExpress.Utils.WordWrap.Wrap;
     this.btnCheque.Location = new System.Drawing.Point(8, 268);
     this.btnCheque.Name     = "btnCheque";
     this.btnCheque.Size     = new System.Drawing.Size(136, 40);
     this.btnCheque.TabIndex = 59;
     this.btnCheque.Text     = "CHEQUE";
     this.btnCheque.Click   += new System.EventHandler(this.btnCheque_Click);
     //
     // btnVoucher
     //
     this.btnVoucher.Appearance.Font                   = new System.Drawing.Font("Tahoma", 18F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((System.Byte)(0)));
     this.btnVoucher.Appearance.Options.UseFont        = true;
     this.btnVoucher.Appearance.Options.UseTextOptions = true;
     this.btnVoucher.Appearance.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.btnVoucher.Appearance.TextOptions.VAlignment = DevExpress.Utils.VertAlignment.Top;
     this.btnVoucher.Appearance.TextOptions.WordWrap   = DevExpress.Utils.WordWrap.Wrap;
     this.btnVoucher.Location = new System.Drawing.Point(8, 216);
     this.btnVoucher.Name     = "btnVoucher";
     this.btnVoucher.Size     = new System.Drawing.Size(136, 40);
     this.btnVoucher.TabIndex = 58;
     this.btnVoucher.Text     = "VOUCHER";
     this.btnVoucher.Click   += new System.EventHandler(this.btnVoucher_Click);
     //
     // btnIPP
     //
     this.btnIPP.Appearance.Font                   = new System.Drawing.Font("Tahoma", 18F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((System.Byte)(0)));
     this.btnIPP.Appearance.Options.UseFont        = true;
     this.btnIPP.Appearance.Options.UseTextOptions = true;
     this.btnIPP.Appearance.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.btnIPP.Appearance.TextOptions.VAlignment = DevExpress.Utils.VertAlignment.Top;
     this.btnIPP.Appearance.TextOptions.WordWrap   = DevExpress.Utils.WordWrap.Wrap;
     this.btnIPP.Location = new System.Drawing.Point(8, 164);
     this.btnIPP.Name     = "btnIPP";
     this.btnIPP.Size     = new System.Drawing.Size(136, 40);
     this.btnIPP.TabIndex = 57;
     this.btnIPP.Text     = "IPP";
     this.btnIPP.Click   += new System.EventHandler(this.btnIPP_Click);
     //
     // btnVisa
     //
     this.btnVisa.Appearance.Font                   = new System.Drawing.Font("Tahoma", 18F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((System.Byte)(0)));
     this.btnVisa.Appearance.Options.UseFont        = true;
     this.btnVisa.Appearance.Options.UseTextOptions = true;
     this.btnVisa.Appearance.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.btnVisa.Appearance.TextOptions.VAlignment = DevExpress.Utils.VertAlignment.Top;
     this.btnVisa.Appearance.TextOptions.WordWrap   = DevExpress.Utils.WordWrap.Wrap;
     this.btnVisa.Location = new System.Drawing.Point(8, 112);
     this.btnVisa.Name     = "btnVisa";
     this.btnVisa.Size     = new System.Drawing.Size(136, 40);
     this.btnVisa.TabIndex = 56;
     this.btnVisa.Text     = "VISA";
     this.btnVisa.Click   += new System.EventHandler(this.btnVisa_Click);
     //
     // btnNETS
     //
     this.btnNETS.Appearance.Font                   = new System.Drawing.Font("Tahoma", 18F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((System.Byte)(0)));
     this.btnNETS.Appearance.Options.UseFont        = true;
     this.btnNETS.Appearance.Options.UseTextOptions = true;
     this.btnNETS.Appearance.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.btnNETS.Appearance.TextOptions.VAlignment = DevExpress.Utils.VertAlignment.Top;
     this.btnNETS.Appearance.TextOptions.WordWrap   = DevExpress.Utils.WordWrap.Wrap;
     this.btnNETS.Location = new System.Drawing.Point(8, 60);
     this.btnNETS.Name     = "btnNETS";
     this.btnNETS.Size     = new System.Drawing.Size(136, 40);
     this.btnNETS.TabIndex = 55;
     this.btnNETS.Text     = "NETS";
     this.btnNETS.Click   += new System.EventHandler(this.btnNETS_Click);
     //
     // btnCash
     //
     this.btnCash.Appearance.Font                   = new System.Drawing.Font("Tahoma", 18F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((System.Byte)(0)));
     this.btnCash.Appearance.Options.UseFont        = true;
     this.btnCash.Appearance.Options.UseTextOptions = true;
     this.btnCash.Appearance.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.btnCash.Appearance.TextOptions.VAlignment = DevExpress.Utils.VertAlignment.Top;
     this.btnCash.Appearance.TextOptions.WordWrap   = DevExpress.Utils.WordWrap.Wrap;
     this.btnCash.Location = new System.Drawing.Point(8, 8);
     this.btnCash.Name     = "btnCash";
     this.btnCash.Size     = new System.Drawing.Size(136, 40);
     this.btnCash.TabIndex = 54;
     this.btnCash.Text     = "CASH";
     this.btnCash.Click   += new System.EventHandler(this.btnCash_Click);
     //
     // GroupControl2
     //
     this.GroupControl2.Appearance.BackColor              = System.Drawing.Color.Transparent;
     this.GroupControl2.Appearance.BorderColor            = System.Drawing.Color.Black;
     this.GroupControl2.Appearance.ForeColor              = System.Drawing.SystemColors.ControlText;
     this.GroupControl2.Appearance.Options.UseBackColor   = true;
     this.GroupControl2.Appearance.Options.UseBorderColor = true;
     this.GroupControl2.Appearance.Options.UseForeColor   = true;
     this.GroupControl2.Controls.Add(this.groupControl1);
     this.GroupControl2.Controls.Add(this.lblDiscountAmt);
     this.GroupControl2.Controls.Add(this.label22);
     this.GroupControl2.Controls.Add(this.lblNettAmt);
     this.GroupControl2.Controls.Add(this.lblGST);
     this.GroupControl2.Controls.Add(this.label11);
     this.GroupControl2.Controls.Add(this.label33);
     this.GroupControl2.Controls.Add(this.lblTotalAmt);
     this.GroupControl2.Controls.Add(this.label);
     this.GroupControl2.Controls.Add(this.label1);
     this.GroupControl2.Location = new System.Drawing.Point(154, 8);
     this.GroupControl2.Name     = "GroupControl2";
     this.GroupControl2.Size     = new System.Drawing.Size(504, 144);
     this.GroupControl2.TabIndex = 61;
     this.GroupControl2.Paint   += new System.Windows.Forms.PaintEventHandler(this.GroupControl2_Paint);
     //
     // groupControl1
     //
     this.groupControl1.Appearance.BackColor              = System.Drawing.Color.Transparent;
     this.groupControl1.Appearance.BorderColor            = System.Drawing.Color.Black;
     this.groupControl1.Appearance.ForeColor              = System.Drawing.SystemColors.ControlText;
     this.groupControl1.Appearance.Options.UseBackColor   = true;
     this.groupControl1.Appearance.Options.UseBorderColor = true;
     this.groupControl1.Appearance.Options.UseForeColor   = true;
     this.groupControl1.BorderStyle = DevExpress.XtraEditors.Controls.BorderStyles.Simple;
     this.groupControl1.Controls.Add(this.Label10);
     this.groupControl1.Controls.Add(this.lblBalance);
     this.groupControl1.Location = new System.Drawing.Point(314, 28);
     this.groupControl1.LookAndFeel.UseDefaultLookAndFeel = false;
     this.groupControl1.LookAndFeel.UseWindowsXPTheme     = false;
     this.groupControl1.Name     = "groupControl1";
     this.groupControl1.Size     = new System.Drawing.Size(178, 90);
     this.groupControl1.TabIndex = 36;
     //
     // Label10
     //
     this.Label10.AutoSize    = true;
     this.Label10.Font        = new System.Drawing.Font("Microsoft Sans Serif", 14.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((System.Byte)(0)));
     this.Label10.Location    = new System.Drawing.Point(22, 18);
     this.Label10.Name        = "Label10";
     this.Label10.RightToLeft = System.Windows.Forms.RightToLeft.Yes;
     this.Label10.Size        = new System.Drawing.Size(131, 25);
     this.Label10.TabIndex    = 22;
     this.Label10.Text        = "PLEASE PAY";
     //
     // lblBalance
     //
     this.lblBalance.Font        = new System.Drawing.Font("Microsoft Sans Serif", 20.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((System.Byte)(0)));
     this.lblBalance.Location    = new System.Drawing.Point(14, 50);
     this.lblBalance.Name        = "lblBalance";
     this.lblBalance.RightToLeft = System.Windows.Forms.RightToLeft.Yes;
     this.lblBalance.Size        = new System.Drawing.Size(154, 34);
     this.lblBalance.TabIndex    = 20;
     //
     // lblDiscountAmt
     //
     this.lblDiscountAmt.Font     = new System.Drawing.Font("Microsoft Sans Serif", 10F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((System.Byte)(0)));
     this.lblDiscountAmt.Location = new System.Drawing.Point(142, 46);
     this.lblDiscountAmt.Name     = "lblDiscountAmt";
     this.lblDiscountAmt.Size     = new System.Drawing.Size(108, 14);
     this.lblDiscountAmt.TabIndex = 35;
     this.lblDiscountAmt.Text     = "0";
     //
     // label22
     //
     this.label22.AutoSize = true;
     this.label22.Font     = new System.Drawing.Font("Microsoft Sans Serif", 10F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((System.Byte)(0)));
     this.label22.Location = new System.Drawing.Point(72, 44);
     this.label22.Name     = "label22";
     this.label22.Size     = new System.Drawing.Size(65, 19);
     this.label22.TabIndex = 34;
     this.label22.Text     = "Discount:";
     //
     // lblNettAmt
     //
     this.lblNettAmt.Font     = new System.Drawing.Font("Microsoft Sans Serif", 10F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((System.Byte)(0)));
     this.lblNettAmt.Location = new System.Drawing.Point(142, 24);
     this.lblNettAmt.Name     = "lblNettAmt";
     this.lblNettAmt.Size     = new System.Drawing.Size(108, 16);
     this.lblNettAmt.TabIndex = 33;
     this.lblNettAmt.Text     = "0";
     this.lblNettAmt.Click   += new System.EventHandler(this.lblNettAmt_Click);
     //
     // lblGST
     //
     this.lblGST.Font     = new System.Drawing.Font("Microsoft Sans Serif", 10F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((System.Byte)(0)));
     this.lblGST.Location = new System.Drawing.Point(142, 68);
     this.lblGST.Name     = "lblGST";
     this.lblGST.Size     = new System.Drawing.Size(108, 16);
     this.lblGST.TabIndex = 32;
     this.lblGST.Text     = "0";
     //
     // label11
     //
     this.label11.AutoSize = true;
     this.label11.Font     = new System.Drawing.Font("Microsoft Sans Serif", 10F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((System.Byte)(0)));
     this.label11.Location = new System.Drawing.Point(50, 22);
     this.label11.Name     = "label11";
     this.label11.Size     = new System.Drawing.Size(88, 19);
     this.label11.TabIndex = 30;
     this.label11.Text     = "Nett Amount:";
     //
     // label33
     //
     this.label33.AutoSize = true;
     this.label33.Font     = new System.Drawing.Font("Microsoft Sans Serif", 10F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((System.Byte)(0)));
     this.label33.Location = new System.Drawing.Point(100, 66);
     this.label33.Name     = "label33";
     this.label33.Size     = new System.Drawing.Size(38, 19);
     this.label33.TabIndex = 29;
     this.label33.Text     = "GST:";
     //
     // lblTotalAmt
     //
     this.lblTotalAmt.AutoSize = true;
     this.lblTotalAmt.Font     = new System.Drawing.Font("Microsoft Sans Serif", 27.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((System.Byte)(0)));
     this.lblTotalAmt.Location = new System.Drawing.Point(142, 90);
     this.lblTotalAmt.Name     = "lblTotalAmt";
     this.lblTotalAmt.Size     = new System.Drawing.Size(35, 45);
     this.lblTotalAmt.TabIndex = 27;
     this.lblTotalAmt.Text     = "0";
     //
     // label
     //
     this.label.AutoSize = true;
     this.label.Font     = new System.Drawing.Font("Microsoft Sans Serif", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((System.Byte)(134)));
     this.label.Location = new System.Drawing.Point(12, 90);
     this.label.Name     = "label";
     this.label.Size     = new System.Drawing.Size(125, 22);
     this.label.TabIndex = 26;
     this.label.Text     = "SALES TOTAL:";
     //
     // label1
     //
     this.label1.AutoSize = true;
     this.label1.Font     = new System.Drawing.Font("Microsoft Sans Serif", 11.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((System.Byte)(0)));
     this.label1.Location = new System.Drawing.Point(8, 128);
     this.label1.Name     = "label1";
     this.label1.Size     = new System.Drawing.Size(0, 20);
     this.label1.TabIndex = 25;
     //
     // gridControl1
     //
     //
     // gridControl1.EmbeddedNavigator
     //
     this.gridControl1.EmbeddedNavigator.Buttons.Append.Visible     = false;
     this.gridControl1.EmbeddedNavigator.Buttons.CancelEdit.Visible = false;
     this.gridControl1.EmbeddedNavigator.Buttons.Edit.Visible       = false;
     this.gridControl1.EmbeddedNavigator.Buttons.EndEdit.Visible    = false;
     this.gridControl1.EmbeddedNavigator.Buttons.First.Visible      = false;
     this.gridControl1.EmbeddedNavigator.Buttons.Last.Visible       = false;
     this.gridControl1.EmbeddedNavigator.Buttons.Next.Visible       = false;
     this.gridControl1.EmbeddedNavigator.Buttons.NextPage.Visible   = false;
     this.gridControl1.EmbeddedNavigator.Buttons.Prev.Visible       = false;
     this.gridControl1.EmbeddedNavigator.Buttons.PrevPage.Visible   = false;
     this.gridControl1.EmbeddedNavigator.Name         = "";
     this.gridControl1.EmbeddedNavigator.ButtonClick += new DevExpress.XtraEditors.NavigatorButtonClickEventHandler(this.gridControl1_EmbeddedNavigator_ButtonClick);
     this.gridControl1.Location = new System.Drawing.Point(156, 188);
     this.gridControl1.MainView = this.gridView1;
     this.gridControl1.Name     = "gridControl1";
     this.gridControl1.Size     = new System.Drawing.Size(504, 208);
     this.gridControl1.TabIndex = 62;
     this.gridControl1.ViewCollection.AddRange(new DevExpress.XtraGrid.Views.Base.BaseView[] {
         this.gridView1
     });
     //
     // gridView1
     //
     this.gridView1.Columns.AddRange(new DevExpress.XtraGrid.Columns.GridColumn[] {
         this.colPaymentCode,
         this.colAmount,
         this.colstrReferenceNo
     });
     this.gridView1.GridControl                = this.gridControl1;
     this.gridView1.Name                       = "gridView1";
     this.gridView1.OptionsView.ShowFooter     = true;
     this.gridView1.OptionsView.ShowGroupPanel = false;
     //
     // colPaymentCode
     //
     this.colPaymentCode.Caption   = "Payment Code";
     this.colPaymentCode.FieldName = "strPaymentCode";
     this.colPaymentCode.Name      = "colPaymentCode";
     this.colPaymentCode.OptionsColumn.AllowEdit = false;
     this.colPaymentCode.Visible      = true;
     this.colPaymentCode.VisibleIndex = 0;
     //
     // colAmount
     //
     this.colAmount.Caption   = "Amount";
     this.colAmount.FieldName = "mAmount";
     this.colAmount.Name      = "colAmount";
     this.colAmount.OptionsColumn.AllowEdit = false;
     this.colAmount.SummaryItem.SummaryType = DevExpress.Data.SummaryItemType.Sum;
     this.colAmount.Visible      = true;
     this.colAmount.VisibleIndex = 1;
     //
     // colstrReferenceNo
     //
     this.colstrReferenceNo.Caption   = "Reference No";
     this.colstrReferenceNo.FieldName = "strReferenceNo";
     this.colstrReferenceNo.Name      = "colstrReferenceNo";
     this.colstrReferenceNo.OptionsColumn.AllowEdit = false;
     this.colstrReferenceNo.Visible      = true;
     this.colstrReferenceNo.VisibleIndex = 2;
     //
     // btnPrint
     //
     this.btnPrint.Appearance.Font                   = new System.Drawing.Font("Tahoma", 18F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((System.Byte)(0)));
     this.btnPrint.Appearance.Options.UseFont        = true;
     this.btnPrint.Appearance.Options.UseTextOptions = true;
     this.btnPrint.Appearance.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.btnPrint.Appearance.TextOptions.VAlignment = DevExpress.Utils.VertAlignment.Top;
     this.btnPrint.Appearance.TextOptions.WordWrap   = DevExpress.Utils.WordWrap.Wrap;
     this.btnPrint.DialogResult = System.Windows.Forms.DialogResult.OK;
     this.btnPrint.Location     = new System.Drawing.Point(276, 402);
     this.btnPrint.Name         = "btnPrint";
     this.btnPrint.Size         = new System.Drawing.Size(256, 40);
     this.btnPrint.TabIndex     = 63;
     this.btnPrint.Text         = "PRINT RECEIPT";
     this.btnPrint.Click       += new System.EventHandler(this.btnPrint_Click);
     //
     // simpleButton1
     //
     this.simpleButton1.Appearance.Font            = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold);
     this.simpleButton1.Appearance.Options.UseFont = true;
     this.simpleButton1.Location = new System.Drawing.Point(606, 156);
     this.simpleButton1.Name     = "simpleButton1";
     this.simpleButton1.Size     = new System.Drawing.Size(52, 30);
     this.simpleButton1.TabIndex = 64;
     this.simpleButton1.Text     = "Delete";
     this.simpleButton1.Click   += new System.EventHandler(this.simpleButton1_Click);
     //
     // simpleButton2
     //
     this.simpleButton2.Appearance.Font                   = new System.Drawing.Font("Tahoma", 18F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((System.Byte)(0)));
     this.simpleButton2.Appearance.Options.UseFont        = true;
     this.simpleButton2.Appearance.Options.UseTextOptions = true;
     this.simpleButton2.Appearance.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.simpleButton2.Appearance.TextOptions.VAlignment = DevExpress.Utils.VertAlignment.Top;
     this.simpleButton2.Appearance.TextOptions.WordWrap   = DevExpress.Utils.WordWrap.Wrap;
     this.simpleButton2.Location = new System.Drawing.Point(8, 376);
     this.simpleButton2.Name     = "simpleButton2";
     this.simpleButton2.Size     = new System.Drawing.Size(136, 40);
     this.simpleButton2.TabIndex = 65;
     this.simpleButton2.Text     = "GIRO";
     this.simpleButton2.Click   += new System.EventHandler(this.simpleButton2_Click);
     //
     // FormTender
     //
     this.AcceptButton      = this.btnPrint;
     this.AutoScaleBaseSize = new System.Drawing.Size(5, 13);
     this.ClientSize        = new System.Drawing.Size(664, 446);
     this.Controls.Add(this.simpleButton2);
     this.Controls.Add(this.simpleButton1);
     this.Controls.Add(this.btnPrint);
     this.Controls.Add(this.gridControl1);
     this.Controls.Add(this.GroupControl2);
     this.Controls.Add(this.btnOTHERS);
     this.Controls.Add(this.btnCheque);
     this.Controls.Add(this.btnVoucher);
     this.Controls.Add(this.btnIPP);
     this.Controls.Add(this.btnVisa);
     this.Controls.Add(this.btnNETS);
     this.Controls.Add(this.btnCash);
     this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedDialog;
     this.MaximizeBox     = false;
     this.MinimizeBox     = false;
     this.Name            = "FormTender";
     this.ShowInTaskbar   = false;
     this.StartPosition   = System.Windows.Forms.FormStartPosition.CenterScreen;
     this.Text            = "Tender";
     this.Load           += new System.EventHandler(this.FormTender_Load);
     ((System.ComponentModel.ISupportInitialize)(this.GroupControl2)).EndInit();
     this.GroupControl2.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.groupControl1)).EndInit();
     this.groupControl1.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.gridControl1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridView1)).EndInit();
     this.ResumeLayout(false);
 }
Пример #27
0
 /// <summary>
 /// Required method for Designer support - do not modify
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     this.components = new System.ComponentModel.Container();
     System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(DivStreamForm));
     this.gridDivs            = new DevExpress.XtraGrid.GridControl();
     this.gridDividends       = new DevExpress.XtraGrid.Views.Grid.GridView();
     this.colDivDate          = new DevExpress.XtraGrid.Columns.GridColumn();
     this.colDivAmount        = new DevExpress.XtraGrid.Columns.GridColumn();
     this.defaultLookAndFeel1 = new DevExpress.LookAndFeel.DefaultLookAndFeel(this.components);
     this.label1        = new System.Windows.Forms.Label();
     this.label2        = new System.Windows.Forms.Label();
     this.label3        = new System.Windows.Forms.Label();
     this.OK            = new DevExpress.XtraEditors.SimpleButton();
     this.btnCancel     = new DevExpress.XtraEditors.SimpleButton();
     this.tbAmount      = new DevExpress.XtraEditors.CalcEdit();
     this.groupControl1 = new DevExpress.XtraEditors.GroupControl();
     this.tbDateStep    = new DevExpress.XtraEditors.TextEdit();
     this.dtDate        = new DevExpress.XtraEditors.DateEdit();
     this.btnAdd        = new DevExpress.XtraEditors.SimpleButton();
     this.btnRemove     = new DevExpress.XtraEditors.SimpleButton();
     this.btnRemoveAll  = new DevExpress.XtraEditors.SimpleButton();
     ((System.ComponentModel.ISupportInitialize)(this.gridDivs)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridDividends)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.tbAmount.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.groupControl1)).BeginInit();
     this.groupControl1.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.tbDateStep.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.dtDate.Properties)).BeginInit();
     this.SuspendLayout();
     //
     // gridDivs
     //
     this.gridDivs.EmbeddedNavigator.Name = "";
     this.gridDivs.Location = new System.Drawing.Point(8, 121);
     this.gridDivs.MainView = this.gridDividends;
     this.gridDivs.Name     = "gridDivs";
     this.gridDivs.Size     = new System.Drawing.Size(256, 343);
     this.gridDivs.TabIndex = 5;
     this.gridDivs.ViewCollection.AddRange(new DevExpress.XtraGrid.Views.Base.BaseView[] {
         this.gridDividends
     });
     //
     // gridDividends
     //
     this.gridDividends.Appearance.ColumnFilterButton.BackColor                    = System.Drawing.Color.DarkGray;
     this.gridDividends.Appearance.ColumnFilterButton.BorderColor                  = System.Drawing.Color.DarkGray;
     this.gridDividends.Appearance.ColumnFilterButton.ForeColor                    = System.Drawing.Color.DimGray;
     this.gridDividends.Appearance.ColumnFilterButton.Options.UseBackColor         = true;
     this.gridDividends.Appearance.ColumnFilterButton.Options.UseBorderColor       = true;
     this.gridDividends.Appearance.ColumnFilterButton.Options.UseForeColor         = true;
     this.gridDividends.Appearance.ColumnFilterButtonActive.BackColor              = System.Drawing.Color.DarkGray;
     this.gridDividends.Appearance.ColumnFilterButtonActive.BorderColor            = System.Drawing.Color.DarkGray;
     this.gridDividends.Appearance.ColumnFilterButtonActive.ForeColor              = System.Drawing.Color.Gainsboro;
     this.gridDividends.Appearance.ColumnFilterButtonActive.Options.UseBackColor   = true;
     this.gridDividends.Appearance.ColumnFilterButtonActive.Options.UseBorderColor = true;
     this.gridDividends.Appearance.ColumnFilterButtonActive.Options.UseForeColor   = true;
     this.gridDividends.Appearance.Empty.BackColor                          = System.Drawing.Color.White;
     this.gridDividends.Appearance.Empty.BackColor2                         = System.Drawing.Color.WhiteSmoke;
     this.gridDividends.Appearance.Empty.GradientMode                       = System.Drawing.Drawing2D.LinearGradientMode.BackwardDiagonal;
     this.gridDividends.Appearance.Empty.Options.UseBackColor               = true;
     this.gridDividends.Appearance.EvenRow.BackColor                        = System.Drawing.Color.White;
     this.gridDividends.Appearance.EvenRow.Options.UseBackColor             = true;
     this.gridDividends.Appearance.FilterCloseButton.BackColor              = System.Drawing.Color.Gray;
     this.gridDividends.Appearance.FilterCloseButton.BorderColor            = System.Drawing.Color.Gray;
     this.gridDividends.Appearance.FilterCloseButton.Options.UseBackColor   = true;
     this.gridDividends.Appearance.FilterCloseButton.Options.UseBorderColor = true;
     this.gridDividends.Appearance.FilterPanel.BackColor                    = System.Drawing.Color.Gray;
     this.gridDividends.Appearance.FilterPanel.ForeColor                    = System.Drawing.Color.Black;
     this.gridDividends.Appearance.FilterPanel.Options.UseBackColor         = true;
     this.gridDividends.Appearance.FilterPanel.Options.UseForeColor         = true;
     this.gridDividends.Appearance.FocusedRow.BackColor                     = System.Drawing.Color.Black;
     this.gridDividends.Appearance.FocusedRow.ForeColor                     = System.Drawing.Color.White;
     this.gridDividends.Appearance.FocusedRow.Options.UseBackColor          = true;
     this.gridDividends.Appearance.FocusedRow.Options.UseForeColor          = true;
     this.gridDividends.Appearance.FooterPanel.BackColor                    = System.Drawing.Color.DarkGray;
     this.gridDividends.Appearance.FooterPanel.BorderColor                  = System.Drawing.Color.DarkGray;
     this.gridDividends.Appearance.FooterPanel.Options.UseBackColor         = true;
     this.gridDividends.Appearance.FooterPanel.Options.UseBorderColor       = true;
     this.gridDividends.Appearance.GroupButton.BackColor                    = System.Drawing.Color.Silver;
     this.gridDividends.Appearance.GroupButton.BorderColor                  = System.Drawing.Color.Silver;
     this.gridDividends.Appearance.GroupButton.Options.UseBackColor         = true;
     this.gridDividends.Appearance.GroupButton.Options.UseBorderColor       = true;
     this.gridDividends.Appearance.GroupFooter.BackColor                    = System.Drawing.Color.Silver;
     this.gridDividends.Appearance.GroupFooter.BorderColor                  = System.Drawing.Color.Silver;
     this.gridDividends.Appearance.GroupFooter.Options.UseBackColor         = true;
     this.gridDividends.Appearance.GroupFooter.Options.UseBorderColor       = true;
     this.gridDividends.Appearance.GroupPanel.BackColor                     = System.Drawing.Color.WhiteSmoke;
     this.gridDividends.Appearance.GroupPanel.ForeColor                     = System.Drawing.Color.White;
     this.gridDividends.Appearance.GroupPanel.Options.UseBackColor          = true;
     this.gridDividends.Appearance.GroupPanel.Options.UseForeColor          = true;
     this.gridDividends.Appearance.GroupRow.BackColor                       = System.Drawing.Color.Silver;
     this.gridDividends.Appearance.GroupRow.Font = new System.Drawing.Font("Tahoma", 8F, System.Drawing.FontStyle.Bold);
     this.gridDividends.Appearance.GroupRow.Options.UseBackColor         = true;
     this.gridDividends.Appearance.GroupRow.Options.UseFont              = true;
     this.gridDividends.Appearance.HeaderPanel.BackColor                 = System.Drawing.Color.DarkGray;
     this.gridDividends.Appearance.HeaderPanel.BorderColor               = System.Drawing.Color.DarkGray;
     this.gridDividends.Appearance.HeaderPanel.Options.UseBackColor      = true;
     this.gridDividends.Appearance.HeaderPanel.Options.UseBorderColor    = true;
     this.gridDividends.Appearance.HideSelectionRow.BackColor            = System.Drawing.Color.LightSlateGray;
     this.gridDividends.Appearance.HideSelectionRow.Options.UseBackColor = true;
     this.gridDividends.Appearance.HorzLine.BackColor            = System.Drawing.Color.LightGray;
     this.gridDividends.Appearance.HorzLine.Options.UseBackColor = true;
     this.gridDividends.Appearance.OddRow.BackColor             = System.Drawing.Color.WhiteSmoke;
     this.gridDividends.Appearance.OddRow.Options.UseBackColor  = true;
     this.gridDividends.Appearance.Preview.BackColor            = System.Drawing.Color.Gainsboro;
     this.gridDividends.Appearance.Preview.ForeColor            = System.Drawing.Color.DimGray;
     this.gridDividends.Appearance.Preview.Options.UseBackColor = true;
     this.gridDividends.Appearance.Preview.Options.UseForeColor = true;
     this.gridDividends.Appearance.Row.BackColor                     = System.Drawing.Color.White;
     this.gridDividends.Appearance.Row.Options.UseBackColor          = true;
     this.gridDividends.Appearance.RowSeparator.BackColor            = System.Drawing.Color.DimGray;
     this.gridDividends.Appearance.RowSeparator.Options.UseBackColor = true;
     this.gridDividends.Appearance.SelectedRow.BackColor             = System.Drawing.Color.DimGray;
     this.gridDividends.Appearance.SelectedRow.Options.UseBackColor  = true;
     this.gridDividends.Appearance.VertLine.BackColor                = System.Drawing.Color.LightGray;
     this.gridDividends.Appearance.VertLine.Options.UseBackColor     = true;
     this.gridDividends.BestFitMaxRowCount = 10;
     this.gridDividends.BorderStyle        = DevExpress.XtraEditors.Controls.BorderStyles.Office2003;
     this.gridDividends.Columns.AddRange(new DevExpress.XtraGrid.Columns.GridColumn[] {
         this.colDivDate,
         this.colDivAmount
     });
     this.gridDividends.GridControl = this.gridDivs;
     this.gridDividends.Name        = "gridDividends";
     this.gridDividends.OptionsCustomization.AllowColumnMoving = false;
     this.gridDividends.OptionsMenu.EnableColumnMenu           = false;
     this.gridDividends.OptionsView.EnableAppearanceEvenRow    = true;
     this.gridDividends.OptionsView.EnableAppearanceOddRow     = true;
     this.gridDividends.OptionsView.ShowFilterPanel            = false;
     this.gridDividends.OptionsView.ShowGroupPanel             = false;
     this.gridDividends.OptionsView.ShowIndicator = false;
     this.gridDividends.PaintStyleName            = "MixedXP";
     this.gridDividends.ShowButtonMode            = DevExpress.XtraGrid.Views.Base.ShowButtonModeEnum.ShowForFocusedRow;
     //
     // colDivDate
     //
     this.colDivDate.Caption = "Dates";
     this.colDivDate.Name    = "colDivDate";
     this.colDivDate.OptionsColumn.ShowInCustomizationForm = false;
     this.colDivDate.Visible      = true;
     this.colDivDate.VisibleIndex = 0;
     //
     // colDivAmount
     //
     this.colDivAmount.Caption = "Amounts";
     this.colDivAmount.Name    = "colDivAmount";
     this.colDivAmount.OptionsColumn.ShowInCustomizationForm = false;
     this.colDivAmount.Visible      = true;
     this.colDivAmount.VisibleIndex = 1;
     //
     // defaultLookAndFeel1
     //
     this.defaultLookAndFeel1.LookAndFeel.SkinName          = "Money Twins";
     this.defaultLookAndFeel1.LookAndFeel.Style             = DevExpress.LookAndFeel.LookAndFeelStyle.Office2003;
     this.defaultLookAndFeel1.LookAndFeel.UseWindowsXPTheme = false;
     //
     // label1
     //
     this.label1.Location = new System.Drawing.Point(79, 28);
     this.label1.Name     = "label1";
     this.label1.Size     = new System.Drawing.Size(35, 16);
     this.label1.TabIndex = 9;
     this.label1.Text     = "Date:";
     //
     // label2
     //
     this.label2.Location = new System.Drawing.Point(50, 51);
     this.label2.Name     = "label2";
     this.label2.Size     = new System.Drawing.Size(64, 16);
     this.label2.TabIndex = 10;
     this.label2.Text     = "Amount ($):";
     //
     // label3
     //
     this.label3.Location = new System.Drawing.Point(10, 74);
     this.label3.Name     = "label3";
     this.label3.Size     = new System.Drawing.Size(110, 16);
     this.label3.TabIndex = 14;
     this.label3.Text     = "Add with step (days):";
     //
     // OK
     //
     this.OK.ButtonStyle  = DevExpress.XtraEditors.Controls.BorderStyles.Office2003;
     this.OK.DialogResult = System.Windows.Forms.DialogResult.OK;
     this.OK.Location     = new System.Drawing.Point(270, 410);
     this.OK.Name         = "OK";
     this.OK.Size         = new System.Drawing.Size(88, 24);
     this.OK.TabIndex     = 9;
     this.OK.Text         = "OK";
     this.OK.Click       += new System.EventHandler(this.OK_Click);
     //
     // btnCancel
     //
     this.btnCancel.ButtonStyle          = DevExpress.XtraEditors.Controls.BorderStyles.Office2003;
     this.btnCancel.DialogResult         = System.Windows.Forms.DialogResult.Cancel;
     this.btnCancel.Location             = new System.Drawing.Point(270, 440);
     this.btnCancel.LookAndFeel.SkinName = "Coffee";
     this.btnCancel.LookAndFeel.Style    = DevExpress.LookAndFeel.LookAndFeelStyle.Office2003;
     this.btnCancel.Name     = "btnCancel";
     this.btnCancel.Size     = new System.Drawing.Size(88, 24);
     this.btnCancel.TabIndex = 10;
     this.btnCancel.Text     = "Cancel";
     this.btnCancel.Click   += new System.EventHandler(this.btnCancel_Click);
     //
     // tbAmount
     //
     this.tbAmount.EditValue = new decimal(new int[] {
         0,
         0,
         0,
         0
     });
     this.tbAmount.Location = new System.Drawing.Point(122, 51);
     this.tbAmount.Name     = "tbAmount";
     this.tbAmount.Properties.BorderStyle = DevExpress.XtraEditors.Controls.BorderStyles.Simple;
     this.tbAmount.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
         new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)
     });
     this.tbAmount.Properties.Mask.EditMask = "c5";
     this.tbAmount.Size     = new System.Drawing.Size(128, 20);
     this.tbAmount.TabIndex = 3;
     //
     // groupControl1
     //
     this.groupControl1.Controls.Add(this.tbDateStep);
     this.groupControl1.Controls.Add(this.dtDate);
     this.groupControl1.Controls.Add(this.tbAmount);
     this.groupControl1.Controls.Add(this.label1);
     this.groupControl1.Controls.Add(this.label3);
     this.groupControl1.Controls.Add(this.label2);
     this.groupControl1.Location = new System.Drawing.Point(8, 8);
     this.groupControl1.Name     = "groupControl1";
     this.groupControl1.Size     = new System.Drawing.Size(256, 107);
     this.groupControl1.TabIndex = 1;
     this.groupControl1.Text     = "Add";
     //
     // tbDateStep
     //
     this.tbDateStep.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
                                                                    | System.Windows.Forms.AnchorStyles.Right)));
     this.tbDateStep.EditValue = new decimal(new int[] {
         1,
         0,
         0,
         0
     });
     this.tbDateStep.Location = new System.Drawing.Point(121, 77);
     this.tbDateStep.Name     = "tbDateStep";
     this.tbDateStep.Properties.AllowNullInput = DevExpress.Utils.DefaultBoolean.False;
     this.tbDateStep.Properties.BorderStyle    = DevExpress.XtraEditors.Controls.BorderStyles.Simple;
     this.tbDateStep.Properties.Mask.EditMask  = "d";
     this.tbDateStep.Properties.Mask.MaskType  = DevExpress.XtraEditors.Mask.MaskType.Numeric;
     this.tbDateStep.RightToLeft = System.Windows.Forms.RightToLeft.Yes;
     this.tbDateStep.Size        = new System.Drawing.Size(130, 20);
     this.tbDateStep.TabIndex    = 4;
     //
     // dtDate
     //
     this.dtDate.EditValue = new System.DateTime(2005, 12, 6, 0, 0, 0, 0);
     this.dtDate.Location  = new System.Drawing.Point(122, 24);
     this.dtDate.Name      = "dtDate";
     this.dtDate.Properties.BorderStyle = DevExpress.XtraEditors.Controls.BorderStyles.Simple;
     this.dtDate.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
         new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)
     });
     this.dtDate.Size     = new System.Drawing.Size(128, 20);
     this.dtDate.TabIndex = 2;
     //
     // btnAdd
     //
     this.btnAdd.ButtonStyle = DevExpress.XtraEditors.Controls.BorderStyles.Office2003;
     this.btnAdd.Location    = new System.Drawing.Point(270, 91);
     this.btnAdd.Name        = "btnAdd";
     this.btnAdd.Size        = new System.Drawing.Size(88, 24);
     this.btnAdd.TabIndex    = 6;
     this.btnAdd.Text        = "Add";
     this.btnAdd.Click      += new System.EventHandler(this.btnAdd_Click);
     //
     // btnRemove
     //
     this.btnRemove.ButtonStyle = DevExpress.XtraEditors.Controls.BorderStyles.Office2003;
     this.btnRemove.Location    = new System.Drawing.Point(270, 121);
     this.btnRemove.Name        = "btnRemove";
     this.btnRemove.Size        = new System.Drawing.Size(88, 24);
     this.btnRemove.TabIndex    = 7;
     this.btnRemove.Text        = "Delete";
     this.btnRemove.Click      += new System.EventHandler(this.btnRemove_Click);
     //
     // btnRemoveAll
     //
     this.btnRemoveAll.ButtonStyle = DevExpress.XtraEditors.Controls.BorderStyles.Office2003;
     this.btnRemoveAll.Location    = new System.Drawing.Point(270, 151);
     this.btnRemoveAll.Name        = "btnRemoveAll";
     this.btnRemoveAll.Size        = new System.Drawing.Size(88, 24);
     this.btnRemoveAll.TabIndex    = 8;
     this.btnRemoveAll.Text        = "Delete All";
     this.btnRemoveAll.Click      += new System.EventHandler(this.btnRemoveAll_Click);
     //
     // DivStreamForm
     //
     this.AutoScaleBaseSize = new System.Drawing.Size(5, 13);
     this.BackColor         = System.Drawing.Color.Gainsboro;
     this.ClientSize        = new System.Drawing.Size(365, 472);
     this.Controls.Add(this.btnRemoveAll);
     this.Controls.Add(this.btnRemove);
     this.Controls.Add(this.btnAdd);
     this.Controls.Add(this.groupControl1);
     this.Controls.Add(this.btnCancel);
     this.Controls.Add(this.OK);
     this.Controls.Add(this.gridDivs);
     this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedToolWindow;
     this.Icon            = ((System.Drawing.Icon)(resources.GetObject("$this.Icon")));
     this.MaximizeBox     = false;
     this.Name            = "DivStreamForm";
     this.ShowInTaskbar   = false;
     this.StartPosition   = System.Windows.Forms.FormStartPosition.CenterParent;
     this.Text            = "Dividend Stream";
     this.Load           += new System.EventHandler(this.DivStreamForm_Load);
     ((System.ComponentModel.ISupportInitialize)(this.gridDivs)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridDividends)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.tbAmount.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.groupControl1)).EndInit();
     this.groupControl1.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.tbDateStep.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.dtDate.Properties)).EndInit();
     this.ResumeLayout(false);
 }
Пример #28
0
 /// <summary>
 /// Required method for Designer support - do not modify
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     this.lblBranch     = new System.Windows.Forms.Label();
     this.label4        = new System.Windows.Forms.Label();
     this.groupControl1 = new DevExpress.XtraEditors.GroupControl();
     this.txtRemarks    = new DevExpress.XtraEditors.MemoEdit();
     this.lblRemarks    = new System.Windows.Forms.Label();
     this.lbldate       = new System.Windows.Forms.Label();
     this.dtDate        = new DevExpress.XtraEditors.DateEdit();
     this.label3        = new System.Windows.Forms.Label();
     this.cbEmployee    = new DevExpress.XtraEditors.ImageComboBoxEdit();
     this.label2        = new System.Windows.Forms.Label();
     this.cbBranch      = new DevExpress.XtraEditors.ImageComboBoxEdit();
     this.label1        = new System.Windows.Forms.Label();
     this.lblStartTime  = new System.Windows.Forms.Label();
     this.dtEndTime     = new DevExpress.XtraEditors.TimeEdit();
     this.dtStartTime   = new DevExpress.XtraEditors.TimeEdit();
     this.btnSave       = new DevExpress.XtraEditors.SimpleButton();
     this.btnCancel     = new DevExpress.XtraEditors.SimpleButton();
     ((System.ComponentModel.ISupportInitialize)(this.groupControl1)).BeginInit();
     this.groupControl1.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.txtRemarks.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.dtDate.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.cbEmployee.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.cbBranch.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.dtEndTime.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.dtStartTime.Properties)).BeginInit();
     this.SuspendLayout();
     //
     // lblBranch
     //
     this.lblBranch.Font     = new System.Drawing.Font("Tahoma", 9.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((System.Byte)(0)));
     this.lblBranch.Location = new System.Drawing.Point(-58, 142);
     this.lblBranch.Name     = "lblBranch";
     this.lblBranch.Size     = new System.Drawing.Size(58, 16);
     this.lblBranch.TabIndex = 186;
     this.lblBranch.Text     = "Branch";
     //
     // label4
     //
     this.label4.Font     = new System.Drawing.Font("Tahoma", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((System.Byte)(0)));
     this.label4.Location = new System.Drawing.Point(16, 8);
     this.label4.Name     = "label4";
     this.label4.Size     = new System.Drawing.Size(112, 16);
     this.label4.TabIndex = 191;
     this.label4.Text     = "New Roster";
     //
     // groupControl1
     //
     this.groupControl1.Controls.Add(this.txtRemarks);
     this.groupControl1.Controls.Add(this.lblRemarks);
     this.groupControl1.Controls.Add(this.lbldate);
     this.groupControl1.Controls.Add(this.dtDate);
     this.groupControl1.Controls.Add(this.label3);
     this.groupControl1.Controls.Add(this.cbEmployee);
     this.groupControl1.Controls.Add(this.label2);
     this.groupControl1.Controls.Add(this.cbBranch);
     this.groupControl1.Controls.Add(this.label1);
     this.groupControl1.Controls.Add(this.lblStartTime);
     this.groupControl1.Controls.Add(this.dtEndTime);
     this.groupControl1.Controls.Add(this.dtStartTime);
     this.groupControl1.Location    = new System.Drawing.Point(16, 32);
     this.groupControl1.Name        = "groupControl1";
     this.groupControl1.ShowCaption = false;
     this.groupControl1.Size        = new System.Drawing.Size(280, 256);
     this.groupControl1.TabIndex    = 192;
     this.groupControl1.Text        = "groupControl1";
     //
     // txtRemarks
     //
     this.txtRemarks.EditValue = "";
     this.txtRemarks.Location  = new System.Drawing.Point(16, 184);
     this.txtRemarks.Name      = "txtRemarks";
     //
     // txtRemarks.Properties
     //
     this.txtRemarks.Properties.BorderStyle = DevExpress.XtraEditors.Controls.BorderStyles.Style3D;
     this.txtRemarks.Size     = new System.Drawing.Size(232, 64);
     this.txtRemarks.TabIndex = 6;
     //
     // lblRemarks
     //
     this.lblRemarks.Font     = new System.Drawing.Font("Tahoma", 9.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((System.Byte)(0)));
     this.lblRemarks.Location = new System.Drawing.Point(16, 168);
     this.lblRemarks.Name     = "lblRemarks";
     this.lblRemarks.Size     = new System.Drawing.Size(80, 16);
     this.lblRemarks.TabIndex = 201;
     this.lblRemarks.Text     = "Remarks";
     //
     // lbldate
     //
     this.lbldate.Font     = new System.Drawing.Font("Tahoma", 9.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((System.Byte)(0)));
     this.lbldate.Location = new System.Drawing.Point(16, 80);
     this.lbldate.Name     = "lbldate";
     this.lbldate.Size     = new System.Drawing.Size(80, 16);
     this.lbldate.TabIndex = 200;
     this.lbldate.Text     = "Date";
     //
     // dtDate
     //
     this.dtDate.EditValue = null;
     this.dtDate.Location  = new System.Drawing.Point(104, 80);
     this.dtDate.Name      = "dtDate";
     //
     // dtDate.Properties
     //
     this.dtDate.Properties.BorderStyle = DevExpress.XtraEditors.Controls.BorderStyles.Style3D;
     this.dtDate.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
         new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)
     });
     this.dtDate.Properties.DisplayFormat.FormatString = "dd/MM/yyyy";
     this.dtDate.Properties.DisplayFormat.FormatType   = DevExpress.Utils.FormatType.Custom;
     this.dtDate.Properties.EditFormat.FormatString    = "dd/MM/yyyy";
     this.dtDate.Properties.EditFormat.FormatType      = DevExpress.Utils.FormatType.Custom;
     this.dtDate.Properties.Mask.EditMask = "dd/MM/yyyy";
     this.dtDate.Properties.Mask.MaskType = DevExpress.XtraEditors.Mask.MaskType.DateTimeAdvancingCaret;
     this.dtDate.Size     = new System.Drawing.Size(100, 22);
     this.dtDate.TabIndex = 3;
     //
     // label3
     //
     this.label3.Font     = new System.Drawing.Font("Tahoma", 9.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((System.Byte)(0)));
     this.label3.Location = new System.Drawing.Point(16, 48);
     this.label3.Name     = "label3";
     this.label3.Size     = new System.Drawing.Size(80, 16);
     this.label3.TabIndex = 198;
     this.label3.Text     = "Employee";
     //
     // cbEmployee
     //
     this.cbEmployee.Location = new System.Drawing.Point(104, 48);
     this.cbEmployee.Name     = "cbEmployee";
     //
     // cbEmployee.Properties
     //
     this.cbEmployee.Properties.BorderStyle = DevExpress.XtraEditors.Controls.BorderStyles.Style3D;
     this.cbEmployee.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
         new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)
     });
     this.cbEmployee.Size     = new System.Drawing.Size(144, 22);
     this.cbEmployee.TabIndex = 2;
     //
     // label2
     //
     this.label2.Font     = new System.Drawing.Font("Tahoma", 9.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((System.Byte)(0)));
     this.label2.Location = new System.Drawing.Point(16, 16);
     this.label2.Name     = "label2";
     this.label2.Size     = new System.Drawing.Size(80, 16);
     this.label2.TabIndex = 196;
     this.label2.Text     = "Branch";
     //
     // cbBranch
     //
     this.cbBranch.Location = new System.Drawing.Point(104, 16);
     this.cbBranch.Name     = "cbBranch";
     //
     // cbBranch.Properties
     //
     this.cbBranch.Properties.BorderStyle = DevExpress.XtraEditors.Controls.BorderStyles.Style3D;
     this.cbBranch.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
         new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)
     });
     this.cbBranch.Size                  = new System.Drawing.Size(144, 22);
     this.cbBranch.TabIndex              = 1;
     this.cbBranch.SelectedIndexChanged += new System.EventHandler(this.cbBranch_SelectedIndexChanged);
     //
     // label1
     //
     this.label1.Font     = new System.Drawing.Font("Tahoma", 9.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((System.Byte)(0)));
     this.label1.Location = new System.Drawing.Point(144, 112);
     this.label1.Name     = "label1";
     this.label1.Size     = new System.Drawing.Size(80, 16);
     this.label1.TabIndex = 194;
     this.label1.Text     = "End Time";
     //
     // lblStartTime
     //
     this.lblStartTime.Font     = new System.Drawing.Font("Tahoma", 9.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((System.Byte)(0)));
     this.lblStartTime.Location = new System.Drawing.Point(16, 112);
     this.lblStartTime.Name     = "lblStartTime";
     this.lblStartTime.Size     = new System.Drawing.Size(80, 16);
     this.lblStartTime.TabIndex = 193;
     this.lblStartTime.Text     = "Start Time";
     //
     // dtEndTime
     //
     this.dtEndTime.EditValue = null;
     this.dtEndTime.Location  = new System.Drawing.Point(144, 136);
     this.dtEndTime.Name      = "dtEndTime";
     //
     // dtEndTime.Properties
     //
     this.dtEndTime.Properties.BorderStyle = DevExpress.XtraEditors.Controls.BorderStyles.Style3D;
     this.dtEndTime.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
         new DevExpress.XtraEditors.Controls.EditorButton()
     });
     this.dtEndTime.Properties.DisplayFormat.FormatString = "hh:mm tt";
     this.dtEndTime.Properties.DisplayFormat.FormatType   = DevExpress.Utils.FormatType.Custom;
     this.dtEndTime.Properties.EditFormat.FormatString    = "hh:mm tt";
     this.dtEndTime.Properties.EditFormat.FormatType      = DevExpress.Utils.FormatType.Custom;
     this.dtEndTime.Size     = new System.Drawing.Size(104, 22);
     this.dtEndTime.TabIndex = 5;
     //
     // dtStartTime
     //
     this.dtStartTime.EditValue = null;
     this.dtStartTime.Location  = new System.Drawing.Point(16, 136);
     this.dtStartTime.Name      = "dtStartTime";
     //
     // dtStartTime.Properties
     //
     this.dtStartTime.Properties.BorderStyle = DevExpress.XtraEditors.Controls.BorderStyles.Style3D;
     this.dtStartTime.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
         new DevExpress.XtraEditors.Controls.EditorButton()
     });
     this.dtStartTime.Properties.DisplayFormat.FormatString = "hh:mm tt";
     this.dtStartTime.Properties.DisplayFormat.FormatType   = DevExpress.Utils.FormatType.Custom;
     this.dtStartTime.Properties.EditFormat.FormatString    = "hh:mm tt";
     this.dtStartTime.Properties.EditFormat.FormatType      = DevExpress.Utils.FormatType.Custom;
     this.dtStartTime.Size     = new System.Drawing.Size(104, 22);
     this.dtStartTime.TabIndex = 4;
     //
     // btnSave
     //
     this.btnSave.Appearance.Font            = new System.Drawing.Font("Tahoma", 9F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((System.Byte)(0)));
     this.btnSave.Appearance.Options.UseFont = true;
     this.btnSave.Location = new System.Drawing.Point(128, 296);
     this.btnSave.LookAndFeel.UseDefaultLookAndFeel = false;
     this.btnSave.Name     = "btnSave";
     this.btnSave.TabIndex = 7;
     this.btnSave.Text     = "Save";
     this.btnSave.Click   += new System.EventHandler(this.btnSave_Click);
     //
     // btnCancel
     //
     this.btnCancel.Appearance.Font            = new System.Drawing.Font("Tahoma", 9F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((System.Byte)(0)));
     this.btnCancel.Appearance.Options.UseFont = true;
     this.btnCancel.Location = new System.Drawing.Point(208, 296);
     this.btnCancel.LookAndFeel.UseDefaultLookAndFeel = false;
     this.btnCancel.Name     = "btnCancel";
     this.btnCancel.TabIndex = 8;
     this.btnCancel.Text     = "Cancel";
     this.btnCancel.Click   += new System.EventHandler(this.btnCancel_Click);
     //
     // frmRosterNew
     //
     this.AutoScaleBaseSize = new System.Drawing.Size(5, 13);
     this.ClientSize        = new System.Drawing.Size(306, 327);
     this.Controls.Add(this.groupControl1);
     this.Controls.Add(this.label4);
     this.Controls.Add(this.lblBranch);
     this.Controls.Add(this.btnSave);
     this.Controls.Add(this.btnCancel);
     this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedSingle;
     this.MaximizeBox     = false;
     this.MinimizeBox     = false;
     this.Name            = "frmRosterNew";
     this.StartPosition   = System.Windows.Forms.FormStartPosition.CenterParent;
     this.Text            = "Add New Roster";
     this.Load           += new System.EventHandler(this.frmRosterNew_Load);
     ((System.ComponentModel.ISupportInitialize)(this.groupControl1)).EndInit();
     this.groupControl1.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.txtRemarks.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.dtDate.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.cbEmployee.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.cbBranch.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.dtEndTime.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.dtStartTime.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()
 {
     System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(EditorUserInRoleFrm));
     this.groupControl2 = new DevExpress.XtraEditors.GroupControl();
     this.TxtNote = new System.Windows.Forms.TextBox();
     this.CLSCRole = new DevExpress.XtraEditors.CheckedListBoxControl();
     this.BtnUpdate = new DevExpress.XtraEditors.SimpleButton();
     this.labelControl2 = new DevExpress.XtraEditors.LabelControl();
     this.groupControl1 = new DevExpress.XtraEditors.GroupControl();
     this.LUEItems = new DevExpress.XtraEditors.LookUpEdit();
     this.labelControl1 = new DevExpress.XtraEditors.LabelControl();
     this.BtnRefresh = new DevExpress.XtraEditors.SimpleButton();
     ((System.ComponentModel.ISupportInitialize)(this.groupControl2)).BeginInit();
     this.groupControl2.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.CLSCRole)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.groupControl1)).BeginInit();
     this.groupControl1.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.LUEItems.Properties)).BeginInit();
     this.SuspendLayout();
     //
     // groupControl2
     //
     this.groupControl2.Controls.Add(this.TxtNote);
     this.groupControl2.Controls.Add(this.CLSCRole);
     this.groupControl2.Controls.Add(this.BtnUpdate);
     this.groupControl2.Controls.Add(this.labelControl2);
     this.groupControl2.Location = new System.Drawing.Point(9, 75);
     this.groupControl2.Name = "groupControl2";
     this.groupControl2.Size = new System.Drawing.Size(379, 272);
     this.groupControl2.TabIndex = 8;
     this.groupControl2.Text = "تعديل سماحيات المستخدم";
     //
     // TxtNote
     //
     this.TxtNote.BackColor = System.Drawing.SystemColors.ControlLight;
     this.TxtNote.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
     this.TxtNote.ForeColor = System.Drawing.Color.Green;
     this.TxtNote.Location = new System.Drawing.Point(5, 24);
     this.TxtNote.Multiline = true;
     this.TxtNote.Name = "TxtNote";
     this.TxtNote.ReadOnly = true;
     this.TxtNote.Size = new System.Drawing.Size(140, 207);
     this.TxtNote.TabIndex = 7;
     this.TxtNote.Text = ".";
     //
     // CLSCRole
     //
     this.CLSCRole.Location = new System.Drawing.Point(151, 24);
     this.CLSCRole.Name = "CLSCRole";
     this.CLSCRole.Size = new System.Drawing.Size(155, 207);
     this.CLSCRole.TabIndex = 4;
     this.CLSCRole.ItemCheck += new DevExpress.XtraEditors.Controls.ItemCheckEventHandler(this.CLSCRole_ItemCheck);
     this.CLSCRole.SelectedIndexChanged += new System.EventHandler(this.CLSCRole_SelectedIndexChanged);
     //
     // BtnUpdate
     //
     this.BtnUpdate.Enabled = false;
     this.BtnUpdate.Location = new System.Drawing.Point(196, 237);
     this.BtnUpdate.Name = "BtnUpdate";
     this.BtnUpdate.Size = new System.Drawing.Size(110, 23);
     this.BtnUpdate.TabIndex = 3;
     this.BtnUpdate.Text = "تعديل";
     this.BtnUpdate.Click += new System.EventHandler(this.BtnUpdate_Click);
     //
     // labelControl2
     //
     this.labelControl2.Location = new System.Drawing.Point(312, 24);
     this.labelControl2.Name = "labelControl2";
     this.labelControl2.Size = new System.Drawing.Size(62, 13);
     this.labelControl2.TabIndex = 0;
     this.labelControl2.Text = "السماحيات";
     //
     // groupControl1
     //
     this.groupControl1.Controls.Add(this.LUEItems);
     this.groupControl1.Controls.Add(this.labelControl1);
     this.groupControl1.Location = new System.Drawing.Point(9, 10);
     this.groupControl1.Name = "groupControl1";
     this.groupControl1.Size = new System.Drawing.Size(379, 59);
     this.groupControl1.TabIndex = 7;
     this.groupControl1.Text = "جميع المستخدمين";
     //
     // LUEItems
     //
     this.LUEItems.Location = new System.Drawing.Point(61, 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("UserName", "User Name")});
     this.LUEItems.Properties.NullText = "";
     this.LUEItems.Size = new System.Drawing.Size(173, 19);
     this.LUEItems.TabIndex = 0;
     this.LUEItems.EditValueChanged += new System.EventHandler(this.LUEItems_EditValueChanged);
     //
     // labelControl1
     //
     this.labelControl1.Location = new System.Drawing.Point(240, 31);
     this.labelControl1.Name = "labelControl1";
     this.labelControl1.Size = new System.Drawing.Size(77, 13);
     this.labelControl1.TabIndex = 0;
     this.labelControl1.Text = "اختار مستخدم";
     //
     // BtnRefresh
     //
     this.BtnRefresh.Image = ((System.Drawing.Image)(resources.GetObject("BtnRefresh.Image")));
     this.BtnRefresh.ImageLocation = DevExpress.XtraEditors.ImageLocation.MiddleCenter;
     this.BtnRefresh.Location = new System.Drawing.Point(395, 57);
     this.BtnRefresh.Name = "BtnRefresh";
     this.BtnRefresh.Size = new System.Drawing.Size(31, 241);
     this.BtnRefresh.TabIndex = 10;
     this.BtnRefresh.Click += new System.EventHandler(this.BtnRefresh_Click);
     //
     // EditorUserInRoleFrm
     //
     this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
     this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
     this.ClientSize = new System.Drawing.Size(435, 355);
     this.Controls.Add(this.BtnRefresh);
     this.Controls.Add(this.groupControl2);
     this.Controls.Add(this.groupControl1);
     this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedSingle;
     this.Icon = ((System.Drawing.Icon)(resources.GetObject("$this.Icon")));
     this.MaximizeBox = false;
     this.Name = "EditorUserInRoleFrm";
     this.Text = "سماحيات المستخدمين";
     this.Load += new System.EventHandler(this.EditorJobFrm_Load);
     ((System.ComponentModel.ISupportInitialize)(this.groupControl2)).EndInit();
     this.groupControl2.ResumeLayout(false);
     this.groupControl2.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(this.CLSCRole)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.groupControl1)).EndInit();
     this.groupControl1.ResumeLayout(false);
     this.groupControl1.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(this.LUEItems.Properties)).EndInit();
     this.ResumeLayout(false);
 }
Пример #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.GridMemberCard               = new DevExpress.XtraGrid.GridControl();
     this.gridViewMemberCard           = new DevExpress.XtraGrid.Views.Grid.GridView();
     this.GridColumn225                = new DevExpress.XtraGrid.Columns.GridColumn();
     this.GridColumn234                = new DevExpress.XtraGrid.Columns.GridColumn();
     this.GridColumn235                = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn25                 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn1                  = new DevExpress.XtraGrid.Columns.GridColumn();
     this.repositoryItemImageComboBox1 = new DevExpress.XtraEditors.Repository.RepositoryItemImageComboBox();
     this.repositoryItemImageComboBox2 = new DevExpress.XtraEditors.Repository.RepositoryItemImageComboBox();
     this.mcard_lblNStatusID           = new System.Windows.Forms.Label();
     this.cmbMemberCard                = new DevExpress.XtraEditors.ImageComboBoxEdit();
     this.btnMemberCard_Reprint        = new DevExpress.XtraEditors.SimpleButton();
     this.btnMemberCard_Print          = new DevExpress.XtraEditors.SimpleButton();
     this.openFileDialog1              = new System.Windows.Forms.OpenFileDialog();
     this.groupControl1                = new DevExpress.XtraEditors.GroupControl();
     this.grpMemberCardBelow           = new DevExpress.XtraEditors.GroupControl();
     this.gcTransferMember             = new DevExpress.XtraGrid.GridControl();
     this.gvTransferMember             = new DevExpress.XtraGrid.Views.Grid.GridView();
     this.txtMemberName                = new DevExpress.XtraEditors.TextEdit();
     this.txtMemberID                  = new DevExpress.XtraEditors.TextEdit();
     this.label2        = new System.Windows.Forms.Label();
     this.label1        = new System.Windows.Forms.Label();
     this.btnCancelCard = new DevExpress.XtraEditors.SimpleButton();
     ((System.ComponentModel.ISupportInitialize)(this.GridMemberCard)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridViewMemberCard)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemImageComboBox1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemImageComboBox2)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.cmbMemberCard.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.groupControl1)).BeginInit();
     this.groupControl1.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.grpMemberCardBelow)).BeginInit();
     this.grpMemberCardBelow.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.gcTransferMember)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.gvTransferMember)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtMemberName.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtMemberID.Properties)).BeginInit();
     this.SuspendLayout();
     //
     // GridMemberCard
     //
     //
     // GridMemberCard.EmbeddedNavigator
     //
     this.GridMemberCard.EmbeddedNavigator.Name = "";
     this.GridMemberCard.Location          = new System.Drawing.Point(16, 64);
     this.GridMemberCard.LookAndFeel.Style = DevExpress.LookAndFeel.LookAndFeelStyle.Skin;
     this.GridMemberCard.LookAndFeel.UseDefaultLookAndFeel = false;
     this.GridMemberCard.LookAndFeel.UseWindowsXPTheme     = false;
     this.GridMemberCard.MainView = this.gridViewMemberCard;
     this.GridMemberCard.Name     = "GridMemberCard";
     this.GridMemberCard.RepositoryItems.AddRange(new DevExpress.XtraEditors.Repository.RepositoryItem[] {
         this.repositoryItemImageComboBox1,
         this.repositoryItemImageComboBox2
     });
     this.GridMemberCard.Size     = new System.Drawing.Size(936, 208);
     this.GridMemberCard.TabIndex = 8;
     this.GridMemberCard.ViewCollection.AddRange(new DevExpress.XtraGrid.Views.Base.BaseView[] {
         this.gridViewMemberCard
     });
     //
     // gridViewMemberCard
     //
     this.gridViewMemberCard.Columns.AddRange(new DevExpress.XtraGrid.Columns.GridColumn[] {
         this.GridColumn225,
         this.GridColumn234,
         this.GridColumn235,
         this.gridColumn25,
         this.gridColumn1
     });
     this.gridViewMemberCard.GridControl = this.GridMemberCard;
     this.gridViewMemberCard.Name        = "gridViewMemberCard";
     this.gridViewMemberCard.OptionsCustomization.AllowColumnMoving = false;
     this.gridViewMemberCard.OptionsCustomization.AllowFilter       = false;
     this.gridViewMemberCard.OptionsSelection.MultiSelect           = true;
     this.gridViewMemberCard.OptionsView.ShowGroupPanel             = false;
     this.gridViewMemberCard.FocusedRowChanged += new DevExpress.XtraGrid.Views.Base.FocusedRowChangedEventHandler(this.gridViewMemberCard_FocusedRowChanged);
     this.gridViewMemberCard.LostFocus         += new System.EventHandler(this.gridViewMemberCard_LostFocus);
     //
     // GridColumn225
     //
     this.GridColumn225.Caption   = "Membership ID";
     this.GridColumn225.FieldName = "strMembershipID";
     this.GridColumn225.Name      = "GridColumn225";
     this.GridColumn225.OptionsColumn.AllowEdit = false;
     this.GridColumn225.Visible      = true;
     this.GridColumn225.VisibleIndex = 0;
     this.GridColumn225.Width        = 117;
     //
     // GridColumn234
     //
     this.GridColumn234.Caption   = "Member Name";
     this.GridColumn234.FieldName = "strMemberName";
     this.GridColumn234.Name      = "GridColumn234";
     this.GridColumn234.OptionsColumn.AllowEdit = false;
     this.GridColumn234.Visible      = true;
     this.GridColumn234.VisibleIndex = 1;
     this.GridColumn234.Width        = 161;
     //
     // GridColumn235
     //
     this.GridColumn235.Caption   = "Source Branch";
     this.GridColumn235.FieldName = "BranchFrom";
     this.GridColumn235.Name      = "GridColumn235";
     this.GridColumn235.OptionsColumn.AllowEdit = false;
     this.GridColumn235.Width = 190;
     //
     // gridColumn25
     //
     this.gridColumn25.Caption   = "Collection Branch";
     this.gridColumn25.FieldName = "strBranchCode";
     this.gridColumn25.Name      = "gridColumn25";
     this.gridColumn25.OptionsColumn.AllowEdit = false;
     this.gridColumn25.Visible      = true;
     this.gridColumn25.VisibleIndex = 2;
     this.gridColumn25.Width        = 162;
     //
     // gridColumn1
     //
     this.gridColumn1.Caption      = "Status";
     this.gridColumn1.ColumnEdit   = this.repositoryItemImageComboBox1;
     this.gridColumn1.FieldName    = "nStatusID";
     this.gridColumn1.Name         = "gridColumn1";
     this.gridColumn1.Visible      = true;
     this.gridColumn1.VisibleIndex = 3;
     this.gridColumn1.Width        = 189;
     //
     // repositoryItemImageComboBox1
     //
     this.repositoryItemImageComboBox1.AutoHeight = false;
     this.repositoryItemImageComboBox1.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
         new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)
     });
     this.repositoryItemImageComboBox1.Items.AddRange(new object[] {
         new DevExpress.XtraEditors.Controls.ImageComboBoxItem("Request Print", 0, -1),
         new DevExpress.XtraEditors.Controls.ImageComboBoxItem("Print in Progress", 1, -1),
         new DevExpress.XtraEditors.Controls.ImageComboBoxItem("In Transit", 3, -1),
         new DevExpress.XtraEditors.Controls.ImageComboBoxItem("Card Received", 4, -1),
         new DevExpress.XtraEditors.Controls.ImageComboBoxItem("Card Issued", 5, -1),
         new DevExpress.XtraEditors.Controls.ImageComboBoxItem("Cancelled", 6, -1),
         new DevExpress.XtraEditors.Controls.ImageComboBoxItem("Transfer Request", 7, -1)
     });
     this.repositoryItemImageComboBox1.Name = "repositoryItemImageComboBox1";
     //
     // repositoryItemImageComboBox2
     //
     this.repositoryItemImageComboBox2.AutoHeight = false;
     this.repositoryItemImageComboBox2.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
         new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)
     });
     this.repositoryItemImageComboBox2.Name = "repositoryItemImageComboBox2";
     //
     // mcard_lblNStatusID
     //
     this.mcard_lblNStatusID.BackColor = System.Drawing.Color.Transparent;
     this.mcard_lblNStatusID.Font      = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((System.Byte)(0)));
     this.mcard_lblNStatusID.Location  = new System.Drawing.Point(16, 40);
     this.mcard_lblNStatusID.Name      = "mcard_lblNStatusID";
     this.mcard_lblNStatusID.Size      = new System.Drawing.Size(56, 16);
     this.mcard_lblNStatusID.TabIndex  = 122;
     this.mcard_lblNStatusID.Text      = "Status";
     //
     // cmbMemberCard
     //
     this.cmbMemberCard.Location = new System.Drawing.Point(72, 32);
     this.cmbMemberCard.Name     = "cmbMemberCard";
     //
     // cmbMemberCard.Properties
     //
     this.cmbMemberCard.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
         new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)
     });
     this.cmbMemberCard.Properties.Items.AddRange(new object[] {
         new DevExpress.XtraEditors.Controls.ImageComboBoxItem("Show All", null, -1),
         new DevExpress.XtraEditors.Controls.ImageComboBoxItem("Request Print", 0, -1),
         new DevExpress.XtraEditors.Controls.ImageComboBoxItem("Print in Progress", 1, -1),
         new DevExpress.XtraEditors.Controls.ImageComboBoxItem("In Transit", 3, -1),
         new DevExpress.XtraEditors.Controls.ImageComboBoxItem("Card Received", 4, -1),
         new DevExpress.XtraEditors.Controls.ImageComboBoxItem("Card Issued", 5, -1),
         new DevExpress.XtraEditors.Controls.ImageComboBoxItem("Cancelled", 6, -1)
     });
     this.cmbMemberCard.Properties.LookAndFeel.Style = DevExpress.LookAndFeel.LookAndFeelStyle.Skin;
     this.cmbMemberCard.Properties.LookAndFeel.UseDefaultLookAndFeel = false;
     this.cmbMemberCard.Size                  = new System.Drawing.Size(160, 20);
     this.cmbMemberCard.TabIndex              = 120;
     this.cmbMemberCard.SelectedIndexChanged += new System.EventHandler(this.cmbMemberCard_SelectedIndexChanged);
     //
     // btnMemberCard_Reprint
     //
     this.btnMemberCard_Reprint.Appearance.BackColor              = System.Drawing.Color.LightGray;
     this.btnMemberCard_Reprint.Appearance.BorderColor            = System.Drawing.Color.Black;
     this.btnMemberCard_Reprint.Appearance.Font                   = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((System.Byte)(0)));
     this.btnMemberCard_Reprint.Appearance.ForeColor              = System.Drawing.Color.Black;
     this.btnMemberCard_Reprint.Appearance.Options.UseBackColor   = true;
     this.btnMemberCard_Reprint.Appearance.Options.UseBorderColor = true;
     this.btnMemberCard_Reprint.Appearance.Options.UseFont        = true;
     this.btnMemberCard_Reprint.Appearance.Options.UseForeColor   = true;
     this.btnMemberCard_Reprint.ButtonStyle = DevExpress.XtraEditors.Controls.BorderStyles.Simple;
     this.btnMemberCard_Reprint.Enabled     = false;
     this.btnMemberCard_Reprint.Location    = new System.Drawing.Point(384, 32);
     this.btnMemberCard_Reprint.Name        = "btnMemberCard_Reprint";
     this.btnMemberCard_Reprint.Size        = new System.Drawing.Size(140, 20);
     this.btnMemberCard_Reprint.TabIndex    = 119;
     this.btnMemberCard_Reprint.Text        = "Reprint Member Card";
     this.btnMemberCard_Reprint.Click      += new System.EventHandler(this.btnMemberCard_Reprint_Click);
     //
     // btnMemberCard_Print
     //
     this.btnMemberCard_Print.Appearance.BackColor              = System.Drawing.Color.LightGray;
     this.btnMemberCard_Print.Appearance.BorderColor            = System.Drawing.Color.Black;
     this.btnMemberCard_Print.Appearance.Font                   = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((System.Byte)(0)));
     this.btnMemberCard_Print.Appearance.ForeColor              = System.Drawing.Color.Black;
     this.btnMemberCard_Print.Appearance.Options.UseBackColor   = true;
     this.btnMemberCard_Print.Appearance.Options.UseBorderColor = true;
     this.btnMemberCard_Print.Appearance.Options.UseFont        = true;
     this.btnMemberCard_Print.Appearance.Options.UseForeColor   = true;
     this.btnMemberCard_Print.ButtonStyle       = DevExpress.XtraEditors.Controls.BorderStyles.Simple;
     this.btnMemberCard_Print.Enabled           = false;
     this.btnMemberCard_Print.Location          = new System.Drawing.Point(248, 32);
     this.btnMemberCard_Print.LookAndFeel.Style = DevExpress.LookAndFeel.LookAndFeelStyle.Skin;
     this.btnMemberCard_Print.Name     = "btnMemberCard_Print";
     this.btnMemberCard_Print.Size     = new System.Drawing.Size(128, 20);
     this.btnMemberCard_Print.TabIndex = 118;
     this.btnMemberCard_Print.Text     = "Print Member Card";
     this.btnMemberCard_Print.Click   += new System.EventHandler(this.btnMemberCard_Print_Click);
     //
     // groupControl1
     //
     this.groupControl1.Appearance.BackColor            = System.Drawing.SystemColors.Control;
     this.groupControl1.Appearance.Options.UseBackColor = true;
     this.groupControl1.Controls.Add(this.btnCancelCard);
     this.groupControl1.Controls.Add(this.grpMemberCardBelow);
     this.groupControl1.Controls.Add(this.btnMemberCard_Reprint);
     this.groupControl1.Controls.Add(this.mcard_lblNStatusID);
     this.groupControl1.Controls.Add(this.cmbMemberCard);
     this.groupControl1.Controls.Add(this.btnMemberCard_Print);
     this.groupControl1.Controls.Add(this.GridMemberCard);
     this.groupControl1.Dock              = System.Windows.Forms.DockStyle.Fill;
     this.groupControl1.Location          = new System.Drawing.Point(0, 0);
     this.groupControl1.LookAndFeel.Style = DevExpress.LookAndFeel.LookAndFeelStyle.Office2003;
     this.groupControl1.LookAndFeel.UseDefaultLookAndFeel = false;
     this.groupControl1.Name     = "groupControl1";
     this.groupControl1.Size     = new System.Drawing.Size(984, 541);
     this.groupControl1.TabIndex = 123;
     this.groupControl1.Text     = "Member Card";
     //
     // grpMemberCardBelow
     //
     this.grpMemberCardBelow.Appearance.BackColor            = System.Drawing.Color.White;
     this.grpMemberCardBelow.Appearance.GradientMode         = System.Drawing.Drawing2D.LinearGradientMode.Vertical;
     this.grpMemberCardBelow.Appearance.Options.UseBackColor = true;
     this.grpMemberCardBelow.Controls.Add(this.gcTransferMember);
     this.grpMemberCardBelow.Controls.Add(this.txtMemberName);
     this.grpMemberCardBelow.Controls.Add(this.txtMemberID);
     this.grpMemberCardBelow.Controls.Add(this.label2);
     this.grpMemberCardBelow.Controls.Add(this.label1);
     this.grpMemberCardBelow.Location          = new System.Drawing.Point(16, 288);
     this.grpMemberCardBelow.LookAndFeel.Style = DevExpress.LookAndFeel.LookAndFeelStyle.Office2003;
     this.grpMemberCardBelow.LookAndFeel.UseDefaultLookAndFeel = false;
     this.grpMemberCardBelow.LookAndFeel.UseWindowsXPTheme     = false;
     this.grpMemberCardBelow.Name     = "grpMemberCardBelow";
     this.grpMemberCardBelow.Size     = new System.Drawing.Size(936, 224);
     this.grpMemberCardBelow.TabIndex = 123;
     this.grpMemberCardBelow.Text     = "In Transit Member Card";
     //
     // gcTransferMember
     //
     this.gcTransferMember.Dock = System.Windows.Forms.DockStyle.Left;
     //
     // gcTransferMember.EmbeddedNavigator
     //
     this.gcTransferMember.EmbeddedNavigator.Name = "";
     this.gcTransferMember.Location          = new System.Drawing.Point(2, 20);
     this.gcTransferMember.LookAndFeel.Style = DevExpress.LookAndFeel.LookAndFeelStyle.Office2003;
     this.gcTransferMember.LookAndFeel.UseDefaultLookAndFeel = false;
     this.gcTransferMember.MainView = this.gvTransferMember;
     this.gcTransferMember.Name     = "gcTransferMember";
     this.gcTransferMember.Size     = new System.Drawing.Size(398, 202);
     this.gcTransferMember.TabIndex = 6;
     this.gcTransferMember.ViewCollection.AddRange(new DevExpress.XtraGrid.Views.Base.BaseView[] {
         this.gvTransferMember
     });
     //
     // gvTransferMember
     //
     this.gvTransferMember.GridControl = this.gcTransferMember;
     this.gvTransferMember.Name        = "gvTransferMember";
     this.gvTransferMember.OptionsBehavior.Editable = false;
     this.gvTransferMember.OptionsCustomization.AllowColumnMoving = false;
     this.gvTransferMember.OptionsCustomization.AllowFilter       = false;
     this.gvTransferMember.OptionsCustomization.AllowSort         = false;
     this.gvTransferMember.OptionsView.ShowGroupPanel             = false;
     //
     // txtMemberName
     //
     this.txtMemberName.EditValue = "";
     this.txtMemberName.Enabled   = false;
     this.txtMemberName.Location  = new System.Drawing.Point(536, 144);
     this.txtMemberName.Name      = "txtMemberName";
     this.txtMemberName.Size      = new System.Drawing.Size(224, 20);
     this.txtMemberName.TabIndex  = 5;
     //
     // txtMemberID
     //
     this.txtMemberID.EditValue = "";
     this.txtMemberID.Enabled   = false;
     this.txtMemberID.Location  = new System.Drawing.Point(536, 96);
     this.txtMemberID.Name      = "txtMemberID";
     //
     // txtMemberID.Properties
     //
     this.txtMemberID.Properties.Appearance.BackColor            = System.Drawing.Color.LightBlue;
     this.txtMemberID.Properties.Appearance.Options.UseBackColor = true;
     this.txtMemberID.Size      = new System.Drawing.Size(176, 20);
     this.txtMemberID.TabIndex  = 4;
     this.txtMemberID.KeyPress += new System.Windows.Forms.KeyPressEventHandler(this.txtMemberID_KeyPress);
     //
     // label2
     //
     this.label2.Font     = new System.Drawing.Font("Microsoft Sans Serif", 9.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((System.Byte)(0)));
     this.label2.Location = new System.Drawing.Point(432, 144);
     this.label2.Name     = "label2";
     this.label2.TabIndex = 3;
     this.label2.Text     = "Member Name";
     //
     // label1
     //
     this.label1.Font     = new System.Drawing.Font("Microsoft Sans Serif", 9.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((System.Byte)(0)));
     this.label1.Location = new System.Drawing.Point(432, 96);
     this.label1.Name     = "label1";
     this.label1.TabIndex = 2;
     this.label1.Text     = "Member ID";
     //
     // btnCancelCard
     //
     this.btnCancelCard.Appearance.BackColor              = System.Drawing.Color.LightGray;
     this.btnCancelCard.Appearance.BorderColor            = System.Drawing.Color.Black;
     this.btnCancelCard.Appearance.Font                   = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((System.Byte)(0)));
     this.btnCancelCard.Appearance.ForeColor              = System.Drawing.Color.Black;
     this.btnCancelCard.Appearance.Options.UseBackColor   = true;
     this.btnCancelCard.Appearance.Options.UseBorderColor = true;
     this.btnCancelCard.Appearance.Options.UseFont        = true;
     this.btnCancelCard.Appearance.Options.UseForeColor   = true;
     this.btnCancelCard.ButtonStyle = DevExpress.XtraEditors.Controls.BorderStyles.Simple;
     this.btnCancelCard.Location    = new System.Drawing.Point(544, 32);
     this.btnCancelCard.Name        = "btnCancelCard";
     this.btnCancelCard.Size        = new System.Drawing.Size(72, 20);
     this.btnCancelCard.TabIndex    = 124;
     this.btnCancelCard.Text        = "Cancel";
     this.btnCancelCard.Click      += new System.EventHandler(this.btnCancelCard_Click);
     //
     // frmMemberCard
     //
     this.AutoScale         = false;
     this.AutoScaleBaseSize = new System.Drawing.Size(5, 13);
     this.BackColor         = System.Drawing.Color.White;
     this.ClientSize        = new System.Drawing.Size(984, 541);
     this.Controls.Add(this.groupControl1);
     this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.None;
     this.Name            = "frmMemberCard";
     this.Text            = "Member Card";
     this.WindowState     = System.Windows.Forms.FormWindowState.Maximized;
     this.Load           += new System.EventHandler(this.frmMemberCard_Load);
     ((System.ComponentModel.ISupportInitialize)(this.GridMemberCard)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridViewMemberCard)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemImageComboBox1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemImageComboBox2)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.cmbMemberCard.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.groupControl1)).EndInit();
     this.groupControl1.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.grpMemberCardBelow)).EndInit();
     this.grpMemberCardBelow.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.gcTransferMember)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.gvTransferMember)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtMemberName.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtMemberID.Properties)).EndInit();
     this.ResumeLayout(false);
 }
Пример #31
0
 /// <summary>
 /// Required method for Designer support - do not modify
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     this.groupControl1 = new DevExpress.XtraEditors.GroupControl();
     this.sbtnEmpDel = new DevExpress.XtraEditors.SimpleButton();
     this.sbtnEmpAllDel = new DevExpress.XtraEditors.SimpleButton();
     this.sbtnEmpAllAdd = new DevExpress.XtraEditors.SimpleButton();
     this.sbtnEmpAdd = new DevExpress.XtraEditors.SimpleButton();
     this.gridctrEmployee2 = new DevExpress.XtraGrid.GridControl();
     this.gvEmployee2 = new DevExpress.XtraGrid.Views.Grid.GridView();
     this.colEmployeeID2 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.colEmployeeName2 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridctrEmployee = new DevExpress.XtraGrid.GridControl();
     this.gvEmployee = new DevExpress.XtraGrid.Views.Grid.GridView();
     this.colEmployeeID = new DevExpress.XtraGrid.Columns.GridColumn();
     this.colEmployeeName = new DevExpress.XtraGrid.Columns.GridColumn();
     this.sbtnPGDel = new DevExpress.XtraEditors.SimpleButton();
     this.sbtnPGAllDel = new DevExpress.XtraEditors.SimpleButton();
     this.sbtnPGAllAdd = new DevExpress.XtraEditors.SimpleButton();
     this.sbtnPGAdd = new DevExpress.XtraEditors.SimpleButton();
     this.gridctrPersonalGroup2 = new DevExpress.XtraGrid.GridControl();
     this.gvPersonalGroup2 = new DevExpress.XtraGrid.Views.Grid.GridView();
     this.colPersonalGroupID2 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.colPersonalGroupCode3 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.colPersonalGroupDesc2 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridctrPersonalGroup = new DevExpress.XtraGrid.GridControl();
     this.gvPersonalGroup = new DevExpress.XtraGrid.Views.Grid.GridView();
     this.colPersonalGroupID = new DevExpress.XtraGrid.Columns.GridColumn();
     this.colPersonalGroupCode = new DevExpress.XtraGrid.Columns.GridColumn();
     this.colPersonalGroupDesc = new DevExpress.XtraGrid.Columns.GridColumn();
     this.sbtnDGDel = new DevExpress.XtraEditors.SimpleButton();
     this.sbtnDGAllDel = new DevExpress.XtraEditors.SimpleButton();
     this.sbtnDGAllAdd = new DevExpress.XtraEditors.SimpleButton();
     this.sbtnDGAdd = new DevExpress.XtraEditors.SimpleButton();
     this.gridctrDepartmentGroup2 = new DevExpress.XtraGrid.GridControl();
     this.gvDepartmentGroup2 = new DevExpress.XtraGrid.Views.Grid.GridView();
     this.colDepartmentID2 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.colDepartmentGroupCode2 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.colDepartmentGroupDesc2 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridctrDepartmentGroup = new DevExpress.XtraGrid.GridControl();
     this.gvDepartmentGroup = new DevExpress.XtraGrid.Views.Grid.GridView();
     this.colDepartmentGroup = new DevExpress.XtraGrid.Columns.GridColumn();
     this.colDepartmentGroupCode = new DevExpress.XtraGrid.Columns.GridColumn();
     this.colDepartmentGroupDesc = new DevExpress.XtraGrid.Columns.GridColumn();
     this.sbtnBGDel = new DevExpress.XtraEditors.SimpleButton();
     this.sbtnBGAllDel = new DevExpress.XtraEditors.SimpleButton();
     this.sbtnBGAllAdd = new DevExpress.XtraEditors.SimpleButton();
     this.sbtnBGAdd = new DevExpress.XtraEditors.SimpleButton();
     this.label6 = new System.Windows.Forms.Label();
     this.label4 = new System.Windows.Forms.Label();
     this.label5 = new System.Windows.Forms.Label();
     this.gridctrBranchReceipient2 = new DevExpress.XtraGrid.GridControl();
     this.gvBranchReceipient2 = new DevExpress.XtraGrid.Views.Grid.GridView();
     this.colBranchCode2 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.colBranchName2 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.label3 = new System.Windows.Forms.Label();
     this.gridctrBranchReceipient = new DevExpress.XtraGrid.GridControl();
     this.gvBranchReceipient = new DevExpress.XtraGrid.Views.Grid.GridView();
     this.colBranchCode = new DevExpress.XtraGrid.Columns.GridColumn();
     this.colBranchName = new DevExpress.XtraGrid.Columns.GridColumn();
     this.sbtnAdd = new DevExpress.XtraEditors.SimpleButton();
     this.sbtnCancel = new DevExpress.XtraEditors.SimpleButton();
     ((System.ComponentModel.ISupportInitialize)(this.groupControl1)).BeginInit();
     this.groupControl1.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.gridctrEmployee2)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.gvEmployee2)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridctrEmployee)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.gvEmployee)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridctrPersonalGroup2)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.gvPersonalGroup2)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridctrPersonalGroup)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.gvPersonalGroup)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridctrDepartmentGroup2)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.gvDepartmentGroup2)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridctrDepartmentGroup)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.gvDepartmentGroup)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridctrBranchReceipient2)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.gvBranchReceipient2)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridctrBranchReceipient)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.gvBranchReceipient)).BeginInit();
     this.SuspendLayout();
     //
     // groupControl1
     //
     this.groupControl1.Controls.Add(this.sbtnEmpDel);
     this.groupControl1.Controls.Add(this.sbtnEmpAllDel);
     this.groupControl1.Controls.Add(this.sbtnEmpAllAdd);
     this.groupControl1.Controls.Add(this.sbtnEmpAdd);
     this.groupControl1.Controls.Add(this.gridctrEmployee2);
     this.groupControl1.Controls.Add(this.gridctrEmployee);
     this.groupControl1.Controls.Add(this.sbtnPGDel);
     this.groupControl1.Controls.Add(this.sbtnPGAllDel);
     this.groupControl1.Controls.Add(this.sbtnPGAllAdd);
     this.groupControl1.Controls.Add(this.sbtnPGAdd);
     this.groupControl1.Controls.Add(this.gridctrPersonalGroup2);
     this.groupControl1.Controls.Add(this.gridctrPersonalGroup);
     this.groupControl1.Controls.Add(this.sbtnDGDel);
     this.groupControl1.Controls.Add(this.sbtnDGAllDel);
     this.groupControl1.Controls.Add(this.sbtnDGAllAdd);
     this.groupControl1.Controls.Add(this.sbtnDGAdd);
     this.groupControl1.Controls.Add(this.gridctrDepartmentGroup2);
     this.groupControl1.Controls.Add(this.gridctrDepartmentGroup);
     this.groupControl1.Controls.Add(this.sbtnBGDel);
     this.groupControl1.Controls.Add(this.sbtnBGAllDel);
     this.groupControl1.Controls.Add(this.sbtnBGAllAdd);
     this.groupControl1.Controls.Add(this.sbtnBGAdd);
     this.groupControl1.Controls.Add(this.label6);
     this.groupControl1.Controls.Add(this.label4);
     this.groupControl1.Controls.Add(this.label5);
     this.groupControl1.Controls.Add(this.gridctrBranchReceipient2);
     this.groupControl1.Controls.Add(this.label3);
     this.groupControl1.Controls.Add(this.gridctrBranchReceipient);
     this.groupControl1.Location = new System.Drawing.Point(4, 8);
     this.groupControl1.Name = "groupControl1";
     this.groupControl1.Size = new System.Drawing.Size(914, 384);
     this.groupControl1.TabIndex = 0;
     this.groupControl1.Text = "Recepients";
     //
     // sbtnEmpDel
     //
     this.sbtnEmpDel.ButtonStyle = DevExpress.XtraEditors.Controls.BorderStyles.Simple;
     this.sbtnEmpDel.Location = new System.Drawing.Point(476, 358);
     this.sbtnEmpDel.Name = "sbtnEmpDel";
     this.sbtnEmpDel.Size = new System.Drawing.Size(30, 20);
     this.sbtnEmpDel.TabIndex = 22;
     this.sbtnEmpDel.Text = "<";
     this.sbtnEmpDel.Click += new System.EventHandler(this.sbtnEmpDel_Click);
     //
     // sbtnEmpAllDel
     //
     this.sbtnEmpAllDel.ButtonStyle = DevExpress.XtraEditors.Controls.BorderStyles.Simple;
     this.sbtnEmpAllDel.Location = new System.Drawing.Point(476, 336);
     this.sbtnEmpAllDel.Name = "sbtnEmpAllDel";
     this.sbtnEmpAllDel.Size = new System.Drawing.Size(30, 20);
     this.sbtnEmpAllDel.TabIndex = 21;
     this.sbtnEmpAllDel.Text = "<<";
     this.sbtnEmpAllDel.Click += new System.EventHandler(this.sbtnEmpAllDel_Click);
     //
     // sbtnEmpAllAdd
     //
     this.sbtnEmpAllAdd.ButtonStyle = DevExpress.XtraEditors.Controls.BorderStyles.Simple;
     this.sbtnEmpAllAdd.Location = new System.Drawing.Point(476, 314);
     this.sbtnEmpAllAdd.Name = "sbtnEmpAllAdd";
     this.sbtnEmpAllAdd.Size = new System.Drawing.Size(30, 20);
     this.sbtnEmpAllAdd.TabIndex = 20;
     this.sbtnEmpAllAdd.Text = ">>";
     this.sbtnEmpAllAdd.Click += new System.EventHandler(this.sbtnEmpAllAdd_Click);
     //
     // sbtnEmpAdd
     //
     this.sbtnEmpAdd.ButtonStyle = DevExpress.XtraEditors.Controls.BorderStyles.Simple;
     this.sbtnEmpAdd.Location = new System.Drawing.Point(476, 292);
     this.sbtnEmpAdd.Name = "sbtnEmpAdd";
     this.sbtnEmpAdd.Size = new System.Drawing.Size(30, 20);
     this.sbtnEmpAdd.TabIndex = 19;
     this.sbtnEmpAdd.Text = ">";
     this.sbtnEmpAdd.Click += new System.EventHandler(this.sbtnEmpAdd_Click);
     //
     // gridctrEmployee2
     //
     //
     // gridctrEmployee2.EmbeddedNavigator
     //
     this.gridctrEmployee2.EmbeddedNavigator.Name = "";
     this.gridctrEmployee2.Location = new System.Drawing.Point(510, 290);
     this.gridctrEmployee2.MainView = this.gvEmployee2;
     this.gridctrEmployee2.Name = "gridctrEmployee2";
     this.gridctrEmployee2.Size = new System.Drawing.Size(400, 88);
     this.gridctrEmployee2.TabIndex = 23;
     this.gridctrEmployee2.ViewCollection.AddRange(new DevExpress.XtraGrid.Views.Base.BaseView[] {
                                                                                                     this.gvEmployee2});
     //
     // gvEmployee2
     //
     this.gvEmployee2.Columns.AddRange(new DevExpress.XtraGrid.Columns.GridColumn[] {
                                                                                        this.colEmployeeID2,
                                                                                        this.colEmployeeName2});
     this.gvEmployee2.GridControl = this.gridctrEmployee2;
     this.gvEmployee2.Name = "gvEmployee2";
     this.gvEmployee2.OptionsBehavior.AllowIncrementalSearch = true;
     this.gvEmployee2.OptionsBehavior.Editable = false;
     this.gvEmployee2.OptionsCustomization.AllowFilter = false;
     this.gvEmployee2.OptionsSelection.MultiSelect = true;
     this.gvEmployee2.OptionsView.ShowGroupPanel = false;
     this.gvEmployee2.SortInfo.AddRange(new DevExpress.XtraGrid.Columns.GridColumnSortInfo[] {
                                                                                                 new DevExpress.XtraGrid.Columns.GridColumnSortInfo(this.colEmployeeID2, DevExpress.Data.ColumnSortOrder.Ascending)});
     //
     // colEmployeeID2
     //
     this.colEmployeeID2.Caption = "Employee ID";
     this.colEmployeeID2.FieldName = "nEmployeeID";
     this.colEmployeeID2.Name = "colEmployeeID2";
     this.colEmployeeID2.Visible = true;
     this.colEmployeeID2.VisibleIndex = 0;
     this.colEmployeeID2.Width = 78;
     //
     // colEmployeeName2
     //
     this.colEmployeeName2.Caption = "Name";
     this.colEmployeeName2.FieldName = "strEmployeeName";
     this.colEmployeeName2.Name = "colEmployeeName2";
     this.colEmployeeName2.Visible = true;
     this.colEmployeeName2.VisibleIndex = 1;
     this.colEmployeeName2.Width = 308;
     //
     // gridctrEmployee
     //
     //
     // gridctrEmployee.EmbeddedNavigator
     //
     this.gridctrEmployee.EmbeddedNavigator.Name = "";
     this.gridctrEmployee.Location = new System.Drawing.Point(72, 290);
     this.gridctrEmployee.MainView = this.gvEmployee;
     this.gridctrEmployee.Name = "gridctrEmployee";
     this.gridctrEmployee.Size = new System.Drawing.Size(400, 88);
     this.gridctrEmployee.TabIndex = 18;
     this.gridctrEmployee.ViewCollection.AddRange(new DevExpress.XtraGrid.Views.Base.BaseView[] {
                                                                                                    this.gvEmployee});
     //
     // gvEmployee
     //
     this.gvEmployee.Columns.AddRange(new DevExpress.XtraGrid.Columns.GridColumn[] {
                                                                                       this.colEmployeeID,
                                                                                       this.colEmployeeName});
     this.gvEmployee.GridControl = this.gridctrEmployee;
     this.gvEmployee.Name = "gvEmployee";
     this.gvEmployee.OptionsBehavior.AllowIncrementalSearch = true;
     this.gvEmployee.OptionsBehavior.Editable = false;
     this.gvEmployee.OptionsCustomization.AllowFilter = false;
     this.gvEmployee.OptionsSelection.MultiSelect = true;
     this.gvEmployee.OptionsView.ShowGroupPanel = false;
     this.gvEmployee.SortInfo.AddRange(new DevExpress.XtraGrid.Columns.GridColumnSortInfo[] {
                                                                                                new DevExpress.XtraGrid.Columns.GridColumnSortInfo(this.colEmployeeID, DevExpress.Data.ColumnSortOrder.Ascending)});
     //
     // colEmployeeID
     //
     this.colEmployeeID.Caption = "Employee ID";
     this.colEmployeeID.FieldName = "nEmployeeID";
     this.colEmployeeID.Name = "colEmployeeID";
     this.colEmployeeID.Visible = true;
     this.colEmployeeID.VisibleIndex = 0;
     this.colEmployeeID.Width = 79;
     //
     // colEmployeeName
     //
     this.colEmployeeName.Caption = "Name";
     this.colEmployeeName.FieldName = "strEmployeeName";
     this.colEmployeeName.Name = "colEmployeeName";
     this.colEmployeeName.Visible = true;
     this.colEmployeeName.VisibleIndex = 1;
     this.colEmployeeName.Width = 307;
     //
     // sbtnPGDel
     //
     this.sbtnPGDel.ButtonStyle = DevExpress.XtraEditors.Controls.BorderStyles.Simple;
     this.sbtnPGDel.Location = new System.Drawing.Point(476, 268);
     this.sbtnPGDel.Name = "sbtnPGDel";
     this.sbtnPGDel.Size = new System.Drawing.Size(30, 20);
     this.sbtnPGDel.TabIndex = 16;
     this.sbtnPGDel.Text = "<";
     this.sbtnPGDel.Click += new System.EventHandler(this.sbtnPGDel_Click);
     //
     // sbtnPGAllDel
     //
     this.sbtnPGAllDel.ButtonStyle = DevExpress.XtraEditors.Controls.BorderStyles.Simple;
     this.sbtnPGAllDel.Location = new System.Drawing.Point(476, 246);
     this.sbtnPGAllDel.Name = "sbtnPGAllDel";
     this.sbtnPGAllDel.Size = new System.Drawing.Size(30, 20);
     this.sbtnPGAllDel.TabIndex = 15;
     this.sbtnPGAllDel.Text = "<<";
     this.sbtnPGAllDel.Click += new System.EventHandler(this.sbtnPGAllDel_Click);
     //
     // sbtnPGAllAdd
     //
     this.sbtnPGAllAdd.ButtonStyle = DevExpress.XtraEditors.Controls.BorderStyles.Simple;
     this.sbtnPGAllAdd.Location = new System.Drawing.Point(476, 224);
     this.sbtnPGAllAdd.Name = "sbtnPGAllAdd";
     this.sbtnPGAllAdd.Size = new System.Drawing.Size(30, 20);
     this.sbtnPGAllAdd.TabIndex = 14;
     this.sbtnPGAllAdd.Text = ">>";
     this.sbtnPGAllAdd.Click += new System.EventHandler(this.sbtnPGAllAdd_Click);
     //
     // sbtnPGAdd
     //
     this.sbtnPGAdd.ButtonStyle = DevExpress.XtraEditors.Controls.BorderStyles.Simple;
     this.sbtnPGAdd.Location = new System.Drawing.Point(476, 202);
     this.sbtnPGAdd.Name = "sbtnPGAdd";
     this.sbtnPGAdd.Size = new System.Drawing.Size(30, 20);
     this.sbtnPGAdd.TabIndex = 13;
     this.sbtnPGAdd.Text = ">";
     this.sbtnPGAdd.Click += new System.EventHandler(this.sbtnPGAdd_Click);
     //
     // gridctrPersonalGroup2
     //
     //
     // gridctrPersonalGroup2.EmbeddedNavigator
     //
     this.gridctrPersonalGroup2.EmbeddedNavigator.Name = "";
     this.gridctrPersonalGroup2.Location = new System.Drawing.Point(510, 200);
     this.gridctrPersonalGroup2.MainView = this.gvPersonalGroup2;
     this.gridctrPersonalGroup2.Name = "gridctrPersonalGroup2";
     this.gridctrPersonalGroup2.Size = new System.Drawing.Size(400, 88);
     this.gridctrPersonalGroup2.TabIndex = 17;
     this.gridctrPersonalGroup2.ViewCollection.AddRange(new DevExpress.XtraGrid.Views.Base.BaseView[] {
                                                                                                          this.gvPersonalGroup2});
     //
     // gvPersonalGroup2
     //
     this.gvPersonalGroup2.Columns.AddRange(new DevExpress.XtraGrid.Columns.GridColumn[] {
                                                                                             this.colPersonalGroupID2,
                                                                                             this.colPersonalGroupCode3,
                                                                                             this.colPersonalGroupDesc2});
     this.gvPersonalGroup2.GridControl = this.gridctrPersonalGroup2;
     this.gvPersonalGroup2.Name = "gvPersonalGroup2";
     this.gvPersonalGroup2.OptionsBehavior.AllowIncrementalSearch = true;
     this.gvPersonalGroup2.OptionsBehavior.Editable = false;
     this.gvPersonalGroup2.OptionsCustomization.AllowFilter = false;
     this.gvPersonalGroup2.OptionsSelection.MultiSelect = true;
     this.gvPersonalGroup2.OptionsView.ShowGroupPanel = false;
     this.gvPersonalGroup2.SortInfo.AddRange(new DevExpress.XtraGrid.Columns.GridColumnSortInfo[] {
                                                                                                      new DevExpress.XtraGrid.Columns.GridColumnSortInfo(this.colPersonalGroupID2, DevExpress.Data.ColumnSortOrder.Ascending)});
     //
     // colPersonalGroupID2
     //
     this.colPersonalGroupID2.Caption = "ID";
     this.colPersonalGroupID2.FieldName = "nMemoGroupID";
     this.colPersonalGroupID2.Name = "colPersonalGroupID2";
     this.colPersonalGroupID2.Visible = true;
     this.colPersonalGroupID2.VisibleIndex = 0;
     this.colPersonalGroupID2.Width = 71;
     //
     // colPersonalGroupCode3
     //
     this.colPersonalGroupCode3.Caption = "Code";
     this.colPersonalGroupCode3.FieldName = "strMemoGroupCode";
     this.colPersonalGroupCode3.Name = "colPersonalGroupCode3";
     this.colPersonalGroupCode3.Visible = true;
     this.colPersonalGroupCode3.VisibleIndex = 1;
     this.colPersonalGroupCode3.Width = 92;
     //
     // colPersonalGroupDesc2
     //
     this.colPersonalGroupDesc2.Caption = "Description";
     this.colPersonalGroupDesc2.FieldName = "strDescription";
     this.colPersonalGroupDesc2.Name = "colPersonalGroupDesc2";
     this.colPersonalGroupDesc2.Visible = true;
     this.colPersonalGroupDesc2.VisibleIndex = 2;
     this.colPersonalGroupDesc2.Width = 223;
     //
     // gridctrPersonalGroup
     //
     //
     // gridctrPersonalGroup.EmbeddedNavigator
     //
     this.gridctrPersonalGroup.EmbeddedNavigator.Name = "";
     this.gridctrPersonalGroup.Location = new System.Drawing.Point(72, 200);
     this.gridctrPersonalGroup.MainView = this.gvPersonalGroup;
     this.gridctrPersonalGroup.Name = "gridctrPersonalGroup";
     this.gridctrPersonalGroup.Size = new System.Drawing.Size(400, 88);
     this.gridctrPersonalGroup.TabIndex = 12;
     this.gridctrPersonalGroup.ViewCollection.AddRange(new DevExpress.XtraGrid.Views.Base.BaseView[] {
                                                                                                         this.gvPersonalGroup});
     //
     // gvPersonalGroup
     //
     this.gvPersonalGroup.Columns.AddRange(new DevExpress.XtraGrid.Columns.GridColumn[] {
                                                                                            this.colPersonalGroupID,
                                                                                            this.colPersonalGroupCode,
                                                                                            this.colPersonalGroupDesc});
     this.gvPersonalGroup.GridControl = this.gridctrPersonalGroup;
     this.gvPersonalGroup.Name = "gvPersonalGroup";
     this.gvPersonalGroup.OptionsBehavior.AllowIncrementalSearch = true;
     this.gvPersonalGroup.OptionsBehavior.Editable = false;
     this.gvPersonalGroup.OptionsCustomization.AllowFilter = false;
     this.gvPersonalGroup.OptionsSelection.MultiSelect = true;
     this.gvPersonalGroup.OptionsView.ShowGroupPanel = false;
     this.gvPersonalGroup.SortInfo.AddRange(new DevExpress.XtraGrid.Columns.GridColumnSortInfo[] {
                                                                                                     new DevExpress.XtraGrid.Columns.GridColumnSortInfo(this.colPersonalGroupID, DevExpress.Data.ColumnSortOrder.Ascending)});
     //
     // colPersonalGroupID
     //
     this.colPersonalGroupID.Caption = "ID";
     this.colPersonalGroupID.FieldName = "nMemoGroupID";
     this.colPersonalGroupID.Name = "colPersonalGroupID";
     this.colPersonalGroupID.Visible = true;
     this.colPersonalGroupID.VisibleIndex = 0;
     this.colPersonalGroupID.Width = 63;
     //
     // colPersonalGroupCode
     //
     this.colPersonalGroupCode.Caption = "Code";
     this.colPersonalGroupCode.FieldName = "strMemoGroupCode";
     this.colPersonalGroupCode.Name = "colPersonalGroupCode";
     this.colPersonalGroupCode.Visible = true;
     this.colPersonalGroupCode.VisibleIndex = 1;
     this.colPersonalGroupCode.Width = 97;
     //
     // colPersonalGroupDesc
     //
     this.colPersonalGroupDesc.Caption = "Description";
     this.colPersonalGroupDesc.FieldName = "strDescription";
     this.colPersonalGroupDesc.Name = "colPersonalGroupDesc";
     this.colPersonalGroupDesc.Visible = true;
     this.colPersonalGroupDesc.VisibleIndex = 2;
     this.colPersonalGroupDesc.Width = 226;
     //
     // sbtnDGDel
     //
     this.sbtnDGDel.ButtonStyle = DevExpress.XtraEditors.Controls.BorderStyles.Simple;
     this.sbtnDGDel.Location = new System.Drawing.Point(476, 178);
     this.sbtnDGDel.Name = "sbtnDGDel";
     this.sbtnDGDel.Size = new System.Drawing.Size(30, 20);
     this.sbtnDGDel.TabIndex = 10;
     this.sbtnDGDel.Text = "<";
     this.sbtnDGDel.Click += new System.EventHandler(this.sbtnDGDel_Click);
     //
     // sbtnDGAllDel
     //
     this.sbtnDGAllDel.ButtonStyle = DevExpress.XtraEditors.Controls.BorderStyles.Simple;
     this.sbtnDGAllDel.Location = new System.Drawing.Point(476, 156);
     this.sbtnDGAllDel.Name = "sbtnDGAllDel";
     this.sbtnDGAllDel.Size = new System.Drawing.Size(30, 20);
     this.sbtnDGAllDel.TabIndex = 9;
     this.sbtnDGAllDel.Text = "<<";
     this.sbtnDGAllDel.Click += new System.EventHandler(this.sbtnDGAllDel_Click);
     //
     // sbtnDGAllAdd
     //
     this.sbtnDGAllAdd.ButtonStyle = DevExpress.XtraEditors.Controls.BorderStyles.Simple;
     this.sbtnDGAllAdd.Location = new System.Drawing.Point(476, 134);
     this.sbtnDGAllAdd.Name = "sbtnDGAllAdd";
     this.sbtnDGAllAdd.Size = new System.Drawing.Size(30, 20);
     this.sbtnDGAllAdd.TabIndex = 8;
     this.sbtnDGAllAdd.Text = ">>";
     this.sbtnDGAllAdd.Click += new System.EventHandler(this.sbtnDGAllAdd_Click);
     //
     // sbtnDGAdd
     //
     this.sbtnDGAdd.ButtonStyle = DevExpress.XtraEditors.Controls.BorderStyles.Simple;
     this.sbtnDGAdd.Location = new System.Drawing.Point(476, 112);
     this.sbtnDGAdd.Name = "sbtnDGAdd";
     this.sbtnDGAdd.Size = new System.Drawing.Size(30, 20);
     this.sbtnDGAdd.TabIndex = 7;
     this.sbtnDGAdd.Text = ">";
     this.sbtnDGAdd.Click += new System.EventHandler(this.sbtnDGAdd_Click);
     //
     // gridctrDepartmentGroup2
     //
     //
     // gridctrDepartmentGroup2.EmbeddedNavigator
     //
     this.gridctrDepartmentGroup2.EmbeddedNavigator.Name = "";
     this.gridctrDepartmentGroup2.Location = new System.Drawing.Point(510, 110);
     this.gridctrDepartmentGroup2.MainView = this.gvDepartmentGroup2;
     this.gridctrDepartmentGroup2.Name = "gridctrDepartmentGroup2";
     this.gridctrDepartmentGroup2.Size = new System.Drawing.Size(400, 88);
     this.gridctrDepartmentGroup2.TabIndex = 11;
     this.gridctrDepartmentGroup2.ViewCollection.AddRange(new DevExpress.XtraGrid.Views.Base.BaseView[] {
                                                                                                            this.gvDepartmentGroup2});
     //
     // gvDepartmentGroup2
     //
     this.gvDepartmentGroup2.Columns.AddRange(new DevExpress.XtraGrid.Columns.GridColumn[] {
                                                                                               this.colDepartmentID2,
                                                                                               this.colDepartmentGroupCode2,
                                                                                               this.colDepartmentGroupDesc2});
     this.gvDepartmentGroup2.GridControl = this.gridctrDepartmentGroup2;
     this.gvDepartmentGroup2.Name = "gvDepartmentGroup2";
     this.gvDepartmentGroup2.OptionsBehavior.AllowIncrementalSearch = true;
     this.gvDepartmentGroup2.OptionsBehavior.Editable = false;
     this.gvDepartmentGroup2.OptionsCustomization.AllowFilter = false;
     this.gvDepartmentGroup2.OptionsSelection.MultiSelect = true;
     this.gvDepartmentGroup2.OptionsView.ShowGroupPanel = false;
     this.gvDepartmentGroup2.SortInfo.AddRange(new DevExpress.XtraGrid.Columns.GridColumnSortInfo[] {
                                                                                                        new DevExpress.XtraGrid.Columns.GridColumnSortInfo(this.colDepartmentID2, DevExpress.Data.ColumnSortOrder.Ascending)});
     //
     // colDepartmentID2
     //
     this.colDepartmentID2.Caption = "ID";
     this.colDepartmentID2.FieldName = "nMemoGroupID";
     this.colDepartmentID2.Name = "colDepartmentID2";
     this.colDepartmentID2.Visible = true;
     this.colDepartmentID2.VisibleIndex = 0;
     this.colDepartmentID2.Width = 70;
     //
     // colDepartmentGroupCode2
     //
     this.colDepartmentGroupCode2.Caption = "Code";
     this.colDepartmentGroupCode2.FieldName = "strMemoGroupCode";
     this.colDepartmentGroupCode2.Name = "colDepartmentGroupCode2";
     this.colDepartmentGroupCode2.Visible = true;
     this.colDepartmentGroupCode2.VisibleIndex = 1;
     this.colDepartmentGroupCode2.Width = 92;
     //
     // colDepartmentGroupDesc2
     //
     this.colDepartmentGroupDesc2.Caption = "Description";
     this.colDepartmentGroupDesc2.FieldName = "strDescription";
     this.colDepartmentGroupDesc2.Name = "colDepartmentGroupDesc2";
     this.colDepartmentGroupDesc2.Visible = true;
     this.colDepartmentGroupDesc2.VisibleIndex = 2;
     this.colDepartmentGroupDesc2.Width = 224;
     //
     // gridctrDepartmentGroup
     //
     //
     // gridctrDepartmentGroup.EmbeddedNavigator
     //
     this.gridctrDepartmentGroup.EmbeddedNavigator.Name = "";
     this.gridctrDepartmentGroup.Location = new System.Drawing.Point(72, 110);
     this.gridctrDepartmentGroup.MainView = this.gvDepartmentGroup;
     this.gridctrDepartmentGroup.Name = "gridctrDepartmentGroup";
     this.gridctrDepartmentGroup.Size = new System.Drawing.Size(400, 88);
     this.gridctrDepartmentGroup.TabIndex = 6;
     this.gridctrDepartmentGroup.ViewCollection.AddRange(new DevExpress.XtraGrid.Views.Base.BaseView[] {
                                                                                                           this.gvDepartmentGroup});
     //
     // gvDepartmentGroup
     //
     this.gvDepartmentGroup.Columns.AddRange(new DevExpress.XtraGrid.Columns.GridColumn[] {
                                                                                              this.colDepartmentGroup,
                                                                                              this.colDepartmentGroupCode,
                                                                                              this.colDepartmentGroupDesc});
     this.gvDepartmentGroup.GridControl = this.gridctrDepartmentGroup;
     this.gvDepartmentGroup.Name = "gvDepartmentGroup";
     this.gvDepartmentGroup.OptionsBehavior.AllowIncrementalSearch = true;
     this.gvDepartmentGroup.OptionsBehavior.Editable = false;
     this.gvDepartmentGroup.OptionsCustomization.AllowFilter = false;
     this.gvDepartmentGroup.OptionsSelection.MultiSelect = true;
     this.gvDepartmentGroup.OptionsView.ShowGroupPanel = false;
     this.gvDepartmentGroup.SortInfo.AddRange(new DevExpress.XtraGrid.Columns.GridColumnSortInfo[] {
                                                                                                       new DevExpress.XtraGrid.Columns.GridColumnSortInfo(this.colDepartmentGroup, DevExpress.Data.ColumnSortOrder.Ascending)});
     //
     // colDepartmentGroup
     //
     this.colDepartmentGroup.Caption = "ID";
     this.colDepartmentGroup.FieldName = "nMemoGroupID";
     this.colDepartmentGroup.Name = "colDepartmentGroup";
     this.colDepartmentGroup.Visible = true;
     this.colDepartmentGroup.VisibleIndex = 0;
     this.colDepartmentGroup.Width = 66;
     //
     // colDepartmentGroupCode
     //
     this.colDepartmentGroupCode.Caption = "Code";
     this.colDepartmentGroupCode.FieldName = "strMemoGroupCode";
     this.colDepartmentGroupCode.Name = "colDepartmentGroupCode";
     this.colDepartmentGroupCode.Visible = true;
     this.colDepartmentGroupCode.VisibleIndex = 1;
     this.colDepartmentGroupCode.Width = 95;
     //
     // colDepartmentGroupDesc
     //
     this.colDepartmentGroupDesc.Caption = "Description";
     this.colDepartmentGroupDesc.FieldName = "strDescription";
     this.colDepartmentGroupDesc.Name = "colDepartmentGroupDesc";
     this.colDepartmentGroupDesc.Visible = true;
     this.colDepartmentGroupDesc.VisibleIndex = 2;
     this.colDepartmentGroupDesc.Width = 225;
     //
     // sbtnBGDel
     //
     this.sbtnBGDel.ButtonStyle = DevExpress.XtraEditors.Controls.BorderStyles.Simple;
     this.sbtnBGDel.Location = new System.Drawing.Point(476, 88);
     this.sbtnBGDel.Name = "sbtnBGDel";
     this.sbtnBGDel.Size = new System.Drawing.Size(30, 20);
     this.sbtnBGDel.TabIndex = 4;
     this.sbtnBGDel.Text = "<";
     this.sbtnBGDel.Click += new System.EventHandler(this.sbtnBGDel_Click);
     //
     // sbtnBGAllDel
     //
     this.sbtnBGAllDel.ButtonStyle = DevExpress.XtraEditors.Controls.BorderStyles.Simple;
     this.sbtnBGAllDel.Location = new System.Drawing.Point(476, 66);
     this.sbtnBGAllDel.Name = "sbtnBGAllDel";
     this.sbtnBGAllDel.Size = new System.Drawing.Size(30, 20);
     this.sbtnBGAllDel.TabIndex = 3;
     this.sbtnBGAllDel.Text = "<<";
     this.sbtnBGAllDel.Click += new System.EventHandler(this.sbtnBGAllDel_Click);
     //
     // sbtnBGAllAdd
     //
     this.sbtnBGAllAdd.ButtonStyle = DevExpress.XtraEditors.Controls.BorderStyles.Simple;
     this.sbtnBGAllAdd.Location = new System.Drawing.Point(476, 44);
     this.sbtnBGAllAdd.Name = "sbtnBGAllAdd";
     this.sbtnBGAllAdd.Size = new System.Drawing.Size(30, 20);
     this.sbtnBGAllAdd.TabIndex = 2;
     this.sbtnBGAllAdd.Text = ">>";
     this.sbtnBGAllAdd.Click += new System.EventHandler(this.sbtnBGAllAdd_Click);
     //
     // sbtnBGAdd
     //
     this.sbtnBGAdd.ButtonStyle = DevExpress.XtraEditors.Controls.BorderStyles.Simple;
     this.sbtnBGAdd.Location = new System.Drawing.Point(476, 22);
     this.sbtnBGAdd.Name = "sbtnBGAdd";
     this.sbtnBGAdd.Size = new System.Drawing.Size(30, 20);
     this.sbtnBGAdd.TabIndex = 1;
     this.sbtnBGAdd.Text = ">";
     this.sbtnBGAdd.Click += new System.EventHandler(this.sbtnBGAdd_Click);
     //
     // label6
     //
     this.label6.Location = new System.Drawing.Point(10, 292);
     this.label6.Name = "label6";
     this.label6.Size = new System.Drawing.Size(60, 18);
     this.label6.TabIndex = 20;
     this.label6.Text = "Employee:";
     //
     // label4
     //
     this.label4.Location = new System.Drawing.Point(8, 202);
     this.label4.Name = "label4";
     this.label4.Size = new System.Drawing.Size(58, 30);
     this.label4.TabIndex = 19;
     this.label4.Text = "Personal Group:";
     //
     // label5
     //
     this.label5.Location = new System.Drawing.Point(6, 112);
     this.label5.Name = "label5";
     this.label5.Size = new System.Drawing.Size(64, 30);
     this.label5.TabIndex = 18;
     this.label5.Text = "Department Group:";
     //
     // gridctrBranchReceipient2
     //
     //
     // gridctrBranchReceipient2.EmbeddedNavigator
     //
     this.gridctrBranchReceipient2.EmbeddedNavigator.Name = "";
     this.gridctrBranchReceipient2.Location = new System.Drawing.Point(510, 20);
     this.gridctrBranchReceipient2.MainView = this.gvBranchReceipient2;
     this.gridctrBranchReceipient2.Name = "gridctrBranchReceipient2";
     this.gridctrBranchReceipient2.Size = new System.Drawing.Size(400, 88);
     this.gridctrBranchReceipient2.TabIndex = 5;
     this.gridctrBranchReceipient2.ViewCollection.AddRange(new DevExpress.XtraGrid.Views.Base.BaseView[] {
                                                                                                             this.gvBranchReceipient2});
     //
     // gvBranchReceipient2
     //
     this.gvBranchReceipient2.Columns.AddRange(new DevExpress.XtraGrid.Columns.GridColumn[] {
                                                                                                this.colBranchCode2,
                                                                                                this.colBranchName2});
     this.gvBranchReceipient2.GridControl = this.gridctrBranchReceipient2;
     this.gvBranchReceipient2.Name = "gvBranchReceipient2";
     this.gvBranchReceipient2.OptionsBehavior.AllowIncrementalSearch = true;
     this.gvBranchReceipient2.OptionsBehavior.Editable = false;
     this.gvBranchReceipient2.OptionsCustomization.AllowFilter = false;
     this.gvBranchReceipient2.OptionsSelection.MultiSelect = true;
     this.gvBranchReceipient2.OptionsView.ShowGroupPanel = false;
     this.gvBranchReceipient2.SortInfo.AddRange(new DevExpress.XtraGrid.Columns.GridColumnSortInfo[] {
                                                                                                         new DevExpress.XtraGrid.Columns.GridColumnSortInfo(this.colBranchCode2, DevExpress.Data.ColumnSortOrder.Ascending)});
     //
     // colBranchCode2
     //
     this.colBranchCode2.Caption = "Branch";
     this.colBranchCode2.FieldName = "strBranchCode";
     this.colBranchCode2.Name = "colBranchCode2";
     this.colBranchCode2.Visible = true;
     this.colBranchCode2.VisibleIndex = 0;
     this.colBranchCode2.Width = 104;
     //
     // colBranchName2
     //
     this.colBranchName2.Caption = "Branch Name";
     this.colBranchName2.FieldName = "strBranchName";
     this.colBranchName2.Name = "colBranchName2";
     this.colBranchName2.Visible = true;
     this.colBranchName2.VisibleIndex = 1;
     this.colBranchName2.Width = 282;
     //
     // label3
     //
     this.label3.Location = new System.Drawing.Point(6, 22);
     this.label3.Name = "label3";
     this.label3.Size = new System.Drawing.Size(48, 34);
     this.label3.TabIndex = 16;
     this.label3.Text = "Branch Group:";
     //
     // gridctrBranchReceipient
     //
     //
     // gridctrBranchReceipient.EmbeddedNavigator
     //
     this.gridctrBranchReceipient.EmbeddedNavigator.Name = "";
     this.gridctrBranchReceipient.Location = new System.Drawing.Point(72, 20);
     this.gridctrBranchReceipient.MainView = this.gvBranchReceipient;
     this.gridctrBranchReceipient.Name = "gridctrBranchReceipient";
     this.gridctrBranchReceipient.Size = new System.Drawing.Size(400, 88);
     this.gridctrBranchReceipient.TabIndex = 0;
     this.gridctrBranchReceipient.ViewCollection.AddRange(new DevExpress.XtraGrid.Views.Base.BaseView[] {
                                                                                                            this.gvBranchReceipient});
     //
     // gvBranchReceipient
     //
     this.gvBranchReceipient.Columns.AddRange(new DevExpress.XtraGrid.Columns.GridColumn[] {
                                                                                               this.colBranchCode,
                                                                                               this.colBranchName});
     this.gvBranchReceipient.GridControl = this.gridctrBranchReceipient;
     this.gvBranchReceipient.Name = "gvBranchReceipient";
     this.gvBranchReceipient.OptionsBehavior.AllowIncrementalSearch = true;
     this.gvBranchReceipient.OptionsBehavior.Editable = false;
     this.gvBranchReceipient.OptionsCustomization.AllowFilter = false;
     this.gvBranchReceipient.OptionsSelection.MultiSelect = true;
     this.gvBranchReceipient.OptionsView.ShowGroupPanel = false;
     this.gvBranchReceipient.SortInfo.AddRange(new DevExpress.XtraGrid.Columns.GridColumnSortInfo[] {
                                                                                                        new DevExpress.XtraGrid.Columns.GridColumnSortInfo(this.colBranchCode, DevExpress.Data.ColumnSortOrder.Ascending)});
     //
     // colBranchCode
     //
     this.colBranchCode.Caption = "Branch";
     this.colBranchCode.FieldName = "strBranchCode";
     this.colBranchCode.Name = "colBranchCode";
     this.colBranchCode.Visible = true;
     this.colBranchCode.VisibleIndex = 0;
     this.colBranchCode.Width = 107;
     //
     // colBranchName
     //
     this.colBranchName.Caption = "Branch Name";
     this.colBranchName.FieldName = "strBranchName";
     this.colBranchName.Name = "colBranchName";
     this.colBranchName.Visible = true;
     this.colBranchName.VisibleIndex = 1;
     this.colBranchName.Width = 279;
     //
     // sbtnAdd
     //
     this.sbtnAdd.ButtonStyle = DevExpress.XtraEditors.Controls.BorderStyles.Simple;
     this.sbtnAdd.Location = new System.Drawing.Point(760, 396);
     this.sbtnAdd.Name = "sbtnAdd";
     this.sbtnAdd.TabIndex = 1;
     this.sbtnAdd.Text = "Add";
     this.sbtnAdd.Click += new System.EventHandler(this.sbtnAdd_Click);
     //
     // sbtnCancel
     //
     this.sbtnCancel.ButtonStyle = DevExpress.XtraEditors.Controls.BorderStyles.Simple;
     this.sbtnCancel.DialogResult = System.Windows.Forms.DialogResult.Cancel;
     this.sbtnCancel.Location = new System.Drawing.Point(842, 396);
     this.sbtnCancel.Name = "sbtnCancel";
     this.sbtnCancel.TabIndex = 2;
     this.sbtnCancel.Text = "Cancel";
     //
     // frmNewReceipient2
     //
     this.AcceptButton = this.sbtnAdd;
     this.AutoScaleBaseSize = new System.Drawing.Size(5, 13);
     this.CancelButton = this.sbtnCancel;
     this.ClientSize = new System.Drawing.Size(920, 424);
     this.Controls.Add(this.sbtnAdd);
     this.Controls.Add(this.sbtnCancel);
     this.Controls.Add(this.groupControl1);
     this.MaximizeBox = false;
     this.MinimizeBox = false;
     this.Name = "frmNewReceipient2";
     this.ShowInTaskbar = false;
     this.StartPosition = System.Windows.Forms.FormStartPosition.CenterParent;
     this.Text = "New Receipient";
     ((System.ComponentModel.ISupportInitialize)(this.groupControl1)).EndInit();
     this.groupControl1.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.gridctrEmployee2)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.gvEmployee2)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridctrEmployee)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.gvEmployee)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridctrPersonalGroup2)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.gvPersonalGroup2)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridctrPersonalGroup)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.gvPersonalGroup)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridctrDepartmentGroup2)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.gvDepartmentGroup2)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridctrDepartmentGroup)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.gvDepartmentGroup)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridctrBranchReceipient2)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.gvBranchReceipient2)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridctrBranchReceipient)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.gvBranchReceipient)).EndInit();
     this.ResumeLayout(false);
 }
 /// <summary>
 /// Required method for Designer support - do not modify
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     this.components = new System.ComponentModel.Container();
     DevExpress.Utils.SerializableAppearanceObject serializableAppearanceObject1 = new DevExpress.Utils.SerializableAppearanceObject();
     DevExpress.Utils.SerializableAppearanceObject serializableAppearanceObject2 = new DevExpress.Utils.SerializableAppearanceObject();
     DevExpress.Utils.SerializableAppearanceObject serializableAppearanceObject3 = new DevExpress.Utils.SerializableAppearanceObject();
     DevExpress.Utils.SerializableAppearanceObject serializableAppearanceObject4 = new DevExpress.Utils.SerializableAppearanceObject();
     DevExpress.Utils.SerializableAppearanceObject serializableAppearanceObject5 = new DevExpress.Utils.SerializableAppearanceObject();
     DevExpress.Utils.SerializableAppearanceObject serializableAppearanceObject6 = new DevExpress.Utils.SerializableAppearanceObject();
     DevExpress.Utils.SerializableAppearanceObject serializableAppearanceObject7 = new DevExpress.Utils.SerializableAppearanceObject();
     this.gridControlData = new DevExpress.XtraGrid.GridControl();
     this.tBLSheekWaredBindingSource = new System.Windows.Forms.BindingSource(this.components);
     this.dSFellowship = new Fellowship.DataSources.DSFellowship();
     this.gridViewData = new DevExpress.XtraGrid.Views.Grid.GridView();
     this.colSyndicateId = new DevExpress.XtraGrid.Columns.GridColumn();
     this.repositoryItemGridLookUpEditSyndicateId = new DevExpress.XtraEditors.Repository.RepositoryItemGridLookUpEdit();
     this.cDSyndicateBindingSource = new System.Windows.Forms.BindingSource(this.components);
     this.repositoryItemGridLookUpEdit1View = new DevExpress.XtraGrid.Views.Grid.GridView();
     this.colSyndicate = new DevExpress.XtraGrid.Columns.GridColumn();
     this.colEdaraId = new DevExpress.XtraGrid.Columns.GridColumn();
     this.repositoryItemGridLookUpEditEdaraId = new DevExpress.XtraEditors.Repository.RepositoryItemGridLookUpEdit();
     this.cDEDARETBindingSource = new System.Windows.Forms.BindingSource(this.components);
     this.gridView1 = new DevExpress.XtraGrid.Views.Grid.GridView();
     this.gridColumn1 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.colSheekMony = new DevExpress.XtraGrid.Columns.GridColumn();
     this.repositoryItemCalcEditf2 = new DevExpress.XtraEditors.Repository.RepositoryItemCalcEdit();
     this.colSheekNo = new DevExpress.XtraGrid.Columns.GridColumn();
     this.colSheekDate = new DevExpress.XtraGrid.Columns.GridColumn();
     this.repositoryItemDateEditDMY = new DevExpress.XtraEditors.Repository.RepositoryItemDateEdit();
     this.colEdaraSarfDate = new DevExpress.XtraGrid.Columns.GridColumn();
     this.colNkapaSarfDate = new DevExpress.XtraGrid.Columns.GridColumn();
     this.colEdaraMandopId = new DevExpress.XtraGrid.Columns.GridColumn();
     this.repositoryItemGridLookUpEditEdaraMandopId = new DevExpress.XtraEditors.Repository.RepositoryItemGridLookUpEdit();
     this.tBLEdaraMandopBindingSource = new System.Windows.Forms.BindingSource(this.components);
     this.gridView3 = new DevExpress.XtraGrid.Views.Grid.GridView();
     this.gridColumn4 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.colnkapaMandopId = new DevExpress.XtraGrid.Columns.GridColumn();
     this.repositoryItemGridLookUpEditnkapaMandopId = new DevExpress.XtraEditors.Repository.RepositoryItemGridLookUpEdit();
     this.tBLNkapaMandopBindingSource = new System.Windows.Forms.BindingSource(this.components);
     this.gridView4 = new DevExpress.XtraGrid.Views.Grid.GridView();
     this.gridColumn5 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumnSave = new DevExpress.XtraGrid.Columns.GridColumn();
     this.repositoryItemButtonEditSave = new DevExpress.XtraEditors.Repository.RepositoryItemButtonEdit();
     this.gridColumnDelete = new DevExpress.XtraGrid.Columns.GridColumn();
     this.repositoryItemButtonEditDel = new DevExpress.XtraEditors.Repository.RepositoryItemButtonEdit();
     this.colEDARET = new DevExpress.XtraGrid.Columns.GridColumn();
     this.tableAdapterManager = new Fellowship.DataSources.DSFellowshipTableAdapters.TableAdapterManager();
     this.cDEDARETTableAdapter = new Fellowship.DataSources.DSFellowshipTableAdapters.CDEDARETTableAdapter();
     this.cDSyndicateTableAdapter = new Fellowship.DataSources.DSFellowshipTableAdapters.CDSyndicateTableAdapter();
     this.tBLEdaraMandopTableAdapter = new Fellowship.DataSources.DSFellowshipTableAdapters.TBLEdaraMandopTableAdapter();
     this.tBLNkapaMandopTableAdapter = new Fellowship.DataSources.DSFellowshipTableAdapters.TBLNkapaMandopTableAdapter();
     this.tBLSheekWaredTableAdapter = new Fellowship.DataSources.DSFellowshipTableAdapters.TBLSheekWaredTableAdapter();
     this.colEDARET1 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.colEdaraMandopName = new DevExpress.XtraGrid.Columns.GridColumn();
     this.colnkapaMandopName = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn2 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.groupControl1 = new DevExpress.XtraEditors.GroupControl();
     this.groupControl2 = new DevExpress.XtraEditors.GroupControl();
     this.btnNew = new DevExpress.XtraEditors.SimpleButton();
     ((System.ComponentModel.ISupportInitialize)(this.gridControlData)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.tBLSheekWaredBindingSource)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.dSFellowship)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridViewData)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemGridLookUpEditSyndicateId)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.cDSyndicateBindingSource)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemGridLookUpEdit1View)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemGridLookUpEditEdaraId)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.cDEDARETBindingSource)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridView1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemCalcEditf2)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemDateEditDMY)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemDateEditDMY.VistaTimeProperties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemGridLookUpEditEdaraMandopId)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.tBLEdaraMandopBindingSource)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridView3)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemGridLookUpEditnkapaMandopId)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.tBLNkapaMandopBindingSource)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridView4)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemButtonEditSave)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemButtonEditDel)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.groupControl1)).BeginInit();
     this.groupControl1.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.groupControl2)).BeginInit();
     this.groupControl2.SuspendLayout();
     this.SuspendLayout();
     //
     // gridControlData
     //
     this.gridControlData.DataSource = this.tBLSheekWaredBindingSource;
     this.gridControlData.Dock = System.Windows.Forms.DockStyle.Fill;
     this.gridControlData.EmbeddedNavigator.Buttons.Append.Visible = false;
     this.gridControlData.EmbeddedNavigator.Buttons.CancelEdit.Visible = false;
     this.gridControlData.EmbeddedNavigator.Buttons.Edit.Visible = false;
     this.gridControlData.EmbeddedNavigator.Buttons.EndEdit.Visible = false;
     this.gridControlData.EmbeddedNavigator.Buttons.Remove.Visible = false;
     this.gridControlData.Location = new System.Drawing.Point(2, 21);
     this.gridControlData.MainView = this.gridViewData;
     this.gridControlData.Name = "gridControlData";
     this.gridControlData.RepositoryItems.AddRange(new DevExpress.XtraEditors.Repository.RepositoryItem[] {
     this.repositoryItemButtonEditSave,
     this.repositoryItemButtonEditDel,
     this.repositoryItemCalcEditf2,
     this.repositoryItemDateEditDMY,
     this.repositoryItemGridLookUpEditSyndicateId,
     this.repositoryItemGridLookUpEditEdaraId,
     this.repositoryItemGridLookUpEditEdaraMandopId,
     this.repositoryItemGridLookUpEditnkapaMandopId});
     this.gridControlData.Size = new System.Drawing.Size(756, 273);
     this.gridControlData.TabIndex = 0;
     this.gridControlData.UseEmbeddedNavigator = true;
     this.gridControlData.ViewCollection.AddRange(new DevExpress.XtraGrid.Views.Base.BaseView[] {
     this.gridViewData});
     this.gridControlData.KeyDown += new System.Windows.Forms.KeyEventHandler(this.ActiveKeyDownEvent);
     //
     // tBLSheekWaredBindingSource
     //
     this.tBLSheekWaredBindingSource.DataMember = "TBLSheekWared";
     this.tBLSheekWaredBindingSource.DataSource = this.dSFellowship;
     //
     // dSFellowship
     //
     this.dSFellowship.DataSetName = "DSFellowship";
     this.dSFellowship.Locale = new System.Globalization.CultureInfo("en-US");
     this.dSFellowship.SchemaSerializationMode = System.Data.SchemaSerializationMode.IncludeSchema;
     //
     // gridViewData
     //
     this.gridViewData.Columns.AddRange(new DevExpress.XtraGrid.Columns.GridColumn[] {
     this.colSyndicateId,
     this.colEdaraId,
     this.colSheekMony,
     this.colSheekNo,
     this.colSheekDate,
     this.colEdaraSarfDate,
     this.colNkapaSarfDate,
     this.colEdaraMandopId,
     this.colnkapaMandopId,
     this.gridColumnSave,
     this.gridColumnDelete});
     this.gridViewData.GridControl = this.gridControlData;
     this.gridViewData.Name = "gridViewData";
     this.gridViewData.NewItemRowText = "اضغط لاضافة جديد";
     this.gridViewData.OptionsBehavior.ReadOnly = true;
     this.gridViewData.OptionsNavigation.AutoFocusNewRow = true;
     this.gridViewData.OptionsView.ColumnAutoWidth = false;
     this.gridViewData.InvalidRowException += new DevExpress.XtraGrid.Views.Base.InvalidRowExceptionEventHandler(this.gridViewData_InvalidRowException);
     //
     // colSyndicateId
     //
     this.colSyndicateId.AppearanceCell.Options.UseTextOptions = true;
     this.colSyndicateId.AppearanceCell.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.colSyndicateId.AppearanceHeader.Options.UseTextOptions = true;
     this.colSyndicateId.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.colSyndicateId.Caption = "الفرعيه";
     this.colSyndicateId.ColumnEdit = this.repositoryItemGridLookUpEditSyndicateId;
     this.colSyndicateId.FieldName = "SyndicateId";
     this.colSyndicateId.Name = "colSyndicateId";
     this.colSyndicateId.Visible = true;
     this.colSyndicateId.VisibleIndex = 0;
     //
     // repositoryItemGridLookUpEditSyndicateId
     //
     this.repositoryItemGridLookUpEditSyndicateId.AutoHeight = false;
     this.repositoryItemGridLookUpEditSyndicateId.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo, "", -1, true, true, true, DevExpress.XtraEditors.ImageLocation.MiddleCenter, null, new DevExpress.Utils.KeyShortcut(System.Windows.Forms.Keys.None), serializableAppearanceObject1, "", null, null, true),
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Plus, "", -1, false, true, false, DevExpress.XtraEditors.ImageLocation.MiddleCenter, null, new DevExpress.Utils.KeyShortcut(System.Windows.Forms.Keys.None), serializableAppearanceObject2, "", null, null, true)});
     this.repositoryItemGridLookUpEditSyndicateId.DataSource = this.cDSyndicateBindingSource;
     this.repositoryItemGridLookUpEditSyndicateId.DisplayMember = "Syndicate";
     this.repositoryItemGridLookUpEditSyndicateId.Name = "repositoryItemGridLookUpEditSyndicateId";
     this.repositoryItemGridLookUpEditSyndicateId.NullText = "";
     this.repositoryItemGridLookUpEditSyndicateId.TextEditStyle = DevExpress.XtraEditors.Controls.TextEditStyles.Standard;
     this.repositoryItemGridLookUpEditSyndicateId.ValueMember = "SyndicateId";
     this.repositoryItemGridLookUpEditSyndicateId.View = this.repositoryItemGridLookUpEdit1View;
     this.repositoryItemGridLookUpEditSyndicateId.ButtonClick += new DevExpress.XtraEditors.Controls.ButtonPressedEventHandler(this.repositoryItemGridLookUpEditSyndicateId_ButtonClick);
     //
     // cDSyndicateBindingSource
     //
     this.cDSyndicateBindingSource.DataMember = "CDSyndicate";
     this.cDSyndicateBindingSource.DataSource = this.dSFellowship;
     //
     // repositoryItemGridLookUpEdit1View
     //
     this.repositoryItemGridLookUpEdit1View.Columns.AddRange(new DevExpress.XtraGrid.Columns.GridColumn[] {
     this.colSyndicate});
     this.repositoryItemGridLookUpEdit1View.FocusRectStyle = DevExpress.XtraGrid.Views.Grid.DrawFocusRectStyle.RowFocus;
     this.repositoryItemGridLookUpEdit1View.Name = "repositoryItemGridLookUpEdit1View";
     this.repositoryItemGridLookUpEdit1View.OptionsSelection.EnableAppearanceFocusedCell = false;
     this.repositoryItemGridLookUpEdit1View.OptionsView.ShowGroupPanel = false;
     //
     // colSyndicate
     //
     this.colSyndicate.AppearanceCell.Options.UseTextOptions = true;
     this.colSyndicate.AppearanceCell.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.colSyndicate.AppearanceHeader.Options.UseTextOptions = true;
     this.colSyndicate.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.colSyndicate.Caption = "الفرعيه";
     this.colSyndicate.FieldName = "Syndicate";
     this.colSyndicate.Name = "colSyndicate";
     this.colSyndicate.Visible = true;
     this.colSyndicate.VisibleIndex = 0;
     //
     // colEdaraId
     //
     this.colEdaraId.AppearanceCell.Options.UseTextOptions = true;
     this.colEdaraId.AppearanceCell.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.colEdaraId.AppearanceHeader.Options.UseTextOptions = true;
     this.colEdaraId.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.colEdaraId.Caption = "الادارة";
     this.colEdaraId.ColumnEdit = this.repositoryItemGridLookUpEditEdaraId;
     this.colEdaraId.FieldName = "EdaraId";
     this.colEdaraId.Name = "colEdaraId";
     this.colEdaraId.Visible = true;
     this.colEdaraId.VisibleIndex = 1;
     //
     // repositoryItemGridLookUpEditEdaraId
     //
     this.repositoryItemGridLookUpEditEdaraId.AutoHeight = false;
     this.repositoryItemGridLookUpEditEdaraId.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo, "", -1, true, true, true, DevExpress.XtraEditors.ImageLocation.MiddleCenter, null, new DevExpress.Utils.KeyShortcut(System.Windows.Forms.Keys.None), serializableAppearanceObject3, "", null, null, true),
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Plus, "", -1, false, true, false, DevExpress.XtraEditors.ImageLocation.MiddleCenter, null, new DevExpress.Utils.KeyShortcut(System.Windows.Forms.Keys.None), serializableAppearanceObject4, "", null, null, true)});
     this.repositoryItemGridLookUpEditEdaraId.DataSource = this.cDEDARETBindingSource;
     this.repositoryItemGridLookUpEditEdaraId.DisplayMember = "EDARET";
     this.repositoryItemGridLookUpEditEdaraId.Name = "repositoryItemGridLookUpEditEdaraId";
     this.repositoryItemGridLookUpEditEdaraId.NullText = "";
     this.repositoryItemGridLookUpEditEdaraId.TextEditStyle = DevExpress.XtraEditors.Controls.TextEditStyles.Standard;
     this.repositoryItemGridLookUpEditEdaraId.ValueMember = "EdaraId";
     this.repositoryItemGridLookUpEditEdaraId.View = this.gridView1;
     this.repositoryItemGridLookUpEditEdaraId.QueryPopUp += new System.ComponentModel.CancelEventHandler(this.repositoryItemGridLookUpEditEdaraId_QueryPopUp);
     this.repositoryItemGridLookUpEditEdaraId.ButtonClick += new DevExpress.XtraEditors.Controls.ButtonPressedEventHandler(this.repositoryItemGridLookUpEditEdaraId_ButtonClick);
     //
     // cDEDARETBindingSource
     //
     this.cDEDARETBindingSource.DataMember = "CDEDARET";
     this.cDEDARETBindingSource.DataSource = this.dSFellowship;
     //
     // gridView1
     //
     this.gridView1.Columns.AddRange(new DevExpress.XtraGrid.Columns.GridColumn[] {
     this.gridColumn1});
     this.gridView1.FocusRectStyle = DevExpress.XtraGrid.Views.Grid.DrawFocusRectStyle.RowFocus;
     this.gridView1.Name = "gridView1";
     this.gridView1.OptionsSelection.EnableAppearanceFocusedCell = false;
     this.gridView1.OptionsView.ShowGroupPanel = false;
     //
     // gridColumn1
     //
     this.gridColumn1.AppearanceCell.Options.UseTextOptions = true;
     this.gridColumn1.AppearanceCell.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.gridColumn1.AppearanceHeader.Options.UseTextOptions = true;
     this.gridColumn1.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.gridColumn1.Caption = "الادارة";
     this.gridColumn1.FieldName = "EDARET";
     this.gridColumn1.Name = "gridColumn1";
     this.gridColumn1.Visible = true;
     this.gridColumn1.VisibleIndex = 0;
     //
     // colSheekMony
     //
     this.colSheekMony.AppearanceCell.Options.UseTextOptions = true;
     this.colSheekMony.AppearanceCell.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.colSheekMony.AppearanceHeader.Options.UseTextOptions = true;
     this.colSheekMony.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.colSheekMony.Caption = "المبلغ";
     this.colSheekMony.ColumnEdit = this.repositoryItemCalcEditf2;
     this.colSheekMony.FieldName = "SheekMony";
     this.colSheekMony.Name = "colSheekMony";
     this.colSheekMony.Visible = true;
     this.colSheekMony.VisibleIndex = 2;
     this.colSheekMony.Width = 56;
     //
     // repositoryItemCalcEditf2
     //
     this.repositoryItemCalcEditf2.AutoHeight = false;
     this.repositoryItemCalcEditf2.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.repositoryItemCalcEditf2.DisplayFormat.FormatString = "f2";
     this.repositoryItemCalcEditf2.DisplayFormat.FormatType = DevExpress.Utils.FormatType.Numeric;
     this.repositoryItemCalcEditf2.EditFormat.FormatString = "f2";
     this.repositoryItemCalcEditf2.EditFormat.FormatType = DevExpress.Utils.FormatType.Numeric;
     this.repositoryItemCalcEditf2.Mask.EditMask = "f2";
     this.repositoryItemCalcEditf2.Name = "repositoryItemCalcEditf2";
     //
     // colSheekNo
     //
     this.colSheekNo.AppearanceCell.Options.UseTextOptions = true;
     this.colSheekNo.AppearanceCell.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.colSheekNo.AppearanceHeader.Options.UseTextOptions = true;
     this.colSheekNo.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.colSheekNo.Caption = "رقم الشيك";
     this.colSheekNo.FieldName = "SheekNo";
     this.colSheekNo.Name = "colSheekNo";
     this.colSheekNo.Visible = true;
     this.colSheekNo.VisibleIndex = 3;
     //
     // colSheekDate
     //
     this.colSheekDate.AppearanceCell.Options.UseTextOptions = true;
     this.colSheekDate.AppearanceCell.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.colSheekDate.AppearanceHeader.Options.UseTextOptions = true;
     this.colSheekDate.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.colSheekDate.Caption = "تاريخ الشيك";
     this.colSheekDate.ColumnEdit = this.repositoryItemDateEditDMY;
     this.colSheekDate.FieldName = "SheekDate";
     this.colSheekDate.Name = "colSheekDate";
     this.colSheekDate.Visible = true;
     this.colSheekDate.VisibleIndex = 4;
     //
     // repositoryItemDateEditDMY
     //
     this.repositoryItemDateEditDMY.AutoHeight = false;
     this.repositoryItemDateEditDMY.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.repositoryItemDateEditDMY.DisplayFormat.FormatString = "dd/MM/yyyy";
     this.repositoryItemDateEditDMY.DisplayFormat.FormatType = DevExpress.Utils.FormatType.DateTime;
     this.repositoryItemDateEditDMY.EditFormat.FormatString = "dd/MM/yyyy";
     this.repositoryItemDateEditDMY.EditFormat.FormatType = DevExpress.Utils.FormatType.DateTime;
     this.repositoryItemDateEditDMY.Mask.EditMask = "dd/MM/yyyy";
     this.repositoryItemDateEditDMY.Name = "repositoryItemDateEditDMY";
     this.repositoryItemDateEditDMY.VistaTimeProperties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton()});
     //
     // colEdaraSarfDate
     //
     this.colEdaraSarfDate.AppearanceCell.Options.UseTextOptions = true;
     this.colEdaraSarfDate.AppearanceCell.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.colEdaraSarfDate.AppearanceHeader.Options.UseTextOptions = true;
     this.colEdaraSarfDate.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.colEdaraSarfDate.Caption = "تاريخ عمولة الادارة";
     this.colEdaraSarfDate.ColumnEdit = this.repositoryItemDateEditDMY;
     this.colEdaraSarfDate.FieldName = "EdaraSarfDate";
     this.colEdaraSarfDate.Name = "colEdaraSarfDate";
     this.colEdaraSarfDate.Visible = true;
     this.colEdaraSarfDate.VisibleIndex = 5;
     this.colEdaraSarfDate.Width = 104;
     //
     // colNkapaSarfDate
     //
     this.colNkapaSarfDate.AppearanceCell.Options.UseTextOptions = true;
     this.colNkapaSarfDate.AppearanceCell.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.colNkapaSarfDate.AppearanceHeader.Options.UseTextOptions = true;
     this.colNkapaSarfDate.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.colNkapaSarfDate.Caption = "تاريخ عمولة النقابه";
     this.colNkapaSarfDate.ColumnEdit = this.repositoryItemDateEditDMY;
     this.colNkapaSarfDate.FieldName = "NkapaSarfDate";
     this.colNkapaSarfDate.Name = "colNkapaSarfDate";
     this.colNkapaSarfDate.Visible = true;
     this.colNkapaSarfDate.VisibleIndex = 6;
     this.colNkapaSarfDate.Width = 102;
     //
     // colEdaraMandopId
     //
     this.colEdaraMandopId.AppearanceCell.Options.UseTextOptions = true;
     this.colEdaraMandopId.AppearanceCell.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.colEdaraMandopId.AppearanceHeader.Options.UseTextOptions = true;
     this.colEdaraMandopId.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.colEdaraMandopId.Caption = "مندوب الادارة";
     this.colEdaraMandopId.ColumnEdit = this.repositoryItemGridLookUpEditEdaraMandopId;
     this.colEdaraMandopId.FieldName = "EdaraMandopId";
     this.colEdaraMandopId.Name = "colEdaraMandopId";
     this.colEdaraMandopId.Visible = true;
     this.colEdaraMandopId.VisibleIndex = 7;
     this.colEdaraMandopId.Width = 109;
     //
     // repositoryItemGridLookUpEditEdaraMandopId
     //
     this.repositoryItemGridLookUpEditEdaraMandopId.AutoHeight = false;
     this.repositoryItemGridLookUpEditEdaraMandopId.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo, "", -1, false, true, true, DevExpress.XtraEditors.ImageLocation.MiddleCenter, null, new DevExpress.Utils.KeyShortcut(System.Windows.Forms.Keys.None), serializableAppearanceObject5, "", null, null, true),
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Plus, "", -1, false, true, true, DevExpress.XtraEditors.ImageLocation.MiddleCenter, null, new DevExpress.Utils.KeyShortcut(System.Windows.Forms.Keys.None), serializableAppearanceObject6, "", null, null, true)});
     this.repositoryItemGridLookUpEditEdaraMandopId.DataSource = this.tBLEdaraMandopBindingSource;
     this.repositoryItemGridLookUpEditEdaraMandopId.DisplayMember = "EdaraMandopName";
     this.repositoryItemGridLookUpEditEdaraMandopId.Name = "repositoryItemGridLookUpEditEdaraMandopId";
     this.repositoryItemGridLookUpEditEdaraMandopId.NullText = "";
     this.repositoryItemGridLookUpEditEdaraMandopId.TextEditStyle = DevExpress.XtraEditors.Controls.TextEditStyles.Standard;
     this.repositoryItemGridLookUpEditEdaraMandopId.ValueMember = "EdaraMandopId";
     this.repositoryItemGridLookUpEditEdaraMandopId.View = this.gridView3;
     this.repositoryItemGridLookUpEditEdaraMandopId.ButtonClick += new DevExpress.XtraEditors.Controls.ButtonPressedEventHandler(this.repositoryItemGridLookUpEditEdaraMandopId_ButtonClick);
     //
     // tBLEdaraMandopBindingSource
     //
     this.tBLEdaraMandopBindingSource.DataMember = "TBLEdaraMandop";
     this.tBLEdaraMandopBindingSource.DataSource = this.dSFellowship;
     //
     // gridView3
     //
     this.gridView3.Columns.AddRange(new DevExpress.XtraGrid.Columns.GridColumn[] {
     this.gridColumn4});
     this.gridView3.FocusRectStyle = DevExpress.XtraGrid.Views.Grid.DrawFocusRectStyle.RowFocus;
     this.gridView3.Name = "gridView3";
     this.gridView3.OptionsSelection.EnableAppearanceFocusedCell = false;
     this.gridView3.OptionsView.ShowGroupPanel = false;
     //
     // gridColumn4
     //
     this.gridColumn4.AppearanceCell.Options.UseTextOptions = true;
     this.gridColumn4.AppearanceCell.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.gridColumn4.AppearanceHeader.Options.UseTextOptions = true;
     this.gridColumn4.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.gridColumn4.Caption = "الاسم";
     this.gridColumn4.FieldName = "EdaraMandopName";
     this.gridColumn4.Name = "gridColumn4";
     this.gridColumn4.Visible = true;
     this.gridColumn4.VisibleIndex = 0;
     //
     // colnkapaMandopId
     //
     this.colnkapaMandopId.AppearanceCell.Options.UseTextOptions = true;
     this.colnkapaMandopId.AppearanceCell.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.colnkapaMandopId.AppearanceHeader.Options.UseTextOptions = true;
     this.colnkapaMandopId.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.colnkapaMandopId.Caption = "مندوب النقابة";
     this.colnkapaMandopId.ColumnEdit = this.repositoryItemGridLookUpEditnkapaMandopId;
     this.colnkapaMandopId.FieldName = "nkapaMandopId";
     this.colnkapaMandopId.Name = "colnkapaMandopId";
     this.colnkapaMandopId.Visible = true;
     this.colnkapaMandopId.VisibleIndex = 8;
     this.colnkapaMandopId.Width = 80;
     //
     // repositoryItemGridLookUpEditnkapaMandopId
     //
     this.repositoryItemGridLookUpEditnkapaMandopId.AutoHeight = false;
     this.repositoryItemGridLookUpEditnkapaMandopId.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo, "", -1, false, true, true, DevExpress.XtraEditors.ImageLocation.MiddleCenter, null, new DevExpress.Utils.KeyShortcut(System.Windows.Forms.Keys.None), serializableAppearanceObject7, "", null, null, true),
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Plus)});
     this.repositoryItemGridLookUpEditnkapaMandopId.DataSource = this.tBLNkapaMandopBindingSource;
     this.repositoryItemGridLookUpEditnkapaMandopId.DisplayMember = "nkapaMandopName";
     this.repositoryItemGridLookUpEditnkapaMandopId.Name = "repositoryItemGridLookUpEditnkapaMandopId";
     this.repositoryItemGridLookUpEditnkapaMandopId.NullText = "";
     this.repositoryItemGridLookUpEditnkapaMandopId.TextEditStyle = DevExpress.XtraEditors.Controls.TextEditStyles.Standard;
     this.repositoryItemGridLookUpEditnkapaMandopId.ValueMember = "nkapaMandopId";
     this.repositoryItemGridLookUpEditnkapaMandopId.View = this.gridView4;
     this.repositoryItemGridLookUpEditnkapaMandopId.ButtonClick += new DevExpress.XtraEditors.Controls.ButtonPressedEventHandler(this.repositoryItemGridLookUpEditnkapaMandopId_ButtonClick);
     //
     // tBLNkapaMandopBindingSource
     //
     this.tBLNkapaMandopBindingSource.DataMember = "TBLNkapaMandop";
     this.tBLNkapaMandopBindingSource.DataSource = this.dSFellowship;
     //
     // gridView4
     //
     this.gridView4.Columns.AddRange(new DevExpress.XtraGrid.Columns.GridColumn[] {
     this.gridColumn5});
     this.gridView4.FocusRectStyle = DevExpress.XtraGrid.Views.Grid.DrawFocusRectStyle.RowFocus;
     this.gridView4.Name = "gridView4";
     this.gridView4.OptionsSelection.EnableAppearanceFocusedCell = false;
     this.gridView4.OptionsView.ShowGroupPanel = false;
     //
     // gridColumn5
     //
     this.gridColumn5.AppearanceCell.Options.UseTextOptions = true;
     this.gridColumn5.AppearanceCell.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.gridColumn5.AppearanceHeader.Options.UseTextOptions = true;
     this.gridColumn5.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.gridColumn5.Caption = "الاسم";
     this.gridColumn5.FieldName = "nkapaMandopName";
     this.gridColumn5.Name = "gridColumn5";
     this.gridColumn5.Visible = true;
     this.gridColumn5.VisibleIndex = 0;
     //
     // gridColumnSave
     //
     this.gridColumnSave.AppearanceCell.Options.UseTextOptions = true;
     this.gridColumnSave.AppearanceCell.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.gridColumnSave.AppearanceHeader.Options.UseTextOptions = true;
     this.gridColumnSave.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.gridColumnSave.Caption = "تعديل";
     this.gridColumnSave.ColumnEdit = this.repositoryItemButtonEditSave;
     this.gridColumnSave.Fixed = DevExpress.XtraGrid.Columns.FixedStyle.Right;
     this.gridColumnSave.Name = "gridColumnSave";
     this.gridColumnSave.Visible = true;
     this.gridColumnSave.VisibleIndex = 9;
     this.gridColumnSave.Width = 55;
     //
     // repositoryItemButtonEditSave
     //
     this.repositoryItemButtonEditSave.AutoHeight = false;
     this.repositoryItemButtonEditSave.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton()});
     this.repositoryItemButtonEditSave.Name = "repositoryItemButtonEditSave";
     this.repositoryItemButtonEditSave.TextEditStyle = DevExpress.XtraEditors.Controls.TextEditStyles.HideTextEditor;
     this.repositoryItemButtonEditSave.ButtonClick += new DevExpress.XtraEditors.Controls.ButtonPressedEventHandler(this.repositoryItemButtonEditSave_ButtonClick);
     //
     // gridColumnDelete
     //
     this.gridColumnDelete.AppearanceCell.Options.UseTextOptions = true;
     this.gridColumnDelete.AppearanceCell.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.gridColumnDelete.AppearanceHeader.Options.UseTextOptions = true;
     this.gridColumnDelete.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.gridColumnDelete.Caption = "حذف";
     this.gridColumnDelete.ColumnEdit = this.repositoryItemButtonEditDel;
     this.gridColumnDelete.Fixed = DevExpress.XtraGrid.Columns.FixedStyle.Right;
     this.gridColumnDelete.Name = "gridColumnDelete";
     this.gridColumnDelete.Visible = true;
     this.gridColumnDelete.VisibleIndex = 10;
     this.gridColumnDelete.Width = 51;
     //
     // repositoryItemButtonEditDel
     //
     this.repositoryItemButtonEditDel.AutoHeight = false;
     this.repositoryItemButtonEditDel.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Delete)});
     this.repositoryItemButtonEditDel.Name = "repositoryItemButtonEditDel";
     this.repositoryItemButtonEditDel.TextEditStyle = DevExpress.XtraEditors.Controls.TextEditStyles.HideTextEditor;
     this.repositoryItemButtonEditDel.ButtonClick += new DevExpress.XtraEditors.Controls.ButtonPressedEventHandler(this.repositoryItemButtonEditDel_ButtonClick);
     //
     // colEDARET
     //
     this.colEDARET.AppearanceCell.Options.UseTextOptions = true;
     this.colEDARET.AppearanceCell.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.colEDARET.AppearanceHeader.Options.UseTextOptions = true;
     this.colEDARET.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.colEDARET.Caption = "اسم الاداره";
     this.colEDARET.FieldName = "EDARET";
     this.colEDARET.Name = "colEDARET";
     this.colEDARET.Visible = true;
     this.colEDARET.VisibleIndex = 0;
     //
     // tableAdapterManager
     //
     this.tableAdapterManager.BackupDataSetBeforeUpdate = false;
     this.tableAdapterManager.CDEDARETTableAdapter = this.cDEDARETTableAdapter;
     this.tableAdapterManager.CDModereaTableAdapter = null;
     this.tableAdapterManager.CDStateTableAdapter = null;
     this.tableAdapterManager.CDSyndicateTableAdapter = this.cDSyndicateTableAdapter;
     this.tableAdapterManager.TBLEdaraMandopTableAdapter = this.tBLEdaraMandopTableAdapter;
     this.tableAdapterManager.TblMemberTableAdapter = null;
     this.tableAdapterManager.TBLNkapaMandopTableAdapter = this.tBLNkapaMandopTableAdapter;
     this.tableAdapterManager.TblSarfTableAdapter = null;
     this.tableAdapterManager.TBLSheekMonthTableAdapter = null;
     this.tableAdapterManager.TBLSheekWaredTableAdapter = this.tBLSheekWaredTableAdapter;
     this.tableAdapterManager.UpdateOrder = Fellowship.DataSources.DSFellowshipTableAdapters.TableAdapterManager.UpdateOrderOption.InsertUpdateDelete;
     this.tableAdapterManager.UsersTableAdapter = null;
     //
     // cDEDARETTableAdapter
     //
     this.cDEDARETTableAdapter.ClearBeforeFill = true;
     //
     // cDSyndicateTableAdapter
     //
     this.cDSyndicateTableAdapter.ClearBeforeFill = true;
     //
     // tBLEdaraMandopTableAdapter
     //
     this.tBLEdaraMandopTableAdapter.ClearBeforeFill = true;
     //
     // tBLNkapaMandopTableAdapter
     //
     this.tBLNkapaMandopTableAdapter.ClearBeforeFill = true;
     //
     // tBLSheekWaredTableAdapter
     //
     this.tBLSheekWaredTableAdapter.ClearBeforeFill = true;
     //
     // colEDARET1
     //
     this.colEDARET1.AppearanceCell.Options.UseTextOptions = true;
     this.colEDARET1.AppearanceCell.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.colEDARET1.AppearanceHeader.Options.UseTextOptions = true;
     this.colEDARET1.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.colEDARET1.Caption = "الادارة";
     this.colEDARET1.FieldName = "EDARET";
     this.colEDARET1.Name = "colEDARET1";
     this.colEDARET1.Visible = true;
     this.colEDARET1.VisibleIndex = 0;
     //
     // colEdaraMandopName
     //
     this.colEdaraMandopName.AppearanceCell.Options.UseTextOptions = true;
     this.colEdaraMandopName.AppearanceCell.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.colEdaraMandopName.AppearanceHeader.Options.UseTextOptions = true;
     this.colEdaraMandopName.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.colEdaraMandopName.Caption = "الاسم";
     this.colEdaraMandopName.FieldName = "EdaraMandopName";
     this.colEdaraMandopName.Name = "colEdaraMandopName";
     this.colEdaraMandopName.Visible = true;
     this.colEdaraMandopName.VisibleIndex = 0;
     //
     // colnkapaMandopName
     //
     this.colnkapaMandopName.AppearanceCell.Options.UseTextOptions = true;
     this.colnkapaMandopName.AppearanceCell.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.colnkapaMandopName.AppearanceHeader.Options.UseTextOptions = true;
     this.colnkapaMandopName.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.colnkapaMandopName.Caption = "الاسم";
     this.colnkapaMandopName.FieldName = "nkapaMandopName";
     this.colnkapaMandopName.Name = "colnkapaMandopName";
     this.colnkapaMandopName.Visible = true;
     this.colnkapaMandopName.VisibleIndex = 0;
     //
     // gridColumn2
     //
     this.gridColumn2.AppearanceCell.Options.UseTextOptions = true;
     this.gridColumn2.AppearanceCell.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.gridColumn2.AppearanceHeader.Options.UseTextOptions = true;
     this.gridColumn2.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.gridColumn2.Caption = "اسم الشهر";
     this.gridColumn2.FieldName = "MonthName";
     this.gridColumn2.Name = "gridColumn2";
     this.gridColumn2.Visible = true;
     this.gridColumn2.VisibleIndex = 0;
     //
     // groupControl1
     //
     this.groupControl1.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
     | System.Windows.Forms.AnchorStyles.Left)
     | System.Windows.Forms.AnchorStyles.Right)));
     this.groupControl1.Controls.Add(this.gridControlData);
     this.groupControl1.Location = new System.Drawing.Point(12, 12);
     this.groupControl1.Name = "groupControl1";
     this.groupControl1.Size = new System.Drawing.Size(760, 296);
     this.groupControl1.TabIndex = 1;
     //
     // groupControl2
     //
     this.groupControl2.AllowTouchScroll = true;
     this.groupControl2.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)
     | System.Windows.Forms.AnchorStyles.Right)));
     this.groupControl2.Controls.Add(this.btnNew);
     this.groupControl2.Location = new System.Drawing.Point(12, 314);
     this.groupControl2.Name = "groupControl2";
     this.groupControl2.Size = new System.Drawing.Size(760, 62);
     this.groupControl2.TabIndex = 2;
     //
     // btnNew
     //
     this.btnNew.Anchor = System.Windows.Forms.AnchorStyles.Right;
     this.btnNew.Image = global::Fellowship.Properties.Resources.Add;
     this.btnNew.Location = new System.Drawing.Point(555, 23);
     this.btnNew.Name = "btnNew";
     this.btnNew.Size = new System.Drawing.Size(200, 35);
     this.btnNew.TabIndex = 0;
     this.btnNew.Text = "جديد";
     this.btnNew.Click += new System.EventHandler(this.btnNew_Click);
     //
     // TBLSheekWaredFrm
     //
     this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
     this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
     this.ClientSize = new System.Drawing.Size(784, 388);
     this.Controls.Add(this.groupControl2);
     this.Controls.Add(this.groupControl1);
     this.Name = "TBLSheekWaredFrm";
     this.Text = "الشيكات الواردة";
     this.Load += new System.EventHandler(this.stu_nashatFrm_Load);
     ((System.ComponentModel.ISupportInitialize)(this.gridControlData)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.tBLSheekWaredBindingSource)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.dSFellowship)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridViewData)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemGridLookUpEditSyndicateId)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.cDSyndicateBindingSource)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemGridLookUpEdit1View)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemGridLookUpEditEdaraId)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.cDEDARETBindingSource)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridView1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemCalcEditf2)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemDateEditDMY.VistaTimeProperties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemDateEditDMY)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemGridLookUpEditEdaraMandopId)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.tBLEdaraMandopBindingSource)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridView3)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemGridLookUpEditnkapaMandopId)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.tBLNkapaMandopBindingSource)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridView4)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemButtonEditSave)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemButtonEditDel)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.groupControl1)).EndInit();
     this.groupControl1.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.groupControl2)).EndInit();
     this.groupControl2.ResumeLayout(false);
     this.ResumeLayout(false);
 }
 /// <summary>
 /// Required method for Designer support - do not modify
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     this.btnSave = new DevExpress.XtraEditors.SimpleButton();
     this.btnClose = new DevExpress.XtraEditors.SimpleButton();
     this.btnXemTruoc = new DevExpress.XtraEditors.SimpleButton();
     this.flowLayoutPanel1 = new System.Windows.Forms.FlowLayoutPanel();
     this.panelControl1 = new DevExpress.XtraEditors.PanelControl();
     this.groupControlConfig = new DevExpress.XtraEditors.GroupControl();
     this.xtraScrollableControlConfig = new DevExpress.XtraEditors.XtraScrollableControl();
     this.flowLayoutPanelLabel = new System.Windows.Forms.FlowLayoutPanel();
     this.flowLayoutPanelPattern = new System.Windows.Forms.FlowLayoutPanel();
     this.groupControlExample = new DevExpress.XtraEditors.GroupControl();
     this.xtraScrollableControlExample = new DevExpress.XtraEditors.XtraScrollableControl();
     this.flowLayoutPanelDemo = new System.Windows.Forms.FlowLayoutPanel();
     this.panelControl2 = new DevExpress.XtraEditors.PanelControl();
     this.flowLayoutPanel1.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.panelControl1)).BeginInit();
     this.panelControl1.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.groupControlConfig)).BeginInit();
     this.groupControlConfig.SuspendLayout();
     this.xtraScrollableControlConfig.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.groupControlExample)).BeginInit();
     this.groupControlExample.SuspendLayout();
     this.xtraScrollableControlExample.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.panelControl2)).BeginInit();
     this.panelControl2.SuspendLayout();
     this.SuspendLayout();
     //
     // btnSave
     //
     this.btnSave.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
     this.btnSave.Location = new System.Drawing.Point(100, 3);
     this.btnSave.Name = "btnSave";
     this.btnSave.Size = new System.Drawing.Size(75, 23);
     this.btnSave.TabIndex = 2;
     this.btnSave.Text = "&Lưu";
     this.btnSave.Click += new System.EventHandler(this.btnSave_Click);
     //
     // btnClose
     //
     this.btnClose.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
     this.btnClose.Location = new System.Drawing.Point(181, 3);
     this.btnClose.Name = "btnClose";
     this.btnClose.Size = new System.Drawing.Size(75, 23);
     this.btnClose.TabIndex = 3;
     this.btnClose.Text = "Đón&g";
     this.btnClose.Click += new System.EventHandler(this.btnClose_Click);
     //
     // btnXemTruoc
     //
     this.btnXemTruoc.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
     this.btnXemTruoc.Location = new System.Drawing.Point(3, 3);
     this.btnXemTruoc.Name = "btnXemTruoc";
     this.btnXemTruoc.Size = new System.Drawing.Size(91, 23);
     this.btnXemTruoc.TabIndex = 1;
     this.btnXemTruoc.Text = "Xem t&rước";
     this.btnXemTruoc.Click += new System.EventHandler(this.btnXemTruoc_Click);
     //
     // flowLayoutPanel1
     //
     this.flowLayoutPanel1.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
     this.flowLayoutPanel1.Controls.Add(this.btnXemTruoc);
     this.flowLayoutPanel1.Controls.Add(this.btnSave);
     this.flowLayoutPanel1.Controls.Add(this.btnClose);
     this.flowLayoutPanel1.Location = new System.Drawing.Point(392, 6);
     this.flowLayoutPanel1.Name = "flowLayoutPanel1";
     this.flowLayoutPanel1.Size = new System.Drawing.Size(263, 31);
     this.flowLayoutPanel1.TabIndex = 3;
     //
     // panelControl1
     //
     this.panelControl1.BorderStyle = DevExpress.XtraEditors.Controls.BorderStyles.NoBorder;
     this.panelControl1.Controls.Add(this.flowLayoutPanel1);
     this.panelControl1.Dock = System.Windows.Forms.DockStyle.Bottom;
     this.panelControl1.Location = new System.Drawing.Point(0, 65);
     this.panelControl1.Name = "panelControl1";
     this.panelControl1.Size = new System.Drawing.Size(657, 37);
     this.panelControl1.TabIndex = 6;
     //
     // groupControlConfig
     //
     this.groupControlConfig.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.groupControlConfig.Controls.Add(this.xtraScrollableControlConfig);
     this.groupControlConfig.Location = new System.Drawing.Point(3, 3);
     this.groupControlConfig.Name = "groupControlConfig";
     this.groupControlConfig.Size = new System.Drawing.Size(473, 56);
     this.groupControlConfig.TabIndex = 0;
     this.groupControlConfig.Text = "Định dạng phát sinh số phiếu";
     //
     // xtraScrollableControlConfig
     //
     this.xtraScrollableControlConfig.Controls.Add(this.flowLayoutPanelLabel);
     this.xtraScrollableControlConfig.Controls.Add(this.flowLayoutPanelPattern);
     this.xtraScrollableControlConfig.Dock = System.Windows.Forms.DockStyle.Fill;
     this.xtraScrollableControlConfig.FireScrollEventOnMouseWheel = true;
     this.xtraScrollableControlConfig.Location = new System.Drawing.Point(2, 22);
     this.xtraScrollableControlConfig.Name = "xtraScrollableControlConfig";
     this.xtraScrollableControlConfig.Size = new System.Drawing.Size(469, 32);
     this.xtraScrollableControlConfig.TabIndex = 2;
     this.xtraScrollableControlConfig.Scroll += new DevExpress.XtraEditors.XtraScrollEventHandler(this.xtraScrollableControlConfig_Scroll);
     //
     // flowLayoutPanelLabel
     //
     this.flowLayoutPanelLabel.AutoSize = true;
     this.flowLayoutPanelLabel.FlowDirection = System.Windows.Forms.FlowDirection.TopDown;
     this.flowLayoutPanelLabel.Location = new System.Drawing.Point(7, 3);
     this.flowLayoutPanelLabel.Name = "flowLayoutPanelLabel";
     this.flowLayoutPanelLabel.Size = new System.Drawing.Size(183, 25);
     this.flowLayoutPanelLabel.TabIndex = 0;
     //
     // flowLayoutPanelPattern
     //
     this.flowLayoutPanelPattern.AutoSize = true;
     this.flowLayoutPanelPattern.FlowDirection = System.Windows.Forms.FlowDirection.TopDown;
     this.flowLayoutPanelPattern.Location = new System.Drawing.Point(196, 3);
     this.flowLayoutPanelPattern.Name = "flowLayoutPanelPattern";
     this.flowLayoutPanelPattern.Size = new System.Drawing.Size(270, 25);
     this.flowLayoutPanelPattern.TabIndex = 1;
     //
     // groupControlExample
     //
     this.groupControlExample.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
                 | System.Windows.Forms.AnchorStyles.Right)));
     this.groupControlExample.Controls.Add(this.xtraScrollableControlExample);
     this.groupControlExample.Location = new System.Drawing.Point(482, 3);
     this.groupControlExample.Name = "groupControlExample";
     this.groupControlExample.Size = new System.Drawing.Size(173, 56);
     this.groupControlExample.TabIndex = 7;
     this.groupControlExample.Text = "Minh họa";
     //
     // xtraScrollableControlExample
     //
     this.xtraScrollableControlExample.Controls.Add(this.flowLayoutPanelDemo);
     this.xtraScrollableControlExample.Dock = System.Windows.Forms.DockStyle.Fill;
     this.xtraScrollableControlExample.FireScrollEventOnMouseWheel = true;
     this.xtraScrollableControlExample.Location = new System.Drawing.Point(2, 22);
     this.xtraScrollableControlExample.Name = "xtraScrollableControlExample";
     this.xtraScrollableControlExample.Size = new System.Drawing.Size(169, 32);
     this.xtraScrollableControlExample.TabIndex = 1;
     this.xtraScrollableControlExample.Scroll += new DevExpress.XtraEditors.XtraScrollEventHandler(this.xtraScrollableControlExample_Scroll);
     //
     // flowLayoutPanelDemo
     //
     this.flowLayoutPanelDemo.AutoSize = true;
     this.flowLayoutPanelDemo.FlowDirection = System.Windows.Forms.FlowDirection.TopDown;
     this.flowLayoutPanelDemo.Location = new System.Drawing.Point(3, 3);
     this.flowLayoutPanelDemo.Name = "flowLayoutPanelDemo";
     this.flowLayoutPanelDemo.Size = new System.Drawing.Size(158, 25);
     this.flowLayoutPanelDemo.TabIndex = 2;
     //
     // panelControl2
     //
     this.panelControl2.BorderStyle = DevExpress.XtraEditors.Controls.BorderStyles.NoBorder;
     this.panelControl2.Controls.Add(this.groupControlExample);
     this.panelControl2.Controls.Add(this.groupControlConfig);
     this.panelControl2.Dock = System.Windows.Forms.DockStyle.Fill;
     this.panelControl2.Location = new System.Drawing.Point(0, 0);
     this.panelControl2.Name = "panelControl2";
     this.panelControl2.Size = new System.Drawing.Size(657, 65);
     this.panelControl2.TabIndex = 11;
     //
     // frmCauHinhMauPhieu
     //
     this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.None;
     this.ClientSize = new System.Drawing.Size(657, 102);
     this.Controls.Add(this.panelControl2);
     this.Controls.Add(this.panelControl1);
     this.MaximizeBox = false;
     this.MinimizeBox = false;
     this.Name = "frmCauHinhMauPhieu";
     this.Text = "Thiết lập định dạng số phiếu";
     this.flowLayoutPanel1.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.panelControl1)).EndInit();
     this.panelControl1.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.groupControlConfig)).EndInit();
     this.groupControlConfig.ResumeLayout(false);
     this.xtraScrollableControlConfig.ResumeLayout(false);
     this.xtraScrollableControlConfig.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(this.groupControlExample)).EndInit();
     this.groupControlExample.ResumeLayout(false);
     this.xtraScrollableControlExample.ResumeLayout(false);
     this.xtraScrollableControlExample.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(this.panelControl2)).EndInit();
     this.panelControl2.ResumeLayout(false);
     this.ResumeLayout(false);
 }
Пример #34
0
 /// <summary>
 /// 设计器支持所需的方法 - 不要使用代码编辑器修改
 /// 此方法的内容。
 /// </summary>
 private void InitializeComponent()
 {
     this.groupControl2                = new DevExpress.XtraEditors.GroupControl();
     this.btnTest2                     = new System.Windows.Forms.Button();
     this.btnTest1                     = new System.Windows.Forms.Button();
     this.comboBoxEdit_BatchMode       = new DevExpress.XtraEditors.ComboBoxEdit();
     this.notePanel_BatchMode          = new DevExpress.Utils.Frames.NotePanel();
     this.comboBoxEdit_TerminalMachine = new DevExpress.XtraEditors.ComboBoxEdit();
     this.notePanel_TerminalMachine    = new DevExpress.Utils.Frames.NotePanel();
     this.simpleButton4                = new DevExpress.XtraEditors.SimpleButton();
     this.gridControl2                 = new DevExpress.XtraGrid.GridControl();
     this.gridView2                    = new DevExpress.XtraGrid.Views.Grid.GridView();
     this.gridColumn5                  = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn6                  = new DevExpress.XtraGrid.Columns.GridColumn();
     this.timer_SetMachineVolumn       = new System.Timers.Timer();
     ((System.ComponentModel.ISupportInitialize)(this.groupControl2)).BeginInit();
     this.groupControl2.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.comboBoxEdit_BatchMode.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.comboBoxEdit_TerminalMachine.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridControl2)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridView2)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.timer_SetMachineVolumn)).BeginInit();
     this.SuspendLayout();
     //
     // groupControl2
     //
     this.groupControl2.AppearanceCaption.Font            = new System.Drawing.Font("Tahoma", 9F, System.Drawing.FontStyle.Bold);
     this.groupControl2.AppearanceCaption.Options.UseFont = true;
     this.groupControl2.Controls.Add(this.btnTest2);
     this.groupControl2.Controls.Add(this.btnTest1);
     this.groupControl2.Controls.Add(this.comboBoxEdit_BatchMode);
     this.groupControl2.Controls.Add(this.notePanel_BatchMode);
     this.groupControl2.Controls.Add(this.comboBoxEdit_TerminalMachine);
     this.groupControl2.Controls.Add(this.notePanel_TerminalMachine);
     this.groupControl2.Controls.Add(this.simpleButton4);
     this.groupControl2.Controls.Add(this.gridControl2);
     this.groupControl2.Location = new System.Drawing.Point(24, 14);
     this.groupControl2.Name     = "groupControl2";
     this.groupControl2.Size     = new System.Drawing.Size(528, 178);
     this.groupControl2.TabIndex = 2;
     this.groupControl2.Text     = "Step Two:设定容量";
     //
     // btnTest2
     //
     this.btnTest2.Location = new System.Drawing.Point(104, 104);
     this.btnTest2.Name     = "btnTest2";
     this.btnTest2.TabIndex = 17;
     this.btnTest2.Text     = "班级名成功";
     this.btnTest2.Visible  = false;
     this.btnTest2.Click   += new System.EventHandler(this.btnTest2_Click);
     //
     // btnTest1
     //
     this.btnTest1.Location = new System.Drawing.Point(8, 104);
     this.btnTest1.Name     = "btnTest1";
     this.btnTest1.TabIndex = 16;
     this.btnTest1.Text     = "容量成功";
     this.btnTest1.Visible  = false;
     this.btnTest1.Click   += new System.EventHandler(this.btnTest_Click);
     //
     // comboBoxEdit_BatchMode
     //
     this.comboBoxEdit_BatchMode.EditValue = "群分模式";
     this.comboBoxEdit_BatchMode.Location  = new System.Drawing.Point(120, 72);
     this.comboBoxEdit_BatchMode.Name      = "comboBoxEdit_BatchMode";
     //
     // comboBoxEdit_BatchMode.Properties
     //
     this.comboBoxEdit_BatchMode.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
         new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)
     });
     this.comboBoxEdit_BatchMode.Properties.Items.AddRange(new object[] {
         "群分模式",
         "单分模式"
     });
     this.comboBoxEdit_BatchMode.Size                  = new System.Drawing.Size(80, 23);
     this.comboBoxEdit_BatchMode.TabIndex              = 15;
     this.comboBoxEdit_BatchMode.SelectedIndexChanged += new System.EventHandler(this.comboBoxEdit_BatchMode_SelectedIndexChanged);
     //
     // notePanel_BatchMode
     //
     this.notePanel_BatchMode.Anchor           = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
     this.notePanel_BatchMode.BackColor        = System.Drawing.Color.FromArgb(((System.Byte)(224)), ((System.Byte)(224)), ((System.Byte)(224)));
     this.notePanel_BatchMode.BackColor2       = System.Drawing.Color.DarkGray;
     this.notePanel_BatchMode.Font             = new System.Drawing.Font("Tahoma", 8F);
     this.notePanel_BatchMode.ForeColor        = System.Drawing.Color.Black;
     this.notePanel_BatchMode.GradientMode     = System.Drawing.Drawing2D.LinearGradientMode.Vertical;
     this.notePanel_BatchMode.Location         = new System.Drawing.Point(32, 72);
     this.notePanel_BatchMode.MaxRows          = 5;
     this.notePanel_BatchMode.Name             = "notePanel_BatchMode";
     this.notePanel_BatchMode.ParentAutoHeight = true;
     this.notePanel_BatchMode.Size             = new System.Drawing.Size(80, 22);
     this.notePanel_BatchMode.TabIndex         = 14;
     this.notePanel_BatchMode.TabStop          = false;
     this.notePanel_BatchMode.Text             = "分配模式:";
     //
     // comboBoxEdit_TerminalMachine
     //
     this.comboBoxEdit_TerminalMachine.EditValue = "1";
     this.comboBoxEdit_TerminalMachine.Location  = new System.Drawing.Point(120, 40);
     this.comboBoxEdit_TerminalMachine.Name      = "comboBoxEdit_TerminalMachine";
     //
     // comboBoxEdit_TerminalMachine.Properties
     //
     this.comboBoxEdit_TerminalMachine.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
         new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)
     });
     this.comboBoxEdit_TerminalMachine.Size                  = new System.Drawing.Size(80, 23);
     this.comboBoxEdit_TerminalMachine.TabIndex              = 13;
     this.comboBoxEdit_TerminalMachine.SelectedIndexChanged += new System.EventHandler(this.comboBoxEdit_TerminalMachine_SelectedIndexChanged);
     //
     // notePanel_TerminalMachine
     //
     this.notePanel_TerminalMachine.Anchor           = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
     this.notePanel_TerminalMachine.BackColor        = System.Drawing.Color.FromArgb(((System.Byte)(224)), ((System.Byte)(224)), ((System.Byte)(224)));
     this.notePanel_TerminalMachine.BackColor2       = System.Drawing.Color.DarkGray;
     this.notePanel_TerminalMachine.Font             = new System.Drawing.Font("Tahoma", 8F);
     this.notePanel_TerminalMachine.ForeColor        = System.Drawing.Color.Black;
     this.notePanel_TerminalMachine.GradientMode     = System.Drawing.Drawing2D.LinearGradientMode.Vertical;
     this.notePanel_TerminalMachine.Location         = new System.Drawing.Point(32, 40);
     this.notePanel_TerminalMachine.MaxRows          = 5;
     this.notePanel_TerminalMachine.Name             = "notePanel_TerminalMachine";
     this.notePanel_TerminalMachine.ParentAutoHeight = true;
     this.notePanel_TerminalMachine.Size             = new System.Drawing.Size(80, 22);
     this.notePanel_TerminalMachine.TabIndex         = 12;
     this.notePanel_TerminalMachine.TabStop          = false;
     this.notePanel_TerminalMachine.Text             = " 门口机:";
     //
     // simpleButton4
     //
     this.simpleButton4.Location = new System.Drawing.Point(56, 136);
     this.simpleButton4.Name     = "simpleButton4";
     this.simpleButton4.Size     = new System.Drawing.Size(128, 23);
     this.simpleButton4.TabIndex = 2;
     this.simpleButton4.Text     = "设定门口机容量";
     this.simpleButton4.Click   += new System.EventHandler(this.simpleButton4_Click);
     //
     // gridControl2
     //
     this.gridControl2.Dock = System.Windows.Forms.DockStyle.Right;
     //
     // gridControl2.EmbeddedNavigator
     //
     this.gridControl2.EmbeddedNavigator.Name = "";
     this.gridControl2.Location = new System.Drawing.Point(229, 18);
     this.gridControl2.MainView = this.gridView2;
     this.gridControl2.Name     = "gridControl2";
     this.gridControl2.Size     = new System.Drawing.Size(296, 157);
     this.gridControl2.TabIndex = 3;
     this.gridControl2.ViewCollection.AddRange(new DevExpress.XtraGrid.Views.Base.BaseView[] {
         this.gridView2
     });
     //
     // gridView2
     //
     this.gridView2.Columns.AddRange(new DevExpress.XtraGrid.Columns.GridColumn[] {
         this.gridColumn5,
         this.gridColumn6
     });
     this.gridView2.GridControl = this.gridControl2;
     this.gridView2.Name        = "gridView2";
     this.gridView2.OptionsCustomization.AllowFilter = false;
     this.gridView2.OptionsCustomization.AllowGroup  = false;
     this.gridView2.OptionsView.NewItemRowPosition   = DevExpress.XtraGrid.Views.Grid.NewItemRowPosition.Bottom;
     this.gridView2.OptionsView.ShowFilterPanel      = false;
     this.gridView2.OptionsView.ShowFooter           = true;
     this.gridView2.OptionsView.ShowGroupPanel       = false;
     //
     // gridColumn5
     //
     this.gridColumn5.Caption      = "班级编号";
     this.gridColumn5.FieldName    = "machine_address";
     this.gridColumn5.Name         = "gridColumn5";
     this.gridColumn5.Visible      = true;
     this.gridColumn5.VisibleIndex = 0;
     //
     // gridColumn6
     //
     this.gridColumn6.Caption      = "班级容量";
     this.gridColumn6.FieldName    = "machine_volumn";
     this.gridColumn6.Name         = "gridColumn6";
     this.gridColumn6.Visible      = true;
     this.gridColumn6.VisibleIndex = 1;
     //
     // timer_SetMachineVolumn
     //
     this.timer_SetMachineVolumn.SynchronizingObject = this;
     this.timer_SetMachineVolumn.Elapsed            += new System.Timers.ElapsedEventHandler(this.timer_SetMachineVolumn_Elapsed);
     //
     // SetMachineVol
     //
     this.AutoScaleBaseSize = new System.Drawing.Size(6, 14);
     this.BackColor         = System.Drawing.Color.WhiteSmoke;
     this.ClientSize        = new System.Drawing.Size(568, 221);
     this.Controls.Add(this.groupControl2);
     this.Name          = "SetMachineVol";
     this.ShowInTaskbar = false;
     this.Text          = "SetMachineVol";
     this.Closing      += new System.ComponentModel.CancelEventHandler(this.SetMachineVol_Closing);
     this.Load         += new System.EventHandler(this.SetMachineVol_Load);
     ((System.ComponentModel.ISupportInitialize)(this.groupControl2)).EndInit();
     this.groupControl2.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.comboBoxEdit_BatchMode.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.comboBoxEdit_TerminalMachine.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridControl2)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridView2)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.timer_SetMachineVolumn)).EndInit();
     this.ResumeLayout(false);
 }
 /// <summary>
 /// Required method for Designer support - do not modify
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(DataBillFrm));
     this.gridColumn1 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn2 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.repositoryItemLookUpEditEditSanfID = new DevExpress.XtraEditors.Repository.RepositoryItemLookUpEdit();
     this.gridColumn24 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.repositoryItemLookUpEditEditSalesUnitID = new DevExpress.XtraEditors.Repository.RepositoryItemLookUpEdit();
     this.gridColumn12 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn4 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.repositoryItemTextEditEditQuantity = new DevExpress.XtraEditors.Repository.RepositoryItemTextEdit();
     this.gridColumn5 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.repositoryItemCalcEditEditPrice = new DevExpress.XtraEditors.Repository.RepositoryItemCalcEdit();
     this.gridColumn6 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.repositoryItemCalcEditEditDiscount = new DevExpress.XtraEditors.Repository.RepositoryItemCalcEdit();
     this.gridColumn7 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.repositoryItemButtonEditEditSortNo1 = new DevExpress.XtraEditors.Repository.RepositoryItemButtonEdit();
     this.gridColumn9 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridControlEditor = new DevExpress.XtraGrid.GridControl();
     this.mastergridView = new DevExpress.XtraGrid.Views.Grid.GridView();
     this.gridColumn10 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn11 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.repositoryItemDateEditEditStoreTrDate = new DevExpress.XtraEditors.Repository.RepositoryItemDateEdit();
     this.gridColumn8 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn13 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.repositoryItemLookUpEditEditPERSONID = new DevExpress.XtraEditors.Repository.RepositoryItemLookUpEdit();
     this.gridColumn14 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.repositoryItemLookUpEditEditEMPID = new DevExpress.XtraEditors.Repository.RepositoryItemLookUpEdit();
     this.gridColumn16 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.repositoryItemTextEditEditTotalkasm = new DevExpress.XtraEditors.Repository.RepositoryItemTextEdit();
     this.gridColumn17 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.repositoryItemTextEditEditExtraFees = new DevExpress.XtraEditors.Repository.RepositoryItemTextEdit();
     this.gridColumn18 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.repositoryItemMemoExEditEditREM = new DevExpress.XtraEditors.Repository.RepositoryItemMemoExEdit();
     this.gridColumn20 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.repositoryItemLookUpEditEditStoreID = new DevExpress.XtraEditors.Repository.RepositoryItemLookUpEdit();
     this.gridColumn22 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.repositoryItemLookUpEditEditBillPayTypeID = new DevExpress.XtraEditors.Repository.RepositoryItemLookUpEdit();
     this.gridColumn3 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.repositoryItemButtonEditEditBillDelete = new DevExpress.XtraEditors.Repository.RepositoryItemButtonEdit();
     this.gridColumn19 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.repositoryItemButtonEditBillEdit = new DevExpress.XtraEditors.Repository.RepositoryItemButtonEdit();
     this.xtraTabControlEditor = new DevExpress.XtraTab.XtraTabControl();
     this.xtraTabPageAdd = new DevExpress.XtraTab.XtraTabPage();
     this.BtnPrint = new DevExpress.XtraEditors.SimpleButton();
     this.BtnSave = new DevExpress.XtraEditors.SimpleButton();
     this.groupControl3 = new DevExpress.XtraEditors.GroupControl();
     this.labelControl6 = new DevExpress.XtraEditors.LabelControl();
     this.LblTotal = new DevExpress.XtraEditors.LabelControl();
     this.GridControlAddDetials = new DevExpress.XtraGrid.GridControl();
     this.gridViewAdd = new DevExpress.XtraGrid.Views.Grid.GridView();
     this.gridColumnStoreTrID = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumnSanfID = new DevExpress.XtraGrid.Columns.GridColumn();
     this.repositoryItemLookUpEditSanfID = new DevExpress.XtraEditors.Repository.RepositoryItemLookUpEdit();
     this.gridColumnQuantity = new DevExpress.XtraGrid.Columns.GridColumn();
     this.repositoryItemTextEditQuantity = new DevExpress.XtraEditors.Repository.RepositoryItemTextEdit();
     this.gridColumnPrice = new DevExpress.XtraGrid.Columns.GridColumn();
     this.repositoryItemCalcEditPrice = new DevExpress.XtraEditors.Repository.RepositoryItemCalcEdit();
     this.gridColumnDiscount = new DevExpress.XtraGrid.Columns.GridColumn();
     this.repositoryItemCalcEditDiscount = new DevExpress.XtraEditors.Repository.RepositoryItemCalcEdit();
     this.gridColumnSort = new DevExpress.XtraGrid.Columns.GridColumn();
     this.repositoryItemButtonEditSort = new DevExpress.XtraEditors.Repository.RepositoryItemButtonEdit();
     this.gridColumnDelete = new DevExpress.XtraGrid.Columns.GridColumn();
     this.repositoryItemButtonEditDelete = new DevExpress.XtraEditors.Repository.RepositoryItemButtonEdit();
     this.gridColumnTotal = new DevExpress.XtraGrid.Columns.GridColumn();
     this.groupControl2 = new DevExpress.XtraEditors.GroupControl();
     this.TxtREM = new DevExpress.XtraEditors.MemoEdit();
     this.labelControl12 = new DevExpress.XtraEditors.LabelControl();
     this.TxtExtraFees = new DevExpress.XtraEditors.TextEdit();
     this.labelControl5 = new DevExpress.XtraEditors.LabelControl();
     this.TxtTotalkasm = new DevExpress.XtraEditors.TextEdit();
     this.labelControl8 = new DevExpress.XtraEditors.LabelControl();
     this.groupControl1 = new DevExpress.XtraEditors.GroupControl();
     this.labelControl7 = new DevExpress.XtraEditors.LabelControl();
     this.LUEStoreID = new DevExpress.XtraEditors.LookUpEdit();
     this.LUEBillPayType = new DevExpress.XtraEditors.LookUpEdit();
     this.LUEEMPID = new DevExpress.XtraEditors.LookUpEdit();
     this.LUEPERSONID = new DevExpress.XtraEditors.LookUpEdit();
     this.labelControl11 = new DevExpress.XtraEditors.LabelControl();
     this.DEStoreTrDate = new DevExpress.XtraEditors.DateEdit();
     this.labelControl4 = new DevExpress.XtraEditors.LabelControl();
     this.TxtStoreTrIDDAY = new DevExpress.XtraEditors.TextEdit();
     this.TxtStoreTrIDTYPE = new DevExpress.XtraEditors.TextEdit();
     this.labelControl3 = new DevExpress.XtraEditors.LabelControl();
     this.labelControl9 = new DevExpress.XtraEditors.LabelControl();
     this.labelControl2 = new DevExpress.XtraEditors.LabelControl();
     this.labelControl1 = new DevExpress.XtraEditors.LabelControl();
     this.xtraTabPageEdit = new DevExpress.XtraTab.XtraTabPage();
     this.groupControl4 = new DevExpress.XtraEditors.GroupControl();
     this.gridControlEditorDetial = new DevExpress.XtraGrid.GridControl();
     this.gridViewEditDetial = new DevExpress.XtraGrid.Views.Grid.GridView();
     this.gridColumn15 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumnEditDetialSanfID = new DevExpress.XtraGrid.Columns.GridColumn();
     this.repositoryItemLookUpEditDetialSanfID = new DevExpress.XtraEditors.Repository.RepositoryItemLookUpEdit();
     this.gridColumn23 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.repositoryItemTextEditDetailQuantity = new DevExpress.XtraEditors.Repository.RepositoryItemTextEdit();
     this.gridColumn25 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.repositoryItemCalcEditDetialPrice = new DevExpress.XtraEditors.Repository.RepositoryItemCalcEdit();
     this.gridColumn26 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.repositoryItemCalcEditDetialDiscount = new DevExpress.XtraEditors.Repository.RepositoryItemCalcEdit();
     this.gridColumn27 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.repositoryItemButtonEditDetialSortNo = new DevExpress.XtraEditors.Repository.RepositoryItemButtonEdit();
     this.gridColumn28 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.repositoryItemButtonEditEditDetialDelete = new DevExpress.XtraEditors.Repository.RepositoryItemButtonEdit();
     this.gridColumn29 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn30 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.repositoryItemButtonEditDetialUpdate = new DevExpress.XtraEditors.Repository.RepositoryItemButtonEdit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemLookUpEditEditSanfID)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemLookUpEditEditSalesUnitID)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemTextEditEditQuantity)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemCalcEditEditPrice)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemCalcEditEditDiscount)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemButtonEditEditSortNo1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridControlEditor)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.mastergridView)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemDateEditEditStoreTrDate)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemDateEditEditStoreTrDate.VistaTimeProperties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemLookUpEditEditPERSONID)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemLookUpEditEditEMPID)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemTextEditEditTotalkasm)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemTextEditEditExtraFees)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemMemoExEditEditREM)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemLookUpEditEditStoreID)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemLookUpEditEditBillPayTypeID)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemButtonEditEditBillDelete)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemButtonEditBillEdit)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.xtraTabControlEditor)).BeginInit();
     this.xtraTabControlEditor.SuspendLayout();
     this.xtraTabPageAdd.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.groupControl3)).BeginInit();
     this.groupControl3.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.GridControlAddDetials)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridViewAdd)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemLookUpEditSanfID)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemTextEditQuantity)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemCalcEditPrice)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemCalcEditDiscount)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemButtonEditSort)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemButtonEditDelete)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.groupControl2)).BeginInit();
     this.groupControl2.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.TxtREM.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.TxtExtraFees.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.TxtTotalkasm.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.groupControl1)).BeginInit();
     this.groupControl1.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.LUEStoreID.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.LUEBillPayType.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.LUEEMPID.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.LUEPERSONID.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.DEStoreTrDate.Properties.VistaTimeProperties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.DEStoreTrDate.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.TxtStoreTrIDDAY.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.TxtStoreTrIDTYPE.Properties)).BeginInit();
     this.xtraTabPageEdit.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.groupControl4)).BeginInit();
     this.groupControl4.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.gridControlEditorDetial)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridViewEditDetial)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemLookUpEditDetialSanfID)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemTextEditDetailQuantity)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemCalcEditDetialPrice)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemCalcEditDetialDiscount)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemButtonEditDetialSortNo)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemButtonEditEditDetialDelete)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemButtonEditDetialUpdate)).BeginInit();
     this.SuspendLayout();
     //
     // gridColumn1
     //
     this.gridColumn1.Caption = "رقم فاتورة المشتريات";
     this.gridColumn1.FieldName = "WaredID";
     this.gridColumn1.Name = "gridColumn1";
     this.gridColumn1.OptionsColumn.ShowInCustomizationForm = false;
     //
     // gridColumn2
     //
     this.gridColumn2.Caption = "الصنف";
     this.gridColumn2.ColumnEdit = this.repositoryItemLookUpEditEditSanfID;
     this.gridColumn2.FieldName = "SanfID";
     this.gridColumn2.Name = "gridColumn2";
     this.gridColumn2.Visible = true;
     this.gridColumn2.VisibleIndex = 0;
     this.gridColumn2.Width = 92;
     //
     // repositoryItemLookUpEditEditSanfID
     //
     this.repositoryItemLookUpEditEditSanfID.AutoHeight = false;
     this.repositoryItemLookUpEditEditSanfID.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.repositoryItemLookUpEditEditSanfID.Columns.AddRange(new DevExpress.XtraEditors.Controls.LookUpColumnInfo[] {
     new DevExpress.XtraEditors.Controls.LookUpColumnInfo("SanfName", "اسم الصنــف"),
     new DevExpress.XtraEditors.Controls.LookUpColumnInfo("SalesUnitName", "نوع وحدة البيع")});
     this.repositoryItemLookUpEditEditSanfID.Name = "repositoryItemLookUpEditEditSanfID";
     this.repositoryItemLookUpEditEditSanfID.NullText = "";
     this.repositoryItemLookUpEditEditSanfID.NullValuePrompt = "اختار اسم الصنف";
     //
     // gridColumn24
     //
     this.gridColumn24.Caption = "وحدة البيع";
     this.gridColumn24.ColumnEdit = this.repositoryItemLookUpEditEditSalesUnitID;
     this.gridColumn24.FieldName = "SalesUnitID";
     this.gridColumn24.Name = "gridColumn24";
     this.gridColumn24.Visible = true;
     this.gridColumn24.VisibleIndex = 1;
     //
     // repositoryItemLookUpEditEditSalesUnitID
     //
     this.repositoryItemLookUpEditEditSalesUnitID.AutoHeight = false;
     this.repositoryItemLookUpEditEditSalesUnitID.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.repositoryItemLookUpEditEditSalesUnitID.Columns.AddRange(new DevExpress.XtraEditors.Controls.LookUpColumnInfo[] {
     new DevExpress.XtraEditors.Controls.LookUpColumnInfo("SalesUnitID", "SalesUnitID", 20, DevExpress.Utils.FormatType.None, "", false, DevExpress.Utils.HorzAlignment.Default),
     new DevExpress.XtraEditors.Controls.LookUpColumnInfo("SalesUnitName", "وحدة البيع")});
     this.repositoryItemLookUpEditEditSalesUnitID.Name = "repositoryItemLookUpEditEditSalesUnitID";
     this.repositoryItemLookUpEditEditSalesUnitID.NullText = "";
     this.repositoryItemLookUpEditEditSalesUnitID.NullValuePrompt = "اختار وحدة البيع";
     //
     // gridColumn12
     //
     this.gridColumn12.Caption = "UnitID";
     this.gridColumn12.FieldName = "UnitID";
     this.gridColumn12.Name = "gridColumn12";
     this.gridColumn12.OptionsColumn.ShowInCustomizationForm = false;
     //
     // gridColumn4
     //
     this.gridColumn4.Caption = "كمية الوارد";
     this.gridColumn4.ColumnEdit = this.repositoryItemTextEditEditQuantity;
     this.gridColumn4.FieldName = "WaredQuantity";
     this.gridColumn4.Name = "gridColumn4";
     this.gridColumn4.Visible = true;
     this.gridColumn4.VisibleIndex = 2;
     this.gridColumn4.Width = 105;
     //
     // repositoryItemTextEditEditQuantity
     //
     this.repositoryItemTextEditEditQuantity.AutoHeight = false;
     this.repositoryItemTextEditEditQuantity.DisplayFormat.FormatString = "d";
     this.repositoryItemTextEditEditQuantity.DisplayFormat.FormatType = DevExpress.Utils.FormatType.Numeric;
     this.repositoryItemTextEditEditQuantity.EditFormat.FormatString = "d";
     this.repositoryItemTextEditEditQuantity.EditFormat.FormatType = DevExpress.Utils.FormatType.Numeric;
     this.repositoryItemTextEditEditQuantity.Mask.EditMask = "d";
     this.repositoryItemTextEditEditQuantity.Mask.MaskType = DevExpress.XtraEditors.Mask.MaskType.Numeric;
     this.repositoryItemTextEditEditQuantity.Name = "repositoryItemTextEditEditQuantity";
     this.repositoryItemTextEditEditQuantity.NullValuePrompt = "ادخل الكميه";
     //
     // gridColumn5
     //
     this.gridColumn5.Caption = "سعر الشراء";
     this.gridColumn5.ColumnEdit = this.repositoryItemCalcEditEditPrice;
     this.gridColumn5.FieldName = "WaredPrice";
     this.gridColumn5.Name = "gridColumn5";
     this.gridColumn5.Visible = true;
     this.gridColumn5.VisibleIndex = 3;
     this.gridColumn5.Width = 105;
     //
     // repositoryItemCalcEditEditPrice
     //
     this.repositoryItemCalcEditEditPrice.AutoHeight = false;
     this.repositoryItemCalcEditEditPrice.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.repositoryItemCalcEditEditPrice.DisplayFormat.FormatString = "c2";
     this.repositoryItemCalcEditEditPrice.DisplayFormat.FormatType = DevExpress.Utils.FormatType.Numeric;
     this.repositoryItemCalcEditEditPrice.EditFormat.FormatString = "c2";
     this.repositoryItemCalcEditEditPrice.EditFormat.FormatType = DevExpress.Utils.FormatType.Numeric;
     this.repositoryItemCalcEditEditPrice.Mask.EditMask = "c2";
     this.repositoryItemCalcEditEditPrice.Name = "repositoryItemCalcEditEditPrice";
     this.repositoryItemCalcEditEditPrice.NullValuePrompt = "سعر الوحده";
     //
     // gridColumn6
     //
     this.gridColumn6.Caption = "الخصم";
     this.gridColumn6.ColumnEdit = this.repositoryItemCalcEditEditDiscount;
     this.gridColumn6.FieldName = "DiscountPercent";
     this.gridColumn6.Name = "gridColumn6";
     this.gridColumn6.Visible = true;
     this.gridColumn6.VisibleIndex = 4;
     this.gridColumn6.Width = 105;
     //
     // repositoryItemCalcEditEditDiscount
     //
     this.repositoryItemCalcEditEditDiscount.AutoHeight = false;
     this.repositoryItemCalcEditEditDiscount.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.repositoryItemCalcEditEditDiscount.DisplayFormat.FormatString = "c2";
     this.repositoryItemCalcEditEditDiscount.DisplayFormat.FormatType = DevExpress.Utils.FormatType.Numeric;
     this.repositoryItemCalcEditEditDiscount.EditFormat.FormatString = "c2";
     this.repositoryItemCalcEditEditDiscount.EditFormat.FormatType = DevExpress.Utils.FormatType.Numeric;
     this.repositoryItemCalcEditEditDiscount.Mask.EditMask = "c2";
     this.repositoryItemCalcEditEditDiscount.Name = "repositoryItemCalcEditEditDiscount";
     //
     // gridColumn7
     //
     this.gridColumn7.Caption = "ترتيب";
     this.gridColumn7.ColumnEdit = this.repositoryItemButtonEditEditSortNo1;
     this.gridColumn7.FieldName = "SortNo";
     this.gridColumn7.Name = "gridColumn7";
     this.gridColumn7.Visible = true;
     this.gridColumn7.VisibleIndex = 6;
     this.gridColumn7.Width = 105;
     //
     // repositoryItemButtonEditEditSortNo1
     //
     this.repositoryItemButtonEditEditSortNo1.AutoHeight = false;
     this.repositoryItemButtonEditEditSortNo1.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Up),
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Down)});
     this.repositoryItemButtonEditEditSortNo1.Name = "repositoryItemButtonEditEditSortNo1";
     this.repositoryItemButtonEditEditSortNo1.TextEditStyle = DevExpress.XtraEditors.Controls.TextEditStyles.HideTextEditor;
     //
     // gridColumn9
     //
     this.gridColumn9.Caption = "المجموع";
     this.gridColumn9.DisplayFormat.FormatString = "c2";
     this.gridColumn9.DisplayFormat.FormatType = DevExpress.Utils.FormatType.Numeric;
     this.gridColumn9.FieldName = "Total";
     this.gridColumn9.GroupFormat.FormatString = "c2";
     this.gridColumn9.GroupFormat.FormatType = DevExpress.Utils.FormatType.Numeric;
     this.gridColumn9.Name = "gridColumn9";
     this.gridColumn9.OptionsColumn.AllowSort = DevExpress.Utils.DefaultBoolean.False;
     this.gridColumn9.OptionsColumn.ReadOnly = true;
     this.gridColumn9.Visible = true;
     this.gridColumn9.VisibleIndex = 5;
     //
     // gridControlEditor
     //
     this.gridControlEditor.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
     | System.Windows.Forms.AnchorStyles.Left)
     | System.Windows.Forms.AnchorStyles.Right)));
     this.gridControlEditor.EmbeddedNavigator.Buttons.Edit.Visible = false;
     this.gridControlEditor.EmbeddedNavigator.Buttons.EndEdit.Visible = false;
     this.gridControlEditor.EmbeddedNavigator.Buttons.First.Visible = false;
     this.gridControlEditor.EmbeddedNavigator.Buttons.Last.Visible = false;
     this.gridControlEditor.EmbeddedNavigator.Buttons.Next.Visible = false;
     this.gridControlEditor.EmbeddedNavigator.Buttons.NextPage.Visible = false;
     this.gridControlEditor.EmbeddedNavigator.Buttons.Prev.Visible = false;
     this.gridControlEditor.EmbeddedNavigator.Buttons.PrevPage.Visible = false;
     this.gridControlEditor.EmbeddedNavigator.Buttons.Remove.Visible = false;
     this.gridControlEditor.EmbeddedNavigator.CustomButtons.AddRange(new DevExpress.XtraEditors.NavigatorCustomButton[] {
     new DevExpress.XtraEditors.NavigatorCustomButton()});
     this.gridControlEditor.Location = new System.Drawing.Point(2, 21);
     this.gridControlEditor.MainView = this.mastergridView;
     this.gridControlEditor.Name = "gridControlEditor";
     this.gridControlEditor.RepositoryItems.AddRange(new DevExpress.XtraEditors.Repository.RepositoryItem[] {
     this.repositoryItemLookUpEditEditSanfID,
     this.repositoryItemTextEditEditQuantity,
     this.repositoryItemCalcEditEditPrice,
     this.repositoryItemCalcEditEditDiscount,
     this.repositoryItemButtonEditEditSortNo1,
     this.repositoryItemDateEditEditStoreTrDate,
     this.repositoryItemLookUpEditEditPERSONID,
     this.repositoryItemLookUpEditEditEMPID,
     this.repositoryItemTextEditEditTotalkasm,
     this.repositoryItemTextEditEditExtraFees,
     this.repositoryItemLookUpEditEditStoreID,
     this.repositoryItemLookUpEditEditBillPayTypeID,
     this.repositoryItemLookUpEditEditSalesUnitID,
     this.repositoryItemMemoExEditEditREM,
     this.repositoryItemButtonEditEditBillDelete,
     this.repositoryItemButtonEditBillEdit});
     this.gridControlEditor.RightToLeft = System.Windows.Forms.RightToLeft.Yes;
     this.gridControlEditor.Size = new System.Drawing.Size(751, 232);
     this.gridControlEditor.TabIndex = 10;
     this.gridControlEditor.ViewCollection.AddRange(new DevExpress.XtraGrid.Views.Base.BaseView[] {
     this.mastergridView});
     //
     // mastergridView
     //
     this.mastergridView.Columns.AddRange(new DevExpress.XtraGrid.Columns.GridColumn[] {
     this.gridColumn10,
     this.gridColumn11,
     this.gridColumn8,
     this.gridColumn13,
     this.gridColumn14,
     this.gridColumn16,
     this.gridColumn17,
     this.gridColumn18,
     this.gridColumn20,
     this.gridColumn22,
     this.gridColumn3,
     this.gridColumn19});
     this.mastergridView.GridControl = this.gridControlEditor;
     this.mastergridView.Name = "mastergridView";
     this.mastergridView.OptionsView.ColumnAutoWidth = false;
     this.mastergridView.FocusedRowChanged += new DevExpress.XtraGrid.Views.Base.FocusedRowChangedEventHandler(this.mastergridView_FocusedRowChanged);
     //
     // gridColumn10
     //
     this.gridColumn10.Caption = "StoreTrID";
     this.gridColumn10.FieldName = "StoreTrID";
     this.gridColumn10.Name = "gridColumn10";
     this.gridColumn10.OptionsColumn.ShowInCustomizationForm = false;
     //
     // gridColumn11
     //
     this.gridColumn11.Caption = "تاريخ الفاتوره";
     this.gridColumn11.ColumnEdit = this.repositoryItemDateEditEditStoreTrDate;
     this.gridColumn11.FieldName = "StoreTrDate";
     this.gridColumn11.Name = "gridColumn11";
     this.gridColumn11.Visible = true;
     this.gridColumn11.VisibleIndex = 9;
     this.gridColumn11.Width = 96;
     //
     // repositoryItemDateEditEditStoreTrDate
     //
     this.repositoryItemDateEditEditStoreTrDate.AutoHeight = false;
     this.repositoryItemDateEditEditStoreTrDate.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.repositoryItemDateEditEditStoreTrDate.Name = "repositoryItemDateEditEditStoreTrDate";
     this.repositoryItemDateEditEditStoreTrDate.NullValuePrompt = "اختار التاريخ";
     this.repositoryItemDateEditEditStoreTrDate.VistaTimeProperties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton()});
     //
     // gridColumn8
     //
     this.gridColumn8.Caption = "رقم الفاتوره";
     this.gridColumn8.FieldName = "StoreTrIDTYPE";
     this.gridColumn8.Name = "gridColumn8";
     this.gridColumn8.Visible = true;
     this.gridColumn8.VisibleIndex = 10;
     //
     // gridColumn13
     //
     this.gridColumn13.Caption = "المورد";
     this.gridColumn13.ColumnEdit = this.repositoryItemLookUpEditEditPERSONID;
     this.gridColumn13.FieldName = "PERSONID";
     this.gridColumn13.Name = "gridColumn13";
     this.gridColumn13.Visible = true;
     this.gridColumn13.VisibleIndex = 8;
     this.gridColumn13.Width = 119;
     //
     // repositoryItemLookUpEditEditPERSONID
     //
     this.repositoryItemLookUpEditEditPERSONID.AutoHeight = false;
     this.repositoryItemLookUpEditEditPERSONID.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.repositoryItemLookUpEditEditPERSONID.Columns.AddRange(new DevExpress.XtraEditors.Controls.LookUpColumnInfo[] {
     new DevExpress.XtraEditors.Controls.LookUpColumnInfo("PERSON", "اسم المورد"),
     new DevExpress.XtraEditors.Controls.LookUpColumnInfo("Tel", "تليفون"),
     new DevExpress.XtraEditors.Controls.LookUpColumnInfo("Mobil", "موبيل")});
     this.repositoryItemLookUpEditEditPERSONID.Name = "repositoryItemLookUpEditEditPERSONID";
     this.repositoryItemLookUpEditEditPERSONID.NullText = "";
     this.repositoryItemLookUpEditEditPERSONID.NullValuePrompt = "اختار اسم المورد";
     //
     // gridColumn14
     //
     this.gridColumn14.Caption = "المستلم";
     this.gridColumn14.ColumnEdit = this.repositoryItemLookUpEditEditEMPID;
     this.gridColumn14.FieldName = "EMPID";
     this.gridColumn14.Name = "gridColumn14";
     this.gridColumn14.Visible = true;
     this.gridColumn14.VisibleIndex = 2;
     this.gridColumn14.Width = 117;
     //
     // repositoryItemLookUpEditEditEMPID
     //
     this.repositoryItemLookUpEditEditEMPID.AutoHeight = false;
     this.repositoryItemLookUpEditEditEMPID.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.repositoryItemLookUpEditEditEMPID.Columns.AddRange(new DevExpress.XtraEditors.Controls.LookUpColumnInfo[] {
     new DevExpress.XtraEditors.Controls.LookUpColumnInfo("EMPID", "EMPID", 20, DevExpress.Utils.FormatType.None, "", false, DevExpress.Utils.HorzAlignment.Default),
     new DevExpress.XtraEditors.Controls.LookUpColumnInfo("EMPNAME", "اسم المستلم"),
     new DevExpress.XtraEditors.Controls.LookUpColumnInfo("JOBName", "اسم الوظيفه"),
     new DevExpress.XtraEditors.Controls.LookUpColumnInfo("EMPPHONE", "تليفون"),
     new DevExpress.XtraEditors.Controls.LookUpColumnInfo("EMPMOBIL", "موبيل")});
     this.repositoryItemLookUpEditEditEMPID.Name = "repositoryItemLookUpEditEditEMPID";
     this.repositoryItemLookUpEditEditEMPID.NullText = "";
     this.repositoryItemLookUpEditEditEMPID.NullValuePrompt = "اختار اسم المسئول";
     //
     // gridColumn16
     //
     this.gridColumn16.Caption = "خصم كلي";
     this.gridColumn16.ColumnEdit = this.repositoryItemTextEditEditTotalkasm;
     this.gridColumn16.FieldName = "Totalkasm";
     this.gridColumn16.Name = "gridColumn16";
     this.gridColumn16.Visible = true;
     this.gridColumn16.VisibleIndex = 7;
     this.gridColumn16.Width = 67;
     //
     // repositoryItemTextEditEditTotalkasm
     //
     this.repositoryItemTextEditEditTotalkasm.AutoHeight = false;
     this.repositoryItemTextEditEditTotalkasm.DisplayFormat.FormatString = "c2";
     this.repositoryItemTextEditEditTotalkasm.DisplayFormat.FormatType = DevExpress.Utils.FormatType.Numeric;
     this.repositoryItemTextEditEditTotalkasm.EditFormat.FormatString = "c2";
     this.repositoryItemTextEditEditTotalkasm.EditFormat.FormatType = DevExpress.Utils.FormatType.Numeric;
     this.repositoryItemTextEditEditTotalkasm.Mask.EditMask = "c2";
     this.repositoryItemTextEditEditTotalkasm.Mask.MaskType = DevExpress.XtraEditors.Mask.MaskType.Numeric;
     this.repositoryItemTextEditEditTotalkasm.Name = "repositoryItemTextEditEditTotalkasm";
     //
     // gridColumn17
     //
     this.gridColumn17.Caption = "مصروفات أضافيه";
     this.gridColumn17.ColumnEdit = this.repositoryItemTextEditEditExtraFees;
     this.gridColumn17.FieldName = "ExtraFees";
     this.gridColumn17.Name = "gridColumn17";
     this.gridColumn17.Visible = true;
     this.gridColumn17.VisibleIndex = 6;
     this.gridColumn17.Width = 94;
     //
     // repositoryItemTextEditEditExtraFees
     //
     this.repositoryItemTextEditEditExtraFees.AutoHeight = false;
     this.repositoryItemTextEditEditExtraFees.DisplayFormat.FormatString = "c2";
     this.repositoryItemTextEditEditExtraFees.DisplayFormat.FormatType = DevExpress.Utils.FormatType.Numeric;
     this.repositoryItemTextEditEditExtraFees.EditFormat.FormatString = "c2";
     this.repositoryItemTextEditEditExtraFees.EditFormat.FormatType = DevExpress.Utils.FormatType.Numeric;
     this.repositoryItemTextEditEditExtraFees.Mask.EditMask = "c2";
     this.repositoryItemTextEditEditExtraFees.Mask.MaskType = DevExpress.XtraEditors.Mask.MaskType.Numeric;
     this.repositoryItemTextEditEditExtraFees.Name = "repositoryItemTextEditEditExtraFees";
     //
     // gridColumn18
     //
     this.gridColumn18.Caption = "معلومات";
     this.gridColumn18.ColumnEdit = this.repositoryItemMemoExEditEditREM;
     this.gridColumn18.FieldName = "REM";
     this.gridColumn18.Name = "gridColumn18";
     this.gridColumn18.Visible = true;
     this.gridColumn18.VisibleIndex = 5;
     this.gridColumn18.Width = 56;
     //
     // repositoryItemMemoExEditEditREM
     //
     this.repositoryItemMemoExEditEditREM.AutoHeight = false;
     this.repositoryItemMemoExEditEditREM.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.repositoryItemMemoExEditEditREM.Name = "repositoryItemMemoExEditEditREM";
     //
     // gridColumn20
     //
     this.gridColumn20.Caption = "المخزن";
     this.gridColumn20.ColumnEdit = this.repositoryItemLookUpEditEditStoreID;
     this.gridColumn20.FieldName = "StoreID";
     this.gridColumn20.Name = "gridColumn20";
     this.gridColumn20.Visible = true;
     this.gridColumn20.VisibleIndex = 4;
     this.gridColumn20.Width = 125;
     //
     // repositoryItemLookUpEditEditStoreID
     //
     this.repositoryItemLookUpEditEditStoreID.AutoHeight = false;
     this.repositoryItemLookUpEditEditStoreID.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.repositoryItemLookUpEditEditStoreID.Columns.AddRange(new DevExpress.XtraEditors.Controls.LookUpColumnInfo[] {
     new DevExpress.XtraEditors.Controls.LookUpColumnInfo("StoreID", "StoreID", 20, DevExpress.Utils.FormatType.None, "", false, DevExpress.Utils.HorzAlignment.Default),
     new DevExpress.XtraEditors.Controls.LookUpColumnInfo("StoreName", "اسم المخزن"),
     new DevExpress.XtraEditors.Controls.LookUpColumnInfo("StoreOfficial", "السئول"),
     new DevExpress.XtraEditors.Controls.LookUpColumnInfo("StoreTel", "تليفون"),
     new DevExpress.XtraEditors.Controls.LookUpColumnInfo("StoreMobil", "موبيل")});
     this.repositoryItemLookUpEditEditStoreID.Name = "repositoryItemLookUpEditEditStoreID";
     this.repositoryItemLookUpEditEditStoreID.NullText = "";
     this.repositoryItemLookUpEditEditStoreID.NullValuePrompt = "اختار المخزن";
     //
     // gridColumn22
     //
     this.gridColumn22.Caption = "نوع الدفع";
     this.gridColumn22.ColumnEdit = this.repositoryItemLookUpEditEditBillPayTypeID;
     this.gridColumn22.FieldName = "BillPayTypeID";
     this.gridColumn22.Name = "gridColumn22";
     this.gridColumn22.Visible = true;
     this.gridColumn22.VisibleIndex = 3;
     this.gridColumn22.Width = 86;
     //
     // repositoryItemLookUpEditEditBillPayTypeID
     //
     this.repositoryItemLookUpEditEditBillPayTypeID.AutoHeight = false;
     this.repositoryItemLookUpEditEditBillPayTypeID.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.repositoryItemLookUpEditEditBillPayTypeID.Columns.AddRange(new DevExpress.XtraEditors.Controls.LookUpColumnInfo[] {
     new DevExpress.XtraEditors.Controls.LookUpColumnInfo("BillPayTypeID", "BillPayTypeID", 20, DevExpress.Utils.FormatType.None, "", false, DevExpress.Utils.HorzAlignment.Default),
     new DevExpress.XtraEditors.Controls.LookUpColumnInfo("BillPayTypeName", "نوع الدفع")});
     this.repositoryItemLookUpEditEditBillPayTypeID.Name = "repositoryItemLookUpEditEditBillPayTypeID";
     this.repositoryItemLookUpEditEditBillPayTypeID.NullText = "";
     this.repositoryItemLookUpEditEditBillPayTypeID.NullValuePrompt = "اختار نوع الدفع";
     //
     // gridColumn3
     //
     this.gridColumn3.Caption = "حــــذف";
     this.gridColumn3.ColumnEdit = this.repositoryItemButtonEditEditBillDelete;
     this.gridColumn3.Name = "gridColumn3";
     this.gridColumn3.Visible = true;
     this.gridColumn3.VisibleIndex = 0;
     this.gridColumn3.Width = 61;
     //
     // repositoryItemButtonEditEditBillDelete
     //
     this.repositoryItemButtonEditEditBillDelete.AutoHeight = false;
     this.repositoryItemButtonEditEditBillDelete.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Delete)});
     this.repositoryItemButtonEditEditBillDelete.Name = "repositoryItemButtonEditEditBillDelete";
     this.repositoryItemButtonEditEditBillDelete.NullText = "حذف";
     this.repositoryItemButtonEditEditBillDelete.NullValuePrompt = "حذف";
     this.repositoryItemButtonEditEditBillDelete.NullValuePromptShowForEmptyValue = true;
     this.repositoryItemButtonEditEditBillDelete.TextEditStyle = DevExpress.XtraEditors.Controls.TextEditStyles.HideTextEditor;
     this.repositoryItemButtonEditEditBillDelete.ButtonClick += new DevExpress.XtraEditors.Controls.ButtonPressedEventHandler(this.repositoryItemButtonEditEditBillDelete_ButtonClick);
     //
     // gridColumn19
     //
     this.gridColumn19.Caption = "تعديــل";
     this.gridColumn19.ColumnEdit = this.repositoryItemButtonEditBillEdit;
     this.gridColumn19.Name = "gridColumn19";
     this.gridColumn19.Visible = true;
     this.gridColumn19.VisibleIndex = 1;
     this.gridColumn19.Width = 57;
     //
     // repositoryItemButtonEditBillEdit
     //
     this.repositoryItemButtonEditBillEdit.AutoHeight = false;
     this.repositoryItemButtonEditBillEdit.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.OK)});
     this.repositoryItemButtonEditBillEdit.Name = "repositoryItemButtonEditBillEdit";
     this.repositoryItemButtonEditBillEdit.TextEditStyle = DevExpress.XtraEditors.Controls.TextEditStyles.HideTextEditor;
     this.repositoryItemButtonEditBillEdit.ButtonClick += new DevExpress.XtraEditors.Controls.ButtonPressedEventHandler(this.repositoryItemButtonEditBillEdit_ButtonClick);
     //
     // xtraTabControlEditor
     //
     this.xtraTabControlEditor.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
     | System.Windows.Forms.AnchorStyles.Left)
     | System.Windows.Forms.AnchorStyles.Right)));
     this.xtraTabControlEditor.Location = new System.Drawing.Point(12, 12);
     this.xtraTabControlEditor.Name = "xtraTabControlEditor";
     this.xtraTabControlEditor.SelectedTabPage = this.xtraTabPageAdd;
     this.xtraTabControlEditor.Size = new System.Drawing.Size(768, 542);
     this.xtraTabControlEditor.TabIndex = 0;
     this.xtraTabControlEditor.TabPages.AddRange(new DevExpress.XtraTab.XtraTabPage[] {
     this.xtraTabPageAdd,
     this.xtraTabPageEdit});
     this.xtraTabControlEditor.SelectedPageChanging += new DevExpress.XtraTab.TabPageChangingEventHandler(this.xtraTabControlEditor_SelectedPageChanging);
     //
     // xtraTabPageAdd
     //
     this.xtraTabPageAdd.Controls.Add(this.BtnPrint);
     this.xtraTabPageAdd.Controls.Add(this.BtnSave);
     this.xtraTabPageAdd.Controls.Add(this.groupControl3);
     this.xtraTabPageAdd.Controls.Add(this.GridControlAddDetials);
     this.xtraTabPageAdd.Controls.Add(this.groupControl2);
     this.xtraTabPageAdd.Controls.Add(this.groupControl1);
     this.xtraTabPageAdd.Name = "xtraTabPageAdd";
     this.xtraTabPageAdd.Size = new System.Drawing.Size(762, 514);
     this.xtraTabPageAdd.Text = "اضافه";
     //
     // BtnPrint
     //
     this.BtnPrint.Anchor = System.Windows.Forms.AnchorStyles.Bottom;
     this.BtnPrint.Enabled = false;
     this.BtnPrint.Location = new System.Drawing.Point(8, 480);
     this.BtnPrint.Name = "BtnPrint";
     this.BtnPrint.Size = new System.Drawing.Size(154, 32);
     this.BtnPrint.TabIndex = 4;
     this.BtnPrint.Text = "طباعة اذن الاضافه";
     this.BtnPrint.Click += new System.EventHandler(this.BtnSave_Click);
     //
     // BtnSave
     //
     this.BtnSave.Anchor = System.Windows.Forms.AnchorStyles.Bottom;
     this.BtnSave.Enabled = false;
     this.BtnSave.Location = new System.Drawing.Point(188, 480);
     this.BtnSave.Name = "BtnSave";
     this.BtnSave.Size = new System.Drawing.Size(387, 32);
     this.BtnSave.TabIndex = 3;
     this.BtnSave.Text = "حفـــــــــــــــظ و اغــــــــلاق";
     this.BtnSave.ToolTip = "حفـــــــــــــــظ و اغــــــــلاق";
     this.BtnSave.ToolTipTitle = "حفظ الفاتوره F6";
     this.BtnSave.Click += new System.EventHandler(this.BtnSave_Click);
     //
     // groupControl3
     //
     this.groupControl3.Controls.Add(this.labelControl6);
     this.groupControl3.Controls.Add(this.LblTotal);
     this.groupControl3.Location = new System.Drawing.Point(8, 3);
     this.groupControl3.Name = "groupControl3";
     this.groupControl3.Size = new System.Drawing.Size(223, 198);
     this.groupControl3.TabIndex = 4;
     this.groupControl3.Text = "الاجمالي";
     //
     // labelControl6
     //
     this.labelControl6.Location = new System.Drawing.Point(133, 76);
     this.labelControl6.Name = "labelControl6";
     this.labelControl6.Size = new System.Drawing.Size(69, 13);
     this.labelControl6.TabIndex = 2;
     this.labelControl6.Text = "اجمالي الفاتوره";
     //
     // LblTotal
     //
     this.LblTotal.Appearance.Font = new System.Drawing.Font("Tahoma", 20.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.LblTotal.Appearance.ForeColor = System.Drawing.Color.Green;
     this.LblTotal.Location = new System.Drawing.Point(21, 90);
     this.LblTotal.Name = "LblTotal";
     this.LblTotal.Size = new System.Drawing.Size(17, 33);
     this.LblTotal.TabIndex = 3;
     this.LblTotal.Text = "0";
     //
     // GridControlAddDetials
     //
     this.GridControlAddDetials.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
     | System.Windows.Forms.AnchorStyles.Left)
     | System.Windows.Forms.AnchorStyles.Right)));
     this.GridControlAddDetials.EmbeddedNavigator.Buttons.Edit.Visible = false;
     this.GridControlAddDetials.EmbeddedNavigator.Buttons.EndEdit.Visible = false;
     this.GridControlAddDetials.EmbeddedNavigator.Buttons.First.Visible = false;
     this.GridControlAddDetials.EmbeddedNavigator.Buttons.Last.Visible = false;
     this.GridControlAddDetials.EmbeddedNavigator.Buttons.Next.Visible = false;
     this.GridControlAddDetials.EmbeddedNavigator.Buttons.NextPage.Visible = false;
     this.GridControlAddDetials.EmbeddedNavigator.Buttons.Prev.Visible = false;
     this.GridControlAddDetials.EmbeddedNavigator.Buttons.PrevPage.Visible = false;
     this.GridControlAddDetials.EmbeddedNavigator.CustomButtons.AddRange(new DevExpress.XtraEditors.NavigatorCustomButton[] {
     new DevExpress.XtraEditors.NavigatorCustomButton()});
     this.GridControlAddDetials.Location = new System.Drawing.Point(3, 207);
     this.GridControlAddDetials.MainView = this.gridViewAdd;
     this.GridControlAddDetials.Name = "GridControlAddDetials";
     this.GridControlAddDetials.RepositoryItems.AddRange(new DevExpress.XtraEditors.Repository.RepositoryItem[] {
     this.repositoryItemLookUpEditSanfID,
     this.repositoryItemTextEditQuantity,
     this.repositoryItemCalcEditPrice,
     this.repositoryItemCalcEditDiscount,
     this.repositoryItemButtonEditSort,
     this.repositoryItemButtonEditDelete});
     this.GridControlAddDetials.RightToLeft = System.Windows.Forms.RightToLeft.Yes;
     this.GridControlAddDetials.Size = new System.Drawing.Size(755, 268);
     this.GridControlAddDetials.TabIndex = 2;
     this.GridControlAddDetials.UseEmbeddedNavigator = true;
     this.GridControlAddDetials.ViewCollection.AddRange(new DevExpress.XtraGrid.Views.Base.BaseView[] {
     this.gridViewAdd});
     this.GridControlAddDetials.KeyDown += new System.Windows.Forms.KeyEventHandler(this.ActiveKeyDownEventGrid);
     //
     // gridViewAdd
     //
     this.gridViewAdd.Columns.AddRange(new DevExpress.XtraGrid.Columns.GridColumn[] {
     this.gridColumnStoreTrID,
     this.gridColumnSanfID,
     this.gridColumnQuantity,
     this.gridColumnPrice,
     this.gridColumnDiscount,
     this.gridColumnSort,
     this.gridColumnDelete,
     this.gridColumnTotal});
     this.gridViewAdd.GridControl = this.GridControlAddDetials;
     this.gridViewAdd.Name = "gridViewAdd";
     this.gridViewAdd.OptionsBehavior.AllowAddRows = DevExpress.Utils.DefaultBoolean.True;
     this.gridViewAdd.CellValueChanged += new DevExpress.XtraGrid.Views.Base.CellValueChangedEventHandler(this.gridView1_CellValueChanged);
     this.gridViewAdd.RowCountChanged += new System.EventHandler(this.gridViewAdd_RowCountChanged);
     //
     // gridColumnStoreTrID
     //
     this.gridColumnStoreTrID.AppearanceCell.Options.UseTextOptions = true;
     this.gridColumnStoreTrID.AppearanceCell.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.gridColumnStoreTrID.AppearanceHeader.Options.UseTextOptions = true;
     this.gridColumnStoreTrID.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.gridColumnStoreTrID.Caption = "رقم فاتورة المشتريات";
     this.gridColumnStoreTrID.FieldName = "StoreTrID";
     this.gridColumnStoreTrID.Name = "gridColumnStoreTrID";
     this.gridColumnStoreTrID.OptionsColumn.ShowInCustomizationForm = false;
     //
     // gridColumnSanfID
     //
     this.gridColumnSanfID.AppearanceCell.Options.UseTextOptions = true;
     this.gridColumnSanfID.AppearanceCell.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.gridColumnSanfID.AppearanceHeader.Options.UseTextOptions = true;
     this.gridColumnSanfID.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.gridColumnSanfID.Caption = "كود الصنف";
     this.gridColumnSanfID.ColumnEdit = this.repositoryItemLookUpEditSanfID;
     this.gridColumnSanfID.FieldName = "SanfID";
     this.gridColumnSanfID.Name = "gridColumnSanfID";
     this.gridColumnSanfID.Visible = true;
     this.gridColumnSanfID.VisibleIndex = 0;
     this.gridColumnSanfID.Width = 220;
     //
     // repositoryItemLookUpEditSanfID
     //
     this.repositoryItemLookUpEditSanfID.AutoHeight = false;
     this.repositoryItemLookUpEditSanfID.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.repositoryItemLookUpEditSanfID.Columns.AddRange(new DevExpress.XtraEditors.Controls.LookUpColumnInfo[] {
     new DevExpress.XtraEditors.Controls.LookUpColumnInfo("SanfName", "اسم الصنــف"),
     new DevExpress.XtraEditors.Controls.LookUpColumnInfo("SalesUnitName", "نوع وحدة البيع")});
     this.repositoryItemLookUpEditSanfID.Name = "repositoryItemLookUpEditSanfID";
     this.repositoryItemLookUpEditSanfID.NullText = "";
     this.repositoryItemLookUpEditSanfID.NullValuePrompt = "اختار اسم الصنف";
     this.repositoryItemLookUpEditSanfID.TextEditStyle = DevExpress.XtraEditors.Controls.TextEditStyles.Standard;
     //
     // gridColumnQuantity
     //
     this.gridColumnQuantity.AppearanceCell.Options.UseTextOptions = true;
     this.gridColumnQuantity.AppearanceCell.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.gridColumnQuantity.AppearanceHeader.Options.UseTextOptions = true;
     this.gridColumnQuantity.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.gridColumnQuantity.Caption = "كمية الوارد";
     this.gridColumnQuantity.ColumnEdit = this.repositoryItemTextEditQuantity;
     this.gridColumnQuantity.FieldName = "Quantity";
     this.gridColumnQuantity.Name = "gridColumnQuantity";
     this.gridColumnQuantity.Visible = true;
     this.gridColumnQuantity.VisibleIndex = 1;
     this.gridColumnQuantity.Width = 112;
     //
     // repositoryItemTextEditQuantity
     //
     this.repositoryItemTextEditQuantity.AutoHeight = false;
     this.repositoryItemTextEditQuantity.DisplayFormat.FormatString = "d";
     this.repositoryItemTextEditQuantity.DisplayFormat.FormatType = DevExpress.Utils.FormatType.Numeric;
     this.repositoryItemTextEditQuantity.EditFormat.FormatString = "d";
     this.repositoryItemTextEditQuantity.EditFormat.FormatType = DevExpress.Utils.FormatType.Numeric;
     this.repositoryItemTextEditQuantity.Mask.EditMask = "d";
     this.repositoryItemTextEditQuantity.Mask.MaskType = DevExpress.XtraEditors.Mask.MaskType.Numeric;
     this.repositoryItemTextEditQuantity.Name = "repositoryItemTextEditQuantity";
     this.repositoryItemTextEditQuantity.NullValuePrompt = "ادخل الكميه";
     //
     // gridColumnPrice
     //
     this.gridColumnPrice.AppearanceCell.Options.UseTextOptions = true;
     this.gridColumnPrice.AppearanceCell.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.gridColumnPrice.AppearanceHeader.Options.UseTextOptions = true;
     this.gridColumnPrice.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.gridColumnPrice.Caption = "سعر الشراء";
     this.gridColumnPrice.ColumnEdit = this.repositoryItemCalcEditPrice;
     this.gridColumnPrice.FieldName = "Price";
     this.gridColumnPrice.Name = "gridColumnPrice";
     this.gridColumnPrice.Visible = true;
     this.gridColumnPrice.VisibleIndex = 2;
     this.gridColumnPrice.Width = 92;
     //
     // repositoryItemCalcEditPrice
     //
     this.repositoryItemCalcEditPrice.AutoHeight = false;
     this.repositoryItemCalcEditPrice.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.repositoryItemCalcEditPrice.DisplayFormat.FormatString = "f2";
     this.repositoryItemCalcEditPrice.DisplayFormat.FormatType = DevExpress.Utils.FormatType.Numeric;
     this.repositoryItemCalcEditPrice.EditFormat.FormatString = "f2";
     this.repositoryItemCalcEditPrice.EditFormat.FormatType = DevExpress.Utils.FormatType.Numeric;
     this.repositoryItemCalcEditPrice.Mask.EditMask = "f2";
     this.repositoryItemCalcEditPrice.Name = "repositoryItemCalcEditPrice";
     this.repositoryItemCalcEditPrice.NullValuePrompt = "سعر الوحده";
     //
     // gridColumnDiscount
     //
     this.gridColumnDiscount.AppearanceCell.Options.UseTextOptions = true;
     this.gridColumnDiscount.AppearanceCell.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.gridColumnDiscount.AppearanceHeader.Options.UseTextOptions = true;
     this.gridColumnDiscount.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.gridColumnDiscount.Caption = "الخصم";
     this.gridColumnDiscount.ColumnEdit = this.repositoryItemCalcEditDiscount;
     this.gridColumnDiscount.FieldName = "Discount";
     this.gridColumnDiscount.Name = "gridColumnDiscount";
     this.gridColumnDiscount.OptionsColumn.TabStop = false;
     this.gridColumnDiscount.Visible = true;
     this.gridColumnDiscount.VisibleIndex = 3;
     this.gridColumnDiscount.Width = 86;
     //
     // repositoryItemCalcEditDiscount
     //
     this.repositoryItemCalcEditDiscount.AutoHeight = false;
     this.repositoryItemCalcEditDiscount.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.repositoryItemCalcEditDiscount.DisplayFormat.FormatString = "f2";
     this.repositoryItemCalcEditDiscount.DisplayFormat.FormatType = DevExpress.Utils.FormatType.Numeric;
     this.repositoryItemCalcEditDiscount.EditFormat.FormatString = "f2";
     this.repositoryItemCalcEditDiscount.EditFormat.FormatType = DevExpress.Utils.FormatType.Numeric;
     this.repositoryItemCalcEditDiscount.Mask.EditMask = "f2";
     this.repositoryItemCalcEditDiscount.Name = "repositoryItemCalcEditDiscount";
     //
     // gridColumnSort
     //
     this.gridColumnSort.AppearanceCell.Options.UseTextOptions = true;
     this.gridColumnSort.AppearanceCell.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.gridColumnSort.AppearanceHeader.Options.UseTextOptions = true;
     this.gridColumnSort.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.gridColumnSort.Caption = "ترتيب";
     this.gridColumnSort.ColumnEdit = this.repositoryItemButtonEditSort;
     this.gridColumnSort.FieldName = "SortNo";
     this.gridColumnSort.Name = "gridColumnSort";
     this.gridColumnSort.OptionsColumn.ShowInCustomizationForm = false;
     this.gridColumnSort.OptionsColumn.TabStop = false;
     this.gridColumnSort.Width = 80;
     //
     // repositoryItemButtonEditSort
     //
     this.repositoryItemButtonEditSort.AutoHeight = false;
     this.repositoryItemButtonEditSort.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Up),
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Down)});
     this.repositoryItemButtonEditSort.Name = "repositoryItemButtonEditSort";
     this.repositoryItemButtonEditSort.TextEditStyle = DevExpress.XtraEditors.Controls.TextEditStyles.HideTextEditor;
     this.repositoryItemButtonEditSort.ButtonClick += new DevExpress.XtraEditors.Controls.ButtonPressedEventHandler(this.repositoryItemButtonEditSort_ButtonClick);
     //
     // gridColumnDelete
     //
     this.gridColumnDelete.AppearanceCell.Options.UseTextOptions = true;
     this.gridColumnDelete.AppearanceCell.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.gridColumnDelete.AppearanceHeader.Options.UseTextOptions = true;
     this.gridColumnDelete.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.gridColumnDelete.Caption = "حـــذف";
     this.gridColumnDelete.ColumnEdit = this.repositoryItemButtonEditDelete;
     this.gridColumnDelete.Name = "gridColumnDelete";
     this.gridColumnDelete.Width = 117;
     //
     // repositoryItemButtonEditDelete
     //
     this.repositoryItemButtonEditDelete.AutoHeight = false;
     this.repositoryItemButtonEditDelete.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Delete)});
     this.repositoryItemButtonEditDelete.Name = "repositoryItemButtonEditDelete";
     this.repositoryItemButtonEditDelete.TextEditStyle = DevExpress.XtraEditors.Controls.TextEditStyles.HideTextEditor;
     //
     // gridColumnTotal
     //
     this.gridColumnTotal.AppearanceCell.Options.UseTextOptions = true;
     this.gridColumnTotal.AppearanceCell.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.gridColumnTotal.AppearanceHeader.Options.UseTextOptions = true;
     this.gridColumnTotal.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.gridColumnTotal.Caption = "المجموع";
     this.gridColumnTotal.DisplayFormat.FormatString = "c2";
     this.gridColumnTotal.DisplayFormat.FormatType = DevExpress.Utils.FormatType.Numeric;
     this.gridColumnTotal.FieldName = "Total";
     this.gridColumnTotal.GroupFormat.FormatString = "c2";
     this.gridColumnTotal.GroupFormat.FormatType = DevExpress.Utils.FormatType.Numeric;
     this.gridColumnTotal.Name = "gridColumnTotal";
     this.gridColumnTotal.OptionsColumn.AllowSort = DevExpress.Utils.DefaultBoolean.False;
     this.gridColumnTotal.OptionsColumn.ReadOnly = true;
     this.gridColumnTotal.OptionsColumn.TabStop = false;
     this.gridColumnTotal.Visible = true;
     this.gridColumnTotal.VisibleIndex = 4;
     this.gridColumnTotal.Width = 78;
     //
     // groupControl2
     //
     this.groupControl2.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
     this.groupControl2.Controls.Add(this.TxtREM);
     this.groupControl2.Controls.Add(this.labelControl12);
     this.groupControl2.Controls.Add(this.TxtExtraFees);
     this.groupControl2.Controls.Add(this.labelControl5);
     this.groupControl2.Controls.Add(this.TxtTotalkasm);
     this.groupControl2.Controls.Add(this.labelControl8);
     this.groupControl2.Location = new System.Drawing.Point(237, 3);
     this.groupControl2.Name = "groupControl2";
     this.groupControl2.RightToLeft = System.Windows.Forms.RightToLeft.Yes;
     this.groupControl2.Size = new System.Drawing.Size(263, 198);
     this.groupControl2.TabIndex = 1;
     this.groupControl2.Text = "مصاريف اضافيه و الخصم";
     //
     // TxtREM
     //
     this.TxtREM.Location = new System.Drawing.Point(5, 75);
     this.TxtREM.Name = "TxtREM";
     this.TxtREM.Properties.MaxLength = 100;
     this.TxtREM.Properties.NullValuePrompt = "معلومات عن الفاتوره";
     this.TxtREM.Size = new System.Drawing.Size(199, 84);
     this.TxtREM.TabIndex = 2;
     //
     // labelControl12
     //
     this.labelControl12.Location = new System.Drawing.Point(210, 78);
     this.labelControl12.Name = "labelControl12";
     this.labelControl12.Size = new System.Drawing.Size(39, 13);
     this.labelControl12.TabIndex = 4;
     this.labelControl12.Text = "معلومات";
     //
     // TxtExtraFees
     //
     this.TxtExtraFees.EditValue = "0";
     this.TxtExtraFees.Location = new System.Drawing.Point(5, 49);
     this.TxtExtraFees.Name = "TxtExtraFees";
     this.TxtExtraFees.Properties.DisplayFormat.FormatString = "c2";
     this.TxtExtraFees.Properties.DisplayFormat.FormatType = DevExpress.Utils.FormatType.Numeric;
     this.TxtExtraFees.Properties.EditFormat.FormatString = "c2";
     this.TxtExtraFees.Properties.EditFormat.FormatType = DevExpress.Utils.FormatType.Numeric;
     this.TxtExtraFees.Properties.Mask.EditMask = "f2";
     this.TxtExtraFees.Properties.Mask.MaskType = DevExpress.XtraEditors.Mask.MaskType.Numeric;
     this.TxtExtraFees.Properties.NullValuePrompt = "ادخل قيمة المصارف الاضافيه";
     this.TxtExtraFees.Size = new System.Drawing.Size(150, 20);
     this.TxtExtraFees.TabIndex = 1;
     this.TxtExtraFees.EditValueChanged += new System.EventHandler(this.TxtExtraPayValue_EditValueChanged);
     //
     // labelControl5
     //
     this.labelControl5.Location = new System.Drawing.Point(181, 52);
     this.labelControl5.Name = "labelControl5";
     this.labelControl5.Size = new System.Drawing.Size(68, 13);
     this.labelControl5.TabIndex = 0;
     this.labelControl5.Text = "مصاريف اضافيه";
     //
     // TxtTotalkasm
     //
     this.TxtTotalkasm.EditValue = "0";
     this.TxtTotalkasm.Location = new System.Drawing.Point(5, 24);
     this.TxtTotalkasm.Name = "TxtTotalkasm";
     this.TxtTotalkasm.Properties.DisplayFormat.FormatString = "c2";
     this.TxtTotalkasm.Properties.DisplayFormat.FormatType = DevExpress.Utils.FormatType.Numeric;
     this.TxtTotalkasm.Properties.EditFormat.FormatString = "c2";
     this.TxtTotalkasm.Properties.EditFormat.FormatType = DevExpress.Utils.FormatType.Numeric;
     this.TxtTotalkasm.Properties.Mask.EditMask = "f2";
     this.TxtTotalkasm.Properties.Mask.MaskType = DevExpress.XtraEditors.Mask.MaskType.Numeric;
     this.TxtTotalkasm.Properties.NullValuePrompt = "ادخل قيمة الخصم الكلي";
     this.TxtTotalkasm.Size = new System.Drawing.Size(150, 20);
     this.TxtTotalkasm.TabIndex = 0;
     this.TxtTotalkasm.EditValueChanged += new System.EventHandler(this.TxtDiscount_EditValueChanged);
     //
     // labelControl8
     //
     this.labelControl8.Location = new System.Drawing.Point(202, 27);
     this.labelControl8.Name = "labelControl8";
     this.labelControl8.Size = new System.Drawing.Size(47, 13);
     this.labelControl8.TabIndex = 0;
     this.labelControl8.Text = "خصم كلي";
     //
     // groupControl1
     //
     this.groupControl1.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
     this.groupControl1.Controls.Add(this.labelControl7);
     this.groupControl1.Controls.Add(this.LUEStoreID);
     this.groupControl1.Controls.Add(this.LUEBillPayType);
     this.groupControl1.Controls.Add(this.LUEEMPID);
     this.groupControl1.Controls.Add(this.LUEPERSONID);
     this.groupControl1.Controls.Add(this.labelControl11);
     this.groupControl1.Controls.Add(this.DEStoreTrDate);
     this.groupControl1.Controls.Add(this.labelControl4);
     this.groupControl1.Controls.Add(this.TxtStoreTrIDDAY);
     this.groupControl1.Controls.Add(this.TxtStoreTrIDTYPE);
     this.groupControl1.Controls.Add(this.labelControl3);
     this.groupControl1.Controls.Add(this.labelControl9);
     this.groupControl1.Controls.Add(this.labelControl2);
     this.groupControl1.Controls.Add(this.labelControl1);
     this.groupControl1.Location = new System.Drawing.Point(506, 3);
     this.groupControl1.Name = "groupControl1";
     this.groupControl1.RightToLeft = System.Windows.Forms.RightToLeft.Yes;
     this.groupControl1.Size = new System.Drawing.Size(252, 198);
     this.groupControl1.TabIndex = 0;
     this.groupControl1.Text = "بيانات عامــه";
     //
     // labelControl7
     //
     this.labelControl7.Location = new System.Drawing.Point(206, 178);
     this.labelControl7.Name = "labelControl7";
     this.labelControl7.Size = new System.Drawing.Size(41, 13);
     this.labelControl7.TabIndex = 0;
     this.labelControl7.Text = "نوع الدفع";
     //
     // LUEStoreID
     //
     this.LUEStoreID.Location = new System.Drawing.Point(5, 150);
     this.LUEStoreID.Name = "LUEStoreID";
     this.LUEStoreID.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.LUEStoreID.Properties.Columns.AddRange(new DevExpress.XtraEditors.Controls.LookUpColumnInfo[] {
     new DevExpress.XtraEditors.Controls.LookUpColumnInfo("StoreName", "اسم المخزن"),
     new DevExpress.XtraEditors.Controls.LookUpColumnInfo("StorePlace", "عنوان"),
     new DevExpress.XtraEditors.Controls.LookUpColumnInfo("StoreTel", "تليفون"),
     new DevExpress.XtraEditors.Controls.LookUpColumnInfo("StoreMobil", "موبيل")});
     this.LUEStoreID.Properties.NullText = "";
     this.LUEStoreID.Properties.NullValuePrompt = "اختار اسم المخزن";
     this.LUEStoreID.Size = new System.Drawing.Size(150, 20);
     this.LUEStoreID.TabIndex = 3;
     //
     // LUEBillPayType
     //
     this.LUEBillPayType.Location = new System.Drawing.Point(5, 175);
     this.LUEBillPayType.Name = "LUEBillPayType";
     this.LUEBillPayType.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.LUEBillPayType.Properties.Columns.AddRange(new DevExpress.XtraEditors.Controls.LookUpColumnInfo[] {
     new DevExpress.XtraEditors.Controls.LookUpColumnInfo("BillPayTypeName", "اسم نوع الدفع")});
     this.LUEBillPayType.Properties.NullText = "";
     this.LUEBillPayType.Properties.NullValuePrompt = "اختار نوع الدفع";
     this.LUEBillPayType.Size = new System.Drawing.Size(150, 20);
     this.LUEBillPayType.TabIndex = 4;
     //
     // LUEEMPID
     //
     this.LUEEMPID.Location = new System.Drawing.Point(5, 125);
     this.LUEEMPID.Name = "LUEEMPID";
     this.LUEEMPID.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.LUEEMPID.Properties.Columns.AddRange(new DevExpress.XtraEditors.Controls.LookUpColumnInfo[] {
     new DevExpress.XtraEditors.Controls.LookUpColumnInfo("EMPNAME", "اسم المورد"),
     new DevExpress.XtraEditors.Controls.LookUpColumnInfo("EMPPHONE", "تليفون"),
     new DevExpress.XtraEditors.Controls.LookUpColumnInfo("EMPMOBIL", "موبيل")});
     this.LUEEMPID.Properties.NullText = "";
     this.LUEEMPID.Properties.NullValuePrompt = "اختار اسم المستــلم";
     this.LUEEMPID.Size = new System.Drawing.Size(150, 20);
     this.LUEEMPID.TabIndex = 2;
     //
     // LUEPERSONID
     //
     this.LUEPERSONID.Location = new System.Drawing.Point(5, 100);
     this.LUEPERSONID.Name = "LUEPERSONID";
     this.LUEPERSONID.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.LUEPERSONID.Properties.Columns.AddRange(new DevExpress.XtraEditors.Controls.LookUpColumnInfo[] {
     new DevExpress.XtraEditors.Controls.LookUpColumnInfo("PERSON", "اسم المورد"),
     new DevExpress.XtraEditors.Controls.LookUpColumnInfo("Addess", "عنوان المورد"),
     new DevExpress.XtraEditors.Controls.LookUpColumnInfo("Tel", "تليفون"),
     new DevExpress.XtraEditors.Controls.LookUpColumnInfo("Mobil", "محمول")});
     this.LUEPERSONID.Properties.NullText = "";
     this.LUEPERSONID.Properties.NullValuePrompt = "اختار اسم المورد";
     this.LUEPERSONID.Size = new System.Drawing.Size(150, 20);
     this.LUEPERSONID.TabIndex = 1;
     //
     // labelControl11
     //
     this.labelControl11.Location = new System.Drawing.Point(215, 153);
     this.labelControl11.Name = "labelControl11";
     this.labelControl11.Size = new System.Drawing.Size(32, 13);
     this.labelControl11.TabIndex = 0;
     this.labelControl11.Text = "المخزن";
     //
     // DEStoreTrDate
     //
     this.DEStoreTrDate.EditValue = null;
     this.DEStoreTrDate.Location = new System.Drawing.Point(5, 75);
     this.DEStoreTrDate.Name = "DEStoreTrDate";
     this.DEStoreTrDate.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.DEStoreTrDate.Properties.DisplayFormat.FormatString = "dd/MM/yyyy";
     this.DEStoreTrDate.Properties.DisplayFormat.FormatType = DevExpress.Utils.FormatType.DateTime;
     this.DEStoreTrDate.Properties.EditFormat.FormatString = "dd/MM/yyyy";
     this.DEStoreTrDate.Properties.EditFormat.FormatType = DevExpress.Utils.FormatType.DateTime;
     this.DEStoreTrDate.Properties.Mask.EditMask = "dd/MM/yyyy";
     this.DEStoreTrDate.Properties.NullValuePrompt = "ادخل تاريخ الفاتوره";
     this.DEStoreTrDate.Properties.VistaTimeProperties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton()});
     this.DEStoreTrDate.Size = new System.Drawing.Size(150, 20);
     this.DEStoreTrDate.TabIndex = 0;
     this.DEStoreTrDate.EditValueChanged += new System.EventHandler(this.DEStoreTrDate_EditValueChanged);
     //
     // labelControl4
     //
     this.labelControl4.Location = new System.Drawing.Point(185, 128);
     this.labelControl4.Name = "labelControl4";
     this.labelControl4.Size = new System.Drawing.Size(62, 13);
     this.labelControl4.TabIndex = 0;
     this.labelControl4.Text = "المستـــــــلم";
     //
     // TxtStoreTrIDDAY
     //
     this.TxtStoreTrIDDAY.Location = new System.Drawing.Point(5, 49);
     this.TxtStoreTrIDDAY.Name = "TxtStoreTrIDDAY";
     this.TxtStoreTrIDDAY.Properties.ReadOnly = true;
     this.TxtStoreTrIDDAY.Size = new System.Drawing.Size(150, 20);
     this.TxtStoreTrIDDAY.TabIndex = 0;
     this.TxtStoreTrIDDAY.TabStop = false;
     //
     // TxtStoreTrIDTYPE
     //
     this.TxtStoreTrIDTYPE.Location = new System.Drawing.Point(5, 24);
     this.TxtStoreTrIDTYPE.Name = "TxtStoreTrIDTYPE";
     this.TxtStoreTrIDTYPE.Properties.ReadOnly = true;
     this.TxtStoreTrIDTYPE.Size = new System.Drawing.Size(150, 20);
     this.TxtStoreTrIDTYPE.TabIndex = 0;
     this.TxtStoreTrIDTYPE.TabStop = false;
     //
     // labelControl3
     //
     this.labelControl3.Location = new System.Drawing.Point(195, 103);
     this.labelControl3.Name = "labelControl3";
     this.labelControl3.Size = new System.Drawing.Size(52, 13);
     this.labelControl3.TabIndex = 0;
     this.labelControl3.Text = "اسم المورد";
     //
     // labelControl9
     //
     this.labelControl9.Location = new System.Drawing.Point(160, 52);
     this.labelControl9.Name = "labelControl9";
     this.labelControl9.Size = new System.Drawing.Size(87, 13);
     this.labelControl9.TabIndex = 0;
     this.labelControl9.Text = "رقم الفاتوره اليومي";
     //
     // labelControl2
     //
     this.labelControl2.Location = new System.Drawing.Point(195, 78);
     this.labelControl2.Name = "labelControl2";
     this.labelControl2.Size = new System.Drawing.Size(52, 13);
     this.labelControl2.TabIndex = 0;
     this.labelControl2.Text = "تارخ الفاتوره";
     //
     // labelControl1
     //
     this.labelControl1.Location = new System.Drawing.Point(195, 27);
     this.labelControl1.Name = "labelControl1";
     this.labelControl1.Size = new System.Drawing.Size(52, 13);
     this.labelControl1.TabIndex = 0;
     this.labelControl1.Text = "رقم الفاتوره";
     //
     // xtraTabPageEdit
     //
     this.xtraTabPageEdit.Controls.Add(this.groupControl4);
     this.xtraTabPageEdit.Name = "xtraTabPageEdit";
     this.xtraTabPageEdit.Size = new System.Drawing.Size(762, 514);
     this.xtraTabPageEdit.Text = "تعديــل";
     //
     // groupControl4
     //
     this.groupControl4.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
     | System.Windows.Forms.AnchorStyles.Left)
     | System.Windows.Forms.AnchorStyles.Right)));
     this.groupControl4.Controls.Add(this.gridControlEditorDetial);
     this.groupControl4.Controls.Add(this.gridControlEditor);
     this.groupControl4.Location = new System.Drawing.Point(3, 3);
     this.groupControl4.Name = "groupControl4";
     this.groupControl4.Size = new System.Drawing.Size(755, 506);
     this.groupControl4.TabIndex = 4;
     this.groupControl4.Text = "جميع تفاصيل الفاتوره";
     //
     // gridControlEditorDetial
     //
     this.gridControlEditorDetial.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
     | System.Windows.Forms.AnchorStyles.Left)
     | System.Windows.Forms.AnchorStyles.Right)));
     this.gridControlEditorDetial.EmbeddedNavigator.Buttons.Edit.Visible = false;
     this.gridControlEditorDetial.EmbeddedNavigator.Buttons.EndEdit.Visible = false;
     this.gridControlEditorDetial.EmbeddedNavigator.Buttons.First.Visible = false;
     this.gridControlEditorDetial.EmbeddedNavigator.Buttons.Last.Visible = false;
     this.gridControlEditorDetial.EmbeddedNavigator.Buttons.Next.Visible = false;
     this.gridControlEditorDetial.EmbeddedNavigator.Buttons.NextPage.Visible = false;
     this.gridControlEditorDetial.EmbeddedNavigator.Buttons.Prev.Visible = false;
     this.gridControlEditorDetial.EmbeddedNavigator.Buttons.PrevPage.Visible = false;
     this.gridControlEditorDetial.EmbeddedNavigator.Buttons.Remove.Visible = false;
     this.gridControlEditorDetial.EmbeddedNavigator.CustomButtons.AddRange(new DevExpress.XtraEditors.NavigatorCustomButton[] {
     new DevExpress.XtraEditors.NavigatorCustomButton()});
     this.gridControlEditorDetial.Location = new System.Drawing.Point(2, 262);
     this.gridControlEditorDetial.MainView = this.gridViewEditDetial;
     this.gridControlEditorDetial.Name = "gridControlEditorDetial";
     this.gridControlEditorDetial.RepositoryItems.AddRange(new DevExpress.XtraEditors.Repository.RepositoryItem[] {
     this.repositoryItemLookUpEditDetialSanfID,
     this.repositoryItemTextEditDetailQuantity,
     this.repositoryItemCalcEditDetialPrice,
     this.repositoryItemCalcEditDetialDiscount,
     this.repositoryItemButtonEditDetialSortNo,
     this.repositoryItemButtonEditEditDetialDelete,
     this.repositoryItemButtonEditDetialUpdate});
     this.gridControlEditorDetial.RightToLeft = System.Windows.Forms.RightToLeft.Yes;
     this.gridControlEditorDetial.Size = new System.Drawing.Size(751, 242);
     this.gridControlEditorDetial.TabIndex = 11;
     this.gridControlEditorDetial.ViewCollection.AddRange(new DevExpress.XtraGrid.Views.Base.BaseView[] {
     this.gridViewEditDetial});
     //
     // gridViewEditDetial
     //
     this.gridViewEditDetial.Columns.AddRange(new DevExpress.XtraGrid.Columns.GridColumn[] {
     this.gridColumn15,
     this.gridColumnEditDetialSanfID,
     this.gridColumn23,
     this.gridColumn25,
     this.gridColumn26,
     this.gridColumn27,
     this.gridColumn28,
     this.gridColumn29,
     this.gridColumn30});
     this.gridViewEditDetial.GridControl = this.gridControlEditorDetial;
     this.gridViewEditDetial.Name = "gridViewEditDetial";
     this.gridViewEditDetial.OptionsBehavior.AllowAddRows = DevExpress.Utils.DefaultBoolean.True;
     this.gridViewEditDetial.OptionsView.ColumnAutoWidth = false;
     this.gridViewEditDetial.CellValueChanging += new DevExpress.XtraGrid.Views.Base.CellValueChangedEventHandler(this.gridViewEditDetial_CellValueChanging);
     //
     // gridColumn15
     //
     this.gridColumn15.Caption = "رقم فاتورة المشتريات";
     this.gridColumn15.FieldName = "StoreTrID";
     this.gridColumn15.Name = "gridColumn15";
     this.gridColumn15.OptionsColumn.ShowInCustomizationForm = false;
     //
     // gridColumnEditDetialSanfID
     //
     this.gridColumnEditDetialSanfID.Caption = "كود الصنف";
     this.gridColumnEditDetialSanfID.ColumnEdit = this.repositoryItemLookUpEditDetialSanfID;
     this.gridColumnEditDetialSanfID.FieldName = "SanfID";
     this.gridColumnEditDetialSanfID.Name = "gridColumnEditDetialSanfID";
     this.gridColumnEditDetialSanfID.Visible = true;
     this.gridColumnEditDetialSanfID.VisibleIndex = 6;
     this.gridColumnEditDetialSanfID.Width = 207;
     //
     // repositoryItemLookUpEditDetialSanfID
     //
     this.repositoryItemLookUpEditDetialSanfID.AutoHeight = false;
     this.repositoryItemLookUpEditDetialSanfID.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.repositoryItemLookUpEditDetialSanfID.Columns.AddRange(new DevExpress.XtraEditors.Controls.LookUpColumnInfo[] {
     new DevExpress.XtraEditors.Controls.LookUpColumnInfo("SanfName", "اسم الصنــف"),
     new DevExpress.XtraEditors.Controls.LookUpColumnInfo("SalesUnitName", "نوع وحدة البيع")});
     this.repositoryItemLookUpEditDetialSanfID.Name = "repositoryItemLookUpEditDetialSanfID";
     this.repositoryItemLookUpEditDetialSanfID.NullText = "";
     this.repositoryItemLookUpEditDetialSanfID.NullValuePrompt = "اختار اسم الصنف";
     //
     // gridColumn23
     //
     this.gridColumn23.Caption = "كمية الوارد";
     this.gridColumn23.ColumnEdit = this.repositoryItemTextEditDetailQuantity;
     this.gridColumn23.FieldName = "Quantity";
     this.gridColumn23.Name = "gridColumn23";
     this.gridColumn23.Visible = true;
     this.gridColumn23.VisibleIndex = 5;
     this.gridColumn23.Width = 110;
     //
     // repositoryItemTextEditDetailQuantity
     //
     this.repositoryItemTextEditDetailQuantity.AutoHeight = false;
     this.repositoryItemTextEditDetailQuantity.DisplayFormat.FormatString = "d";
     this.repositoryItemTextEditDetailQuantity.DisplayFormat.FormatType = DevExpress.Utils.FormatType.Numeric;
     this.repositoryItemTextEditDetailQuantity.EditFormat.FormatString = "d";
     this.repositoryItemTextEditDetailQuantity.EditFormat.FormatType = DevExpress.Utils.FormatType.Numeric;
     this.repositoryItemTextEditDetailQuantity.Mask.EditMask = "d";
     this.repositoryItemTextEditDetailQuantity.Mask.MaskType = DevExpress.XtraEditors.Mask.MaskType.Numeric;
     this.repositoryItemTextEditDetailQuantity.Name = "repositoryItemTextEditDetailQuantity";
     this.repositoryItemTextEditDetailQuantity.NullValuePrompt = "ادخل الكميه";
     //
     // gridColumn25
     //
     this.gridColumn25.Caption = "سعر الشراء";
     this.gridColumn25.ColumnEdit = this.repositoryItemCalcEditDetialPrice;
     this.gridColumn25.FieldName = "Price";
     this.gridColumn25.Name = "gridColumn25";
     this.gridColumn25.Visible = true;
     this.gridColumn25.VisibleIndex = 4;
     this.gridColumn25.Width = 110;
     //
     // repositoryItemCalcEditDetialPrice
     //
     this.repositoryItemCalcEditDetialPrice.AutoHeight = false;
     this.repositoryItemCalcEditDetialPrice.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.repositoryItemCalcEditDetialPrice.DisplayFormat.FormatString = "f2";
     this.repositoryItemCalcEditDetialPrice.DisplayFormat.FormatType = DevExpress.Utils.FormatType.Numeric;
     this.repositoryItemCalcEditDetialPrice.EditFormat.FormatString = "f2";
     this.repositoryItemCalcEditDetialPrice.EditFormat.FormatType = DevExpress.Utils.FormatType.Numeric;
     this.repositoryItemCalcEditDetialPrice.Mask.EditMask = "f2";
     this.repositoryItemCalcEditDetialPrice.Name = "repositoryItemCalcEditDetialPrice";
     this.repositoryItemCalcEditDetialPrice.NullValuePrompt = "سعر الوحده";
     //
     // gridColumn26
     //
     this.gridColumn26.Caption = "الخصم";
     this.gridColumn26.ColumnEdit = this.repositoryItemCalcEditDetialDiscount;
     this.gridColumn26.FieldName = "Discount";
     this.gridColumn26.Name = "gridColumn26";
     this.gridColumn26.Visible = true;
     this.gridColumn26.VisibleIndex = 3;
     this.gridColumn26.Width = 110;
     //
     // repositoryItemCalcEditDetialDiscount
     //
     this.repositoryItemCalcEditDetialDiscount.AutoHeight = false;
     this.repositoryItemCalcEditDetialDiscount.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.repositoryItemCalcEditDetialDiscount.DisplayFormat.FormatString = "f2";
     this.repositoryItemCalcEditDetialDiscount.DisplayFormat.FormatType = DevExpress.Utils.FormatType.Numeric;
     this.repositoryItemCalcEditDetialDiscount.EditFormat.FormatString = "f2";
     this.repositoryItemCalcEditDetialDiscount.EditFormat.FormatType = DevExpress.Utils.FormatType.Numeric;
     this.repositoryItemCalcEditDetialDiscount.Mask.EditMask = "f2";
     this.repositoryItemCalcEditDetialDiscount.Name = "repositoryItemCalcEditDetialDiscount";
     //
     // gridColumn27
     //
     this.gridColumn27.Caption = "ترتيب";
     this.gridColumn27.ColumnEdit = this.repositoryItemButtonEditDetialSortNo;
     this.gridColumn27.FieldName = "SortNo";
     this.gridColumn27.Name = "gridColumn27";
     this.gridColumn27.OptionsColumn.ShowInCustomizationForm = false;
     this.gridColumn27.Width = 105;
     //
     // repositoryItemButtonEditDetialSortNo
     //
     this.repositoryItemButtonEditDetialSortNo.AutoHeight = false;
     this.repositoryItemButtonEditDetialSortNo.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Up),
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Down)});
     this.repositoryItemButtonEditDetialSortNo.Name = "repositoryItemButtonEditDetialSortNo";
     this.repositoryItemButtonEditDetialSortNo.TextEditStyle = DevExpress.XtraEditors.Controls.TextEditStyles.HideTextEditor;
     //
     // gridColumn28
     //
     this.gridColumn28.Caption = "حـــذف";
     this.gridColumn28.ColumnEdit = this.repositoryItemButtonEditEditDetialDelete;
     this.gridColumn28.Name = "gridColumn28";
     this.gridColumn28.Visible = true;
     this.gridColumn28.VisibleIndex = 0;
     this.gridColumn28.Width = 41;
     //
     // repositoryItemButtonEditEditDetialDelete
     //
     this.repositoryItemButtonEditEditDetialDelete.AutoHeight = false;
     this.repositoryItemButtonEditEditDetialDelete.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Delete)});
     this.repositoryItemButtonEditEditDetialDelete.Name = "repositoryItemButtonEditEditDetialDelete";
     this.repositoryItemButtonEditEditDetialDelete.TextEditStyle = DevExpress.XtraEditors.Controls.TextEditStyles.HideTextEditor;
     this.repositoryItemButtonEditEditDetialDelete.ButtonClick += new DevExpress.XtraEditors.Controls.ButtonPressedEventHandler(this.repositoryItemButtonEditEditDetialDelete_ButtonClick);
     //
     // gridColumn29
     //
     this.gridColumn29.Caption = "المجموع";
     this.gridColumn29.DisplayFormat.FormatString = "c2";
     this.gridColumn29.DisplayFormat.FormatType = DevExpress.Utils.FormatType.Numeric;
     this.gridColumn29.FieldName = "Total";
     this.gridColumn29.GroupFormat.FormatString = "c2";
     this.gridColumn29.GroupFormat.FormatType = DevExpress.Utils.FormatType.Numeric;
     this.gridColumn29.Name = "gridColumn29";
     this.gridColumn29.OptionsColumn.AllowSort = DevExpress.Utils.DefaultBoolean.False;
     this.gridColumn29.OptionsColumn.ReadOnly = true;
     this.gridColumn29.Visible = true;
     this.gridColumn29.VisibleIndex = 2;
     this.gridColumn29.Width = 78;
     //
     // gridColumn30
     //
     this.gridColumn30.Caption = "حفظ تعديل";
     this.gridColumn30.ColumnEdit = this.repositoryItemButtonEditDetialUpdate;
     this.gridColumn30.Name = "gridColumn30";
     this.gridColumn30.Visible = true;
     this.gridColumn30.VisibleIndex = 1;
     this.gridColumn30.Width = 59;
     //
     // repositoryItemButtonEditDetialUpdate
     //
     this.repositoryItemButtonEditDetialUpdate.AutoHeight = false;
     this.repositoryItemButtonEditDetialUpdate.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.OK)});
     this.repositoryItemButtonEditDetialUpdate.Name = "repositoryItemButtonEditDetialUpdate";
     this.repositoryItemButtonEditDetialUpdate.TextEditStyle = DevExpress.XtraEditors.Controls.TextEditStyles.HideTextEditor;
     this.repositoryItemButtonEditDetialUpdate.ButtonClick += new DevExpress.XtraEditors.Controls.ButtonPressedEventHandler(this.repositoryItemButtonEditDetialUpdate_ButtonClick);
     //
     // DataBillFrm
     //
     this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
     this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
     this.ClientSize = new System.Drawing.Size(792, 566);
     this.Controls.Add(this.xtraTabControlEditor);
     this.Icon = ((System.Drawing.Icon)(resources.GetObject("$this.Icon")));
     this.Name = "DataBillFrm";
     this.Text = "فاتورة مشتريات";
     this.Load += new System.EventHandler(this.DataBillFrm_Load);
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemLookUpEditEditSanfID)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemLookUpEditEditSalesUnitID)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemTextEditEditQuantity)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemCalcEditEditPrice)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemCalcEditEditDiscount)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemButtonEditEditSortNo1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridControlEditor)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.mastergridView)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemDateEditEditStoreTrDate.VistaTimeProperties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemDateEditEditStoreTrDate)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemLookUpEditEditPERSONID)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemLookUpEditEditEMPID)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemTextEditEditTotalkasm)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemTextEditEditExtraFees)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemMemoExEditEditREM)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemLookUpEditEditStoreID)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemLookUpEditEditBillPayTypeID)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemButtonEditEditBillDelete)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemButtonEditBillEdit)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.xtraTabControlEditor)).EndInit();
     this.xtraTabControlEditor.ResumeLayout(false);
     this.xtraTabPageAdd.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.groupControl3)).EndInit();
     this.groupControl3.ResumeLayout(false);
     this.groupControl3.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(this.GridControlAddDetials)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridViewAdd)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemLookUpEditSanfID)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemTextEditQuantity)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemCalcEditPrice)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemCalcEditDiscount)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemButtonEditSort)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemButtonEditDelete)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.groupControl2)).EndInit();
     this.groupControl2.ResumeLayout(false);
     this.groupControl2.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(this.TxtREM.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.TxtExtraFees.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.TxtTotalkasm.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.groupControl1)).EndInit();
     this.groupControl1.ResumeLayout(false);
     this.groupControl1.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(this.LUEStoreID.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.LUEBillPayType.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.LUEEMPID.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.LUEPERSONID.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.DEStoreTrDate.Properties.VistaTimeProperties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.DEStoreTrDate.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.TxtStoreTrIDDAY.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.TxtStoreTrIDTYPE.Properties)).EndInit();
     this.xtraTabPageEdit.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.groupControl4)).EndInit();
     this.groupControl4.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.gridControlEditorDetial)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridViewEditDetial)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemLookUpEditDetialSanfID)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemTextEditDetailQuantity)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemCalcEditDetialPrice)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemCalcEditDetialDiscount)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemButtonEditDetialSortNo)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemButtonEditEditDetialDelete)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemButtonEditDetialUpdate)).EndInit();
     this.ResumeLayout(false);
 }
Пример #36
0
 /// <summary>
 /// Required method for Designer support - do not modify
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     this.groupRoster      = new DevExpress.XtraEditors.GroupControl();
     this.label3           = new System.Windows.Forms.Label();
     this.cbYear           = new DevExpress.XtraEditors.ImageComboBoxEdit();
     this.comboBoxRosterCC = new DevExpress.XtraEditors.ImageComboBoxEdit();
     this.groupControl1    = new DevExpress.XtraEditors.GroupControl();
     this.groupControl35   = new DevExpress.XtraEditors.GroupControl();
     this.label71          = new System.Windows.Forms.Label();
     this.label72          = new System.Windows.Forms.Label();
     this.label73          = new System.Windows.Forms.Label();
     this.label74          = new System.Windows.Forms.Label();
     this.label75          = new System.Windows.Forms.Label();
     this.label76          = new System.Windows.Forms.Label();
     this.label77          = new System.Windows.Forms.Label();
     this.label78          = new System.Windows.Forms.Label();
     this.btnNextWeek      = new DevExpress.XtraEditors.SimpleButton();
     this.btnPastWeek      = new DevExpress.XtraEditors.SimpleButton();
     this.btnPrint         = new DevExpress.XtraEditors.SimpleButton();
     this.label2           = new System.Windows.Forms.Label();
     this.comboBoxRoster   = new DevExpress.XtraEditors.ImageComboBoxEdit();
     this.label1           = new System.Windows.Forms.Label();
     ((System.ComponentModel.ISupportInitialize)(this.groupRoster)).BeginInit();
     this.groupRoster.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.cbYear.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.comboBoxRosterCC.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.groupControl1)).BeginInit();
     this.groupControl1.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.groupControl35)).BeginInit();
     this.groupControl35.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.comboBoxRoster.Properties)).BeginInit();
     this.SuspendLayout();
     //
     // groupRoster
     //
     this.groupRoster.Appearance.BackColor            = System.Drawing.SystemColors.Control;
     this.groupRoster.Appearance.GradientMode         = System.Drawing.Drawing2D.LinearGradientMode.Vertical;
     this.groupRoster.Appearance.Options.UseBackColor = true;
     this.groupRoster.Controls.Add(this.label3);
     this.groupRoster.Controls.Add(this.cbYear);
     this.groupRoster.Controls.Add(this.comboBoxRosterCC);
     this.groupRoster.Controls.Add(this.groupControl1);
     this.groupRoster.Controls.Add(this.btnPrint);
     this.groupRoster.Controls.Add(this.label2);
     this.groupRoster.Controls.Add(this.comboBoxRoster);
     this.groupRoster.Controls.Add(this.label1);
     this.groupRoster.Location          = new System.Drawing.Point(8, 0);
     this.groupRoster.LookAndFeel.Style = DevExpress.LookAndFeel.LookAndFeelStyle.Office2003;
     this.groupRoster.LookAndFeel.UseDefaultLookAndFeel = false;
     this.groupRoster.LookAndFeel.UseWindowsXPTheme     = false;
     this.groupRoster.Name     = "groupRoster";
     this.groupRoster.Size     = new System.Drawing.Size(984, 570);
     this.groupRoster.TabIndex = 28;
     this.groupRoster.Text     = "Roster";
     //
     // label3
     //
     this.label3.BackColor = System.Drawing.Color.Transparent;
     this.label3.Font      = new System.Drawing.Font("Microsoft Sans Serif", 9F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((System.Byte)(0)));
     this.label3.ForeColor = System.Drawing.Color.Black;
     this.label3.Location  = new System.Drawing.Point(800, 27);
     this.label3.Name      = "label3";
     this.label3.Size      = new System.Drawing.Size(38, 16);
     this.label3.TabIndex  = 26;
     this.label3.Text      = "Year";
     //
     // cbYear
     //
     this.cbYear.EditValue = 2008;
     this.cbYear.ImeMode   = System.Windows.Forms.ImeMode.NoControl;
     this.cbYear.Location  = new System.Drawing.Point(848, 24);
     this.cbYear.Name      = "cbYear";
     //
     // cbYear.Properties
     //
     this.cbYear.Properties.Appearance.BackColor            = System.Drawing.SystemColors.Window;
     this.cbYear.Properties.Appearance.Options.UseBackColor = true;
     this.cbYear.Properties.BorderStyle = DevExpress.XtraEditors.Controls.BorderStyles.Style3D;
     this.cbYear.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
         new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)
     });
     this.cbYear.Properties.Items.AddRange(new object[] {
         new DevExpress.XtraEditors.Controls.ImageComboBoxItem("2007", 2007, -1),
         new DevExpress.XtraEditors.Controls.ImageComboBoxItem("2008", 2008, -1),
         new DevExpress.XtraEditors.Controls.ImageComboBoxItem("2009", 2009, -1)
     });
     this.cbYear.Properties.LookAndFeel.Style = DevExpress.LookAndFeel.LookAndFeelStyle.Office2003;
     this.cbYear.Properties.LookAndFeel.UseDefaultLookAndFeel = false;
     this.cbYear.Size     = new System.Drawing.Size(128, 22);
     this.cbYear.TabIndex = 25;
     //
     // comboBoxRosterCC
     //
     this.comboBoxRosterCC.EditValue = 0;
     this.comboBoxRosterCC.Location  = new System.Drawing.Point(304, 32);
     this.comboBoxRosterCC.Name      = "comboBoxRosterCC";
     //
     // comboBoxRosterCC.Properties
     //
     this.comboBoxRosterCC.Properties.Appearance.BackColor            = System.Drawing.SystemColors.Window;
     this.comboBoxRosterCC.Properties.Appearance.Options.UseBackColor = true;
     this.comboBoxRosterCC.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
         new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)
     });
     this.comboBoxRosterCC.Properties.Items.AddRange(new object[] {
         new DevExpress.XtraEditors.Controls.ImageComboBoxItem("-- Select All --", 0, -1)
     });
     this.comboBoxRosterCC.Properties.LookAndFeel.Style = DevExpress.LookAndFeel.LookAndFeelStyle.Office2003;
     this.comboBoxRosterCC.Properties.LookAndFeel.UseDefaultLookAndFeel = false;
     this.comboBoxRosterCC.Size                  = new System.Drawing.Size(128, 20);
     this.comboBoxRosterCC.TabIndex              = 20;
     this.comboBoxRosterCC.SelectedValueChanged += new System.EventHandler(this.comboBoxRosterCC_SelectedValueChanged);
     //
     // groupControl1
     //
     this.groupControl1.Controls.Add(this.groupControl35);
     this.groupControl1.Controls.Add(this.btnNextWeek);
     this.groupControl1.Controls.Add(this.btnPastWeek);
     this.groupControl1.Dock     = System.Windows.Forms.DockStyle.Bottom;
     this.groupControl1.Location = new System.Drawing.Point(2, 56);
     this.groupControl1.LookAndFeel.UseDefaultLookAndFeel = false;
     this.groupControl1.Name     = "groupControl1";
     this.groupControl1.Size     = new System.Drawing.Size(980, 512);
     this.groupControl1.TabIndex = 12;
     //
     // groupControl35
     //
     this.groupControl35.Appearance.BackColor              = System.Drawing.SystemColors.Control;
     this.groupControl35.Appearance.ForeColor              = System.Drawing.Color.Black;
     this.groupControl35.Appearance.Options.UseBackColor   = true;
     this.groupControl35.Appearance.Options.UseForeColor   = true;
     this.groupControl35.AppearanceCaption.Font            = new System.Drawing.Font("Tahoma", 9F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((System.Byte)(0)));
     this.groupControl35.AppearanceCaption.Options.UseFont = true;
     this.groupControl35.Controls.Add(this.label71);
     this.groupControl35.Controls.Add(this.label72);
     this.groupControl35.Controls.Add(this.label73);
     this.groupControl35.Controls.Add(this.label74);
     this.groupControl35.Controls.Add(this.label75);
     this.groupControl35.Controls.Add(this.label76);
     this.groupControl35.Controls.Add(this.label77);
     this.groupControl35.Controls.Add(this.label78);
     this.groupControl35.Location = new System.Drawing.Point(824, 24);
     this.groupControl35.LookAndFeel.UseDefaultLookAndFeel = false;
     this.groupControl35.Name     = "groupControl35";
     this.groupControl35.Size     = new System.Drawing.Size(144, 168);
     this.groupControl35.TabIndex = 32;
     this.groupControl35.Text     = "Legend";
     //
     // label71
     //
     this.label71.Location = new System.Drawing.Point(42, 120);
     this.label71.Name     = "label71";
     this.label71.Size     = new System.Drawing.Size(86, 16);
     this.label71.TabIndex = 7;
     this.label71.Text     = "Time off";
     //
     // label72
     //
     this.label72.BackColor = System.Drawing.Color.Green;
     this.label72.Location  = new System.Drawing.Point(10, 120);
     this.label72.Name      = "label72";
     this.label72.Size      = new System.Drawing.Size(26, 23);
     this.label72.TabIndex  = 6;
     //
     // label73
     //
     this.label73.Location = new System.Drawing.Point(42, 93);
     this.label73.Name     = "label73";
     this.label73.Size     = new System.Drawing.Size(86, 16);
     this.label73.TabIndex = 5;
     this.label73.Text     = "Full day leave";
     //
     // label74
     //
     this.label74.BackColor = System.Drawing.Color.LightBlue;
     this.label74.Location  = new System.Drawing.Point(10, 89);
     this.label74.Name      = "label74";
     this.label74.Size      = new System.Drawing.Size(26, 23);
     this.label74.TabIndex  = 4;
     //
     // label75
     //
     this.label75.Location = new System.Drawing.Point(42, 64);
     this.label75.Name     = "label75";
     this.label75.Size     = new System.Drawing.Size(86, 16);
     this.label75.TabIndex = 3;
     this.label75.Text     = "Half day leave";
     //
     // label76
     //
     this.label76.BackColor = System.Drawing.Color.Yellow;
     this.label76.Location  = new System.Drawing.Point(10, 56);
     this.label76.Name      = "label76";
     this.label76.Size      = new System.Drawing.Size(26, 23);
     this.label76.TabIndex  = 2;
     //
     // label77
     //
     this.label77.Location = new System.Drawing.Point(40, 24);
     this.label77.Name     = "label77";
     this.label77.Size     = new System.Drawing.Size(94, 28);
     this.label77.TabIndex = 1;
     this.label77.Text     = "Applied leave in pending status";
     //
     // label78
     //
     this.label78.BackColor = System.Drawing.Color.Red;
     this.label78.Location  = new System.Drawing.Point(10, 22);
     this.label78.Name      = "label78";
     this.label78.Size      = new System.Drawing.Size(26, 23);
     this.label78.TabIndex  = 0;
     //
     // btnNextWeek
     //
     this.btnNextWeek.Appearance.BackColor            = System.Drawing.Color.Transparent;
     this.btnNextWeek.Appearance.Font                 = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold);
     this.btnNextWeek.Appearance.Options.UseBackColor = true;
     this.btnNextWeek.Appearance.Options.UseFont      = true;
     this.btnNextWeek.ButtonStyle = DevExpress.XtraEditors.Controls.BorderStyles.Simple;
     this.btnNextWeek.Location    = new System.Drawing.Point(712, 24);
     this.btnNextWeek.Name        = "btnNextWeek";
     this.btnNextWeek.Size        = new System.Drawing.Size(80, 20);
     this.btnNextWeek.TabIndex    = 20;
     this.btnNextWeek.Text        = "Next >>";
     this.btnNextWeek.Click      += new System.EventHandler(this.btnNextWeek_Click);
     //
     // btnPastWeek
     //
     this.btnPastWeek.Appearance.BackColor            = System.Drawing.Color.Transparent;
     this.btnPastWeek.Appearance.Font                 = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold);
     this.btnPastWeek.Appearance.Options.UseBackColor = true;
     this.btnPastWeek.Appearance.Options.UseFont      = true;
     this.btnPastWeek.ButtonStyle = DevExpress.XtraEditors.Controls.BorderStyles.Simple;
     this.btnPastWeek.Location    = new System.Drawing.Point(8, 24);
     this.btnPastWeek.Name        = "btnPastWeek";
     this.btnPastWeek.Size        = new System.Drawing.Size(80, 20);
     this.btnPastWeek.TabIndex    = 19;
     this.btnPastWeek.Text        = "<< Previous";
     this.btnPastWeek.Click      += new System.EventHandler(this.btnPastWeek_Click);
     //
     // btnPrint
     //
     this.btnPrint.Appearance.BackColor            = System.Drawing.Color.Transparent;
     this.btnPrint.Appearance.Font                 = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold);
     this.btnPrint.Appearance.Options.UseBackColor = true;
     this.btnPrint.Appearance.Options.UseFont      = true;
     this.btnPrint.ButtonStyle = DevExpress.XtraEditors.Controls.BorderStyles.Simple;
     this.btnPrint.Location    = new System.Drawing.Point(488, 32);
     this.btnPrint.Name        = "btnPrint";
     this.btnPrint.Size        = new System.Drawing.Size(80, 20);
     this.btnPrint.TabIndex    = 11;
     this.btnPrint.Text        = "Print";
     this.btnPrint.Click      += new System.EventHandler(this.btnPrint_Click);
     //
     // label2
     //
     this.label2.BackColor = System.Drawing.Color.Transparent;
     this.label2.Font      = new System.Drawing.Font("Microsoft Sans Serif", 9F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((System.Byte)(0)));
     this.label2.ForeColor = System.Drawing.Color.Black;
     this.label2.Location  = new System.Drawing.Point(224, 32);
     this.label2.Name      = "label2";
     this.label2.Size      = new System.Drawing.Size(88, 16);
     this.label2.TabIndex  = 22;
     this.label2.Text      = "Cost Center";
     //
     // comboBoxRoster
     //
     this.comboBoxRoster.EditValue = "imageComboBoxEdit3";
     this.comboBoxRoster.Location  = new System.Drawing.Point(80, 32);
     this.comboBoxRoster.Name      = "comboBoxRoster";
     //
     // comboBoxRoster.Properties
     //
     this.comboBoxRoster.Properties.Appearance.BackColor            = System.Drawing.SystemColors.Window;
     this.comboBoxRoster.Properties.Appearance.Options.UseBackColor = true;
     this.comboBoxRoster.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
         new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)
     });
     this.comboBoxRoster.Properties.LookAndFeel.Style = DevExpress.LookAndFeel.LookAndFeelStyle.Office2003;
     this.comboBoxRoster.Properties.LookAndFeel.UseDefaultLookAndFeel = false;
     this.comboBoxRoster.Size                  = new System.Drawing.Size(128, 20);
     this.comboBoxRoster.TabIndex              = 19;
     this.comboBoxRoster.SelectedIndexChanged += new System.EventHandler(this.comboBoxRoster_SelectedValueChanged);
     //
     // label1
     //
     this.label1.BackColor = System.Drawing.Color.Transparent;
     this.label1.Font      = new System.Drawing.Font("Microsoft Sans Serif", 9F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((System.Byte)(0)));
     this.label1.ForeColor = System.Drawing.Color.Black;
     this.label1.Location  = new System.Drawing.Point(24, 32);
     this.label1.Name      = "label1";
     this.label1.Size      = new System.Drawing.Size(56, 16);
     this.label1.TabIndex  = 21;
     this.label1.Text      = "Branch";
     //
     // frmRosterMain
     //
     this.AutoScale         = false;
     this.AutoScaleBaseSize = new System.Drawing.Size(5, 13);
     this.BackColor         = System.Drawing.Color.White;
     this.ClientSize        = new System.Drawing.Size(1000, 570);
     this.Controls.Add(this.groupRoster);
     this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.None;
     this.Name            = "frmRosterMain";
     this.Text            = "frmRosterMain";
     this.Load           += new System.EventHandler(this.frmRosterMain_Load);
     ((System.ComponentModel.ISupportInitialize)(this.groupRoster)).EndInit();
     this.groupRoster.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.cbYear.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.comboBoxRosterCC.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.groupControl1)).EndInit();
     this.groupControl1.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.groupControl35)).EndInit();
     this.groupControl35.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.comboBoxRoster.Properties)).EndInit();
     this.ResumeLayout(false);
 }
Пример #37
0
 /// <summary> 
 /// Required method for Designer support - do not modify 
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     this.components = new System.ComponentModel.Container();
     System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(MapViewer));
     DevExpress.XtraCharts.XYDiagram xyDiagram1 = new DevExpress.XtraCharts.XYDiagram();
     DevExpress.XtraCharts.Series series1 = new DevExpress.XtraCharts.Series();
     DevExpress.XtraCharts.SeriesPoint seriesPoint1 = new DevExpress.XtraCharts.SeriesPoint(0);
     DevExpress.XtraCharts.LineSeriesView lineSeriesView1 = new DevExpress.XtraCharts.LineSeriesView();
     DevExpress.XtraCharts.PolygonGradientFillOptions polygonGradientFillOptions1 = new DevExpress.XtraCharts.PolygonGradientFillOptions();
     DevExpress.XtraCharts.PointSeriesLabel pointSeriesLabel1 = new DevExpress.XtraCharts.PointSeriesLabel();
     DevExpress.XtraCharts.PointOptions pointOptions1 = new DevExpress.XtraCharts.PointOptions();
     DevExpress.XtraCharts.LineSeriesView lineSeriesView2 = new DevExpress.XtraCharts.LineSeriesView();
     DevExpress.XtraCharts.PointSeriesLabel pointSeriesLabel2 = new DevExpress.XtraCharts.PointSeriesLabel();
     DevExpress.Utils.SuperToolTip superToolTip1 = new DevExpress.Utils.SuperToolTip();
     DevExpress.Utils.ToolTipTitleItem toolTipTitleItem1 = new DevExpress.Utils.ToolTipTitleItem();
     this.simpleButton3 = new DevExpress.XtraEditors.SimpleButton();
     this.simpleButton2 = new DevExpress.XtraEditors.SimpleButton();
     this.simpleButton1 = new DevExpress.XtraEditors.SimpleButton();
     this.groupControl2 = new DevExpress.XtraEditors.GroupControl();
     this.lblZaxis = new DevExpress.XtraEditors.LabelControl();
     this.labelControl13 = new DevExpress.XtraEditors.LabelControl();
     this.lblYaxis = new DevExpress.XtraEditors.LabelControl();
     this.lblXaxis = new DevExpress.XtraEditors.LabelControl();
     this.labelControl10 = new DevExpress.XtraEditors.LabelControl();
     this.labelControl11 = new DevExpress.XtraEditors.LabelControl();
     this.lblCategory = new DevExpress.XtraEditors.LabelControl();
     this.lblDescription = new DevExpress.XtraEditors.LabelControl();
     this.lblName = new DevExpress.XtraEditors.LabelControl();
     this.lblLengthValues = new DevExpress.XtraEditors.LabelControl();
     this.lblLengthBytes = new DevExpress.XtraEditors.LabelControl();
     this.lblSRAMAddress = new DevExpress.XtraEditors.LabelControl();
     this.lblFlashAddress = 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.labelControl3 = new DevExpress.XtraEditors.LabelControl();
     this.labelControl2 = new DevExpress.XtraEditors.LabelControl();
     this.labelControl1 = new DevExpress.XtraEditors.LabelControl();
     this.groupControl1 = new DevExpress.XtraEditors.GroupControl();
     this.splitContainer1 = new System.Windows.Forms.SplitContainer();
     this.panel1 = new System.Windows.Forms.Panel();
     this.popupContainerControl1 = new DevExpress.XtraEditors.PopupContainerControl();
     this.gridControl1 = new DevExpress.XtraGrid.GridControl();
     this.contextMenuStrip1 = new System.Windows.Forms.ContextMenuStrip(this.components);
     this.copySelectedCellsToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
     this.pasteSelectedCellsToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
     this.inOrgininalPositionToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
     this.atCurrentlySelectedLocationToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
     this.editXaxisSymbolToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
     this.editYaxisSymbolToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
     this.smoothSelectionToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
     this.gridView1 = new DevExpress.XtraGrid.Views.Grid.GridView();
     this.xtraTabControl1 = new DevExpress.XtraTab.XtraTabControl();
     this.xtraTabPage1 = new DevExpress.XtraTab.XtraTabPage();
     this.simpleButton4 = new DevExpress.XtraEditors.SimpleButton();
     this.simpleButton5 = new DevExpress.XtraEditors.SimpleButton();
     this.simpleButton6 = new DevExpress.XtraEditors.SimpleButton();
     this.simpleButton7 = new DevExpress.XtraEditors.SimpleButton();
     this.surfaceGraphViewer1 = new SurfaceGraphViewer();
     this.xtraTabPage2 = new DevExpress.XtraTab.XtraTabPage();
     this.labelControl9 = new DevExpress.XtraEditors.LabelControl();
     this.labelControl8 = new DevExpress.XtraEditors.LabelControl();
     this.trackBarControl1 = new DevExpress.XtraEditors.TrackBarControl();
     this.chartControl1 = new DevExpress.XtraCharts.ChartControl();
     this.timer1 = new System.Windows.Forms.Timer(this.components);
     this.timer2 = new System.Windows.Forms.Timer(this.components);
     this.toolTipController1 = new DevExpress.Utils.ToolTipController(this.components);
     this.toolStrip1 = new System.Windows.Forms.ToolStrip();
     this.toolStripButton1 = new System.Windows.Forms.ToolStripButton();
     this.toolStripButton2 = new System.Windows.Forms.ToolStripButton();
     this.toolStripSeparator3 = new System.Windows.Forms.ToolStripSeparator();
     this.toolStripButton4 = new System.Windows.Forms.ToolStripButton();
     this.toolStripButton5 = new System.Windows.Forms.ToolStripButton();
     this.toolStripButton6 = new System.Windows.Forms.ToolStripButton();
     this.toolStripButton7 = new System.Windows.Forms.ToolStripButton();
     this.toolStripSeparator1 = new System.Windows.Forms.ToolStripSeparator();
     this.toolStripLabel3 = new System.Windows.Forms.ToolStripLabel();
     this.toolStripComboBox3 = new System.Windows.Forms.ToolStripComboBox();
     this.toolStripSeparator2 = new System.Windows.Forms.ToolStripSeparator();
     this.toolStripLabel1 = new System.Windows.Forms.ToolStripLabel();
     this.toolStripComboBox2 = new System.Windows.Forms.ToolStripComboBox();
     this.toolStripLabel2 = new System.Windows.Forms.ToolStripLabel();
     this.toolStripComboBox1 = new System.Windows.Forms.ToolStripComboBox();
     this.toolStripTextBox1 = new System.Windows.Forms.ToolStripTextBox();
     this.toolStripButton3 = new System.Windows.Forms.ToolStripButton();
     this.timer3 = new System.Windows.Forms.Timer(this.components);
     this.timer4 = new System.Windows.Forms.Timer(this.components);
     this.popupContainerEdit1 = new DevExpress.XtraEditors.PopupContainerEdit();
     ((System.ComponentModel.ISupportInitialize)(this.groupControl2)).BeginInit();
     this.groupControl2.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.groupControl1)).BeginInit();
     this.groupControl1.SuspendLayout();
     this.splitContainer1.Panel1.SuspendLayout();
     this.splitContainer1.Panel2.SuspendLayout();
     this.splitContainer1.SuspendLayout();
     this.panel1.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.popupContainerControl1)).BeginInit();
     this.popupContainerControl1.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.gridControl1)).BeginInit();
     this.contextMenuStrip1.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.gridView1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.xtraTabControl1)).BeginInit();
     this.xtraTabControl1.SuspendLayout();
     this.xtraTabPage1.SuspendLayout();
     this.xtraTabPage2.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.trackBarControl1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.trackBarControl1.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.chartControl1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(xyDiagram1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(series1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(lineSeriesView1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(pointSeriesLabel1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(lineSeriesView2)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(pointSeriesLabel2)).BeginInit();
     this.toolStrip1.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.popupContainerEdit1.Properties)).BeginInit();
     this.SuspendLayout();
     //
     // simpleButton3
     //
     this.simpleButton3.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
     this.simpleButton3.Enabled = false;
     this.simpleButton3.Location = new System.Drawing.Point(14, 628);
     this.simpleButton3.Name = "simpleButton3";
     this.simpleButton3.Size = new System.Drawing.Size(92, 23);
     this.simpleButton3.TabIndex = 9;
     this.simpleButton3.Text = "Undo changes";
     this.simpleButton3.Click += new System.EventHandler(this.simpleButton3_Click);
     //
     // simpleButton2
     //
     this.simpleButton2.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
     this.simpleButton2.Enabled = false;
     this.simpleButton2.Location = new System.Drawing.Point(715, 628);
     this.simpleButton2.Name = "simpleButton2";
     this.simpleButton2.Size = new System.Drawing.Size(75, 23);
     this.simpleButton2.TabIndex = 8;
     this.simpleButton2.Text = "Save";
     this.simpleButton2.Click += new System.EventHandler(this.simpleButton2_Click);
     //
     // simpleButton1
     //
     this.simpleButton1.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
     this.simpleButton1.Location = new System.Drawing.Point(796, 628);
     this.simpleButton1.Name = "simpleButton1";
     this.simpleButton1.Size = new System.Drawing.Size(75, 23);
     this.simpleButton1.TabIndex = 7;
     this.simpleButton1.Text = "Close";
     this.simpleButton1.Click += new System.EventHandler(this.simpleButton1_Click);
     //
     // groupControl2
     //
     this.toolTipController1.SetAllowHtmlText(this.groupControl2, DevExpress.Utils.DefaultBoolean.False);
     this.groupControl2.Controls.Add(this.lblZaxis);
     this.groupControl2.Controls.Add(this.labelControl13);
     this.groupControl2.Controls.Add(this.lblYaxis);
     this.groupControl2.Controls.Add(this.lblXaxis);
     this.groupControl2.Controls.Add(this.labelControl10);
     this.groupControl2.Controls.Add(this.labelControl11);
     this.groupControl2.Controls.Add(this.lblCategory);
     this.groupControl2.Controls.Add(this.lblDescription);
     this.groupControl2.Controls.Add(this.lblName);
     this.groupControl2.Controls.Add(this.lblLengthValues);
     this.groupControl2.Controls.Add(this.lblLengthBytes);
     this.groupControl2.Controls.Add(this.lblSRAMAddress);
     this.groupControl2.Controls.Add(this.lblFlashAddress);
     this.groupControl2.Controls.Add(this.labelControl7);
     this.groupControl2.Controls.Add(this.labelControl6);
     this.groupControl2.Controls.Add(this.labelControl5);
     this.groupControl2.Controls.Add(this.labelControl4);
     this.groupControl2.Controls.Add(this.labelControl3);
     this.groupControl2.Controls.Add(this.labelControl2);
     this.groupControl2.Controls.Add(this.labelControl1);
     this.groupControl2.Location = new System.Drawing.Point(3, 3);
     this.groupControl2.Name = "groupControl2";
     this.groupControl2.Size = new System.Drawing.Size(870, 90);
     this.toolTipController1.SetSuperTip(this.groupControl2, null);
     this.groupControl2.TabIndex = 6;
     this.groupControl2.Text = "Symbol details";
     this.groupControl2.Paint += new System.Windows.Forms.PaintEventHandler(this.groupControl2_Paint);
     //
     // lblZaxis
     //
     this.lblZaxis.Appearance.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(192)))), ((int)(((byte)(0)))), ((int)(((byte)(0)))));
     this.lblZaxis.Appearance.Options.UseForeColor = true;
     this.lblZaxis.Location = new System.Drawing.Point(488, 30);
     this.lblZaxis.Name = "lblZaxis";
     this.lblZaxis.Size = new System.Drawing.Size(12, 13);
     this.lblZaxis.TabIndex = 19;
     this.lblZaxis.Text = "...";
     //
     // labelControl13
     //
     this.labelControl13.Location = new System.Drawing.Point(430, 30);
     this.labelControl13.Name = "labelControl13";
     this.labelControl13.Size = new System.Drawing.Size(29, 13);
     this.labelControl13.TabIndex = 18;
     this.labelControl13.Text = "Z-axis";
     //
     // lblYaxis
     //
     this.lblYaxis.Appearance.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(192)))), ((int)(((byte)(0)))), ((int)(((byte)(0)))));
     this.lblYaxis.Appearance.Options.UseForeColor = true;
     this.lblYaxis.Location = new System.Drawing.Point(350, 62);
     this.lblYaxis.Name = "lblYaxis";
     this.lblYaxis.Size = new System.Drawing.Size(12, 13);
     this.lblYaxis.TabIndex = 17;
     this.lblYaxis.Text = "...";
     //
     // lblXaxis
     //
     this.lblXaxis.Appearance.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(192)))), ((int)(((byte)(0)))), ((int)(((byte)(0)))));
     this.lblXaxis.Appearance.Options.UseForeColor = true;
     this.lblXaxis.Location = new System.Drawing.Point(350, 30);
     this.lblXaxis.Name = "lblXaxis";
     this.lblXaxis.Size = new System.Drawing.Size(12, 13);
     this.lblXaxis.TabIndex = 16;
     this.lblXaxis.Text = "...";
     //
     // labelControl10
     //
     this.labelControl10.Location = new System.Drawing.Point(305, 62);
     this.labelControl10.Name = "labelControl10";
     this.labelControl10.Size = new System.Drawing.Size(29, 13);
     this.labelControl10.TabIndex = 15;
     this.labelControl10.Text = "Y-axis";
     //
     // labelControl11
     //
     this.labelControl11.Location = new System.Drawing.Point(305, 30);
     this.labelControl11.Name = "labelControl11";
     this.labelControl11.Size = new System.Drawing.Size(29, 13);
     this.labelControl11.TabIndex = 14;
     this.labelControl11.Text = "X-axis";
     //
     // lblCategory
     //
     this.lblCategory.Appearance.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(192)))), ((int)(((byte)(0)))), ((int)(((byte)(0)))));
     this.lblCategory.Appearance.Options.UseForeColor = true;
     this.lblCategory.Location = new System.Drawing.Point(488, 62);
     this.lblCategory.Name = "lblCategory";
     this.lblCategory.Size = new System.Drawing.Size(12, 13);
     this.lblCategory.TabIndex = 13;
     this.lblCategory.Text = "...";
     //
     // lblDescription
     //
     this.lblDescription.Appearance.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(192)))), ((int)(((byte)(0)))), ((int)(((byte)(0)))));
     this.lblDescription.Appearance.Options.UseForeColor = true;
     this.lblDescription.Location = new System.Drawing.Point(671, 62);
     this.lblDescription.Name = "lblDescription";
     this.lblDescription.Size = new System.Drawing.Size(12, 13);
     this.lblDescription.TabIndex = 12;
     this.lblDescription.Text = "...";
     //
     // lblName
     //
     this.lblName.Appearance.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(192)))), ((int)(((byte)(0)))), ((int)(((byte)(0)))));
     this.lblName.Appearance.Options.UseForeColor = true;
     this.lblName.Location = new System.Drawing.Point(671, 30);
     this.lblName.Name = "lblName";
     this.lblName.Size = new System.Drawing.Size(12, 13);
     this.lblName.TabIndex = 11;
     this.lblName.Text = "...";
     //
     // lblLengthValues
     //
     this.lblLengthValues.Appearance.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(192)))), ((int)(((byte)(0)))), ((int)(((byte)(0)))));
     this.lblLengthValues.Appearance.Options.UseForeColor = true;
     this.lblLengthValues.Location = new System.Drawing.Point(251, 62);
     this.lblLengthValues.Name = "lblLengthValues";
     this.lblLengthValues.Size = new System.Drawing.Size(36, 13);
     this.lblLengthValues.TabIndex = 10;
     this.lblLengthValues.Text = "0x0000";
     //
     // lblLengthBytes
     //
     this.lblLengthBytes.Appearance.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(192)))), ((int)(((byte)(0)))), ((int)(((byte)(0)))));
     this.lblLengthBytes.Appearance.Options.UseForeColor = true;
     this.lblLengthBytes.Location = new System.Drawing.Point(251, 30);
     this.lblLengthBytes.Name = "lblLengthBytes";
     this.lblLengthBytes.Size = new System.Drawing.Size(36, 13);
     this.lblLengthBytes.TabIndex = 9;
     this.lblLengthBytes.Text = "0x0000";
     //
     // lblSRAMAddress
     //
     this.lblSRAMAddress.Appearance.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(192)))), ((int)(((byte)(0)))), ((int)(((byte)(0)))));
     this.lblSRAMAddress.Appearance.Options.UseForeColor = true;
     this.lblSRAMAddress.Location = new System.Drawing.Point(100, 62);
     this.lblSRAMAddress.Name = "lblSRAMAddress";
     this.lblSRAMAddress.Size = new System.Drawing.Size(36, 13);
     this.lblSRAMAddress.TabIndex = 8;
     this.lblSRAMAddress.Text = "0x0000";
     //
     // lblFlashAddress
     //
     this.lblFlashAddress.Appearance.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(192)))), ((int)(((byte)(0)))), ((int)(((byte)(0)))));
     this.lblFlashAddress.Appearance.Options.UseForeColor = true;
     this.lblFlashAddress.Location = new System.Drawing.Point(100, 30);
     this.lblFlashAddress.Name = "lblFlashAddress";
     this.lblFlashAddress.Size = new System.Drawing.Size(48, 13);
     this.lblFlashAddress.TabIndex = 7;
     this.lblFlashAddress.Text = "0x000000";
     //
     // labelControl7
     //
     this.labelControl7.Location = new System.Drawing.Point(430, 62);
     this.labelControl7.Name = "labelControl7";
     this.labelControl7.Size = new System.Drawing.Size(45, 13);
     this.labelControl7.TabIndex = 6;
     this.labelControl7.Text = "Category";
     //
     // labelControl6
     //
     this.labelControl6.Location = new System.Drawing.Point(598, 62);
     this.labelControl6.Name = "labelControl6";
     this.labelControl6.Size = new System.Drawing.Size(53, 13);
     this.labelControl6.TabIndex = 5;
     this.labelControl6.Text = "Description";
     //
     // labelControl5
     //
     this.labelControl5.Location = new System.Drawing.Point(598, 30);
     this.labelControl5.Name = "labelControl5";
     this.labelControl5.Size = new System.Drawing.Size(27, 13);
     this.labelControl5.TabIndex = 4;
     this.labelControl5.Text = "Name";
     //
     // labelControl4
     //
     this.labelControl4.Location = new System.Drawing.Point(164, 62);
     this.labelControl4.Name = "labelControl4";
     this.labelControl4.Size = new System.Drawing.Size(75, 13);
     this.labelControl4.TabIndex = 3;
     this.labelControl4.Text = "Length (values)";
     //
     // labelControl3
     //
     this.labelControl3.Location = new System.Drawing.Point(164, 30);
     this.labelControl3.Name = "labelControl3";
     this.labelControl3.Size = new System.Drawing.Size(71, 13);
     this.labelControl3.TabIndex = 2;
     this.labelControl3.Text = "Length (bytes)";
     //
     // labelControl2
     //
     this.labelControl2.Location = new System.Drawing.Point(18, 62);
     this.labelControl2.Name = "labelControl2";
     this.labelControl2.Size = new System.Drawing.Size(69, 13);
     this.labelControl2.TabIndex = 1;
     this.labelControl2.Text = "SRAM address";
     //
     // labelControl1
     //
     this.labelControl1.Location = new System.Drawing.Point(18, 30);
     this.labelControl1.Name = "labelControl1";
     this.labelControl1.Size = new System.Drawing.Size(66, 13);
     this.labelControl1.TabIndex = 0;
     this.labelControl1.Text = "Flash address";
     //
     // groupControl1
     //
     this.toolTipController1.SetAllowHtmlText(this.groupControl1, DevExpress.Utils.DefaultBoolean.False);
     this.groupControl1.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
                 | System.Windows.Forms.AnchorStyles.Left)
                 | System.Windows.Forms.AnchorStyles.Right)));
     this.groupControl1.Controls.Add(this.splitContainer1);
     this.groupControl1.Location = new System.Drawing.Point(3, 28);
     this.groupControl1.LookAndFeel.SkinName = "Black";
     this.groupControl1.LookAndFeel.UseDefaultLookAndFeel = false;
     this.groupControl1.Name = "groupControl1";
     this.groupControl1.Size = new System.Drawing.Size(870, 594);
     this.toolTipController1.SetSuperTip(this.groupControl1, null);
     this.groupControl1.TabIndex = 5;
     this.groupControl1.Text = "Symbol data";
     this.groupControl1.DoubleClick += new System.EventHandler(this.groupControl1_DoubleClick);
     this.groupControl1.Paint += new System.Windows.Forms.PaintEventHandler(this.groupControl1_Paint);
     //
     // splitContainer1
     //
     this.toolTipController1.SetAllowHtmlText(this.splitContainer1, DevExpress.Utils.DefaultBoolean.False);
     this.splitContainer1.Dock = System.Windows.Forms.DockStyle.Fill;
     this.splitContainer1.Location = new System.Drawing.Point(2, 20);
     this.splitContainer1.Name = "splitContainer1";
     this.splitContainer1.Orientation = System.Windows.Forms.Orientation.Horizontal;
     //
     // splitContainer1.Panel1
     //
     this.toolTipController1.SetAllowHtmlText(this.splitContainer1.Panel1, DevExpress.Utils.DefaultBoolean.False);
     this.splitContainer1.Panel1.Controls.Add(this.panel1);
     this.toolTipController1.SetSuperTip(this.splitContainer1.Panel1, null);
     //
     // splitContainer1.Panel2
     //
     this.toolTipController1.SetAllowHtmlText(this.splitContainer1.Panel2, DevExpress.Utils.DefaultBoolean.False);
     this.splitContainer1.Panel2.Controls.Add(this.xtraTabControl1);
     this.toolTipController1.SetSuperTip(this.splitContainer1.Panel2, null);
     this.splitContainer1.Size = new System.Drawing.Size(866, 572);
     this.splitContainer1.SplitterDistance = 284;
     this.toolTipController1.SetSuperTip(this.splitContainer1, null);
     this.splitContainer1.TabIndex = 1;
     this.splitContainer1.MouseLeave += new System.EventHandler(this.splitContainer1_MouseLeave);
     this.splitContainer1.SplitterMoved += new System.Windows.Forms.SplitterEventHandler(this.splitContainer1_SplitterMoved);
     this.splitContainer1.MouseDown += new System.Windows.Forms.MouseEventHandler(this.splitContainer1_MouseDown);
     this.splitContainer1.MouseUp += new System.Windows.Forms.MouseEventHandler(this.splitContainer1_MouseUp);
     //
     // panel1
     //
     this.toolTipController1.SetAllowHtmlText(this.panel1, DevExpress.Utils.DefaultBoolean.False);
     this.panel1.Controls.Add(this.popupContainerControl1);
     this.panel1.Controls.Add(this.gridControl1);
     this.panel1.Dock = System.Windows.Forms.DockStyle.Fill;
     this.panel1.Location = new System.Drawing.Point(0, 0);
     this.panel1.Name = "panel1";
     this.panel1.Size = new System.Drawing.Size(866, 284);
     this.toolTipController1.SetSuperTip(this.panel1, null);
     this.panel1.TabIndex = 2;
     //
     // popupContainerControl1
     //
     this.toolTipController1.SetAllowHtmlText(this.popupContainerControl1, DevExpress.Utils.DefaultBoolean.False);
     this.popupContainerControl1.Controls.Add(this.groupControl2);
     this.popupContainerControl1.Location = new System.Drawing.Point(3, 72);
     this.popupContainerControl1.Name = "popupContainerControl1";
     this.popupContainerControl1.Size = new System.Drawing.Size(878, 97);
     this.toolTipController1.SetSuperTip(this.popupContainerControl1, null);
     this.popupContainerControl1.TabIndex = 1;
     //
     // gridControl1
     //
     this.gridControl1.ContextMenuStrip = this.contextMenuStrip1;
     this.gridControl1.Dock = System.Windows.Forms.DockStyle.Fill;
     this.gridControl1.Font = new System.Drawing.Font("Tahoma", 6.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.gridControl1.Location = new System.Drawing.Point(0, 0);
     this.gridControl1.LookAndFeel.SkinName = "Black";
     this.gridControl1.MainView = this.gridView1;
     this.gridControl1.Name = "gridControl1";
     this.gridControl1.Size = new System.Drawing.Size(866, 284);
     this.gridControl1.TabIndex = 0;
     this.gridControl1.ViewCollection.AddRange(new DevExpress.XtraGrid.Views.Base.BaseView[] {
     this.gridView1});
     //
     // contextMenuStrip1
     //
     this.toolTipController1.SetAllowHtmlText(this.contextMenuStrip1, DevExpress.Utils.DefaultBoolean.False);
     this.contextMenuStrip1.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
     this.copySelectedCellsToolStripMenuItem,
     this.pasteSelectedCellsToolStripMenuItem,
     this.editXaxisSymbolToolStripMenuItem,
     this.editYaxisSymbolToolStripMenuItem,
     this.smoothSelectionToolStripMenuItem});
     this.contextMenuStrip1.Name = "contextMenuStrip1";
     this.contextMenuStrip1.Size = new System.Drawing.Size(179, 114);
     this.toolTipController1.SetSuperTip(this.contextMenuStrip1, null);
     this.contextMenuStrip1.Opening += new System.ComponentModel.CancelEventHandler(this.contextMenuStrip1_Opening);
     //
     // copySelectedCellsToolStripMenuItem
     //
     this.copySelectedCellsToolStripMenuItem.Name = "copySelectedCellsToolStripMenuItem";
     this.copySelectedCellsToolStripMenuItem.Size = new System.Drawing.Size(178, 22);
     this.copySelectedCellsToolStripMenuItem.Text = "Copy selected cells";
     this.copySelectedCellsToolStripMenuItem.Click += new System.EventHandler(this.copySelectedCellsToolStripMenuItem_Click);
     //
     // pasteSelectedCellsToolStripMenuItem
     //
     this.pasteSelectedCellsToolStripMenuItem.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] {
     this.inOrgininalPositionToolStripMenuItem,
     this.atCurrentlySelectedLocationToolStripMenuItem});
     this.pasteSelectedCellsToolStripMenuItem.Name = "pasteSelectedCellsToolStripMenuItem";
     this.pasteSelectedCellsToolStripMenuItem.Size = new System.Drawing.Size(178, 22);
     this.pasteSelectedCellsToolStripMenuItem.Text = "Paste selected cells";
     //
     // inOrgininalPositionToolStripMenuItem
     //
     this.inOrgininalPositionToolStripMenuItem.Name = "inOrgininalPositionToolStripMenuItem";
     this.inOrgininalPositionToolStripMenuItem.Size = new System.Drawing.Size(225, 22);
     this.inOrgininalPositionToolStripMenuItem.Text = "At original position";
     this.inOrgininalPositionToolStripMenuItem.Click += new System.EventHandler(this.inOrgininalPositionToolStripMenuItem_Click);
     //
     // atCurrentlySelectedLocationToolStripMenuItem
     //
     this.atCurrentlySelectedLocationToolStripMenuItem.Name = "atCurrentlySelectedLocationToolStripMenuItem";
     this.atCurrentlySelectedLocationToolStripMenuItem.Size = new System.Drawing.Size(225, 22);
     this.atCurrentlySelectedLocationToolStripMenuItem.Text = "At currently selected location";
     this.atCurrentlySelectedLocationToolStripMenuItem.Click += new System.EventHandler(this.atCurrentlySelectedLocationToolStripMenuItem_Click);
     //
     // editXaxisSymbolToolStripMenuItem
     //
     this.editXaxisSymbolToolStripMenuItem.Name = "editXaxisSymbolToolStripMenuItem";
     this.editXaxisSymbolToolStripMenuItem.Size = new System.Drawing.Size(178, 22);
     this.editXaxisSymbolToolStripMenuItem.Text = "Edit x-axis";
     this.editXaxisSymbolToolStripMenuItem.Click += new System.EventHandler(this.editXaxisSymbolToolStripMenuItem_Click);
     //
     // editYaxisSymbolToolStripMenuItem
     //
     this.editYaxisSymbolToolStripMenuItem.Name = "editYaxisSymbolToolStripMenuItem";
     this.editYaxisSymbolToolStripMenuItem.Size = new System.Drawing.Size(178, 22);
     this.editYaxisSymbolToolStripMenuItem.Text = "Edit y-axis";
     this.editYaxisSymbolToolStripMenuItem.Click += new System.EventHandler(this.editYaxisSymbolToolStripMenuItem_Click);
     //
     // smoothSelectionToolStripMenuItem
     //
     this.smoothSelectionToolStripMenuItem.Name = "smoothSelectionToolStripMenuItem";
     this.smoothSelectionToolStripMenuItem.Size = new System.Drawing.Size(178, 22);
     this.smoothSelectionToolStripMenuItem.Text = "Smooth selection";
     this.smoothSelectionToolStripMenuItem.Click += new System.EventHandler(this.smoothSelectionToolStripMenuItem_Click);
     //
     // gridView1
     //
     this.gridView1.GridControl = this.gridControl1;
     this.gridView1.Name = "gridView1";
     this.gridView1.OptionsCustomization.AllowColumnMoving = false;
     this.gridView1.OptionsCustomization.AllowFilter = false;
     this.gridView1.OptionsCustomization.AllowGroup = false;
     this.gridView1.OptionsCustomization.AllowSort = false;
     this.gridView1.OptionsNavigation.EnterMoveNextColumn = true;
     this.gridView1.OptionsSelection.EnableAppearanceFocusedRow = false;
     this.gridView1.OptionsSelection.MultiSelect = true;
     this.gridView1.OptionsSelection.MultiSelectMode = DevExpress.XtraGrid.Views.Grid.GridMultiSelectMode.CellSelect;
     this.gridView1.OptionsView.ShowGroupPanel = false;
     this.gridView1.SelectionChanged += new DevExpress.Data.SelectionChangedEventHandler(this.gridView1_SelectionChanged_1);
     this.gridView1.ValidatingEditor += new DevExpress.XtraEditors.Controls.BaseContainerValidateEditorEventHandler(this.gridView1_ValidatingEditor);
     this.gridView1.CustomDrawRowIndicator += new DevExpress.XtraGrid.Views.Grid.RowIndicatorCustomDrawEventHandler(this.gridView1_CustomDrawRowIndicator);
     this.gridView1.CellValueChanged += new DevExpress.XtraGrid.Views.Base.CellValueChangedEventHandler(this.gridView1_CellValueChanged);
     this.gridView1.KeyDown += new System.Windows.Forms.KeyEventHandler(this.gridView1_KeyDown);
     this.gridView1.CellValueChanging += new DevExpress.XtraGrid.Views.Base.CellValueChangedEventHandler(this.gridView1_CellValueChanging);
     this.gridView1.CustomDrawCell += new DevExpress.XtraGrid.Views.Base.RowCellCustomDrawEventHandler(this.gridView1_CustomDrawCell);
     this.gridView1.ShownEditor += new System.EventHandler(this.gridView1_ShownEditor);
     this.gridView1.RowUpdated += new DevExpress.XtraGrid.Views.Base.RowObjectEventHandler(this.gridView1_RowUpdated);
     this.gridView1.ShowingEditor += new System.ComponentModel.CancelEventHandler(this.gridView1_ShowingEditor);
     this.gridView1.HiddenEditor += new System.EventHandler(this.gridView1_HiddenEditor);
     this.gridView1.CustomDrawColumnHeader += new DevExpress.XtraGrid.Views.Grid.ColumnHeaderCustomDrawEventHandler(this.gridView1_CustomDrawColumnHeader);
     //
     // xtraTabControl1
     //
     this.xtraTabControl1.Dock = System.Windows.Forms.DockStyle.Fill;
     this.xtraTabControl1.HeaderLocation = DevExpress.XtraTab.TabHeaderLocation.Left;
     this.xtraTabControl1.HeaderOrientation = DevExpress.XtraTab.TabOrientation.Vertical;
     this.xtraTabControl1.Location = new System.Drawing.Point(0, 0);
     this.xtraTabControl1.Name = "xtraTabControl1";
     this.xtraTabControl1.SelectedTabPage = this.xtraTabPage1;
     this.xtraTabControl1.Size = new System.Drawing.Size(866, 284);
     this.xtraTabControl1.TabIndex = 2;
     this.xtraTabControl1.TabPages.AddRange(new DevExpress.XtraTab.XtraTabPage[] {
     this.xtraTabPage1,
     this.xtraTabPage2});
     this.xtraTabControl1.SelectedPageChanged += new DevExpress.XtraTab.TabPageChangedEventHandler(this.xtraTabControl1_SelectedPageChanged);
     //
     // xtraTabPage1
     //
     this.xtraTabPage1.Controls.Add(this.simpleButton4);
     this.xtraTabPage1.Controls.Add(this.simpleButton5);
     this.xtraTabPage1.Controls.Add(this.simpleButton6);
     this.xtraTabPage1.Controls.Add(this.simpleButton7);
     this.xtraTabPage1.Controls.Add(this.surfaceGraphViewer1);
     this.xtraTabPage1.Name = "xtraTabPage1";
     this.xtraTabPage1.Size = new System.Drawing.Size(836, 275);
     this.xtraTabPage1.Text = "3D Graph";
     //
     // simpleButton4
     //
     this.simpleButton4.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
     this.simpleButton4.Image = ((System.Drawing.Image)(resources.GetObject("simpleButton4.Image")));
     this.simpleButton4.Location = new System.Drawing.Point(814, 60);
     this.simpleButton4.Name = "simpleButton4";
     this.simpleButton4.Size = new System.Drawing.Size(23, 23);
     this.simpleButton4.TabIndex = 12;
     this.simpleButton4.ToolTip = "Turn graph counter clockwise";
     this.simpleButton4.Click += new System.EventHandler(this.simpleButton4_Click);
     //
     // simpleButton5
     //
     this.simpleButton5.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
     this.simpleButton5.Image = ((System.Drawing.Image)(resources.GetObject("simpleButton5.Image")));
     this.simpleButton5.Location = new System.Drawing.Point(814, 89);
     this.simpleButton5.Name = "simpleButton5";
     this.simpleButton5.Size = new System.Drawing.Size(23, 23);
     this.simpleButton5.TabIndex = 11;
     this.simpleButton5.ToolTip = "Turn graph clockwise";
     this.simpleButton5.Click += new System.EventHandler(this.simpleButton5_Click);
     //
     // simpleButton6
     //
     this.simpleButton6.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
     this.simpleButton6.Image = ((System.Drawing.Image)(resources.GetObject("simpleButton6.Image")));
     this.simpleButton6.Location = new System.Drawing.Point(814, 32);
     this.simpleButton6.Name = "simpleButton6";
     this.simpleButton6.Size = new System.Drawing.Size(23, 23);
     this.simpleButton6.TabIndex = 10;
     this.simpleButton6.ToolTip = "Zoom out";
     this.simpleButton6.Click += new System.EventHandler(this.simpleButton6_Click);
     //
     // simpleButton7
     //
     this.simpleButton7.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
     this.simpleButton7.Image = ((System.Drawing.Image)(resources.GetObject("simpleButton7.Image")));
     this.simpleButton7.Location = new System.Drawing.Point(814, 3);
     this.simpleButton7.Name = "simpleButton7";
     this.simpleButton7.Size = new System.Drawing.Size(23, 23);
     this.simpleButton7.TabIndex = 9;
     this.simpleButton7.ToolTip = "Zoom in";
     this.simpleButton7.Click += new System.EventHandler(this.simpleButton7_Click);
     //
     // surfaceGraphViewer1
     //
     this.toolTipController1.SetAllowHtmlText(this.surfaceGraphViewer1, DevExpress.Utils.DefaultBoolean.False);
     this.surfaceGraphViewer1.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.surfaceGraphViewer1.IsRedWhite = false;
     this.surfaceGraphViewer1.IsSixteenbit = false;
     this.surfaceGraphViewer1.IsUpsideDown = false;
     this.surfaceGraphViewer1.Location = new System.Drawing.Point(0, 0);
     this.surfaceGraphViewer1.Map_compare_content = null;
     this.surfaceGraphViewer1.Map_content = null;
     this.surfaceGraphViewer1.Map_length = 0;
     this.surfaceGraphViewer1.Map_name = "";
     this.surfaceGraphViewer1.Map_original_content = null;
     this.surfaceGraphViewer1.Name = "surfaceGraphViewer1";
     this.surfaceGraphViewer1.NumberOfColumns = 8;
     this.surfaceGraphViewer1.Pan_x = 45;
     this.surfaceGraphViewer1.Pan_y = 77;
     this.surfaceGraphViewer1.Pov_d = 0.6;
     this.surfaceGraphViewer1.Pov_x = 30;
     this.surfaceGraphViewer1.Pov_y = 56;
     this.surfaceGraphViewer1.Pov_z = 21;
     this.surfaceGraphViewer1.Size = new System.Drawing.Size(808, 275);
     this.toolTipController1.SetSuperTip(this.surfaceGraphViewer1, null);
     this.surfaceGraphViewer1.TabIndex = 0;
     this.surfaceGraphViewer1.X_axis = null;
     this.surfaceGraphViewer1.X_axis_descr = "";
     this.surfaceGraphViewer1.Y_axis = null;
     this.surfaceGraphViewer1.Y_axis_descr = "";
     this.surfaceGraphViewer1.Z_axis = null;
     this.surfaceGraphViewer1.Z_axis_descr = "";
     //
     // xtraTabPage2
     //
     this.xtraTabPage2.Controls.Add(this.labelControl9);
     this.xtraTabPage2.Controls.Add(this.labelControl8);
     this.xtraTabPage2.Controls.Add(this.trackBarControl1);
     this.xtraTabPage2.Controls.Add(this.chartControl1);
     this.xtraTabPage2.Name = "xtraTabPage2";
     this.xtraTabPage2.Size = new System.Drawing.Size(836, 275);
     this.xtraTabPage2.Text = "2D Graph";
     //
     // labelControl9
     //
     this.labelControl9.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
     this.labelControl9.AutoEllipsis = true;
     this.labelControl9.AutoSizeMode = DevExpress.XtraEditors.LabelAutoSizeMode.None;
     this.labelControl9.Location = new System.Drawing.Point(645, 201);
     this.labelControl9.Name = "labelControl9";
     this.labelControl9.Size = new System.Drawing.Size(188, 34);
     this.labelControl9.TabIndex = 4;
     this.labelControl9.Text = "MAP";
     //
     // labelControl8
     //
     this.labelControl8.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
     this.labelControl8.AutoEllipsis = true;
     this.labelControl8.AutoSizeMode = DevExpress.XtraEditors.LabelAutoSizeMode.None;
     this.labelControl8.Location = new System.Drawing.Point(6, 201);
     this.labelControl8.Name = "labelControl8";
     this.labelControl8.Size = new System.Drawing.Size(104, 34);
     this.labelControl8.TabIndex = 3;
     this.labelControl8.Text = "MAP values";
     //
     // trackBarControl1
     //
     this.trackBarControl1.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)
                 | System.Windows.Forms.AnchorStyles.Right)));
     this.trackBarControl1.EditValue = null;
     this.trackBarControl1.Location = new System.Drawing.Point(125, 201);
     this.trackBarControl1.Name = "trackBarControl1";
     this.trackBarControl1.Size = new System.Drawing.Size(500, 45);
     this.trackBarControl1.TabIndex = 2;
     this.trackBarControl1.ValueChanged += new System.EventHandler(this.trackBarControl1_ValueChanged);
     //
     // chartControl1
     //
     this.toolTipController1.SetAllowHtmlText(this.chartControl1, DevExpress.Utils.DefaultBoolean.False);
     this.chartControl1.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.chartControl1.CacheToMemory = true;
     xyDiagram1.AxisX.VisibleInPanesSerializable = "-1";
     xyDiagram1.AxisX.Range.SideMarginsEnabled = false;
     xyDiagram1.AxisX.Range.ScrollingRange.SideMarginsEnabled = true;
     xyDiagram1.AxisY.VisibleInPanesSerializable = "-1";
     xyDiagram1.AxisY.Range.SideMarginsEnabled = false;
     xyDiagram1.AxisY.Range.ScrollingRange.SideMarginsEnabled = true;
     this.chartControl1.Diagram = xyDiagram1;
     this.chartControl1.Legend.Border.Visible = false;
     this.chartControl1.Location = new System.Drawing.Point(3, 3);
     this.chartControl1.Name = "chartControl1";
     this.chartControl1.RefreshDataOnRepaint = false;
     this.chartControl1.RuntimeHitTesting = false;
     this.chartControl1.RuntimeSeriesSelectionMode = DevExpress.XtraCharts.SeriesSelectionMode.Point;
     series1.Name = "Values";
     series1.Points.AddRange(new DevExpress.XtraCharts.SeriesPoint[] {
     seriesPoint1});
     lineSeriesView1.LineMarkerOptions.Size = 8;
     lineSeriesView1.LineMarkerOptions.FillStyle.FillMode = DevExpress.XtraCharts.FillMode.Gradient;
     polygonGradientFillOptions1.Color2 = System.Drawing.Color.Gold;
     lineSeriesView1.LineMarkerOptions.FillStyle.Options = polygonGradientFillOptions1;
     lineSeriesView1.Color = System.Drawing.Color.DarkGoldenrod;
     series1.View = lineSeriesView1;
     series1.ArgumentDataMember = "X";
     series1.ArgumentScaleType = DevExpress.XtraCharts.ScaleType.Numerical;
     pointSeriesLabel1.Angle = 90;
     pointSeriesLabel1.TextColor = System.Drawing.Color.MidnightBlue;
     pointSeriesLabel1.Font = new System.Drawing.Font("Tahoma", 6F, System.Drawing.FontStyle.Bold);
     pointSeriesLabel1.Border.Visible = false;
     pointSeriesLabel1.Antialiasing = true;
     pointSeriesLabel1.LineVisible = true;
     series1.Label = pointSeriesLabel1;
     pointOptions1.PointView = DevExpress.XtraCharts.PointView.ArgumentAndValues;
     series1.PointOptions = pointOptions1;
     this.chartControl1.SeriesSerializable = new DevExpress.XtraCharts.Series[] {
     series1};
     this.chartControl1.SeriesTemplate.View = lineSeriesView2;
     pointSeriesLabel2.LineVisible = true;
     this.chartControl1.SeriesTemplate.Label = pointSeriesLabel2;
     this.chartControl1.Size = new System.Drawing.Size(830, 185);
     this.toolTipController1.SetSuperTip(this.chartControl1, null);
     this.chartControl1.TabIndex = 1;
     this.chartControl1.Visible = false;
     this.chartControl1.CustomDrawSeriesPoint += new DevExpress.XtraCharts.CustomDrawSeriesPointEventHandler(this.chartControl1_CustomDrawSeriesPoint);
     this.chartControl1.MouseUp += new System.Windows.Forms.MouseEventHandler(this.chartControl1_MouseUp);
     this.chartControl1.MouseDoubleClick += new System.Windows.Forms.MouseEventHandler(this.chartControl1_MouseDoubleClick);
     this.chartControl1.MouseMove += new System.Windows.Forms.MouseEventHandler(this.chartControl1_MouseMove);
     this.chartControl1.MouseDown += new System.Windows.Forms.MouseEventHandler(this.chartControl1_MouseDown);
     this.chartControl1.ObjectHotTracked += new DevExpress.XtraCharts.HotTrackEventHandler(this.chartControl1_ObjectHotTracked);
     this.chartControl1.CustomDrawSeries += new DevExpress.XtraCharts.CustomDrawSeriesEventHandler(this.chartControl1_CustomDrawSeries);
     this.chartControl1.Click += new System.EventHandler(this.chartControl1_Click);
     //
     // timer1
     //
     this.timer1.Tick += new System.EventHandler(this.timer1_Tick);
     //
     // timer2
     //
     this.timer2.Tick += new System.EventHandler(this.timer2_Tick);
     //
     // toolTipController1
     //
     this.toolTipController1.Rounded = true;
     //
     // toolStrip1
     //
     this.toolTipController1.SetAllowHtmlText(this.toolStrip1, DevExpress.Utils.DefaultBoolean.False);
     this.toolStrip1.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
     this.toolStripButton1,
     this.toolStripButton2,
     this.toolStripSeparator3,
     this.toolStripButton4,
     this.toolStripButton5,
     this.toolStripButton6,
     this.toolStripButton7,
     this.toolStripSeparator1,
     this.toolStripLabel3,
     this.toolStripComboBox3,
     this.toolStripSeparator2,
     this.toolStripLabel1,
     this.toolStripComboBox2,
     this.toolStripLabel2,
     this.toolStripComboBox1,
     this.toolStripTextBox1,
     this.toolStripButton3});
     this.toolStrip1.Location = new System.Drawing.Point(0, 0);
     this.toolStrip1.Name = "toolStrip1";
     this.toolStrip1.Size = new System.Drawing.Size(876, 25);
     this.toolTipController1.SetSuperTip(this.toolStrip1, null);
     this.toolStrip1.TabIndex = 10;
     this.toolStrip1.Text = "toolStrip1";
     //
     // toolStripButton1
     //
     this.toolStripButton1.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
     this.toolStripButton1.Image = ((System.Drawing.Image)(resources.GetObject("toolStripButton1.Image")));
     this.toolStripButton1.ImageTransparentColor = System.Drawing.Color.Magenta;
     this.toolStripButton1.Name = "toolStripButton1";
     this.toolStripButton1.Size = new System.Drawing.Size(23, 22);
     this.toolStripButton1.Text = "Toggle graph section";
     this.toolStripButton1.Click += new System.EventHandler(this.toolStripButton1_Click);
     //
     // toolStripButton2
     //
     this.toolStripButton2.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
     this.toolStripButton2.Image = ((System.Drawing.Image)(resources.GetObject("toolStripButton2.Image")));
     this.toolStripButton2.ImageTransparentColor = System.Drawing.Color.Magenta;
     this.toolStripButton2.Name = "toolStripButton2";
     this.toolStripButton2.Size = new System.Drawing.Size(23, 22);
     this.toolStripButton2.Text = "Toggle hexview";
     this.toolStripButton2.Click += new System.EventHandler(this.toolStripButton2_Click);
     //
     // toolStripSeparator3
     //
     this.toolStripSeparator3.Name = "toolStripSeparator3";
     this.toolStripSeparator3.Size = new System.Drawing.Size(6, 25);
     //
     // toolStripButton4
     //
     this.toolStripButton4.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
     this.toolStripButton4.Image = ((System.Drawing.Image)(resources.GetObject("toolStripButton4.Image")));
     this.toolStripButton4.ImageTransparentColor = System.Drawing.Color.Magenta;
     this.toolStripButton4.Name = "toolStripButton4";
     this.toolStripButton4.Size = new System.Drawing.Size(23, 22);
     this.toolStripButton4.Text = "Maximize graph";
     this.toolStripButton4.Click += new System.EventHandler(this.toolStripButton4_Click);
     //
     // toolStripButton5
     //
     this.toolStripButton5.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
     this.toolStripButton5.Image = ((System.Drawing.Image)(resources.GetObject("toolStripButton5.Image")));
     this.toolStripButton5.ImageTransparentColor = System.Drawing.Color.Magenta;
     this.toolStripButton5.Name = "toolStripButton5";
     this.toolStripButton5.Size = new System.Drawing.Size(23, 22);
     this.toolStripButton5.Text = "Maximize table";
     this.toolStripButton5.Click += new System.EventHandler(this.toolStripButton5_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, 22);
     this.toolStripButton6.Text = "Maximize window";
     this.toolStripButton6.Click += new System.EventHandler(this.toolStripButton6_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, 22);
     this.toolStripButton7.Text = "Toggle graph/map";
     this.toolStripButton7.Click += new System.EventHandler(this.toolStripButton7_Click);
     //
     // toolStripSeparator1
     //
     this.toolStripSeparator1.Name = "toolStripSeparator1";
     this.toolStripSeparator1.Size = new System.Drawing.Size(6, 25);
     //
     // toolStripLabel3
     //
     this.toolStripLabel3.Name = "toolStripLabel3";
     this.toolStripLabel3.Size = new System.Drawing.Size(51, 22);
     this.toolStripLabel3.Text = "Viewtype";
     //
     // toolStripComboBox3
     //
     this.toolStripComboBox3.AutoCompleteMode = System.Windows.Forms.AutoCompleteMode.Suggest;
     this.toolStripComboBox3.AutoCompleteSource = System.Windows.Forms.AutoCompleteSource.ListItems;
     this.toolStripComboBox3.Items.AddRange(new object[] {
     "Hex view ",
     "Decimal view ",
     "Easy view"});
     this.toolStripComboBox3.Name = "toolStripComboBox3";
     this.toolStripComboBox3.Size = new System.Drawing.Size(160, 25);
     this.toolStripComboBox3.SelectedIndexChanged += new System.EventHandler(this.toolStripComboBox3_SelectedIndexChanged);
     this.toolStripComboBox3.KeyDown += new System.Windows.Forms.KeyEventHandler(this.toolStripComboBox3_KeyDown);
     //
     // toolStripSeparator2
     //
     this.toolStripSeparator2.Name = "toolStripSeparator2";
     this.toolStripSeparator2.Size = new System.Drawing.Size(6, 25);
     //
     // toolStripLabel1
     //
     this.toolStripLabel1.Name = "toolStripLabel1";
     this.toolStripLabel1.Size = new System.Drawing.Size(77, 22);
     this.toolStripLabel1.Text = "Axis lock mode";
     //
     // toolStripComboBox2
     //
     this.toolStripComboBox2.AutoCompleteMode = System.Windows.Forms.AutoCompleteMode.Suggest;
     this.toolStripComboBox2.AutoCompleteSource = System.Windows.Forms.AutoCompleteSource.ListItems;
     this.toolStripComboBox2.Items.AddRange(new object[] {
     "Autoscale",
     "Lock to peak in maps",
     "Lock to map limit"});
     this.toolStripComboBox2.Name = "toolStripComboBox2";
     this.toolStripComboBox2.Size = new System.Drawing.Size(121, 25);
     this.toolStripComboBox2.SelectedIndexChanged += new System.EventHandler(this.toolStripComboBox2_SelectedIndexChanged);
     //
     // toolStripLabel2
     //
     this.toolStripLabel2.Name = "toolStripLabel2";
     this.toolStripLabel2.Size = new System.Drawing.Size(67, 22);
     this.toolStripLabel2.Text = "Mathematics";
     //
     // toolStripComboBox1
     //
     this.toolStripComboBox1.AutoCompleteMode = System.Windows.Forms.AutoCompleteMode.Suggest;
     this.toolStripComboBox1.AutoCompleteSource = System.Windows.Forms.AutoCompleteSource.ListItems;
     this.toolStripComboBox1.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
     this.toolStripComboBox1.Items.AddRange(new object[] {
     "Addition",
     "Multiply",
     "Divide",
     "Fill"});
     this.toolStripComboBox1.Name = "toolStripComboBox1";
     this.toolStripComboBox1.Size = new System.Drawing.Size(121, 25);
     //
     // toolStripTextBox1
     //
     this.toolStripTextBox1.Name = "toolStripTextBox1";
     this.toolStripTextBox1.Size = new System.Drawing.Size(60, 25);
     this.toolStripTextBox1.Text = "2";
     this.toolStripTextBox1.TextBoxTextAlign = System.Windows.Forms.HorizontalAlignment.Center;
     //
     // toolStripButton3
     //
     this.toolStripButton3.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
     this.toolStripButton3.Image = ((System.Drawing.Image)(resources.GetObject("toolStripButton3.Image")));
     this.toolStripButton3.ImageTransparentColor = System.Drawing.Color.Magenta;
     this.toolStripButton3.Name = "toolStripButton3";
     this.toolStripButton3.Size = new System.Drawing.Size(23, 22);
     this.toolStripButton3.Text = "Execute";
     this.toolStripButton3.Click += new System.EventHandler(this.toolStripButton3_Click);
     //
     // timer3
     //
     this.timer3.Tick += new System.EventHandler(this.timer3_Tick);
     //
     // timer4
     //
     this.timer4.Enabled = true;
     this.timer4.Interval = 500;
     this.timer4.Tick += new System.EventHandler(this.timer4_Tick);
     //
     // popupContainerEdit1
     //
     this.popupContainerEdit1.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
     this.popupContainerEdit1.Location = new System.Drawing.Point(125, 631);
     this.popupContainerEdit1.Name = "popupContainerEdit1";
     this.popupContainerEdit1.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.popupContainerEdit1.Properties.PopupControl = this.popupContainerControl1;
     this.popupContainerEdit1.Size = new System.Drawing.Size(161, 20);
     toolTipTitleItem1.Text = "Click here for table details";
     superToolTip1.Items.Add(toolTipTitleItem1);
     superToolTip1.AllowHtmlText = DevExpress.Utils.DefaultBoolean.False;
     this.popupContainerEdit1.SuperTip = superToolTip1;
     this.popupContainerEdit1.TabIndex = 11;
     this.popupContainerEdit1.CustomDisplayText += new DevExpress.XtraEditors.Controls.CustomDisplayTextEventHandler(this.popupContainerEdit1_CustomDisplayText);
     //
     // MapViewer
     //
     this.toolTipController1.SetAllowHtmlText(this, DevExpress.Utils.DefaultBoolean.False);
     this.Appearance.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.Appearance.Options.UseFont = true;
     this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
     this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
     this.Controls.Add(this.simpleButton1);
     this.Controls.Add(this.simpleButton2);
     this.Controls.Add(this.toolStrip1);
     this.Controls.Add(this.simpleButton3);
     this.Controls.Add(this.groupControl1);
     this.Controls.Add(this.popupContainerEdit1);
     this.LookAndFeel.SkinName = "Black";
     this.Name = "MapViewer";
     this.Size = new System.Drawing.Size(876, 664);
     this.toolTipController1.SetSuperTip(this, null);
     this.VisibleChanged += new System.EventHandler(this.MapViewer_VisibleChanged);
     ((System.ComponentModel.ISupportInitialize)(this.groupControl2)).EndInit();
     this.groupControl2.ResumeLayout(false);
     this.groupControl2.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(this.groupControl1)).EndInit();
     this.groupControl1.ResumeLayout(false);
     this.splitContainer1.Panel1.ResumeLayout(false);
     this.splitContainer1.Panel2.ResumeLayout(false);
     this.splitContainer1.ResumeLayout(false);
     this.panel1.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.popupContainerControl1)).EndInit();
     this.popupContainerControl1.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.gridControl1)).EndInit();
     this.contextMenuStrip1.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.gridView1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.xtraTabControl1)).EndInit();
     this.xtraTabControl1.ResumeLayout(false);
     this.xtraTabPage1.ResumeLayout(false);
     this.xtraTabPage2.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.trackBarControl1.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.trackBarControl1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(xyDiagram1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(lineSeriesView1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(pointSeriesLabel1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(series1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(lineSeriesView2)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(pointSeriesLabel2)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.chartControl1)).EndInit();
     this.toolStrip1.ResumeLayout(false);
     this.toolStrip1.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(this.popupContainerEdit1.Properties)).EndInit();
     this.ResumeLayout(false);
     this.PerformLayout();
 }
Пример #38
0
 /// <summary>
 /// Required method for Designer support - do not modify
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     this.groupCtrlMd_Service = new DevExpress.XtraEditors.GroupControl();
     this.label2             = new System.Windows.Forms.Label();
     this.label1             = new System.Windows.Forms.Label();
     this.label31            = new System.Windows.Forms.Label();
     this.label28            = new System.Windows.Forms.Label();
     this.label27            = new System.Windows.Forms.Label();
     this.label26            = new System.Windows.Forms.Label();
     this.label22            = new System.Windows.Forms.Label();
     this.label21            = new System.Windows.Forms.Label();
     this.label19            = new System.Windows.Forms.Label();
     this.label18            = new System.Windows.Forms.Label();
     this.groupHdrMd_Service = new DevExpress.XtraEditors.GroupControl();
     this.hdrMd_Service      = new System.Windows.Forms.Label();
     ((System.ComponentModel.ISupportInitialize)(this.groupCtrlMd_Service)).BeginInit();
     this.groupCtrlMd_Service.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.groupHdrMd_Service)).BeginInit();
     this.groupHdrMd_Service.SuspendLayout();
     this.SuspendLayout();
     //
     // groupCtrlMd_Service
     //
     this.groupCtrlMd_Service.BorderStyle = DevExpress.XtraEditors.Controls.BorderStyles.NoBorder;
     this.groupCtrlMd_Service.Controls.Add(this.label2);
     this.groupCtrlMd_Service.Controls.Add(this.label1);
     this.groupCtrlMd_Service.Controls.Add(this.label31);
     this.groupCtrlMd_Service.Controls.Add(this.label28);
     this.groupCtrlMd_Service.Controls.Add(this.label27);
     this.groupCtrlMd_Service.Controls.Add(this.label26);
     this.groupCtrlMd_Service.Controls.Add(this.label22);
     this.groupCtrlMd_Service.Controls.Add(this.label21);
     this.groupCtrlMd_Service.Controls.Add(this.label19);
     this.groupCtrlMd_Service.Controls.Add(this.label18);
     this.groupCtrlMd_Service.Location          = new System.Drawing.Point(0, 32);
     this.groupCtrlMd_Service.LookAndFeel.Style = DevExpress.LookAndFeel.LookAndFeelStyle.Skin;
     this.groupCtrlMd_Service.LookAndFeel.UseDefaultLookAndFeel = false;
     this.groupCtrlMd_Service.Name     = "groupCtrlMd_Service";
     this.groupCtrlMd_Service.Size     = new System.Drawing.Size(312, 288);
     this.groupCtrlMd_Service.TabIndex = 6;
     this.groupCtrlMd_Service.Text     = "groupControl1";
     //
     // label2
     //
     this.label2.BackColor = System.Drawing.Color.White;
     this.label2.Font      = new System.Drawing.Font("Tahoma", 9F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((System.Byte)(0)));
     this.label2.Location  = new System.Drawing.Point(16, 232);
     this.label2.Name      = "label2";
     this.label2.Size      = new System.Drawing.Size(280, 16);
     this.label2.TabIndex  = 142;
     this.label2.Text      = "PTPCIT : PT Package Individual Target";
     this.label2.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
     //
     // label1
     //
     this.label1.BackColor = System.Drawing.Color.White;
     this.label1.Font      = new System.Drawing.Font("Tahoma", 9F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((System.Byte)(0)));
     this.label1.Location  = new System.Drawing.Point(16, 112);
     this.label1.Name      = "label1";
     this.label1.Size      = new System.Drawing.Size(280, 16);
     this.label1.TabIndex  = 141;
     this.label1.Text      = "PTPCBT : PT Package Branch Target";
     this.label1.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
     //
     // label31
     //
     this.label31.BackColor = System.Drawing.Color.White;
     this.label31.Font      = new System.Drawing.Font("Tahoma", 9F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((System.Byte)(0)));
     this.label31.Location  = new System.Drawing.Point(16, 208);
     this.label31.Name      = "label31";
     this.label31.Size      = new System.Drawing.Size(280, 16);
     this.label31.TabIndex  = 124;
     this.label31.Text      = "SPDIT   : SPA Product Individual Target";
     this.label31.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
     //
     // label28
     //
     this.label28.BackColor = System.Drawing.Color.White;
     this.label28.Font      = new System.Drawing.Font("Tahoma", 9F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((System.Byte)(0)));
     this.label28.Location  = new System.Drawing.Point(16, 184);
     this.label28.Name      = "label28";
     this.label28.Size      = new System.Drawing.Size(280, 16);
     this.label28.TabIndex  = 123;
     this.label28.Text      = "SPCIT   : SPA Package Individual Target";
     this.label28.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
     //
     // label27
     //
     this.label27.BackColor = System.Drawing.Color.White;
     this.label27.Font      = new System.Drawing.Font("Tahoma", 9F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((System.Byte)(0)));
     this.label27.Location  = new System.Drawing.Point(16, 160);
     this.label27.Name      = "label27";
     this.label27.Size      = new System.Drawing.Size(280, 16);
     this.label27.TabIndex  = 122;
     this.label27.Text      = "FPDIT   : Fitness Product Individual Target";
     this.label27.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
     //
     // label26
     //
     this.label26.BackColor = System.Drawing.Color.White;
     this.label26.Font      = new System.Drawing.Font("Tahoma", 9F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((System.Byte)(0)));
     this.label26.Location  = new System.Drawing.Point(16, 136);
     this.label26.Name      = "label26";
     this.label26.Size      = new System.Drawing.Size(280, 16);
     this.label26.TabIndex  = 121;
     this.label26.Text      = "FPCIT    : Fitness Package Individual Target";
     this.label26.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
     //
     // label22
     //
     this.label22.BackColor = System.Drawing.Color.White;
     this.label22.Font      = new System.Drawing.Font("Tahoma", 9F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((System.Byte)(0)));
     this.label22.Location  = new System.Drawing.Point(16, 88);
     this.label22.Name      = "label22";
     this.label22.Size      = new System.Drawing.Size(280, 16);
     this.label22.TabIndex  = 120;
     this.label22.Text      = "SPDBT  : SPA Product Branch Target";
     this.label22.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
     //
     // label21
     //
     this.label21.BackColor = System.Drawing.Color.White;
     this.label21.Font      = new System.Drawing.Font("Tahoma", 9F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((System.Byte)(0)));
     this.label21.Location  = new System.Drawing.Point(16, 64);
     this.label21.Name      = "label21";
     this.label21.Size      = new System.Drawing.Size(280, 16);
     this.label21.TabIndex  = 119;
     this.label21.Text      = "SPCBT  : SPA Package Branch Target";
     this.label21.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
     //
     // label19
     //
     this.label19.BackColor = System.Drawing.Color.White;
     this.label19.Font      = new System.Drawing.Font("Tahoma", 9F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((System.Byte)(0)));
     this.label19.Location  = new System.Drawing.Point(16, 40);
     this.label19.Name      = "label19";
     this.label19.Size      = new System.Drawing.Size(280, 16);
     this.label19.TabIndex  = 118;
     this.label19.Text      = "FPDBT  : Fitness Product Branch Target";
     this.label19.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
     //
     // label18
     //
     this.label18.BackColor = System.Drawing.Color.White;
     this.label18.Font      = new System.Drawing.Font("Tahoma", 9F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((System.Byte)(0)));
     this.label18.Location  = new System.Drawing.Point(16, 16);
     this.label18.Name      = "label18";
     this.label18.Size      = new System.Drawing.Size(280, 16);
     this.label18.TabIndex  = 117;
     this.label18.Text      = "FPCBT  : Fitness Package Branch Target";
     this.label18.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
     //
     // groupHdrMd_Service
     //
     this.groupHdrMd_Service.Appearance.BackColor            = System.Drawing.Color.FromArgb(((System.Byte)(192)), ((System.Byte)(255)), ((System.Byte)(192)));
     this.groupHdrMd_Service.Appearance.Options.UseBackColor = true;
     this.groupHdrMd_Service.BorderStyle = DevExpress.XtraEditors.Controls.BorderStyles.NoBorder;
     this.groupHdrMd_Service.Controls.Add(this.hdrMd_Service);
     this.groupHdrMd_Service.Location          = new System.Drawing.Point(0, 0);
     this.groupHdrMd_Service.LookAndFeel.Style = DevExpress.LookAndFeel.LookAndFeelStyle.Office2003;
     this.groupHdrMd_Service.LookAndFeel.UseDefaultLookAndFeel = false;
     this.groupHdrMd_Service.Name     = "groupHdrMd_Service";
     this.groupHdrMd_Service.Size     = new System.Drawing.Size(312, 32);
     this.groupHdrMd_Service.TabIndex = 5;
     this.groupHdrMd_Service.Text     = "groupControl1";
     //
     // hdrMd_Service
     //
     this.hdrMd_Service.BackColor = System.Drawing.Color.Transparent;
     this.hdrMd_Service.Font      = new System.Drawing.Font("Tahoma", 11.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((System.Byte)(0)));
     this.hdrMd_Service.Location  = new System.Drawing.Point(8, 8);
     this.hdrMd_Service.Name      = "hdrMd_Service";
     this.hdrMd_Service.Size      = new System.Drawing.Size(304, 23);
     this.hdrMd_Service.TabIndex  = 1;
     this.hdrMd_Service.Text      = "AMORE SALES COMMISSION LEGEND";
     this.hdrMd_Service.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
     //
     // frmMD_SalesCommission
     //
     this.AutoScaleBaseSize = new System.Drawing.Size(5, 13);
     this.ClientSize        = new System.Drawing.Size(312, 293);
     this.Controls.Add(this.groupCtrlMd_Service);
     this.Controls.Add(this.groupHdrMd_Service);
     this.Name = "frmMD_SalesCommission";
     this.Text = "Sales Commision";
     ((System.ComponentModel.ISupportInitialize)(this.groupCtrlMd_Service)).EndInit();
     this.groupCtrlMd_Service.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.groupHdrMd_Service)).EndInit();
     this.groupHdrMd_Service.ResumeLayout(false);
     this.ResumeLayout(false);
 }
Пример #39
0
 /// <summary>
 /// Required method for Designer support - do not modify
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     this.groupControl1   = new DevExpress.XtraEditors.GroupControl();
     this.txtDepositMoney = new DevExpress.XtraEditors.TextEdit();
     this.lblDepositMoney = new System.Windows.Forms.Label();
     this.Open            = new DevExpress.XtraEditors.SimpleButton();
     this.Cancel          = new DevExpress.XtraEditors.SimpleButton();
     ((System.ComponentModel.ISupportInitialize)(this.groupControl1)).BeginInit();
     this.groupControl1.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.txtDepositMoney.Properties)).BeginInit();
     this.SuspendLayout();
     //
     // groupControl1
     //
     this.groupControl1.Controls.Add(this.txtDepositMoney);
     this.groupControl1.Controls.Add(this.lblDepositMoney);
     this.groupControl1.Controls.Add(this.Open);
     this.groupControl1.Controls.Add(this.Cancel);
     this.groupControl1.Dock              = System.Windows.Forms.DockStyle.Fill;
     this.groupControl1.Location          = new System.Drawing.Point(0, 0);
     this.groupControl1.LookAndFeel.Style = DevExpress.LookAndFeel.LookAndFeelStyle.Skin;
     this.groupControl1.LookAndFeel.UseDefaultLookAndFeel = false;
     this.groupControl1.Name        = "groupControl1";
     this.groupControl1.ShowCaption = false;
     this.groupControl1.Size        = new System.Drawing.Size(292, 109);
     this.groupControl1.TabIndex    = 5;
     this.groupControl1.Text        = "groupControl1";
     //
     // txtDepositMoney
     //
     this.txtDepositMoney.EditValue = "";
     this.txtDepositMoney.Location  = new System.Drawing.Point(176, 16);
     this.txtDepositMoney.Name      = "txtDepositMoney";
     this.txtDepositMoney.TabIndex  = 3;
     //
     // lblDepositMoney
     //
     this.lblDepositMoney.Font     = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((System.Byte)(0)));
     this.lblDepositMoney.Location = new System.Drawing.Point(16, 16);
     this.lblDepositMoney.Name     = "lblDepositMoney";
     this.lblDepositMoney.Size     = new System.Drawing.Size(152, 23);
     this.lblDepositMoney.TabIndex = 0;
     this.lblDepositMoney.Text     = "Money to be deposited";
     //
     // Open
     //
     this.Open.Appearance.Font            = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold);
     this.Open.Appearance.Options.UseFont = true;
     this.Open.ButtonStyle = DevExpress.XtraEditors.Controls.BorderStyles.Simple;
     this.Open.Location    = new System.Drawing.Point(72, 56);
     this.Open.Name        = "Open";
     this.Open.Size        = new System.Drawing.Size(112, 20);
     this.Open.TabIndex    = 5;
     this.Open.Text        = "Save to safebox";
     //
     // Cancel
     //
     this.Cancel.Appearance.Font            = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold);
     this.Cancel.Appearance.Options.UseFont = true;
     this.Cancel.ButtonStyle = DevExpress.XtraEditors.Controls.BorderStyles.Simple;
     this.Cancel.Location    = new System.Drawing.Point(200, 56);
     this.Cancel.Name        = "Cancel";
     this.Cancel.Size        = new System.Drawing.Size(72, 20);
     this.Cancel.TabIndex    = 6;
     this.Cancel.Text        = "Cancel";
     //
     // frmDepositMoney
     //
     this.AutoScaleBaseSize = new System.Drawing.Size(5, 13);
     this.ClientSize        = new System.Drawing.Size(292, 109);
     this.Controls.Add(this.groupControl1);
     this.Name = "frmDepositMoney";
     this.Text = "Deposit Money .....";
     ((System.ComponentModel.ISupportInitialize)(this.groupControl1)).EndInit();
     this.groupControl1.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.txtDepositMoney.Properties)).EndInit();
     this.ResumeLayout(false);
 }
Пример #40
0
 /// <summary>
 /// Required method for Designer support - do not modify
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     this.btnTransfer             = new DevExpress.XtraEditors.SimpleButton();
     this.groupControl1           = new DevExpress.XtraEditors.GroupControl();
     this.gridLocker              = new DevExpress.XtraGrid.GridControl();
     this.GridViewLocker          = new DevExpress.XtraGrid.Views.Grid.GridView();
     this.nLockerNo               = new DevExpress.XtraGrid.Columns.GridColumn();
     this.strMembershipID         = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn1             = new DevExpress.XtraGrid.Columns.GridColumn();
     this.repositoryItemDateEdit2 = new DevExpress.XtraEditors.Repository.RepositoryItemDateEdit();
     this.GridColumn239           = new DevExpress.XtraGrid.Columns.GridColumn();
     this.strRemarks              = new DevExpress.XtraGrid.Columns.GridColumn();
     this.repositoryItemMemoEdit3 = new DevExpress.XtraEditors.Repository.RepositoryItemMemoEdit();
     this.repositoryItemMRUEdit1  = new DevExpress.XtraEditors.Repository.RepositoryItemMRUEdit();
     this.repositoryItemMemoEdit1 = new DevExpress.XtraEditors.Repository.RepositoryItemMemoEdit();
     this.repositoryItemMemoEdit2 = new DevExpress.XtraEditors.Repository.RepositoryItemMemoEdit();
     this.repositoryItemDateEdit1 = new DevExpress.XtraEditors.Repository.RepositoryItemDateEdit();
     this.btnCancel               = new DevExpress.XtraEditors.SimpleButton();
     ((System.ComponentModel.ISupportInitialize)(this.groupControl1)).BeginInit();
     this.groupControl1.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.gridLocker)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.GridViewLocker)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemDateEdit2)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemMemoEdit3)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemMRUEdit1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemMemoEdit1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemMemoEdit2)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemDateEdit1)).BeginInit();
     this.SuspendLayout();
     //
     // btnTransfer
     //
     this.btnTransfer.Appearance.Font            = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((System.Byte)(0)));
     this.btnTransfer.Appearance.Options.UseFont = true;
     this.btnTransfer.ButtonStyle = DevExpress.XtraEditors.Controls.BorderStyles.Simple;
     this.btnTransfer.Location    = new System.Drawing.Point(392, 8);
     this.btnTransfer.Name        = "btnTransfer";
     this.btnTransfer.Size        = new System.Drawing.Size(68, 20);
     this.btnTransfer.TabIndex    = 11;
     this.btnTransfer.Text        = "Transfer";
     this.btnTransfer.Click      += new System.EventHandler(this.btnTransfer_Click);
     //
     // groupControl1
     //
     this.groupControl1.Controls.Add(this.gridLocker);
     this.groupControl1.Location = new System.Drawing.Point(8, 32);
     this.groupControl1.Name     = "groupControl1";
     this.groupControl1.Size     = new System.Drawing.Size(552, 224);
     this.groupControl1.TabIndex = 12;
     //
     // gridLocker
     //
     this.gridLocker.Dock = System.Windows.Forms.DockStyle.Bottom;
     //
     // gridLocker.EmbeddedNavigator
     //
     this.gridLocker.EmbeddedNavigator.Name = "";
     this.gridLocker.Location          = new System.Drawing.Point(4, 12);
     this.gridLocker.LookAndFeel.Style = DevExpress.LookAndFeel.LookAndFeelStyle.Skin;
     this.gridLocker.LookAndFeel.UseDefaultLookAndFeel = false;
     this.gridLocker.LookAndFeel.UseWindowsXPTheme     = false;
     this.gridLocker.MainView = this.GridViewLocker;
     this.gridLocker.Name     = "gridLocker";
     this.gridLocker.RepositoryItems.AddRange(new DevExpress.XtraEditors.Repository.RepositoryItem[] {
         this.repositoryItemMRUEdit1,
         this.repositoryItemMemoEdit1,
         this.repositoryItemMemoEdit2,
         this.repositoryItemDateEdit1,
         this.repositoryItemMemoEdit3,
         this.repositoryItemDateEdit2
     });
     this.gridLocker.Size     = new System.Drawing.Size(544, 208);
     this.gridLocker.TabIndex = 10;
     this.gridLocker.ViewCollection.AddRange(new DevExpress.XtraGrid.Views.Base.BaseView[] {
         this.GridViewLocker
     });
     //
     // GridViewLocker
     //
     this.GridViewLocker.Columns.AddRange(new DevExpress.XtraGrid.Columns.GridColumn[] {
         this.nLockerNo,
         this.strMembershipID,
         this.gridColumn1,
         this.GridColumn239,
         this.strRemarks
     });
     this.GridViewLocker.GridControl = this.gridLocker;
     this.GridViewLocker.Name        = "GridViewLocker";
     this.GridViewLocker.OptionsCustomization.AllowFilter = false;
     this.GridViewLocker.OptionsCustomization.AllowGroup  = false;
     this.GridViewLocker.OptionsCustomization.AllowSort   = false;
     this.GridViewLocker.OptionsView.ShowGroupPanel       = false;
     //
     // nLockerNo
     //
     this.nLockerNo.Caption   = "Locker No";
     this.nLockerNo.FieldName = "nLockerNo";
     this.nLockerNo.Name      = "nLockerNo";
     this.nLockerNo.OptionsColumn.AllowEdit = false;
     this.nLockerNo.Visible      = true;
     this.nLockerNo.VisibleIndex = 0;
     this.nLockerNo.Width        = 146;
     //
     // strMembershipID
     //
     this.strMembershipID.Caption   = "Membership ID";
     this.strMembershipID.FieldName = "strMembershipID";
     this.strMembershipID.Name      = "strMembershipID";
     this.strMembershipID.OptionsColumn.AllowEdit = false;
     this.strMembershipID.Visible      = true;
     this.strMembershipID.VisibleIndex = 1;
     this.strMembershipID.Width        = 196;
     //
     // gridColumn1
     //
     this.gridColumn1.Caption      = "Expiry Date";
     this.gridColumn1.ColumnEdit   = this.repositoryItemDateEdit2;
     this.gridColumn1.Name         = "gridColumn1";
     this.gridColumn1.Visible      = true;
     this.gridColumn1.VisibleIndex = 2;
     this.gridColumn1.Width        = 159;
     //
     // repositoryItemDateEdit2
     //
     this.repositoryItemDateEdit2.AutoHeight = false;
     this.repositoryItemDateEdit2.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
         new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)
     });
     this.repositoryItemDateEdit2.Name = "repositoryItemDateEdit2";
     //
     // GridColumn239
     //
     this.GridColumn239.Caption   = "Status";
     this.GridColumn239.FieldName = "Status";
     this.GridColumn239.Name      = "GridColumn239";
     this.GridColumn239.OptionsColumn.AllowEdit = false;
     this.GridColumn239.Visible      = true;
     this.GridColumn239.VisibleIndex = 3;
     this.GridColumn239.Width        = 193;
     //
     // strRemarks
     //
     this.strRemarks.Caption      = "Remark";
     this.strRemarks.ColumnEdit   = this.repositoryItemMemoEdit3;
     this.strRemarks.FieldName    = "strRemarks";
     this.strRemarks.Name         = "strRemarks";
     this.strRemarks.Visible      = true;
     this.strRemarks.VisibleIndex = 4;
     this.strRemarks.Width        = 273;
     //
     // repositoryItemMemoEdit3
     //
     this.repositoryItemMemoEdit3.Name = "repositoryItemMemoEdit3";
     //
     // repositoryItemMRUEdit1
     //
     this.repositoryItemMRUEdit1.AutoHeight = false;
     this.repositoryItemMRUEdit1.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
         new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)
     });
     this.repositoryItemMRUEdit1.Name = "repositoryItemMRUEdit1";
     //
     // repositoryItemMemoEdit1
     //
     this.repositoryItemMemoEdit1.Name = "repositoryItemMemoEdit1";
     //
     // repositoryItemMemoEdit2
     //
     this.repositoryItemMemoEdit2.Name = "repositoryItemMemoEdit2";
     //
     // repositoryItemDateEdit1
     //
     this.repositoryItemDateEdit1.AutoHeight = false;
     this.repositoryItemDateEdit1.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
         new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)
     });
     this.repositoryItemDateEdit1.Name = "repositoryItemDateEdit1";
     //
     // btnCancel
     //
     this.btnCancel.Appearance.Font            = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((System.Byte)(0)));
     this.btnCancel.Appearance.Options.UseFont = true;
     this.btnCancel.ButtonStyle = DevExpress.XtraEditors.Controls.BorderStyles.Simple;
     this.btnCancel.Location    = new System.Drawing.Point(472, 8);
     this.btnCancel.Name        = "btnCancel";
     this.btnCancel.Size        = new System.Drawing.Size(68, 20);
     this.btnCancel.TabIndex    = 13;
     this.btnCancel.Text        = "Cancel";
     this.btnCancel.Click      += new System.EventHandler(this.btnCancel_Click);
     //
     // frmTransferLocker
     //
     this.AutoScaleBaseSize = new System.Drawing.Size(5, 13);
     this.ClientSize        = new System.Drawing.Size(568, 269);
     this.Controls.Add(this.btnCancel);
     this.Controls.Add(this.groupControl1);
     this.Controls.Add(this.btnTransfer);
     this.Name  = "frmTransferLocker";
     this.Text  = "Transfer";
     this.Load += new System.EventHandler(this.frmTransferLocker_Load);
     ((System.ComponentModel.ISupportInitialize)(this.groupControl1)).EndInit();
     this.groupControl1.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.gridLocker)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.GridViewLocker)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemDateEdit2)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemMemoEdit3)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemMRUEdit1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemMemoEdit1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemMemoEdit2)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemDateEdit1)).EndInit();
     this.ResumeLayout(false);
 }
Пример #41
0
 /// <summary>
 /// 设计器支持所需的方法 - 不要使用代码编辑器修改
 /// 此方法的内容。
 /// </summary>
 private void InitializeComponent()
 {
     System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(frmItemQuery));
     this.treeListColumnName     = new DevExpress.XtraTreeList.Columns.TreeListColumn();
     this.treeListColumnCode     = new DevExpress.XtraTreeList.Columns.TreeListColumn();
     this.treeListColumnID       = new DevExpress.XtraTreeList.Columns.TreeListColumn();
     this.treeListColumnParentID = new DevExpress.XtraTreeList.Columns.TreeListColumn();
     this.groupControlDataList   = new DevExpress.XtraEditors.GroupControl();
     this.gridControlDetail      = new DevExpress.XtraGrid.GridControl();
     this.gridView1              = new DevExpress.XtraGrid.Views.Grid.GridView();
     this.gridColumn1            = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumnItemTypeID   = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn2            = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn3            = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumnItemAttnCode = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumnRemark       = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn4            = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn5            = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn6            = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn7            = new DevExpress.XtraGrid.Columns.GridColumn();
     this.drpGridYesOrNo         = new DevExpress.XtraEditors.Repository.RepositoryItemImageComboBox();
     this.groupControl1          = new DevExpress.XtraEditors.GroupControl();
     this.treeList1              = new DevExpress.XtraTreeList.TreeList();
     this.groupControl2          = new DevExpress.XtraEditors.GroupControl();
     this.txtQItemModel          = new DevExpress.XtraEditors.TextEdit();
     this.label15            = new System.Windows.Forms.Label();
     this.txtQItemAttnCode   = new DevExpress.XtraEditors.TextEdit();
     this.label4             = new System.Windows.Forms.Label();
     this.btnToExcel         = new DevExpress.XtraEditors.SimpleButton();
     this.txtQItemCode       = new DevExpress.XtraEditors.TextEdit();
     this.label2             = new System.Windows.Forms.Label();
     this.txtQItemStd        = new DevExpress.XtraEditors.TextEdit();
     this.label9             = new System.Windows.Forms.Label();
     this.txtQItemName       = new DevExpress.XtraEditors.TextEdit();
     this.label1             = new System.Windows.Forms.Label();
     this.gridColumnItemCode = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumnItemUnit = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumnItemStd  = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumnItemName = new DevExpress.XtraGrid.Columns.GridColumn();
     ((System.ComponentModel.ISupportInitialize)(this.groupControlDataList)).BeginInit();
     this.groupControlDataList.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.gridControlDetail)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridView1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.drpGridYesOrNo)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.groupControl1)).BeginInit();
     this.groupControl1.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.treeList1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.groupControl2)).BeginInit();
     this.groupControl2.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.txtQItemModel.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtQItemAttnCode.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtQItemCode.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtQItemStd.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtQItemName.Properties)).BeginInit();
     this.SuspendLayout();
     //
     // BaseIlYesOrNo
     //
     this.BaseIlYesOrNo.ImageStream = ((System.Windows.Forms.ImageListStreamer)(resources.GetObject("BaseIlYesOrNo.ImageStream")));
     this.BaseIlYesOrNo.Images.SetKeyName(0, "");
     this.BaseIlYesOrNo.Images.SetKeyName(1, "");
     //
     // BaseIlAll
     //
     this.BaseIlAll.ImageStream = ((System.Windows.Forms.ImageListStreamer)(resources.GetObject("BaseIlAll.ImageStream")));
     this.BaseIlAll.Images.SetKeyName(0, "");
     this.BaseIlAll.Images.SetKeyName(1, "");
     this.BaseIlAll.Images.SetKeyName(2, "");
     this.BaseIlAll.Images.SetKeyName(3, "");
     this.BaseIlAll.Images.SetKeyName(4, "");
     this.BaseIlAll.Images.SetKeyName(5, "");
     this.BaseIlAll.Images.SetKeyName(6, "");
     this.BaseIlAll.Images.SetKeyName(7, "");
     this.BaseIlAll.Images.SetKeyName(8, "");
     this.BaseIlAll.Images.SetKeyName(9, "");
     this.BaseIlAll.Images.SetKeyName(10, "");
     this.BaseIlAll.Images.SetKeyName(11, "");
     this.BaseIlAll.Images.SetKeyName(12, "");
     this.BaseIlAll.Images.SetKeyName(13, "");
     this.BaseIlAll.Images.SetKeyName(14, "");
     this.BaseIlAll.Images.SetKeyName(15, "");
     this.BaseIlAll.Images.SetKeyName(16, "");
     this.BaseIlAll.Images.SetKeyName(17, "");
     this.BaseIlAll.Images.SetKeyName(18, "");
     this.BaseIlAll.Images.SetKeyName(19, "");
     this.BaseIlAll.Images.SetKeyName(20, "");
     this.BaseIlAll.Images.SetKeyName(21, "");
     this.BaseIlAll.Images.SetKeyName(22, "");
     this.BaseIlAll.Images.SetKeyName(23, "");
     this.BaseIlAll.Images.SetKeyName(24, "");
     this.BaseIlAll.Images.SetKeyName(25, "");
     this.BaseIlAll.Images.SetKeyName(26, "");
     this.BaseIlAll.Images.SetKeyName(27, "");
     this.BaseIlAll.Images.SetKeyName(28, "");
     this.BaseIlAll.Images.SetKeyName(29, "");
     this.BaseIlAll.Images.SetKeyName(30, "");
     this.BaseIlAll.Images.SetKeyName(31, "");
     this.BaseIlAll.Images.SetKeyName(32, "");
     this.BaseIlAll.Images.SetKeyName(33, "");
     this.BaseIlAll.Images.SetKeyName(34, "");
     //
     // treeListColumnName
     //
     this.treeListColumnName.Caption   = "名称";
     this.treeListColumnName.FieldName = "Name";
     this.treeListColumnName.MinWidth  = 151;
     this.treeListColumnName.Name      = "treeListColumnName";
     this.treeListColumnName.OptionsColumn.AllowEdit = false;
     this.treeListColumnName.OptionsColumn.ReadOnly  = true;
     this.treeListColumnName.VisibleIndex            = 0;
     this.treeListColumnName.Width = 151;
     //
     // treeListColumnCode
     //
     this.treeListColumnCode.Caption             = "编码";
     this.treeListColumnCode.FieldName           = "Code";
     this.treeListColumnCode.Format.FormatString = "d";
     this.treeListColumnCode.Format.FormatType   = DevExpress.Utils.FormatType.DateTime;
     this.treeListColumnCode.MinWidth            = 45;
     this.treeListColumnCode.Name = "treeListColumnCode";
     this.treeListColumnCode.OptionsColumn.AllowEdit = false;
     this.treeListColumnCode.OptionsColumn.ReadOnly  = true;
     this.treeListColumnCode.Width = 81;
     //
     // treeListColumnID
     //
     this.treeListColumnID.Caption   = "ID";
     this.treeListColumnID.FieldName = "ID";
     this.treeListColumnID.MinWidth  = 45;
     this.treeListColumnID.Name      = "treeListColumnID";
     this.treeListColumnID.OptionsColumn.AllowEdit = false;
     this.treeListColumnID.OptionsColumn.ReadOnly  = true;
     this.treeListColumnID.Width = 109;
     //
     // treeListColumnParentID
     //
     this.treeListColumnParentID.Caption   = "父节点";
     this.treeListColumnParentID.FieldName = "ParentID";
     this.treeListColumnParentID.Name      = "treeListColumnParentID";
     this.treeListColumnParentID.OptionsColumn.AllowEdit = false;
     this.treeListColumnParentID.OptionsColumn.ReadOnly  = true;
     this.treeListColumnParentID.Width = 49;
     //
     // groupControlDataList
     //
     this.groupControlDataList.AppearanceCaption.ForeColor            = System.Drawing.Color.FromArgb(((int)(((byte)(64)))), ((int)(((byte)(64)))), ((int)(((byte)(64)))));
     this.groupControlDataList.AppearanceCaption.Options.UseForeColor = true;
     this.groupControlDataList.Controls.Add(this.gridControlDetail);
     this.groupControlDataList.Dock     = System.Windows.Forms.DockStyle.Fill;
     this.groupControlDataList.Location = new System.Drawing.Point(197, 56);
     this.groupControlDataList.Name     = "groupControlDataList";
     this.groupControlDataList.Size     = new System.Drawing.Size(727, 478);
     this.groupControlDataList.TabIndex = 275;
     this.groupControlDataList.Text     = "数据列表";
     //
     // gridControlDetail
     //
     this.gridControlDetail.Dock = System.Windows.Forms.DockStyle.Fill;
     this.gridControlDetail.EmbeddedNavigator.Name = "";
     this.gridControlDetail.Location          = new System.Drawing.Point(4, 19);
     this.gridControlDetail.LookAndFeel.Style = DevExpress.LookAndFeel.LookAndFeelStyle.UltraFlat;
     this.gridControlDetail.MainView          = this.gridView1;
     this.gridControlDetail.Name = "gridControlDetail";
     this.gridControlDetail.RepositoryItems.AddRange(new DevExpress.XtraEditors.Repository.RepositoryItem[] {
         this.drpGridYesOrNo
     });
     this.gridControlDetail.Size     = new System.Drawing.Size(719, 455);
     this.gridControlDetail.TabIndex = 34;
     this.gridControlDetail.ViewCollection.AddRange(new DevExpress.XtraGrid.Views.Base.BaseView[] {
         this.gridView1
     });
     //
     // gridView1
     //
     this.gridView1.BorderStyle = DevExpress.XtraEditors.Controls.BorderStyles.Office2003;
     this.gridView1.Columns.AddRange(new DevExpress.XtraGrid.Columns.GridColumn[] {
         this.gridColumn1,
         this.gridColumnItemTypeID,
         this.gridColumn2,
         this.gridColumn3,
         this.gridColumnItemAttnCode,
         this.gridColumnRemark,
         this.gridColumn4,
         this.gridColumn5,
         this.gridColumn6,
         this.gridColumn7
     });
     this.gridView1.GridControl = this.gridControlDetail;
     this.gridView1.Name        = "gridView1";
     this.gridView1.OptionsSelection.EnableAppearanceFocusedCell = false;
     this.gridView1.OptionsSelection.EnableAppearanceFocusedRow  = false;
     this.gridView1.OptionsView.ColumnAutoWidth = false;
     this.gridView1.OptionsView.ShowGroupPanel  = false;
     //
     // gridColumn1
     //
     this.gridColumn1.Caption      = "物品编码";
     this.gridColumn1.FieldName    = "ItemCode";
     this.gridColumn1.Name         = "gridColumn1";
     this.gridColumn1.Visible      = true;
     this.gridColumn1.VisibleIndex = 0;
     //
     // gridColumnItemTypeID
     //
     this.gridColumnItemTypeID.Caption      = "物品类型";
     this.gridColumnItemTypeID.FieldName    = "ItemTypeID";
     this.gridColumnItemTypeID.Name         = "gridColumnItemTypeID";
     this.gridColumnItemTypeID.Visible      = true;
     this.gridColumnItemTypeID.VisibleIndex = 1;
     //
     // gridColumn2
     //
     this.gridColumn2.Caption      = "物品名称";
     this.gridColumn2.FieldName    = "ItemName";
     this.gridColumn2.Name         = "gridColumn2";
     this.gridColumn2.Visible      = true;
     this.gridColumn2.VisibleIndex = 2;
     //
     // gridColumn3
     //
     this.gridColumn3.Caption      = "物品规格";
     this.gridColumn3.FieldName    = "ItemStd";
     this.gridColumn3.Name         = "gridColumn3";
     this.gridColumn3.Visible      = true;
     this.gridColumn3.VisibleIndex = 3;
     //
     // gridColumnItemAttnCode
     //
     this.gridColumnItemAttnCode.Caption      = "辅助编码";
     this.gridColumnItemAttnCode.FieldName    = "ItemAttnCode";
     this.gridColumnItemAttnCode.Name         = "gridColumnItemAttnCode";
     this.gridColumnItemAttnCode.Visible      = true;
     this.gridColumnItemAttnCode.VisibleIndex = 5;
     //
     // gridColumnRemark
     //
     this.gridColumnRemark.Caption      = "备注";
     this.gridColumnRemark.FieldName    = "Remark";
     this.gridColumnRemark.Name         = "gridColumnRemark";
     this.gridColumnRemark.Visible      = true;
     this.gridColumnRemark.VisibleIndex = 6;
     //
     // gridColumn4
     //
     this.gridColumn4.Caption      = "单位";
     this.gridColumn4.FieldName    = "ItemUnit";
     this.gridColumn4.Name         = "gridColumn4";
     this.gridColumn4.Visible      = true;
     this.gridColumn4.VisibleIndex = 7;
     //
     // gridColumn5
     //
     this.gridColumn5.Caption      = "季节";
     this.gridColumn5.FieldName    = "ItemrSeason";
     this.gridColumn5.Name         = "gridColumn5";
     this.gridColumn5.Visible      = true;
     this.gridColumn5.VisibleIndex = 4;
     this.gridColumn5.Width        = 66;
     //
     // gridColumn6
     //
     this.gridColumn6.Caption      = "类别";
     this.gridColumn6.FieldName    = "ItemClassName";
     this.gridColumn6.Name         = "gridColumn6";
     this.gridColumn6.Visible      = true;
     this.gridColumn6.VisibleIndex = 8;
     //
     // gridColumn7
     //
     this.gridColumn7.Caption      = "品名";
     this.gridColumn7.FieldName    = "ItemModel";
     this.gridColumn7.Name         = "gridColumn7";
     this.gridColumn7.Visible      = true;
     this.gridColumn7.VisibleIndex = 9;
     //
     // drpGridYesOrNo
     //
     this.drpGridYesOrNo.AutoHeight = false;
     this.drpGridYesOrNo.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
         new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)
     });
     this.drpGridYesOrNo.GlyphAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.drpGridYesOrNo.Items.AddRange(new DevExpress.XtraEditors.Controls.ImageComboBoxItem[] {
         new DevExpress.XtraEditors.Controls.ImageComboBoxItem("是", 1, 1),
         new DevExpress.XtraEditors.Controls.ImageComboBoxItem("否", 0, 0)
     });
     this.drpGridYesOrNo.Name        = "drpGridYesOrNo";
     this.drpGridYesOrNo.SmallImages = this.BaseIlYesOrNo;
     //
     // groupControl1
     //
     this.groupControl1.AppearanceCaption.ForeColor            = System.Drawing.Color.FromArgb(((int)(((byte)(64)))), ((int)(((byte)(64)))), ((int)(((byte)(64)))));
     this.groupControl1.AppearanceCaption.Options.UseForeColor = true;
     this.groupControl1.Controls.Add(this.treeList1);
     this.groupControl1.Dock     = System.Windows.Forms.DockStyle.Left;
     this.groupControl1.Location = new System.Drawing.Point(0, 56);
     this.groupControl1.Name     = "groupControl1";
     this.groupControl1.Size     = new System.Drawing.Size(197, 478);
     this.groupControl1.TabIndex = 274;
     this.groupControl1.Text     = "数据列表";
     //
     // treeList1
     //
     this.treeList1.AllowDrop = true;
     this.treeList1.Appearance.EvenRow.BackColor                  = System.Drawing.Color.White;
     this.treeList1.Appearance.EvenRow.Options.UseBackColor       = true;
     this.treeList1.Appearance.HeaderPanel.Options.UseTextOptions = true;
     this.treeList1.Appearance.HeaderPanel.TextOptions.Trimming   = DevExpress.Utils.Trimming.None;
     this.treeList1.Columns.AddRange(new DevExpress.XtraTreeList.Columns.TreeListColumn[] {
         this.treeListColumnID,
         this.treeListColumnCode,
         this.treeListColumnName,
         this.treeListColumnParentID
     });
     this.treeList1.Dock     = System.Windows.Forms.DockStyle.Fill;
     this.treeList1.Location = new System.Drawing.Point(4, 19);
     this.treeList1.Name     = "treeList1";
     this.treeList1.BeginUnboundLoad();
     this.treeList1.AppendNode(new object[] {
         null,
         null,
         null,
         0
     }, -1, 0, 0, 7);
     this.treeList1.EndUnboundLoad();
     this.treeList1.OptionsBehavior.AutoChangeParent       = false;
     this.treeList1.OptionsBehavior.AutoNodeHeight         = false;
     this.treeList1.OptionsBehavior.CanCloneNodesOnDrop    = true;
     this.treeList1.OptionsBehavior.CloseEditorOnLostFocus = false;
     this.treeList1.OptionsBehavior.DragNodes           = true;
     this.treeList1.OptionsBehavior.KeepSelectedOnClick = false;
     this.treeList1.OptionsBehavior.ShowEditorOnMouseUp = true;
     this.treeList1.OptionsBehavior.SmartMouseHover     = false;
     this.treeList1.OptionsView.AutoWidth = false;
     this.treeList1.OptionsView.EnableAppearanceEvenRow = true;
     this.treeList1.OptionsView.ShowFocusedFrame        = false;
     this.treeList1.Size                = new System.Drawing.Size(189, 455);
     this.treeList1.TabIndex            = 33;
     this.treeList1.TreeLineStyle       = DevExpress.XtraTreeList.LineStyle.Solid;
     this.treeList1.FocusedNodeChanged += new DevExpress.XtraTreeList.FocusedNodeChangedEventHandler(this.treeList1_FocusedNodeChanged);
     //
     // groupControl2
     //
     this.groupControl2.AppearanceCaption.ForeColor            = System.Drawing.Color.FromArgb(((int)(((byte)(64)))), ((int)(((byte)(64)))), ((int)(((byte)(64)))));
     this.groupControl2.AppearanceCaption.Options.UseForeColor = true;
     this.groupControl2.Controls.Add(this.txtQItemModel);
     this.groupControl2.Controls.Add(this.label15);
     this.groupControl2.Controls.Add(this.txtQItemAttnCode);
     this.groupControl2.Controls.Add(this.label4);
     this.groupControl2.Controls.Add(this.btnToExcel);
     this.groupControl2.Controls.Add(this.txtQItemCode);
     this.groupControl2.Controls.Add(this.label2);
     this.groupControl2.Controls.Add(this.txtQItemStd);
     this.groupControl2.Controls.Add(this.label9);
     this.groupControl2.Controls.Add(this.txtQItemName);
     this.groupControl2.Controls.Add(this.label1);
     this.groupControl2.Dock     = System.Windows.Forms.DockStyle.Top;
     this.groupControl2.Location = new System.Drawing.Point(0, 0);
     this.groupControl2.Name     = "groupControl2";
     this.groupControl2.Size     = new System.Drawing.Size(924, 56);
     this.groupControl2.TabIndex = 277;
     this.groupControl2.Text     = "数据列表";
     //
     // txtQItemModel
     //
     this.txtQItemModel.EditValue = "";
     this.txtQItemModel.Location  = new System.Drawing.Point(692, 21);
     this.txtQItemModel.Name      = "txtQItemModel";
     this.txtQItemModel.Properties.BorderStyle = DevExpress.XtraEditors.Controls.BorderStyles.Style3D;
     this.txtQItemModel.Properties.MaxLength   = 50;
     this.txtQItemModel.Size              = new System.Drawing.Size(70, 23);
     this.txtQItemModel.TabIndex          = 5;
     this.txtQItemModel.EditValueChanged += new System.EventHandler(this.drpQ_EditValueChanged);
     //
     // label15
     //
     this.label15.AutoSize = true;
     this.label15.Location = new System.Drawing.Point(658, 26);
     this.label15.Name     = "label15";
     this.label15.Size     = new System.Drawing.Size(29, 12);
     this.label15.TabIndex = 301;
     this.label15.Text     = "品名";
     //
     // txtQItemAttnCode
     //
     this.txtQItemAttnCode.Location          = new System.Drawing.Point(573, 22);
     this.txtQItemAttnCode.Name              = "txtQItemAttnCode";
     this.txtQItemAttnCode.Size              = new System.Drawing.Size(70, 21);
     this.txtQItemAttnCode.TabIndex          = 4;
     this.txtQItemAttnCode.EditValueChanged += new System.EventHandler(this.drpQ_EditValueChanged);
     //
     // label4
     //
     this.label4.AutoSize = true;
     this.label4.Location = new System.Drawing.Point(517, 26);
     this.label4.Name     = "label4";
     this.label4.Size     = new System.Drawing.Size(53, 12);
     this.label4.TabIndex = 298;
     this.label4.Text     = "辅助编码";
     //
     // btnToExcel
     //
     this.btnToExcel.ButtonStyle = DevExpress.XtraEditors.Controls.BorderStyles.Office2003;
     this.btnToExcel.Location    = new System.Drawing.Point(788, 21);
     this.btnToExcel.Name        = "btnToExcel";
     this.btnToExcel.Size        = new System.Drawing.Size(75, 23);
     this.btnToExcel.TabIndex    = 293;
     this.btnToExcel.Text        = "转Excel";
     this.btnToExcel.Click      += new System.EventHandler(this.btnToExcel_Click);
     //
     // txtQItemCode
     //
     this.txtQItemCode.EditValue = "";
     this.txtQItemCode.Location  = new System.Drawing.Point(55, 21);
     this.txtQItemCode.Name      = "txtQItemCode";
     this.txtQItemCode.Properties.BorderStyle = DevExpress.XtraEditors.Controls.BorderStyles.Style3D;
     this.txtQItemCode.Size              = new System.Drawing.Size(88, 23);
     this.txtQItemCode.TabIndex          = 1;
     this.txtQItemCode.EditValueChanged += new System.EventHandler(this.drpQ_EditValueChanged);
     //
     // label2
     //
     this.label2.AutoSize = true;
     this.label2.Location = new System.Drawing.Point(21, 26);
     this.label2.Name     = "label2";
     this.label2.Size     = new System.Drawing.Size(29, 12);
     this.label2.TabIndex = 291;
     this.label2.Text     = "编码";
     //
     // txtQItemStd
     //
     this.txtQItemStd.EditValue = "";
     this.txtQItemStd.Location  = new System.Drawing.Point(423, 21);
     this.txtQItemStd.Name      = "txtQItemStd";
     this.txtQItemStd.Properties.BorderStyle = DevExpress.XtraEditors.Controls.BorderStyles.Style3D;
     this.txtQItemStd.Size              = new System.Drawing.Size(88, 23);
     this.txtQItemStd.TabIndex          = 3;
     this.txtQItemStd.EditValueChanged += new System.EventHandler(this.drpQ_EditValueChanged);
     //
     // label9
     //
     this.label9.AutoSize = true;
     this.label9.Location = new System.Drawing.Point(391, 26);
     this.label9.Name     = "label9";
     this.label9.Size     = new System.Drawing.Size(29, 12);
     this.label9.TabIndex = 289;
     this.label9.Text     = "规格";
     //
     // txtQItemName
     //
     this.txtQItemName.EditValue = "";
     this.txtQItemName.Location  = new System.Drawing.Point(191, 21);
     this.txtQItemName.Name      = "txtQItemName";
     this.txtQItemName.Properties.BorderStyle = DevExpress.XtraEditors.Controls.BorderStyles.Style3D;
     this.txtQItemName.Size              = new System.Drawing.Size(184, 23);
     this.txtQItemName.TabIndex          = 2;
     this.txtQItemName.EditValueChanged += new System.EventHandler(this.drpQ_EditValueChanged);
     //
     // label1
     //
     this.label1.AutoSize = true;
     this.label1.Location = new System.Drawing.Point(157, 26);
     this.label1.Name     = "label1";
     this.label1.Size     = new System.Drawing.Size(29, 12);
     this.label1.TabIndex = 287;
     this.label1.Text     = "名称";
     //
     // gridColumnItemCode
     //
     this.gridColumnItemCode.Caption   = "纱线编码";
     this.gridColumnItemCode.FieldName = "ItemCode";
     this.gridColumnItemCode.Name      = "gridColumnItemCode";
     this.gridColumnItemCode.OptionsColumn.AllowEdit = false;
     this.gridColumnItemCode.OptionsColumn.ReadOnly  = true;
     this.gridColumnItemCode.Visible      = true;
     this.gridColumnItemCode.VisibleIndex = 0;
     this.gridColumnItemCode.Width        = 90;
     //
     // gridColumnItemUnit
     //
     this.gridColumnItemUnit.Caption   = "单位";
     this.gridColumnItemUnit.FieldName = "ItemUnit";
     this.gridColumnItemUnit.Name      = "gridColumnItemUnit";
     this.gridColumnItemUnit.OptionsColumn.AllowEdit = false;
     this.gridColumnItemUnit.OptionsColumn.ReadOnly  = true;
     this.gridColumnItemUnit.Visible      = true;
     this.gridColumnItemUnit.VisibleIndex = 3;
     this.gridColumnItemUnit.Width        = 61;
     //
     // gridColumnItemStd
     //
     this.gridColumnItemStd.Caption   = "纱线支数";
     this.gridColumnItemStd.FieldName = "ItemStd";
     this.gridColumnItemStd.Name      = "gridColumnItemStd";
     this.gridColumnItemStd.OptionsColumn.AllowEdit = false;
     this.gridColumnItemStd.OptionsColumn.ReadOnly  = true;
     this.gridColumnItemStd.Visible      = true;
     this.gridColumnItemStd.VisibleIndex = 2;
     this.gridColumnItemStd.Width        = 90;
     //
     // gridColumnItemName
     //
     this.gridColumnItemName.Caption   = "纱线成份";
     this.gridColumnItemName.FieldName = "ItemName";
     this.gridColumnItemName.Name      = "gridColumnItemName";
     this.gridColumnItemName.OptionsColumn.AllowEdit = false;
     this.gridColumnItemName.OptionsColumn.ReadOnly  = true;
     this.gridColumnItemName.Visible      = true;
     this.gridColumnItemName.VisibleIndex = 1;
     this.gridColumnItemName.Width        = 263;
     //
     // frmItemQuery
     //
     this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 12F);
     this.ClientSize          = new System.Drawing.Size(924, 534);
     this.Controls.Add(this.groupControlDataList);
     this.Controls.Add(this.groupControl1);
     this.Controls.Add(this.groupControl2);
     this.Name  = "frmItemQuery";
     this.Text  = "纱种查询";
     this.Load += new System.EventHandler(this.frmItemQuery_Load);
     this.Controls.SetChildIndex(this.groupControl2, 0);
     this.Controls.SetChildIndex(this.groupControl1, 0);
     this.Controls.SetChildIndex(this.groupControlDataList, 0);
     this.Controls.SetChildIndex(this.BaseFocusLabelTemp, 0);
     ((System.ComponentModel.ISupportInitialize)(this.groupControlDataList)).EndInit();
     this.groupControlDataList.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.gridControlDetail)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridView1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.drpGridYesOrNo)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.groupControl1)).EndInit();
     this.groupControl1.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.treeList1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.groupControl2)).EndInit();
     this.groupControl2.ResumeLayout(false);
     this.groupControl2.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(this.txtQItemModel.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtQItemAttnCode.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtQItemCode.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtQItemStd.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtQItemName.Properties)).EndInit();
     this.ResumeLayout(false);
 }
Пример #42
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.panelSun       = new System.Windows.Forms.Panel();
     this.panelMonday    = new System.Windows.Forms.Panel();
     this.lblMon         = new System.Windows.Forms.Label();
     this.txtMonday      = new System.Windows.Forms.Label();
     this.panel4         = new System.Windows.Forms.Panel();
     this.lblTUE         = new System.Windows.Forms.Label();
     this.txtTUE         = new System.Windows.Forms.Label();
     this.panelFriday    = new System.Windows.Forms.Panel();
     this.lblFRI         = new System.Windows.Forms.Label();
     this.txtFriday      = new System.Windows.Forms.Label();
     this.panelFri       = new System.Windows.Forms.Panel();
     this.panelThu       = new System.Windows.Forms.Panel();
     this.panelWed       = new System.Windows.Forms.Panel();
     this.panelTue       = new System.Windows.Forms.Panel();
     this.panelMon       = new System.Windows.Forms.Panel();
     this.panelWednesday = new System.Windows.Forms.Panel();
     this.lblWED         = new System.Windows.Forms.Label();
     this.txtWED         = new System.Windows.Forms.Label();
     this.panelThursday  = new System.Windows.Forms.Panel();
     this.lblThu         = new System.Windows.Forms.Label();
     this.txtThur        = new System.Windows.Forms.Label();
     this.panelSunday    = new System.Windows.Forms.Panel();
     this.lblSUN         = new System.Windows.Forms.Label();
     this.txtSunday      = new System.Windows.Forms.Label();
     this.groupBox1      = new System.Windows.Forms.GroupBox();
     this.dtDate         = new System.Windows.Forms.MonthCalendar();
     this.label2         = new System.Windows.Forms.Label();
     ((System.ComponentModel.ISupportInitialize)(this.groupControl1)).BeginInit();
     this.groupControl1.SuspendLayout();
     this.panelMonday.SuspendLayout();
     this.panel4.SuspendLayout();
     this.panelFriday.SuspendLayout();
     this.panelWednesday.SuspendLayout();
     this.panelThursday.SuspendLayout();
     this.panelSunday.SuspendLayout();
     this.groupBox1.SuspendLayout();
     this.SuspendLayout();
     //
     // groupControl1
     //
     this.groupControl1.Appearance.BackColor            = System.Drawing.Color.Transparent;
     this.groupControl1.Appearance.Options.UseBackColor = true;
     this.groupControl1.BorderStyle = DevExpress.XtraEditors.Controls.BorderStyles.NoBorder;
     this.groupControl1.Controls.Add(this.panelSun);
     this.groupControl1.Controls.Add(this.panelMonday);
     this.groupControl1.Controls.Add(this.panel4);
     this.groupControl1.Controls.Add(this.panelFriday);
     this.groupControl1.Controls.Add(this.panelFri);
     this.groupControl1.Controls.Add(this.panelThu);
     this.groupControl1.Controls.Add(this.panelWed);
     this.groupControl1.Controls.Add(this.panelTue);
     this.groupControl1.Controls.Add(this.panelMon);
     this.groupControl1.Controls.Add(this.panelWednesday);
     this.groupControl1.Controls.Add(this.panelThursday);
     this.groupControl1.Controls.Add(this.panelSunday);
     this.groupControl1.Location = new System.Drawing.Point(0, 136);
     this.groupControl1.LookAndFeel.UseDefaultLookAndFeel = false;
     this.groupControl1.Name        = "groupControl1";
     this.groupControl1.ShowCaption = false;
     this.groupControl1.Size        = new System.Drawing.Size(784, 552);
     this.groupControl1.TabIndex    = 32;
     //
     // panelSun
     //
     this.panelSun.BackColor = System.Drawing.Color.Transparent;
     this.panelSun.Location  = new System.Drawing.Point(8, 56);
     this.panelSun.Name      = "panelSun";
     this.panelSun.Size      = new System.Drawing.Size(128, 480);
     this.panelSun.TabIndex  = 55;
     //
     // panelMonday
     //
     this.panelMonday.BackColor   = System.Drawing.Color.WhiteSmoke;
     this.panelMonday.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
     this.panelMonday.Controls.Add(this.lblMon);
     this.panelMonday.Controls.Add(this.txtMonday);
     this.panelMonday.Location = new System.Drawing.Point(136, 24);
     this.panelMonday.Name     = "panelMonday";
     this.panelMonday.Size     = new System.Drawing.Size(128, 32);
     this.panelMonday.TabIndex = 54;
     //
     // lblMon
     //
     this.lblMon.BackColor = System.Drawing.Color.PowderBlue;
     this.lblMon.Font      = new System.Drawing.Font("Tahoma", 6.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((System.Byte)(0)));
     this.lblMon.Location  = new System.Drawing.Point(0, 0);
     this.lblMon.Name      = "lblMon";
     this.lblMon.Size      = new System.Drawing.Size(128, 16);
     this.lblMon.TabIndex  = 1;
     this.lblMon.Text      = "PM";
     this.lblMon.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
     //
     // txtMonday
     //
     this.txtMonday.BackColor = System.Drawing.Color.PowderBlue;
     this.txtMonday.Font      = new System.Drawing.Font("Tahoma", 6.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((System.Byte)(0)));
     this.txtMonday.Location  = new System.Drawing.Point(0, 16);
     this.txtMonday.Name      = "txtMonday";
     this.txtMonday.Size      = new System.Drawing.Size(128, 16);
     this.txtMonday.TabIndex  = 2;
     this.txtMonday.Text      = "17/6/2005";
     this.txtMonday.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
     //
     // panel4
     //
     this.panel4.BackColor   = System.Drawing.Color.WhiteSmoke;
     this.panel4.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
     this.panel4.Controls.Add(this.lblTUE);
     this.panel4.Controls.Add(this.txtTUE);
     this.panel4.Location = new System.Drawing.Point(264, 24);
     this.panel4.Name     = "panel4";
     this.panel4.Size     = new System.Drawing.Size(128, 32);
     this.panel4.TabIndex = 52;
     //
     // lblTUE
     //
     this.lblTUE.BackColor = System.Drawing.Color.PowderBlue;
     this.lblTUE.Font      = new System.Drawing.Font("Tahoma", 6.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((System.Byte)(0)));
     this.lblTUE.Location  = new System.Drawing.Point(0, 0);
     this.lblTUE.Name      = "lblTUE";
     this.lblTUE.Size      = new System.Drawing.Size(128, 16);
     this.lblTUE.TabIndex  = 1;
     this.lblTUE.Text      = "WL";
     this.lblTUE.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
     //
     // txtTUE
     //
     this.txtTUE.BackColor = System.Drawing.Color.PowderBlue;
     this.txtTUE.Font      = new System.Drawing.Font("Tahoma", 6.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((System.Byte)(0)));
     this.txtTUE.Location  = new System.Drawing.Point(0, 16);
     this.txtTUE.Name      = "txtTUE";
     this.txtTUE.Size      = new System.Drawing.Size(128, 16);
     this.txtTUE.TabIndex  = 2;
     this.txtTUE.Text      = "17/6/2005";
     this.txtTUE.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
     //
     // panelFriday
     //
     this.panelFriday.BackColor   = System.Drawing.Color.WhiteSmoke;
     this.panelFriday.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
     this.panelFriday.Controls.Add(this.lblFRI);
     this.panelFriday.Controls.Add(this.txtFriday);
     this.panelFriday.Location = new System.Drawing.Point(648, 24);
     this.panelFriday.Name     = "panelFriday";
     this.panelFriday.Size     = new System.Drawing.Size(128, 32);
     this.panelFriday.TabIndex = 48;
     //
     // lblFRI
     //
     this.lblFRI.BackColor = System.Drawing.Color.PowderBlue;
     this.lblFRI.Font      = new System.Drawing.Font("Tahoma", 6.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((System.Byte)(0)));
     this.lblFRI.Location  = new System.Drawing.Point(0, 0);
     this.lblFRI.Name      = "lblFRI";
     this.lblFRI.Size      = new System.Drawing.Size(128, 16);
     this.lblFRI.TabIndex  = 1;
     this.lblFRI.Text      = "EP";
     this.lblFRI.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
     //
     // txtFriday
     //
     this.txtFriday.BackColor = System.Drawing.Color.PowderBlue;
     this.txtFriday.Font      = new System.Drawing.Font("Tahoma", 6.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((System.Byte)(0)));
     this.txtFriday.Location  = new System.Drawing.Point(0, 16);
     this.txtFriday.Name      = "txtFriday";
     this.txtFriday.Size      = new System.Drawing.Size(128, 16);
     this.txtFriday.TabIndex  = 2;
     this.txtFriday.Text      = "17/6/2005";
     this.txtFriday.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
     //
     // panelFri
     //
     this.panelFri.BackColor = System.Drawing.Color.Transparent;
     this.panelFri.Location  = new System.Drawing.Point(648, 56);
     this.panelFri.Name      = "panelFri";
     this.panelFri.Size      = new System.Drawing.Size(128, 480);
     this.panelFri.TabIndex  = 37;
     //
     // panelThu
     //
     this.panelThu.BackColor = System.Drawing.Color.Transparent;
     this.panelThu.Location  = new System.Drawing.Point(520, 56);
     this.panelThu.Name      = "panelThu";
     this.panelThu.Size      = new System.Drawing.Size(128, 480);
     this.panelThu.TabIndex  = 36;
     //
     // panelWed
     //
     this.panelWed.BackColor = System.Drawing.Color.Transparent;
     this.panelWed.Location  = new System.Drawing.Point(392, 56);
     this.panelWed.Name      = "panelWed";
     this.panelWed.Size      = new System.Drawing.Size(128, 480);
     this.panelWed.TabIndex  = 35;
     //
     // panelTue
     //
     this.panelTue.BackColor = System.Drawing.Color.Transparent;
     this.panelTue.Location  = new System.Drawing.Point(264, 56);
     this.panelTue.Name      = "panelTue";
     this.panelTue.Size      = new System.Drawing.Size(128, 480);
     this.panelTue.TabIndex  = 34;
     //
     // panelMon
     //
     this.panelMon.BackColor = System.Drawing.Color.Transparent;
     this.panelMon.Location  = new System.Drawing.Point(136, 56);
     this.panelMon.Name      = "panelMon";
     this.panelMon.Size      = new System.Drawing.Size(128, 480);
     this.panelMon.TabIndex  = 33;
     //
     // panelWednesday
     //
     this.panelWednesday.BackColor   = System.Drawing.Color.WhiteSmoke;
     this.panelWednesday.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
     this.panelWednesday.Controls.Add(this.lblWED);
     this.panelWednesday.Controls.Add(this.txtWED);
     this.panelWednesday.Location = new System.Drawing.Point(392, 24);
     this.panelWednesday.Name     = "panelWednesday";
     this.panelWednesday.Size     = new System.Drawing.Size(128, 32);
     this.panelWednesday.TabIndex = 51;
     //
     // lblWED
     //
     this.lblWED.BackColor = System.Drawing.Color.PowderBlue;
     this.lblWED.Font      = new System.Drawing.Font("Tahoma", 6.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((System.Byte)(0)));
     this.lblWED.Location  = new System.Drawing.Point(0, 0);
     this.lblWED.Name      = "lblWED";
     this.lblWED.Size      = new System.Drawing.Size(128, 16);
     this.lblWED.TabIndex  = 1;
     this.lblWED.Text      = "HM";
     this.lblWED.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
     //
     // txtWED
     //
     this.txtWED.BackColor = System.Drawing.Color.PowderBlue;
     this.txtWED.Font      = new System.Drawing.Font("Tahoma", 6.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((System.Byte)(0)));
     this.txtWED.Location  = new System.Drawing.Point(0, 16);
     this.txtWED.Name      = "txtWED";
     this.txtWED.Size      = new System.Drawing.Size(128, 16);
     this.txtWED.TabIndex  = 2;
     this.txtWED.Text      = "17/6/2005";
     this.txtWED.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
     //
     // panelThursday
     //
     this.panelThursday.BackColor   = System.Drawing.Color.WhiteSmoke;
     this.panelThursday.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
     this.panelThursday.Controls.Add(this.lblThu);
     this.panelThursday.Controls.Add(this.txtThur);
     this.panelThursday.Location = new System.Drawing.Point(520, 24);
     this.panelThursday.Name     = "panelThursday";
     this.panelThursday.Size     = new System.Drawing.Size(128, 32);
     this.panelThursday.TabIndex = 51;
     //
     // lblThu
     //
     this.lblThu.BackColor = System.Drawing.Color.PowderBlue;
     this.lblThu.Font      = new System.Drawing.Font("Tahoma", 6.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((System.Byte)(0)));
     this.lblThu.Location  = new System.Drawing.Point(0, 0);
     this.lblThu.Name      = "lblThu";
     this.lblThu.Size      = new System.Drawing.Size(128, 16);
     this.lblThu.TabIndex  = 1;
     this.lblThu.Text      = "JP";
     this.lblThu.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
     //
     // txtThur
     //
     this.txtThur.BackColor = System.Drawing.Color.PowderBlue;
     this.txtThur.Font      = new System.Drawing.Font("Tahoma", 6.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((System.Byte)(0)));
     this.txtThur.Location  = new System.Drawing.Point(0, 16);
     this.txtThur.Name      = "txtThur";
     this.txtThur.Size      = new System.Drawing.Size(128, 16);
     this.txtThur.TabIndex  = 2;
     this.txtThur.Text      = "17/6/2005";
     this.txtThur.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
     //
     // panelSunday
     //
     this.panelSunday.BackColor   = System.Drawing.Color.WhiteSmoke;
     this.panelSunday.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
     this.panelSunday.Controls.Add(this.lblSUN);
     this.panelSunday.Controls.Add(this.txtSunday);
     this.panelSunday.Location = new System.Drawing.Point(8, 24);
     this.panelSunday.Name     = "panelSunday";
     this.panelSunday.Size     = new System.Drawing.Size(128, 32);
     this.panelSunday.TabIndex = 52;
     //
     // lblSUN
     //
     this.lblSUN.BackColor = System.Drawing.Color.PowderBlue;
     this.lblSUN.Font      = new System.Drawing.Font("Tahoma", 6.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((System.Byte)(0)));
     this.lblSUN.Location  = new System.Drawing.Point(0, 0);
     this.lblSUN.Name      = "lblSUN";
     this.lblSUN.Size      = new System.Drawing.Size(128, 16);
     this.lblSUN.TabIndex  = 1;
     this.lblSUN.Text      = "BJ";
     this.lblSUN.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
     //
     // txtSunday
     //
     this.txtSunday.BackColor = System.Drawing.Color.PowderBlue;
     this.txtSunday.Font      = new System.Drawing.Font("Tahoma", 6.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((System.Byte)(0)));
     this.txtSunday.Location  = new System.Drawing.Point(0, 16);
     this.txtSunday.Name      = "txtSunday";
     this.txtSunday.Size      = new System.Drawing.Size(128, 16);
     this.txtSunday.TabIndex  = 2;
     this.txtSunday.Text      = "17/6/2005";
     this.txtSunday.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
     //
     // groupBox1
     //
     this.groupBox1.Controls.Add(this.dtDate);
     this.groupBox1.Controls.Add(this.label2);
     this.groupBox1.Location = new System.Drawing.Point(0, 0);
     this.groupBox1.Name     = "groupBox1";
     this.groupBox1.Size     = new System.Drawing.Size(784, 136);
     this.groupBox1.TabIndex = 59;
     this.groupBox1.TabStop  = false;
     //
     // dtDate
     //
     this.dtDate.Location     = new System.Drawing.Point(72, 0);
     this.dtDate.Name         = "dtDate";
     this.dtDate.TabIndex     = 56;
     this.dtDate.DateChanged += new System.Windows.Forms.DateRangeEventHandler(this.monthCalendar1_DateChanged);
     //
     // label2
     //
     this.label2.Font      = new System.Drawing.Font("Microsoft Sans Serif", 8.5F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((System.Byte)(134)));
     this.label2.Location  = new System.Drawing.Point(8, 8);
     this.label2.Name      = "label2";
     this.label2.Size      = new System.Drawing.Size(56, 40);
     this.label2.TabIndex  = 52;
     this.label2.Text      = "Date";
     this.label2.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
     //
     // RPDayClassAnalysis
     //
     this.AutoScale         = false;
     this.AutoScaleBaseSize = new System.Drawing.Size(5, 13);
     this.AutoScroll        = true;
     this.ClientSize        = new System.Drawing.Size(945, 592);
     this.Controls.Add(this.groupBox1);
     this.Controls.Add(this.groupControl1);
     this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedToolWindow;
     this.Name            = "RPDayClassAnalysis";
     this.Text            = "Class Analysis";
     this.WindowState     = System.Windows.Forms.FormWindowState.Maximized;
     this.Load           += new System.EventHandler(this.RPDayClassAnalysis_Load);
     ((System.ComponentModel.ISupportInitialize)(this.groupControl1)).EndInit();
     this.groupControl1.ResumeLayout(false);
     this.panelMonday.ResumeLayout(false);
     this.panel4.ResumeLayout(false);
     this.panelFriday.ResumeLayout(false);
     this.panelWednesday.ResumeLayout(false);
     this.panelThursday.ResumeLayout(false);
     this.panelSunday.ResumeLayout(false);
     this.groupBox1.ResumeLayout(false);
     this.ResumeLayout(false);
 }
Пример #43
0
 /// <summary>
 /// Required method for Designer support - do not modify
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     this.components = new System.ComponentModel.Container();
     this.panelControl1 = new DevExpress.XtraEditors.PanelControl();
     this.panelControl3 = new DevExpress.XtraEditors.PanelControl();
     this.panelControl4 = new DevExpress.XtraEditors.PanelControl();
     this.dbHoliday = new DevExpress.XtraGrid.GridControl();
     this.gridView1 = new DevExpress.XtraGrid.Views.Grid.GridView();
     this.gridColumn1 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.repositoryItemLookUpEdit1 = new DevExpress.XtraEditors.Repository.RepositoryItemLookUpEdit();
     this.gridColumn2 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn3 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn4 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn5 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.repositoryItemLookUpEdit2 = new DevExpress.XtraEditors.Repository.RepositoryItemLookUpEdit();
     this.gridView2 = new DevExpress.XtraGrid.Views.Grid.GridView();
     this.panelControl2 = new DevExpress.XtraEditors.PanelControl();
     this.groupControl1 = new DevExpress.XtraEditors.GroupControl();
     this.btnOut = new DevExpress.XtraEditors.SimpleButton();
     this.btnSave = new DevExpress.XtraEditors.SimpleButton();
     this.btnDel = new DevExpress.XtraEditors.SimpleButton();
     this.btnAdd = new DevExpress.XtraEditors.SimpleButton();
     this.bar2 = new DevExpress.XtraBars.Bar();
     this.barManager1 = new DevExpress.XtraBars.BarManager(this.components);
     this.barDockControlTop = new DevExpress.XtraBars.BarDockControl();
     this.barDockControlBottom = new DevExpress.XtraBars.BarDockControl();
     this.barDockControlLeft = new DevExpress.XtraBars.BarDockControl();
     this.barDockControlRight = new DevExpress.XtraBars.BarDockControl();
     ((System.ComponentModel.ISupportInitialize)(this.panelControl1)).BeginInit();
     this.panelControl1.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.panelControl3)).BeginInit();
     this.panelControl3.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.panelControl4)).BeginInit();
     this.panelControl4.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.dbHoliday)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridView1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemLookUpEdit1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemLookUpEdit2)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridView2)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.panelControl2)).BeginInit();
     this.panelControl2.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.groupControl1)).BeginInit();
     this.groupControl1.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.barManager1)).BeginInit();
     this.SuspendLayout();
     //
     // panelControl1
     //
     this.panelControl1.BorderStyle = DevExpress.XtraEditors.Controls.BorderStyles.NoBorder;
     this.panelControl1.Controls.Add(this.panelControl3);
     this.panelControl1.Dock = System.Windows.Forms.DockStyle.Fill;
     this.panelControl1.Location = new System.Drawing.Point(0, 0);
     this.panelControl1.Name = "panelControl1";
     this.panelControl1.Size = new System.Drawing.Size(803, 653);
     this.panelControl1.TabIndex = 0;
     //
     // panelControl3
     //
     this.panelControl3.BorderStyle = DevExpress.XtraEditors.Controls.BorderStyles.NoBorder;
     this.panelControl3.Controls.Add(this.panelControl4);
     this.panelControl3.Controls.Add(this.panelControl2);
     this.panelControl3.Dock = System.Windows.Forms.DockStyle.Top;
     this.panelControl3.Location = new System.Drawing.Point(0, 0);
     this.panelControl3.Name = "panelControl3";
     this.panelControl3.Size = new System.Drawing.Size(803, 653);
     this.panelControl3.TabIndex = 1;
     //
     // panelControl4
     //
     this.panelControl4.BorderStyle = DevExpress.XtraEditors.Controls.BorderStyles.NoBorder;
     this.panelControl4.Controls.Add(this.dbHoliday);
     this.panelControl4.Dock = System.Windows.Forms.DockStyle.Top;
     this.panelControl4.Location = new System.Drawing.Point(0, 66);
     this.panelControl4.Name = "panelControl4";
     this.panelControl4.Size = new System.Drawing.Size(803, 560);
     this.panelControl4.TabIndex = 2;
     //
     // dbHoliday
     //
     this.dbHoliday.Dock = System.Windows.Forms.DockStyle.Fill;
     this.dbHoliday.Location = new System.Drawing.Point(0, 0);
     this.dbHoliday.MainView = this.gridView1;
     this.dbHoliday.Name = "dbHoliday";
     this.dbHoliday.RepositoryItems.AddRange(new DevExpress.XtraEditors.Repository.RepositoryItem[] {
     this.repositoryItemLookUpEdit1,
     this.repositoryItemLookUpEdit2});
     this.dbHoliday.Size = new System.Drawing.Size(803, 560);
     this.dbHoliday.TabIndex = 2;
     this.dbHoliday.Tag = "@db=����������";
     this.dbHoliday.ViewCollection.AddRange(new DevExpress.XtraGrid.Views.Base.BaseView[] {
     this.gridView1,
     this.gridView2});
     //
     // gridView1
     //
     this.gridView1.BorderStyle = DevExpress.XtraEditors.Controls.BorderStyles.NoBorder;
     this.gridView1.Columns.AddRange(new DevExpress.XtraGrid.Columns.GridColumn[] {
     this.gridColumn1,
     this.gridColumn2,
     this.gridColumn3,
     this.gridColumn4,
     this.gridColumn5});
     this.gridView1.GridControl = this.dbHoliday;
     this.gridView1.GroupPanelText = "��������";
     this.gridView1.Name = "gridView1";
     this.gridView1.OptionsView.ShowGroupPanel = false;
     this.gridView1.CellValueChanged += new DevExpress.XtraGrid.Views.Base.CellValueChangedEventHandler(this.gridView1_CellValueChanged);
     //
     // gridColumn1
     //
     this.gridColumn1.Caption = "����";
     this.gridColumn1.ColumnEdit = this.repositoryItemLookUpEdit1;
     this.gridColumn1.FieldName = "����";
     this.gridColumn1.GroupInterval = DevExpress.XtraGrid.ColumnGroupInterval.DisplayText;
     this.gridColumn1.Name = "gridColumn1";
     this.gridColumn1.UnboundType = DevExpress.Data.UnboundColumnType.Object;
     this.gridColumn1.Visible = true;
     this.gridColumn1.VisibleIndex = 0;
     //
     // repositoryItemLookUpEdit1
     //
     this.repositoryItemLookUpEdit1.AccessibleRole = System.Windows.Forms.AccessibleRole.ScrollBar;
     this.repositoryItemLookUpEdit1.AllowFocused = false;
     this.repositoryItemLookUpEdit1.AutoHeight = false;
     this.repositoryItemLookUpEdit1.BorderStyle = DevExpress.XtraEditors.Controls.BorderStyles.NoBorder;
     this.repositoryItemLookUpEdit1.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.repositoryItemLookUpEdit1.ButtonsStyle = DevExpress.XtraEditors.Controls.BorderStyles.Style3D;
     this.repositoryItemLookUpEdit1.Name = "repositoryItemLookUpEdit1";
     this.repositoryItemLookUpEdit1.NullText = "";
     this.repositoryItemLookUpEdit1.PopupBorderStyle = DevExpress.XtraEditors.Controls.PopupBorderStyles.Simple;
     //
     // gridColumn2
     //
     this.gridColumn2.Caption = "��ʼ����";
     this.gridColumn2.FieldName = "��ʼ����";
     this.gridColumn2.Name = "gridColumn2";
     this.gridColumn2.Visible = true;
     this.gridColumn2.VisibleIndex = 1;
     //
     // gridColumn3
     //
     this.gridColumn3.Caption = "�ݼ�";
     this.gridColumn3.FieldName = "�ݼ�";
     this.gridColumn3.Name = "gridColumn3";
     this.gridColumn3.Visible = true;
     this.gridColumn3.VisibleIndex = 3;
     //
     // gridColumn4
     //
     this.gridColumn4.Caption = "ID";
     this.gridColumn4.FieldName = "ID";
     this.gridColumn4.Name = "gridColumn4";
     //
     // gridColumn5
     //
     this.gridColumn5.Caption = "��������";
     this.gridColumn5.FieldName = "��������";
     this.gridColumn5.Name = "gridColumn5";
     this.gridColumn5.Visible = true;
     this.gridColumn5.VisibleIndex = 2;
     //
     // repositoryItemLookUpEdit2
     //
     this.repositoryItemLookUpEdit2.AutoHeight = false;
     this.repositoryItemLookUpEdit2.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.repositoryItemLookUpEdit2.Name = "repositoryItemLookUpEdit2";
     //
     // gridView2
     //
     this.gridView2.GridControl = this.dbHoliday;
     this.gridView2.Name = "gridView2";
     //
     // panelControl2
     //
     this.panelControl2.BorderStyle = DevExpress.XtraEditors.Controls.BorderStyles.NoBorder;
     this.panelControl2.Controls.Add(this.groupControl1);
     this.panelControl2.Dock = System.Windows.Forms.DockStyle.Top;
     this.panelControl2.Location = new System.Drawing.Point(0, 0);
     this.panelControl2.Name = "panelControl2";
     this.panelControl2.Size = new System.Drawing.Size(803, 66);
     this.panelControl2.TabIndex = 1;
     //
     // groupControl1
     //
     this.groupControl1.Controls.Add(this.btnOut);
     this.groupControl1.Controls.Add(this.btnSave);
     this.groupControl1.Controls.Add(this.btnDel);
     this.groupControl1.Controls.Add(this.btnAdd);
     this.groupControl1.Dock = System.Windows.Forms.DockStyle.Fill;
     this.groupControl1.Location = new System.Drawing.Point(0, 0);
     this.groupControl1.Name = "groupControl1";
     this.groupControl1.Size = new System.Drawing.Size(803, 66);
     this.groupControl1.TabIndex = 0;
     this.groupControl1.Text = "����������";
     //
     // btnOut
     //
     this.btnOut.Location = new System.Drawing.Point(515, 26);
     this.btnOut.Name = "btnOut";
     this.btnOut.Size = new System.Drawing.Size(81, 29);
     this.btnOut.TabIndex = 8;
     this.btnOut.Text = "�˳�";
     this.btnOut.Click += new System.EventHandler(this.btnOut_Click);
     //
     // btnSave
     //
     this.btnSave.Location = new System.Drawing.Point(392, 26);
     this.btnSave.Name = "btnSave";
     this.btnSave.Size = new System.Drawing.Size(81, 29);
     this.btnSave.TabIndex = 7;
     this.btnSave.Text = "����";
     this.btnSave.Click += new System.EventHandler(this.btnSave_Click);
     //
     // btnDel
     //
     this.btnDel.Location = new System.Drawing.Point(271, 26);
     this.btnDel.Name = "btnDel";
     this.btnDel.Size = new System.Drawing.Size(81, 29);
     this.btnDel.TabIndex = 6;
     this.btnDel.Text = "ɾ��";
     this.btnDel.Click += new System.EventHandler(this.btnDel_Click);
     //
     // btnAdd
     //
     this.btnAdd.Location = new System.Drawing.Point(159, 26);
     this.btnAdd.Name = "btnAdd";
     this.btnAdd.Size = new System.Drawing.Size(81, 29);
     this.btnAdd.TabIndex = 5;
     this.btnAdd.Text = "���";
     this.btnAdd.Click += new System.EventHandler(this.btnAdd_Click);
     //
     // bar2
     //
     this.bar2.BarName = "Main menu";
     this.bar2.DockCol = 0;
     this.bar2.DockRow = 0;
     this.bar2.FloatLocation = new System.Drawing.Point(237, 270);
     this.bar2.OptionsBar.MultiLine = true;
     this.bar2.OptionsBar.UseWholeRow = true;
     this.bar2.Text = "Main menu";
     //
     // barManager1
     //
     this.barManager1.DockControls.Add(this.barDockControlTop);
     this.barManager1.DockControls.Add(this.barDockControlBottom);
     this.barManager1.DockControls.Add(this.barDockControlLeft);
     this.barManager1.DockControls.Add(this.barDockControlRight);
     this.barManager1.Form = this;
     this.barManager1.MaxItemId = 0;
     //
     // FrmHolidaySet
     //
     this.AutoScaleDimensions = new System.Drawing.SizeF(7F, 14F);
     this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
     this.ClientSize = new System.Drawing.Size(803, 653);
     this.Controls.Add(this.panelControl1);
     this.Controls.Add(this.barDockControlLeft);
     this.Controls.Add(this.barDockControlRight);
     this.Controls.Add(this.barDockControlBottom);
     this.Controls.Add(this.barDockControlTop);
     this.Name = "FrmHolidaySet";
     this.Text = "��������";
     this.Load += new System.EventHandler(this.FrmHolidaySet_Load);
     ((System.ComponentModel.ISupportInitialize)(this.panelControl1)).EndInit();
     this.panelControl1.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.panelControl3)).EndInit();
     this.panelControl3.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.panelControl4)).EndInit();
     this.panelControl4.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.dbHoliday)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridView1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemLookUpEdit1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemLookUpEdit2)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridView2)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.panelControl2)).EndInit();
     this.panelControl2.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.groupControl1)).EndInit();
     this.groupControl1.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.barManager1)).EndInit();
     this.ResumeLayout(false);
 }
 /// <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.layoutControl1 = new DevExpress.XtraLayout.LayoutControl();
     this.txtName = new DevExpress.XtraEditors.TextEdit();
     this.txtRemark = new DevExpress.XtraEditors.MemoEdit();
     this.txtBelongTime = new DevExpress.XtraEditors.TextEdit();
     this.spYear = new DevExpress.XtraEditors.SpinEdit();
     this.layoutControlGroup1 = new DevExpress.XtraLayout.LayoutControlGroup();
     this.layoutControlItem1 = new DevExpress.XtraLayout.LayoutControlItem();
     this.layoutControlItem2 = new DevExpress.XtraLayout.LayoutControlItem();
     this.layoutControlItem3 = new DevExpress.XtraLayout.LayoutControlItem();
     this.layoutControlItem4 = new DevExpress.XtraLayout.LayoutControlItem();
     ((System.ComponentModel.ISupportInitialize)(this.plFill)).BeginInit();
     this.plFill.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.plBottom)).BeginInit();
     this.plBottom.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.groupControl1)).BeginInit();
     this.groupControl1.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControl1)).BeginInit();
     this.layoutControl1.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.txtName.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtRemark.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtBelongTime.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.spYear.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlGroup1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem2)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem3)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem4)).BeginInit();
     this.SuspendLayout();
     //
     // btnCancel
     //
     this.btnCancel.Location = new System.Drawing.Point(290, 15);
     //
     // btnConfirm
     //
     this.btnConfirm.Location = new System.Drawing.Point(181, 15);
     this.btnConfirm.Click += new System.EventHandler(this.btnConfirm_Click);
     //
     // plFill
     //
     this.plFill.Appearance.BackColor = System.Drawing.Color.White;
     this.plFill.Appearance.Options.UseBackColor = true;
     this.plFill.Controls.Add(this.groupControl1);
     this.plFill.Size = new System.Drawing.Size(384, 241);
     //
     // plBottom
     //
     this.plBottom.Appearance.BackColor = System.Drawing.Color.White;
     this.plBottom.Appearance.Options.UseBackColor = true;
     this.plBottom.Location = new System.Drawing.Point(0, 241);
     this.plBottom.Size = new System.Drawing.Size(384, 60);
     //
     // groupControl1
     //
     this.groupControl1.Controls.Add(this.layoutControl1);
     this.groupControl1.Dock = System.Windows.Forms.DockStyle.Fill;
     this.groupControl1.Location = new System.Drawing.Point(0, 0);
     this.groupControl1.Name = "groupControl1";
     this.groupControl1.Size = new System.Drawing.Size(384, 241);
     this.groupControl1.TabIndex = 1;
     this.groupControl1.Text = "统计信息";
     //
     // layoutControl1
     //
     this.layoutControl1.Controls.Add(this.txtName);
     this.layoutControl1.Controls.Add(this.txtRemark);
     this.layoutControl1.Controls.Add(this.txtBelongTime);
     this.layoutControl1.Controls.Add(this.spYear);
     this.layoutControl1.Dock = System.Windows.Forms.DockStyle.Fill;
     this.layoutControl1.Location = new System.Drawing.Point(2, 21);
     this.layoutControl1.Name = "layoutControl1";
     this.layoutControl1.OptionsCustomizationForm.DesignTimeCustomizationFormPositionAndSize = new System.Drawing.Rectangle(709, 54, 250, 350);
     this.layoutControl1.Root = this.layoutControlGroup1;
     this.layoutControl1.Size = new System.Drawing.Size(380, 218);
     this.layoutControl1.TabIndex = 0;
     this.layoutControl1.Text = "layoutControl1";
     //
     // txtName
     //
     this.txtName.Location = new System.Drawing.Point(63, 12);
     this.txtName.Name = "txtName";
     this.txtName.Size = new System.Drawing.Size(305, 20);
     this.txtName.StyleController = this.layoutControl1;
     this.txtName.TabIndex = 0;
     //
     // txtRemark
     //
     this.txtRemark.Location = new System.Drawing.Point(63, 84);
     this.txtRemark.Name = "txtRemark";
     this.txtRemark.Size = new System.Drawing.Size(305, 122);
     this.txtRemark.StyleController = this.layoutControl1;
     this.txtRemark.TabIndex = 3;
     //
     // txtBelongTime
     //
     this.txtBelongTime.Location = new System.Drawing.Point(63, 60);
     this.txtBelongTime.Name = "txtBelongTime";
     this.txtBelongTime.Size = new System.Drawing.Size(305, 20);
     this.txtBelongTime.StyleController = this.layoutControl1;
     this.txtBelongTime.TabIndex = 2;
     //
     // spYear
     //
     this.spYear.EditValue = new decimal(new int[] {
     2000,
     0,
     0,
     0});
     this.spYear.Location = new System.Drawing.Point(63, 36);
     this.spYear.Name = "spYear";
     this.spYear.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.spYear.Properties.IsFloatValue = false;
     this.spYear.Properties.Mask.EditMask = "d";
     this.spYear.Properties.Mask.UseMaskAsDisplayFormat = true;
     this.spYear.Properties.MaxValue = new decimal(new int[] {
     2500,
     0,
     0,
     0});
     this.spYear.Properties.MinValue = new decimal(new int[] {
     1950,
     0,
     0,
     0});
     this.spYear.Size = new System.Drawing.Size(305, 20);
     this.spYear.StyleController = this.layoutControl1;
     this.spYear.TabIndex = 1;
     //
     // layoutControlGroup1
     //
     this.layoutControlGroup1.EnableIndentsWithoutBorders = DevExpress.Utils.DefaultBoolean.True;
     this.layoutControlGroup1.GroupBordersVisible = false;
     this.layoutControlGroup1.Items.AddRange(new DevExpress.XtraLayout.BaseLayoutItem[] {
     this.layoutControlItem1,
     this.layoutControlItem2,
     this.layoutControlItem3,
     this.layoutControlItem4});
     this.layoutControlGroup1.Location = new System.Drawing.Point(0, 0);
     this.layoutControlGroup1.Name = "Root";
     this.layoutControlGroup1.Size = new System.Drawing.Size(380, 218);
     this.layoutControlGroup1.TextVisible = false;
     //
     // layoutControlItem1
     //
     this.layoutControlItem1.Control = this.spYear;
     this.layoutControlItem1.Location = new System.Drawing.Point(0, 24);
     this.layoutControlItem1.Name = "layoutControlItem1";
     this.layoutControlItem1.Size = new System.Drawing.Size(360, 24);
     this.layoutControlItem1.Text = "年份";
     this.layoutControlItem1.TextSize = new System.Drawing.Size(48, 14);
     //
     // layoutControlItem2
     //
     this.layoutControlItem2.Control = this.txtBelongTime;
     this.layoutControlItem2.Location = new System.Drawing.Point(0, 48);
     this.layoutControlItem2.Name = "layoutControlItem2";
     this.layoutControlItem2.Size = new System.Drawing.Size(360, 24);
     this.layoutControlItem2.Text = "归属时间";
     this.layoutControlItem2.TextSize = new System.Drawing.Size(48, 14);
     //
     // layoutControlItem3
     //
     this.layoutControlItem3.Control = this.txtRemark;
     this.layoutControlItem3.Location = new System.Drawing.Point(0, 72);
     this.layoutControlItem3.Name = "layoutControlItem3";
     this.layoutControlItem3.Size = new System.Drawing.Size(360, 126);
     this.layoutControlItem3.Text = "备注";
     this.layoutControlItem3.TextSize = new System.Drawing.Size(48, 14);
     //
     // layoutControlItem4
     //
     this.layoutControlItem4.Control = this.txtName;
     this.layoutControlItem4.Location = new System.Drawing.Point(0, 0);
     this.layoutControlItem4.Name = "layoutControlItem4";
     this.layoutControlItem4.Size = new System.Drawing.Size(360, 24);
     this.layoutControlItem4.Text = "名称";
     this.layoutControlItem4.TextSize = new System.Drawing.Size(48, 14);
     //
     // FrmPopulationEdit
     //
     this.AutoScaleDimensions = new System.Drawing.SizeF(7F, 14F);
     this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
     this.ClientSize = new System.Drawing.Size(384, 301);
     this.Name = "FrmPopulationEdit";
     this.Text = "编辑人数统计";
     ((System.ComponentModel.ISupportInitialize)(this.plFill)).EndInit();
     this.plFill.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.plBottom)).EndInit();
     this.plBottom.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.groupControl1)).EndInit();
     this.groupControl1.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.layoutControl1)).EndInit();
     this.layoutControl1.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.txtName.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtRemark.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtBelongTime.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.spYear.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlGroup1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem2)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem3)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem4)).EndInit();
     this.ResumeLayout(false);
 }
 /// <summary>
 /// Required method for Designer support - do not modify
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     this.components = new System.ComponentModel.Container();
     DevExpress.Utils.SerializableAppearanceObject serializableAppearanceObject1 = new DevExpress.Utils.SerializableAppearanceObject();
     this.gridControlData = new DevExpress.XtraGrid.GridControl();
     this.tblWarasaAmanatBindingSource = new System.Windows.Forms.BindingSource(this.components);
     this.dsRetirementCenter = new RetirementCenter.DataSources.dsRetirementCenter();
     this.gridViewData = new DevExpress.XtraGrid.Views.Grid.GridView();
     this.colPersonId = new DevExpress.XtraGrid.Columns.GridColumn();
     this.colDofatSarfAId = new DevExpress.XtraGrid.Columns.GridColumn();
     this.repositoryItemGridLookUpEditDofatSarfAId = new DevExpress.XtraEditors.Repository.RepositoryItemGridLookUpEdit();
     this.cdDofaatAmanatBindingSource = new System.Windows.Forms.BindingSource(this.components);
     this.gridView3 = new DevExpress.XtraGrid.Views.Grid.GridView();
     this.colDofatSarfA = new DevExpress.XtraGrid.Columns.GridColumn();
     this.colMMashatId = new DevExpress.XtraGrid.Columns.GridColumn();
     this.repositoryItemGridLookUpEditPersonId = new DevExpress.XtraEditors.Repository.RepositoryItemGridLookUpEdit();
     this.LSMSTBLWarasa = new DevExpress.Data.Linq.LinqServerModeSource();
     this.gridView1 = new DevExpress.XtraGrid.Views.Grid.GridView();
     this.colMMashatName = new DevExpress.XtraGrid.Columns.GridColumn();
     this.colPersonId1 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.colpersonName = new DevExpress.XtraGrid.Columns.GridColumn();
     this.colsarfnumber = new DevExpress.XtraGrid.Columns.GridColumn();
     this.colSyndicate1 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.colSubCommitte = new DevExpress.XtraGrid.Columns.GridColumn();
     this.colamanatrem = new DevExpress.XtraGrid.Columns.GridColumn();
     this.repositoryItemMemoExEditamanatrem = new DevExpress.XtraEditors.Repository.RepositoryItemMemoExEdit();
     this.colamanatmony = new DevExpress.XtraGrid.Columns.GridColumn();
     this.coldatein = new DevExpress.XtraGrid.Columns.GridColumn();
     this.repositoryItemDateEditdatein = new DevExpress.XtraEditors.Repository.RepositoryItemDateEdit();
     this.coluserin = new DevExpress.XtraGrid.Columns.GridColumn();
     this.repositoryItemGridLookUpEdituserin = new DevExpress.XtraEditors.Repository.RepositoryItemGridLookUpEdit();
     this.usersBindingSource = new System.Windows.Forms.BindingSource(this.components);
     this.gridView2 = new DevExpress.XtraGrid.Views.Grid.GridView();
     this.colRealName = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumnSave = new DevExpress.XtraGrid.Columns.GridColumn();
     this.repositoryItemButtonEditSave = new DevExpress.XtraEditors.Repository.RepositoryItemButtonEdit();
     this.gridColumnDelete = new DevExpress.XtraGrid.Columns.GridColumn();
     this.repositoryItemButtonEditDel = new DevExpress.XtraEditors.Repository.RepositoryItemButtonEdit();
     this.colaccReview = new DevExpress.XtraGrid.Columns.GridColumn();
     this.colestktaa = new DevExpress.XtraGrid.Columns.GridColumn();
     this.colmostahek = new DevExpress.XtraGrid.Columns.GridColumn();
     this.colsefa = new DevExpress.XtraGrid.Columns.GridColumn();
     this.coluseracc = new DevExpress.XtraGrid.Columns.GridColumn();
     this.colamantvisa = new DevExpress.XtraGrid.Columns.GridColumn();
     this.colsarfcheek = new DevExpress.XtraGrid.Columns.GridColumn();
     this.colDofatSarfId = new DevExpress.XtraGrid.Columns.GridColumn();
     this.repositoryItemLookUpEditDofatSarfId = new DevExpress.XtraEditors.Repository.RepositoryItemLookUpEdit();
     this.LSMSDofatSarfId = new DevExpress.Data.Linq.LinqServerModeSource();
     this.gridColumn1 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn3 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.colDofatSarfAId1 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.colamanattypeid = new DevExpress.XtraGrid.Columns.GridColumn();
     this.repositoryItemLookUpEditamanattypeid = new DevExpress.XtraEditors.Repository.RepositoryItemLookUpEdit();
     this.LSMScd_amanattype = new DevExpress.Data.Linq.LinqServerModeSource();
     this.coldateReview = new DevExpress.XtraGrid.Columns.GridColumn();
     this.repositoryItemCalcEditf2 = new DevExpress.XtraEditors.Repository.RepositoryItemCalcEdit();
     this.repositoryItemDateEditDMY = new DevExpress.XtraEditors.Repository.RepositoryItemDateEdit();
     this.repositoryItemGridLookUpEditSyndicateId = new DevExpress.XtraEditors.Repository.RepositoryItemGridLookUpEdit();
     this.repositoryItemGridLookUpEdit1View = new DevExpress.XtraGrid.Views.Grid.GridView();
     this.colSyndicate = new DevExpress.XtraGrid.Columns.GridColumn();
     this.repositoryItemCalcEditn0 = new DevExpress.XtraEditors.Repository.RepositoryItemCalcEdit();
     this.repositoryItemCheckEditCardType = new DevExpress.XtraEditors.Repository.RepositoryItemCheckEdit();
     this.colEDARET = new DevExpress.XtraGrid.Columns.GridColumn();
     this.colEDARET1 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.colEdaraMandopName = new DevExpress.XtraGrid.Columns.GridColumn();
     this.colnkapaMandopName = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn2 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.groupControl1 = new DevExpress.XtraEditors.GroupControl();
     this.groupControl2 = new DevExpress.XtraEditors.GroupControl();
     this.btnNew = new DevExpress.XtraEditors.SimpleButton();
     this.tblWarasaAmanatTableAdapter = new RetirementCenter.DataSources.dsRetirementCenterTableAdapters.TblWarasaAmanatTableAdapter();
     this.cdDofaatAmanatTableAdapter = new RetirementCenter.DataSources.dsRetirementCenterTableAdapters.CdDofaatAmanatTableAdapter();
     this.usersTableAdapter = new RetirementCenter.DataSources.dsRetirementCenterTableAdapters.UsersTableAdapter();
     this.gridColumn4 = new DevExpress.XtraGrid.Columns.GridColumn();
     ((System.ComponentModel.ISupportInitialize)(this.gridControlData)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.tblWarasaAmanatBindingSource)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.dsRetirementCenter)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridViewData)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemGridLookUpEditDofatSarfAId)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.cdDofaatAmanatBindingSource)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridView3)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemGridLookUpEditPersonId)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.LSMSTBLWarasa)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridView1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemMemoExEditamanatrem)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemDateEditdatein)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemDateEditdatein.VistaTimeProperties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemGridLookUpEdituserin)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.usersBindingSource)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridView2)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemButtonEditSave)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemButtonEditDel)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemLookUpEditDofatSarfId)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.LSMSDofatSarfId)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemLookUpEditamanattypeid)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.LSMScd_amanattype)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemCalcEditf2)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemDateEditDMY)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemDateEditDMY.VistaTimeProperties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemGridLookUpEditSyndicateId)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemGridLookUpEdit1View)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemCalcEditn0)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemCheckEditCardType)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.groupControl1)).BeginInit();
     this.groupControl1.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.groupControl2)).BeginInit();
     this.groupControl2.SuspendLayout();
     this.SuspendLayout();
     //
     // gridControlData
     //
     this.gridControlData.DataSource = this.tblWarasaAmanatBindingSource;
     this.gridControlData.Dock = System.Windows.Forms.DockStyle.Fill;
     this.gridControlData.EmbeddedNavigator.Buttons.Append.Visible = false;
     this.gridControlData.EmbeddedNavigator.Buttons.CancelEdit.Visible = false;
     this.gridControlData.EmbeddedNavigator.Buttons.Edit.Visible = false;
     this.gridControlData.EmbeddedNavigator.Buttons.EndEdit.Visible = false;
     this.gridControlData.EmbeddedNavigator.Buttons.Remove.Visible = false;
     this.gridControlData.Location = new System.Drawing.Point(2, 21);
     this.gridControlData.MainView = this.gridViewData;
     this.gridControlData.Name = "gridControlData";
     this.gridControlData.RepositoryItems.AddRange(new DevExpress.XtraEditors.Repository.RepositoryItem[] {
     this.repositoryItemButtonEditSave,
     this.repositoryItemButtonEditDel,
     this.repositoryItemCalcEditf2,
     this.repositoryItemDateEditDMY,
     this.repositoryItemGridLookUpEditSyndicateId,
     this.repositoryItemCalcEditn0,
     this.repositoryItemDateEditdatein,
     this.repositoryItemGridLookUpEdituserin,
     this.repositoryItemMemoExEditamanatrem,
     this.repositoryItemCheckEditCardType,
     this.repositoryItemGridLookUpEditPersonId,
     this.repositoryItemGridLookUpEditDofatSarfAId,
     this.repositoryItemLookUpEditDofatSarfId,
     this.repositoryItemLookUpEditamanattypeid});
     this.gridControlData.Size = new System.Drawing.Size(756, 273);
     this.gridControlData.TabIndex = 0;
     this.gridControlData.UseEmbeddedNavigator = true;
     this.gridControlData.ViewCollection.AddRange(new DevExpress.XtraGrid.Views.Base.BaseView[] {
     this.gridViewData});
     this.gridControlData.KeyDown += new System.Windows.Forms.KeyEventHandler(this.ActiveKeyDownEvent);
     //
     // tblWarasaAmanatBindingSource
     //
     this.tblWarasaAmanatBindingSource.DataMember = "TblWarasaAmanat";
     this.tblWarasaAmanatBindingSource.DataSource = this.dsRetirementCenter;
     //
     // dsRetirementCenter
     //
     this.dsRetirementCenter.DataSetName = "dsRetirementCenter";
     this.dsRetirementCenter.SchemaSerializationMode = System.Data.SchemaSerializationMode.IncludeSchema;
     //
     // gridViewData
     //
     this.gridViewData.Columns.AddRange(new DevExpress.XtraGrid.Columns.GridColumn[] {
     this.colPersonId,
     this.colDofatSarfAId,
     this.colMMashatId,
     this.colamanatrem,
     this.colamanatmony,
     this.coldatein,
     this.coluserin,
     this.gridColumnSave,
     this.gridColumnDelete,
     this.colaccReview,
     this.colestktaa,
     this.colmostahek,
     this.colsefa,
     this.coluseracc,
     this.colamantvisa,
     this.colsarfcheek,
     this.colDofatSarfId,
     this.gridColumn1,
     this.gridColumn3,
     this.colDofatSarfAId1,
     this.colamanattypeid,
     this.coldateReview,
     this.gridColumn4});
     this.gridViewData.GridControl = this.gridControlData;
     this.gridViewData.Name = "gridViewData";
     this.gridViewData.NewItemRowText = "اضغط لاضافة جديد";
     this.gridViewData.OptionsBehavior.ReadOnly = true;
     this.gridViewData.OptionsNavigation.AutoFocusNewRow = true;
     this.gridViewData.OptionsView.ColumnAutoWidth = false;
     this.gridViewData.OptionsView.ShowAutoFilterRow = true;
     this.gridViewData.OptionsView.ShowDetailButtons = false;
     this.gridViewData.InvalidRowException += new DevExpress.XtraGrid.Views.Base.InvalidRowExceptionEventHandler(this.gridViewData_InvalidRowException);
     //
     // colPersonId
     //
     this.colPersonId.AppearanceCell.Options.UseTextOptions = true;
     this.colPersonId.AppearanceCell.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.colPersonId.AppearanceHeader.Options.UseTextOptions = true;
     this.colPersonId.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.colPersonId.Caption = "كود";
     this.colPersonId.FieldName = "PersonId";
     this.colPersonId.Name = "colPersonId";
     this.colPersonId.Visible = true;
     this.colPersonId.VisibleIndex = 1;
     //
     // colDofatSarfAId
     //
     this.colDofatSarfAId.AppearanceCell.Options.UseTextOptions = true;
     this.colDofatSarfAId.AppearanceCell.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.colDofatSarfAId.AppearanceHeader.Options.UseTextOptions = true;
     this.colDofatSarfAId.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.colDofatSarfAId.Caption = "الدفعة";
     this.colDofatSarfAId.ColumnEdit = this.repositoryItemGridLookUpEditDofatSarfAId;
     this.colDofatSarfAId.FieldName = "DofatSarfAId";
     this.colDofatSarfAId.Name = "colDofatSarfAId";
     this.colDofatSarfAId.OptionsColumn.ReadOnly = true;
     this.colDofatSarfAId.Visible = true;
     this.colDofatSarfAId.VisibleIndex = 3;
     this.colDofatSarfAId.Width = 128;
     //
     // repositoryItemGridLookUpEditDofatSarfAId
     //
     this.repositoryItemGridLookUpEditDofatSarfAId.AutoHeight = false;
     this.repositoryItemGridLookUpEditDofatSarfAId.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.repositoryItemGridLookUpEditDofatSarfAId.DataSource = this.cdDofaatAmanatBindingSource;
     this.repositoryItemGridLookUpEditDofatSarfAId.DisplayMember = "DofatSarfA";
     this.repositoryItemGridLookUpEditDofatSarfAId.Name = "repositoryItemGridLookUpEditDofatSarfAId";
     this.repositoryItemGridLookUpEditDofatSarfAId.ValueMember = "DofatSarfAId";
     this.repositoryItemGridLookUpEditDofatSarfAId.View = this.gridView3;
     //
     // cdDofaatAmanatBindingSource
     //
     this.cdDofaatAmanatBindingSource.DataMember = "CdDofaatAmanat";
     this.cdDofaatAmanatBindingSource.DataSource = this.dsRetirementCenter;
     //
     // gridView3
     //
     this.gridView3.Columns.AddRange(new DevExpress.XtraGrid.Columns.GridColumn[] {
     this.colDofatSarfA});
     this.gridView3.FocusRectStyle = DevExpress.XtraGrid.Views.Grid.DrawFocusRectStyle.RowFocus;
     this.gridView3.Name = "gridView3";
     this.gridView3.OptionsSelection.EnableAppearanceFocusedCell = false;
     this.gridView3.OptionsView.ShowGroupPanel = false;
     //
     // colDofatSarfA
     //
     this.colDofatSarfA.AppearanceCell.Options.UseTextOptions = true;
     this.colDofatSarfA.AppearanceCell.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.colDofatSarfA.AppearanceHeader.Options.UseTextOptions = true;
     this.colDofatSarfA.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.colDofatSarfA.Caption = "الاسم";
     this.colDofatSarfA.FieldName = "DofatSarfA";
     this.colDofatSarfA.Name = "colDofatSarfA";
     this.colDofatSarfA.Visible = true;
     this.colDofatSarfA.VisibleIndex = 0;
     //
     // colMMashatId
     //
     this.colMMashatId.AppearanceCell.Options.UseTextOptions = true;
     this.colMMashatId.AppearanceCell.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.colMMashatId.AppearanceHeader.Options.UseTextOptions = true;
     this.colMMashatId.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.colMMashatId.Caption = "الاسم";
     this.colMMashatId.ColumnEdit = this.repositoryItemGridLookUpEditPersonId;
     this.colMMashatId.FieldName = "PersonId";
     this.colMMashatId.Name = "colMMashatId";
     this.colMMashatId.OptionsColumn.ReadOnly = true;
     this.colMMashatId.Visible = true;
     this.colMMashatId.VisibleIndex = 4;
     this.colMMashatId.Width = 150;
     //
     // repositoryItemGridLookUpEditPersonId
     //
     this.repositoryItemGridLookUpEditPersonId.AutoHeight = false;
     this.repositoryItemGridLookUpEditPersonId.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.repositoryItemGridLookUpEditPersonId.DataSource = this.LSMSTBLWarasa;
     this.repositoryItemGridLookUpEditPersonId.DisplayMember = "personName";
     this.repositoryItemGridLookUpEditPersonId.Name = "repositoryItemGridLookUpEditPersonId";
     this.repositoryItemGridLookUpEditPersonId.ValueMember = "PersonId";
     this.repositoryItemGridLookUpEditPersonId.View = this.gridView1;
     //
     // LSMSTBLWarasa
     //
     this.LSMSTBLWarasa.ElementType = typeof(RetirementCenter.DataSources.Linq.vTBLWarasa_TBLMashat);
     this.LSMSTBLWarasa.KeyExpression = "PersonId";
     //
     // gridView1
     //
     this.gridView1.Columns.AddRange(new DevExpress.XtraGrid.Columns.GridColumn[] {
     this.colMMashatName,
     this.colPersonId1,
     this.colpersonName,
     this.colsarfnumber,
     this.colSyndicate1,
     this.colSubCommitte});
     this.gridView1.FocusRectStyle = DevExpress.XtraGrid.Views.Grid.DrawFocusRectStyle.RowFocus;
     this.gridView1.Name = "gridView1";
     this.gridView1.OptionsSelection.EnableAppearanceFocusedCell = false;
     this.gridView1.OptionsView.ShowGroupPanel = false;
     //
     // colMMashatName
     //
     this.colMMashatName.AppearanceCell.Options.UseTextOptions = true;
     this.colMMashatName.AppearanceCell.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.colMMashatName.AppearanceHeader.Options.UseTextOptions = true;
     this.colMMashatName.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.colMMashatName.Caption = "الاب";
     this.colMMashatName.FieldName = "MMashatName";
     this.colMMashatName.Name = "colMMashatName";
     this.colMMashatName.Visible = true;
     this.colMMashatName.VisibleIndex = 0;
     //
     // colPersonId1
     //
     this.colPersonId1.AppearanceCell.Options.UseTextOptions = true;
     this.colPersonId1.AppearanceCell.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.colPersonId1.AppearanceHeader.Options.UseTextOptions = true;
     this.colPersonId1.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.colPersonId1.Caption = "كود";
     this.colPersonId1.FieldName = "PersonId";
     this.colPersonId1.Name = "colPersonId1";
     this.colPersonId1.Visible = true;
     this.colPersonId1.VisibleIndex = 1;
     //
     // colpersonName
     //
     this.colpersonName.AppearanceCell.Options.UseTextOptions = true;
     this.colpersonName.AppearanceCell.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.colpersonName.AppearanceHeader.Options.UseTextOptions = true;
     this.colpersonName.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.colpersonName.Caption = "الاسم";
     this.colpersonName.FieldName = "personName";
     this.colpersonName.Name = "colpersonName";
     this.colpersonName.Visible = true;
     this.colpersonName.VisibleIndex = 2;
     //
     // colsarfnumber
     //
     this.colsarfnumber.AppearanceCell.Options.UseTextOptions = true;
     this.colsarfnumber.AppearanceCell.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.colsarfnumber.AppearanceHeader.Options.UseTextOptions = true;
     this.colsarfnumber.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.colsarfnumber.Caption = "رقم صرف";
     this.colsarfnumber.FieldName = "sarfnumber";
     this.colsarfnumber.Name = "colsarfnumber";
     this.colsarfnumber.Visible = true;
     this.colsarfnumber.VisibleIndex = 3;
     //
     // colSyndicate1
     //
     this.colSyndicate1.AppearanceCell.Options.UseTextOptions = true;
     this.colSyndicate1.AppearanceCell.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.colSyndicate1.AppearanceHeader.Options.UseTextOptions = true;
     this.colSyndicate1.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.colSyndicate1.Caption = "فرعية";
     this.colSyndicate1.FieldName = "Syndicate";
     this.colSyndicate1.Name = "colSyndicate1";
     this.colSyndicate1.Visible = true;
     this.colSyndicate1.VisibleIndex = 4;
     //
     // colSubCommitte
     //
     this.colSubCommitte.AppearanceCell.Options.UseTextOptions = true;
     this.colSubCommitte.AppearanceCell.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.colSubCommitte.AppearanceHeader.Options.UseTextOptions = true;
     this.colSubCommitte.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.colSubCommitte.Caption = "لجنة";
     this.colSubCommitte.FieldName = "SubCommitte";
     this.colSubCommitte.Name = "colSubCommitte";
     this.colSubCommitte.Visible = true;
     this.colSubCommitte.VisibleIndex = 5;
     //
     // colamanatrem
     //
     this.colamanatrem.AppearanceCell.Options.UseTextOptions = true;
     this.colamanatrem.AppearanceCell.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.colamanatrem.AppearanceHeader.Options.UseTextOptions = true;
     this.colamanatrem.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.colamanatrem.Caption = "ملاحظات";
     this.colamanatrem.ColumnEdit = this.repositoryItemMemoExEditamanatrem;
     this.colamanatrem.FieldName = "amanatrem";
     this.colamanatrem.Name = "colamanatrem";
     this.colamanatrem.OptionsColumn.ReadOnly = true;
     this.colamanatrem.Visible = true;
     this.colamanatrem.VisibleIndex = 5;
     //
     // repositoryItemMemoExEditamanatrem
     //
     this.repositoryItemMemoExEditamanatrem.AutoHeight = false;
     this.repositoryItemMemoExEditamanatrem.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.repositoryItemMemoExEditamanatrem.Name = "repositoryItemMemoExEditamanatrem";
     //
     // colamanatmony
     //
     this.colamanatmony.AppearanceCell.Options.UseTextOptions = true;
     this.colamanatmony.AppearanceCell.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.colamanatmony.AppearanceHeader.Options.UseTextOptions = true;
     this.colamanatmony.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.colamanatmony.Caption = "المبلغ";
     this.colamanatmony.FieldName = "amanatmony";
     this.colamanatmony.Name = "colamanatmony";
     this.colamanatmony.OptionsColumn.ReadOnly = true;
     this.colamanatmony.Visible = true;
     this.colamanatmony.VisibleIndex = 6;
     this.colamanatmony.Width = 81;
     //
     // coldatein
     //
     this.coldatein.AppearanceCell.Options.UseTextOptions = true;
     this.coldatein.AppearanceCell.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.coldatein.AppearanceHeader.Options.UseTextOptions = true;
     this.coldatein.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.coldatein.Caption = "تاريخ الادخال";
     this.coldatein.ColumnEdit = this.repositoryItemDateEditdatein;
     this.coldatein.FieldName = "datein";
     this.coldatein.Name = "coldatein";
     this.coldatein.OptionsColumn.AllowEdit = false;
     this.coldatein.OptionsColumn.ReadOnly = true;
     this.coldatein.Visible = true;
     this.coldatein.VisibleIndex = 11;
     this.coldatein.Width = 94;
     //
     // repositoryItemDateEditdatein
     //
     this.repositoryItemDateEditdatein.AutoHeight = false;
     this.repositoryItemDateEditdatein.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.repositoryItemDateEditdatein.DisplayFormat.FormatString = "g";
     this.repositoryItemDateEditdatein.DisplayFormat.FormatType = DevExpress.Utils.FormatType.DateTime;
     this.repositoryItemDateEditdatein.EditFormat.FormatString = "g";
     this.repositoryItemDateEditdatein.EditFormat.FormatType = DevExpress.Utils.FormatType.DateTime;
     this.repositoryItemDateEditdatein.Mask.EditMask = "g";
     this.repositoryItemDateEditdatein.Name = "repositoryItemDateEditdatein";
     this.repositoryItemDateEditdatein.VistaTimeProperties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton()});
     //
     // coluserin
     //
     this.coluserin.AppearanceCell.Options.UseTextOptions = true;
     this.coluserin.AppearanceCell.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.coluserin.AppearanceHeader.Options.UseTextOptions = true;
     this.coluserin.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.coluserin.Caption = "مسئول الادخال";
     this.coluserin.ColumnEdit = this.repositoryItemGridLookUpEdituserin;
     this.coluserin.FieldName = "userin";
     this.coluserin.Name = "coluserin";
     this.coluserin.OptionsColumn.AllowEdit = false;
     this.coluserin.OptionsColumn.ReadOnly = true;
     this.coluserin.Visible = true;
     this.coluserin.VisibleIndex = 12;
     this.coluserin.Width = 97;
     //
     // repositoryItemGridLookUpEdituserin
     //
     this.repositoryItemGridLookUpEdituserin.AutoHeight = false;
     this.repositoryItemGridLookUpEdituserin.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.repositoryItemGridLookUpEdituserin.DataSource = this.usersBindingSource;
     this.repositoryItemGridLookUpEdituserin.DisplayMember = "RealName";
     this.repositoryItemGridLookUpEdituserin.Name = "repositoryItemGridLookUpEdituserin";
     this.repositoryItemGridLookUpEdituserin.NullText = "";
     this.repositoryItemGridLookUpEdituserin.ValueMember = "UserID";
     this.repositoryItemGridLookUpEdituserin.View = this.gridView2;
     //
     // usersBindingSource
     //
     this.usersBindingSource.DataMember = "Users";
     this.usersBindingSource.DataSource = this.dsRetirementCenter;
     //
     // gridView2
     //
     this.gridView2.Columns.AddRange(new DevExpress.XtraGrid.Columns.GridColumn[] {
     this.colRealName});
     this.gridView2.FocusRectStyle = DevExpress.XtraGrid.Views.Grid.DrawFocusRectStyle.RowFocus;
     this.gridView2.Name = "gridView2";
     this.gridView2.OptionsSelection.EnableAppearanceFocusedCell = false;
     this.gridView2.OptionsView.ShowGroupPanel = false;
     //
     // colRealName
     //
     this.colRealName.FieldName = "RealName";
     this.colRealName.Name = "colRealName";
     this.colRealName.Visible = true;
     this.colRealName.VisibleIndex = 0;
     //
     // gridColumnSave
     //
     this.gridColumnSave.AppearanceCell.Options.UseTextOptions = true;
     this.gridColumnSave.AppearanceCell.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.gridColumnSave.AppearanceHeader.Options.UseTextOptions = true;
     this.gridColumnSave.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.gridColumnSave.Caption = "تعديل";
     this.gridColumnSave.ColumnEdit = this.repositoryItemButtonEditSave;
     this.gridColumnSave.Fixed = DevExpress.XtraGrid.Columns.FixedStyle.Right;
     this.gridColumnSave.Name = "gridColumnSave";
     this.gridColumnSave.Visible = true;
     this.gridColumnSave.VisibleIndex = 21;
     this.gridColumnSave.Width = 55;
     //
     // repositoryItemButtonEditSave
     //
     this.repositoryItemButtonEditSave.AutoHeight = false;
     this.repositoryItemButtonEditSave.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton()});
     this.repositoryItemButtonEditSave.Name = "repositoryItemButtonEditSave";
     this.repositoryItemButtonEditSave.TextEditStyle = DevExpress.XtraEditors.Controls.TextEditStyles.HideTextEditor;
     this.repositoryItemButtonEditSave.ButtonClick += new DevExpress.XtraEditors.Controls.ButtonPressedEventHandler(this.repositoryItemButtonEditSave_ButtonClick);
     //
     // gridColumnDelete
     //
     this.gridColumnDelete.AppearanceCell.Options.UseTextOptions = true;
     this.gridColumnDelete.AppearanceCell.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.gridColumnDelete.AppearanceHeader.Options.UseTextOptions = true;
     this.gridColumnDelete.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.gridColumnDelete.Caption = "حذف";
     this.gridColumnDelete.ColumnEdit = this.repositoryItemButtonEditDel;
     this.gridColumnDelete.Fixed = DevExpress.XtraGrid.Columns.FixedStyle.Right;
     this.gridColumnDelete.Name = "gridColumnDelete";
     this.gridColumnDelete.Visible = true;
     this.gridColumnDelete.VisibleIndex = 22;
     this.gridColumnDelete.Width = 51;
     //
     // repositoryItemButtonEditDel
     //
     this.repositoryItemButtonEditDel.AutoHeight = false;
     this.repositoryItemButtonEditDel.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Delete)});
     this.repositoryItemButtonEditDel.Name = "repositoryItemButtonEditDel";
     this.repositoryItemButtonEditDel.TextEditStyle = DevExpress.XtraEditors.Controls.TextEditStyles.HideTextEditor;
     this.repositoryItemButtonEditDel.ButtonClick += new DevExpress.XtraEditors.Controls.ButtonPressedEventHandler(this.repositoryItemButtonEditDel_ButtonClick);
     //
     // colaccReview
     //
     this.colaccReview.AppearanceCell.Options.UseTextOptions = true;
     this.colaccReview.AppearanceCell.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.colaccReview.AppearanceHeader.Options.UseTextOptions = true;
     this.colaccReview.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.colaccReview.Caption = "مراجعة (حسابات)";
     this.colaccReview.FieldName = "accReview";
     this.colaccReview.Name = "colaccReview";
     this.colaccReview.OptionsColumn.ReadOnly = true;
     this.colaccReview.Visible = true;
     this.colaccReview.VisibleIndex = 7;
     this.colaccReview.Width = 100;
     //
     // colestktaa
     //
     this.colestktaa.AppearanceCell.Options.UseTextOptions = true;
     this.colestktaa.AppearanceCell.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.colestktaa.AppearanceHeader.Options.UseTextOptions = true;
     this.colestktaa.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.colestktaa.Caption = "استقطاع";
     this.colestktaa.FieldName = "estktaa";
     this.colestktaa.Name = "colestktaa";
     this.colestktaa.OptionsColumn.ReadOnly = true;
     this.colestktaa.Visible = true;
     this.colestktaa.VisibleIndex = 8;
     //
     // colmostahek
     //
     this.colmostahek.AppearanceCell.Options.UseTextOptions = true;
     this.colmostahek.AppearanceCell.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.colmostahek.AppearanceHeader.Options.UseTextOptions = true;
     this.colmostahek.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.colmostahek.Caption = "مستحق";
     this.colmostahek.FieldName = "mostahek";
     this.colmostahek.Name = "colmostahek";
     this.colmostahek.OptionsColumn.ReadOnly = true;
     this.colmostahek.Visible = true;
     this.colmostahek.VisibleIndex = 9;
     //
     // colsefa
     //
     this.colsefa.AppearanceCell.Options.UseTextOptions = true;
     this.colsefa.AppearanceCell.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.colsefa.AppearanceHeader.Options.UseTextOptions = true;
     this.colsefa.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.colsefa.Caption = "صفة";
     this.colsefa.FieldName = "sefa";
     this.colsefa.Name = "colsefa";
     this.colsefa.OptionsColumn.ReadOnly = true;
     this.colsefa.Visible = true;
     this.colsefa.VisibleIndex = 10;
     //
     // coluseracc
     //
     this.coluseracc.AppearanceCell.Options.UseTextOptions = true;
     this.coluseracc.AppearanceCell.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.coluseracc.AppearanceHeader.Options.UseTextOptions = true;
     this.coluseracc.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.coluseracc.Caption = "مسئول الادخال (حسابات)";
     this.coluseracc.ColumnEdit = this.repositoryItemGridLookUpEdituserin;
     this.coluseracc.FieldName = "useracc";
     this.coluseracc.Name = "coluseracc";
     this.coluseracc.OptionsColumn.ReadOnly = true;
     this.coluseracc.Visible = true;
     this.coluseracc.VisibleIndex = 13;
     this.coluseracc.Width = 136;
     //
     // colamantvisa
     //
     this.colamantvisa.AppearanceCell.Options.UseTextOptions = true;
     this.colamantvisa.AppearanceCell.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.colamantvisa.AppearanceHeader.Options.UseTextOptions = true;
     this.colamantvisa.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.colamantvisa.Caption = "امانات فيزا";
     this.colamantvisa.FieldName = "amantvisa";
     this.colamantvisa.Name = "colamantvisa";
     this.colamantvisa.Visible = true;
     this.colamantvisa.VisibleIndex = 15;
     //
     // colsarfcheek
     //
     this.colsarfcheek.AppearanceCell.Options.UseTextOptions = true;
     this.colsarfcheek.AppearanceCell.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.colsarfcheek.AppearanceHeader.Options.UseTextOptions = true;
     this.colsarfcheek.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.colsarfcheek.Caption = "تصرف بشيك";
     this.colsarfcheek.FieldName = "sarfcheek";
     this.colsarfcheek.Name = "colsarfcheek";
     this.colsarfcheek.Visible = true;
     this.colsarfcheek.VisibleIndex = 16;
     this.colsarfcheek.Width = 77;
     //
     // colDofatSarfId
     //
     this.colDofatSarfId.AppearanceCell.Options.UseTextOptions = true;
     this.colDofatSarfId.AppearanceCell.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.colDofatSarfId.AppearanceHeader.Options.UseTextOptions = true;
     this.colDofatSarfId.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.colDofatSarfId.Caption = "الدفعة المستحقه";
     this.colDofatSarfId.ColumnEdit = this.repositoryItemLookUpEditDofatSarfId;
     this.colDofatSarfId.FieldName = "DofatSarfId";
     this.colDofatSarfId.Name = "colDofatSarfId";
     this.colDofatSarfId.Visible = true;
     this.colDofatSarfId.VisibleIndex = 17;
     this.colDofatSarfId.Width = 99;
     //
     // repositoryItemLookUpEditDofatSarfId
     //
     this.repositoryItemLookUpEditDofatSarfId.AutoHeight = false;
     this.repositoryItemLookUpEditDofatSarfId.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.repositoryItemLookUpEditDofatSarfId.Columns.AddRange(new DevExpress.XtraEditors.Controls.LookUpColumnInfo[] {
     new DevExpress.XtraEditors.Controls.LookUpColumnInfo("DofatSarf", "الاسم", 61, DevExpress.Utils.FormatType.None, "", true, DevExpress.Utils.HorzAlignment.Near)});
     this.repositoryItemLookUpEditDofatSarfId.DataSource = this.LSMSDofatSarfId;
     this.repositoryItemLookUpEditDofatSarfId.DisplayMember = "DofatSarf";
     this.repositoryItemLookUpEditDofatSarfId.Name = "repositoryItemLookUpEditDofatSarfId";
     this.repositoryItemLookUpEditDofatSarfId.NullText = "";
     this.repositoryItemLookUpEditDofatSarfId.TextEditStyle = DevExpress.XtraEditors.Controls.TextEditStyles.Standard;
     this.repositoryItemLookUpEditDofatSarfId.ValueMember = "DofatSarfId";
     //
     // LSMSDofatSarfId
     //
     this.LSMSDofatSarfId.ElementType = typeof(RetirementCenter.DataSources.Linq.TBLDofatSarf);
     this.LSMSDofatSarfId.KeyExpression = "[DofatSarfId]";
     //
     // gridColumn1
     //
     this.gridColumn1.AppearanceCell.Options.UseTextOptions = true;
     this.gridColumn1.AppearanceCell.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.gridColumn1.AppearanceHeader.Options.UseTextOptions = true;
     this.gridColumn1.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.gridColumn1.Caption = "رقم صرف";
     this.gridColumn1.FieldName = "sarfnumber";
     this.gridColumn1.Name = "gridColumn1";
     this.gridColumn1.Visible = true;
     this.gridColumn1.VisibleIndex = 18;
     //
     // gridColumn3
     //
     this.gridColumn3.AppearanceCell.Options.UseTextOptions = true;
     this.gridColumn3.AppearanceCell.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.gridColumn3.AppearanceHeader.Options.UseTextOptions = true;
     this.gridColumn3.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.gridColumn3.Caption = "كود الاب";
     this.gridColumn3.FieldName = "MMashatId";
     this.gridColumn3.Name = "gridColumn3";
     this.gridColumn3.Visible = true;
     this.gridColumn3.VisibleIndex = 19;
     //
     // colDofatSarfAId1
     //
     this.colDofatSarfAId1.AppearanceCell.Options.UseTextOptions = true;
     this.colDofatSarfAId1.AppearanceCell.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.colDofatSarfAId1.AppearanceHeader.Options.UseTextOptions = true;
     this.colDofatSarfAId1.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.colDofatSarfAId1.Caption = "كود الدفعة";
     this.colDofatSarfAId1.FieldName = "DofatSarfAId";
     this.colDofatSarfAId1.Name = "colDofatSarfAId1";
     this.colDofatSarfAId1.Visible = true;
     this.colDofatSarfAId1.VisibleIndex = 2;
     //
     // colamanattypeid
     //
     this.colamanattypeid.AppearanceCell.Options.UseTextOptions = true;
     this.colamanattypeid.AppearanceCell.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.colamanattypeid.AppearanceHeader.Options.UseTextOptions = true;
     this.colamanattypeid.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.colamanattypeid.Caption = "نوع الامانات";
     this.colamanattypeid.ColumnEdit = this.repositoryItemLookUpEditamanattypeid;
     this.colamanattypeid.FieldName = "amanattypeid";
     this.colamanattypeid.Name = "colamanattypeid";
     this.colamanattypeid.Visible = true;
     this.colamanattypeid.VisibleIndex = 20;
     //
     // repositoryItemLookUpEditamanattypeid
     //
     this.repositoryItemLookUpEditamanattypeid.AutoHeight = false;
     this.repositoryItemLookUpEditamanattypeid.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.repositoryItemLookUpEditamanattypeid.Columns.AddRange(new DevExpress.XtraEditors.Controls.LookUpColumnInfo[] {
     new DevExpress.XtraEditors.Controls.LookUpColumnInfo("amanattype", "الاسم", 68, DevExpress.Utils.FormatType.None, "", true, DevExpress.Utils.HorzAlignment.Near)});
     this.repositoryItemLookUpEditamanattypeid.DataSource = this.LSMScd_amanattype;
     this.repositoryItemLookUpEditamanattypeid.DisplayMember = "amanattype";
     this.repositoryItemLookUpEditamanattypeid.Name = "repositoryItemLookUpEditamanattypeid";
     this.repositoryItemLookUpEditamanattypeid.NullText = "";
     this.repositoryItemLookUpEditamanattypeid.TextEditStyle = DevExpress.XtraEditors.Controls.TextEditStyles.Standard;
     this.repositoryItemLookUpEditamanattypeid.ValueMember = "amanattypeid";
     //
     // LSMScd_amanattype
     //
     this.LSMScd_amanattype.ElementType = typeof(RetirementCenter.DataSources.Linq.cd_amanattype);
     this.LSMScd_amanattype.KeyExpression = "[amanattypeid]";
     //
     // coldateReview
     //
     this.coldateReview.AppearanceCell.Options.UseTextOptions = true;
     this.coldateReview.AppearanceCell.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.coldateReview.AppearanceHeader.Options.UseTextOptions = true;
     this.coldateReview.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.coldateReview.Caption = "تاريخ مراجعة حسابات";
     this.coldateReview.ColumnEdit = this.repositoryItemDateEditdatein;
     this.coldateReview.FieldName = "dateReview";
     this.coldateReview.Name = "coldateReview";
     this.coldateReview.Visible = true;
     this.coldateReview.VisibleIndex = 14;
     this.coldateReview.Width = 116;
     //
     // repositoryItemCalcEditf2
     //
     this.repositoryItemCalcEditf2.AutoHeight = false;
     this.repositoryItemCalcEditf2.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.repositoryItemCalcEditf2.DisplayFormat.FormatString = "f2";
     this.repositoryItemCalcEditf2.DisplayFormat.FormatType = DevExpress.Utils.FormatType.Numeric;
     this.repositoryItemCalcEditf2.EditFormat.FormatString = "f2";
     this.repositoryItemCalcEditf2.EditFormat.FormatType = DevExpress.Utils.FormatType.Numeric;
     this.repositoryItemCalcEditf2.Mask.EditMask = "f2";
     this.repositoryItemCalcEditf2.Name = "repositoryItemCalcEditf2";
     //
     // repositoryItemDateEditDMY
     //
     this.repositoryItemDateEditDMY.AutoHeight = false;
     this.repositoryItemDateEditDMY.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.repositoryItemDateEditDMY.DisplayFormat.FormatString = "dd/MM/yyyy";
     this.repositoryItemDateEditDMY.DisplayFormat.FormatType = DevExpress.Utils.FormatType.DateTime;
     this.repositoryItemDateEditDMY.EditFormat.FormatString = "dd/MM/yyyy";
     this.repositoryItemDateEditDMY.EditFormat.FormatType = DevExpress.Utils.FormatType.DateTime;
     this.repositoryItemDateEditDMY.Mask.EditMask = "dd/MM/yyyy";
     this.repositoryItemDateEditDMY.Name = "repositoryItemDateEditDMY";
     this.repositoryItemDateEditDMY.VistaTimeProperties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton()});
     //
     // repositoryItemGridLookUpEditSyndicateId
     //
     this.repositoryItemGridLookUpEditSyndicateId.AutoHeight = false;
     this.repositoryItemGridLookUpEditSyndicateId.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo, "", -1, true, true, true, DevExpress.XtraEditors.ImageLocation.MiddleCenter, null, new DevExpress.Utils.KeyShortcut(System.Windows.Forms.Keys.None), serializableAppearanceObject1, "", null, null, true)});
     this.repositoryItemGridLookUpEditSyndicateId.DisplayMember = "Syndicate";
     this.repositoryItemGridLookUpEditSyndicateId.Name = "repositoryItemGridLookUpEditSyndicateId";
     this.repositoryItemGridLookUpEditSyndicateId.NullText = "";
     this.repositoryItemGridLookUpEditSyndicateId.TextEditStyle = DevExpress.XtraEditors.Controls.TextEditStyles.Standard;
     this.repositoryItemGridLookUpEditSyndicateId.ValueMember = "SyndicateId";
     this.repositoryItemGridLookUpEditSyndicateId.View = this.repositoryItemGridLookUpEdit1View;
     //
     // repositoryItemGridLookUpEdit1View
     //
     this.repositoryItemGridLookUpEdit1View.Columns.AddRange(new DevExpress.XtraGrid.Columns.GridColumn[] {
     this.colSyndicate});
     this.repositoryItemGridLookUpEdit1View.FocusRectStyle = DevExpress.XtraGrid.Views.Grid.DrawFocusRectStyle.RowFocus;
     this.repositoryItemGridLookUpEdit1View.Name = "repositoryItemGridLookUpEdit1View";
     this.repositoryItemGridLookUpEdit1View.OptionsSelection.EnableAppearanceFocusedCell = false;
     this.repositoryItemGridLookUpEdit1View.OptionsView.ShowGroupPanel = false;
     //
     // colSyndicate
     //
     this.colSyndicate.AppearanceCell.Options.UseTextOptions = true;
     this.colSyndicate.AppearanceCell.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.colSyndicate.AppearanceHeader.Options.UseTextOptions = true;
     this.colSyndicate.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.colSyndicate.Caption = "الفرعيه";
     this.colSyndicate.FieldName = "Syndicate";
     this.colSyndicate.Name = "colSyndicate";
     this.colSyndicate.Visible = true;
     this.colSyndicate.VisibleIndex = 0;
     //
     // repositoryItemCalcEditn0
     //
     this.repositoryItemCalcEditn0.AutoHeight = false;
     this.repositoryItemCalcEditn0.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.repositoryItemCalcEditn0.DisplayFormat.FormatString = "n0";
     this.repositoryItemCalcEditn0.DisplayFormat.FormatType = DevExpress.Utils.FormatType.Numeric;
     this.repositoryItemCalcEditn0.EditFormat.FormatString = "n0";
     this.repositoryItemCalcEditn0.EditFormat.FormatType = DevExpress.Utils.FormatType.Numeric;
     this.repositoryItemCalcEditn0.Mask.EditMask = "n0";
     this.repositoryItemCalcEditn0.Name = "repositoryItemCalcEditn0";
     //
     // repositoryItemCheckEditCardType
     //
     this.repositoryItemCheckEditCardType.AutoHeight = false;
     this.repositoryItemCheckEditCardType.Name = "repositoryItemCheckEditCardType";
     //
     // colEDARET
     //
     this.colEDARET.AppearanceCell.Options.UseTextOptions = true;
     this.colEDARET.AppearanceCell.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.colEDARET.AppearanceHeader.Options.UseTextOptions = true;
     this.colEDARET.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.colEDARET.Caption = "اسم الاداره";
     this.colEDARET.FieldName = "EDARET";
     this.colEDARET.Name = "colEDARET";
     this.colEDARET.Visible = true;
     this.colEDARET.VisibleIndex = 0;
     //
     // colEDARET1
     //
     this.colEDARET1.AppearanceCell.Options.UseTextOptions = true;
     this.colEDARET1.AppearanceCell.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.colEDARET1.AppearanceHeader.Options.UseTextOptions = true;
     this.colEDARET1.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.colEDARET1.Caption = "الادارة";
     this.colEDARET1.FieldName = "EDARET";
     this.colEDARET1.Name = "colEDARET1";
     this.colEDARET1.Visible = true;
     this.colEDARET1.VisibleIndex = 0;
     //
     // colEdaraMandopName
     //
     this.colEdaraMandopName.AppearanceCell.Options.UseTextOptions = true;
     this.colEdaraMandopName.AppearanceCell.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.colEdaraMandopName.AppearanceHeader.Options.UseTextOptions = true;
     this.colEdaraMandopName.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.colEdaraMandopName.Caption = "الاسم";
     this.colEdaraMandopName.FieldName = "EdaraMandopName";
     this.colEdaraMandopName.Name = "colEdaraMandopName";
     this.colEdaraMandopName.Visible = true;
     this.colEdaraMandopName.VisibleIndex = 0;
     //
     // colnkapaMandopName
     //
     this.colnkapaMandopName.AppearanceCell.Options.UseTextOptions = true;
     this.colnkapaMandopName.AppearanceCell.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.colnkapaMandopName.AppearanceHeader.Options.UseTextOptions = true;
     this.colnkapaMandopName.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.colnkapaMandopName.Caption = "الاسم";
     this.colnkapaMandopName.FieldName = "nkapaMandopName";
     this.colnkapaMandopName.Name = "colnkapaMandopName";
     this.colnkapaMandopName.Visible = true;
     this.colnkapaMandopName.VisibleIndex = 0;
     //
     // gridColumn2
     //
     this.gridColumn2.AppearanceCell.Options.UseTextOptions = true;
     this.gridColumn2.AppearanceCell.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.gridColumn2.AppearanceHeader.Options.UseTextOptions = true;
     this.gridColumn2.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.gridColumn2.Caption = "اسم الشهر";
     this.gridColumn2.FieldName = "MonthName";
     this.gridColumn2.Name = "gridColumn2";
     this.gridColumn2.Visible = true;
     this.gridColumn2.VisibleIndex = 0;
     //
     // groupControl1
     //
     this.groupControl1.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
     | System.Windows.Forms.AnchorStyles.Left)
     | System.Windows.Forms.AnchorStyles.Right)));
     this.groupControl1.Controls.Add(this.gridControlData);
     this.groupControl1.Location = new System.Drawing.Point(12, 12);
     this.groupControl1.Name = "groupControl1";
     this.groupControl1.Size = new System.Drawing.Size(760, 296);
     this.groupControl1.TabIndex = 1;
     //
     // groupControl2
     //
     this.groupControl2.AllowTouchScroll = true;
     this.groupControl2.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)
     | System.Windows.Forms.AnchorStyles.Right)));
     this.groupControl2.Controls.Add(this.btnNew);
     this.groupControl2.Location = new System.Drawing.Point(12, 314);
     this.groupControl2.Name = "groupControl2";
     this.groupControl2.Size = new System.Drawing.Size(760, 62);
     this.groupControl2.TabIndex = 2;
     //
     // btnNew
     //
     this.btnNew.Anchor = System.Windows.Forms.AnchorStyles.Right;
     this.btnNew.Image = global::RetirementCenter.Properties.Resources.Add;
     this.btnNew.Location = new System.Drawing.Point(555, 23);
     this.btnNew.Name = "btnNew";
     this.btnNew.Size = new System.Drawing.Size(200, 35);
     this.btnNew.TabIndex = 0;
     this.btnNew.Text = "جديد";
     this.btnNew.Click += new System.EventHandler(this.btnNew_Click);
     //
     // tblWarasaAmanatTableAdapter
     //
     this.tblWarasaAmanatTableAdapter.ClearBeforeFill = true;
     //
     // cdDofaatAmanatTableAdapter
     //
     this.cdDofaatAmanatTableAdapter.ClearBeforeFill = true;
     //
     // usersTableAdapter
     //
     this.usersTableAdapter.ClearBeforeFill = true;
     //
     // gridColumn4
     //
     this.gridColumn4.AppearanceCell.Options.UseTextOptions = true;
     this.gridColumn4.AppearanceCell.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.gridColumn4.AppearanceHeader.Options.UseTextOptions = true;
     this.gridColumn4.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.gridColumn4.Caption = "كود 60";
     this.gridColumn4.FieldName = "code60";
     this.gridColumn4.Name = "gridColumn4";
     this.gridColumn4.Visible = true;
     this.gridColumn4.VisibleIndex = 0;
     //
     // TblWarasaAmanatFrm
     //
     this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
     this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
     this.ClientSize = new System.Drawing.Size(784, 388);
     this.Controls.Add(this.groupControl2);
     this.Controls.Add(this.groupControl1);
     this.Name = "TblWarasaAmanatFrm";
     this.Text = "امانات الورثة";
     this.Load += new System.EventHandler(this.FormFrm_Load);
     ((System.ComponentModel.ISupportInitialize)(this.gridControlData)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.tblWarasaAmanatBindingSource)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.dsRetirementCenter)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridViewData)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemGridLookUpEditDofatSarfAId)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.cdDofaatAmanatBindingSource)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridView3)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemGridLookUpEditPersonId)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.LSMSTBLWarasa)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridView1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemMemoExEditamanatrem)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemDateEditdatein.VistaTimeProperties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemDateEditdatein)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemGridLookUpEdituserin)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.usersBindingSource)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridView2)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemButtonEditSave)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemButtonEditDel)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemLookUpEditDofatSarfId)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.LSMSDofatSarfId)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemLookUpEditamanattypeid)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.LSMScd_amanattype)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemCalcEditf2)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemDateEditDMY.VistaTimeProperties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemDateEditDMY)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemGridLookUpEditSyndicateId)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemGridLookUpEdit1View)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemCalcEditn0)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemCheckEditCardType)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.groupControl1)).EndInit();
     this.groupControl1.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.groupControl2)).EndInit();
     this.groupControl2.ResumeLayout(false);
     this.ResumeLayout(false);
 }
 /// <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(FrmChuongTrinh));
     DevExpress.Utils.SerializableAppearanceObject serializableAppearanceObject1 = new DevExpress.Utils.SerializableAppearanceObject();
     DevExpress.Utils.SerializableAppearanceObject serializableAppearanceObject2 = new DevExpress.Utils.SerializableAppearanceObject();
     DevExpress.Utils.SerializableAppearanceObject serializableAppearanceObject3 = new DevExpress.Utils.SerializableAppearanceObject();
     DevExpress.Utils.SerializableAppearanceObject serializableAppearanceObject4 = new DevExpress.Utils.SerializableAppearanceObject();
     DevExpress.Utils.SerializableAppearanceObject serializableAppearanceObject5 = new DevExpress.Utils.SerializableAppearanceObject();
     this.flowLayoutPanel1 = new System.Windows.Forms.FlowLayoutPanel();
     this.btnClose = new DevExpress.XtraEditors.SimpleButton();
     this.btnDelete = new DevExpress.XtraEditors.SimpleButton();
     this.btnDeleteRealy = new DevExpress.XtraEditors.SimpleButton();
     this.btnRestore = new DevExpress.XtraEditors.SimpleButton();
     this.btnSave = new DevExpress.XtraEditors.SimpleButton();
     this.InPhieu = new DevExpress.XtraEditors.DropDownButton();
     this.ctMnuInPhieu = new System.Windows.Forms.ContextMenuStrip(this.components);
     this.NghiepVu = new DevExpress.XtraEditors.DropDownButton();
     this.ctMnuNghiepVu = new System.Windows.Forms.ContextMenuStrip(this.components);
     this.Duyet = new ProtocolVN.Framework.Win.PLDuyetCombobox();
     this.flowLayoutPanel2 = new System.Windows.Forms.FlowLayoutPanel();
     this.label7 = new DevExpress.XtraEditors.LabelControl();
     this.label8 = new DevExpress.XtraEditors.LabelControl();
     this.KyHieuPhanLoai = new DevExpress.XtraEditors.TextEdit();
     this.label21 = new DevExpress.XtraEditors.LabelControl();
     this.label22 = new DevExpress.XtraEditors.LabelControl();
     this.label2 = new DevExpress.XtraEditors.LabelControl();
     this.label4 = new DevExpress.XtraEditors.LabelControl();
     this.label5 = new DevExpress.XtraEditors.LabelControl();
     this.label15 = new DevExpress.XtraEditors.LabelControl();
     this.lblTitle = new DevExpress.XtraEditors.LabelControl();
     this.KyHieuXepKho_KHPL = new DevExpress.XtraEditors.TextEdit();
     this.groupControlThongTinPhatSong = new DevExpress.XtraEditors.GroupControl();
     this.ReleaseDate = new DevExpress.XtraEditors.DateEdit();
     this.SoRunConlai = new DevExpress.XtraEditors.SpinEdit();
     this.ReleaseRun = new DevExpress.XtraEditors.SpinEdit();
     this.Release = new DevExpress.XtraEditors.SpinEdit();
     this.SoDaRun = new DevExpress.XtraEditors.SpinEdit();
     this.gridControlPhatSongKhac = new DevExpress.XtraGrid.GridControl();
     this.gridviewPhatSongKhac = new DevExpress.XtraGrid.Views.Grid.PLGridView();
     this.ColPSK_Kenh = new DevExpress.XtraGrid.Columns.GridColumn();
     this.ColPSK_TuNgay = new DevExpress.XtraGrid.Columns.GridColumn();
     this.ColPSK_DenNgay = new DevExpress.XtraGrid.Columns.GridColumn();
     this.ColPSK_LanPhat = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridControlNgayPhatDauTien = new DevExpress.XtraGrid.GridControl();
     this.gridViewNgayPhatDauTien = new DevExpress.XtraGrid.Views.Grid.PLGridView();
     this.ColKenhPhatSong = new DevExpress.XtraGrid.Columns.GridColumn();
     this.ColIsPhatLai = new DevExpress.XtraGrid.Columns.GridColumn();
     this.ColNgayPhatStart = new DevExpress.XtraGrid.Columns.GridColumn();
     this.ColNgayPhatEnd = new DevExpress.XtraGrid.Columns.GridColumn();
     this.ColTimeSlot = new DevExpress.XtraGrid.Columns.GridColumn();
     this.ColLanPhat = new DevExpress.XtraGrid.Columns.GridColumn();
     this.labelControl8 = new DevExpress.XtraEditors.LabelControl();
     this.labelControl9 = new DevExpress.XtraEditors.LabelControl();
     this.RunThu = new DevExpress.XtraEditors.SpinEdit();
     this.TongSoRun = new DevExpress.XtraEditors.SpinEdit();
     this.labelControl20 = new DevExpress.XtraEditors.LabelControl();
     this.labelControl19 = new DevExpress.XtraEditors.LabelControl();
     this.labelControl6 = new DevExpress.XtraEditors.LabelControl();
     this.labelControl24 = new DevExpress.XtraEditors.LabelControl();
     this.labelControl21 = new DevExpress.XtraEditors.LabelControl();
     this.labelControl15 = new DevExpress.XtraEditors.LabelControl();
     this.labelControl10 = new DevExpress.XtraEditors.LabelControl();
     this.ReleaseRule = new DevExpress.XtraEditors.MemoEdit();
     this.MuaKem = new DevExpress.XtraEditors.MemoEdit();
     this.Rating = new DevExpress.XtraEditors.CalcEdit();
     this.DoiTuongKhanGia = new ProtocolVN.Framework.Win.PLMultiCombobox();
     this.label14 = new DevExpress.XtraEditors.LabelControl();
     this.groupControlNguonGoc = new DevExpress.XtraEditors.GroupControl();
     this.NoteBQ = new DevExpress.XtraEditors.MemoEdit();
     this.gridControlThongTinBan = new DevExpress.XtraGrid.GridControl();
     this.gridViewThongTinBan = new DevExpress.XtraGrid.Views.Grid.PLGridView();
     this.ColKenhBan = new DevExpress.XtraGrid.Columns.GridColumn();
     this.ColNgayBanTu = new DevExpress.XtraGrid.Columns.GridColumn();
     this.ColNgayBanDen = new DevExpress.XtraGrid.Columns.GridColumn();
     this.groupControl7 = new DevExpress.XtraEditors.GroupControl();
     this.DonViHauKy = new ProtocolVN.App.VideoLibrary.PLTextEditAutocomplete();
     this.HangSanXuat = new ProtocolVN.Framework.Win.PLDMGrid();
     this.DonViSoHuu = new ProtocolVN.Framework.Win.PLDMGrid();
     this.NamSanXuat = new DevExpress.XtraEditors.PLSpinEdit();
     this.labelControl33 = new DevExpress.XtraEditors.LabelControl();
     this.labelControl32 = new DevExpress.XtraEditors.LabelControl();
     this.labelControl4 = new DevExpress.XtraEditors.LabelControl();
     this.labelControl7 = new DevExpress.XtraEditors.LabelControl();
     this.QuocGia = new ProtocolVN.Framework.Win.PLMultiCombobox();
     this.label25 = new DevExpress.XtraEditors.LabelControl();
     this.KenhHanCheBan = new ProtocolVN.Framework.Win.PLMultiCombobox();
     this.DonViCungCap = new ProtocolVN.Framework.Win.PLDMGrid();
     this.labelControl17 = new DevExpress.XtraEditors.LabelControl();
     this.groupControl1 = new DevExpress.XtraEditors.GroupControl();
     this.BanQuyenHTV = new DevExpress.XtraEditors.DateEdit();
     this.BanQuyenDIDEnd = new DevExpress.XtraEditors.DateEdit();
     this.BanQuyenDTNNEnd = new DevExpress.XtraEditors.DateEdit();
     this.BanQuyenDIDStart = new DevExpress.XtraEditors.DateEdit();
     this.BanQuyenDTNNStart = new DevExpress.XtraEditors.DateEdit();
     this.ChanelRight = new ProtocolVN.Framework.Win.PLMultiCombobox();
     this.labelControl25 = new DevExpress.XtraEditors.LabelControl();
     this.labelControl26 = new DevExpress.XtraEditors.LabelControl();
     this.labelControl27 = new DevExpress.XtraEditors.LabelControl();
     this.labelControl28 = new DevExpress.XtraEditors.LabelControl();
     this.labelControl29 = new DevExpress.XtraEditors.LabelControl();
     this.labelControl30 = new DevExpress.XtraEditors.LabelControl();
     this.BanQuyenThuoc = new ProtocolVN.Framework.Win.PLDMGrid();
     this.labelControl31 = new DevExpress.XtraEditors.LabelControl();
     this.labelControl14 = new DevExpress.XtraEditors.LabelControl();
     this.DaoDien = new ProtocolVN.Framework.Win.PLMultiCombobox();
     this.groupControlThongTin = new DevExpress.XtraEditors.GroupControl();
     this.gridControlGhiChu = new DevExpress.XtraGrid.GridControl();
     this.gridViewGhiChu = new DevExpress.XtraGrid.Views.Grid.PLGridView();
     this.colLoaiGhiChu = new DevExpress.XtraGrid.Columns.GridColumn();
     this.colNoiDungGhiChu = new DevExpress.XtraGrid.Columns.GridColumn();
     this.labelControl34 = new DevExpress.XtraEditors.LabelControl();
     this.PhanLoaiDrama = new ProtocolVN.App.VideoLibrary.PLTextEditAutocomplete();
     this.barManager1 = new DevExpress.XtraBars.BarManager(this.components);
     this.barDockControlTop = new DevExpress.XtraBars.BarDockControl();
     this.barDockControlBottom = new DevExpress.XtraBars.BarDockControl();
     this.barDockControlLeft = new DevExpress.XtraBars.BarDockControl();
     this.barDockControlRight = new DevExpress.XtraBars.BarDockControl();
     this.labelControl18 = new DevExpress.XtraEditors.LabelControl();
     this.NguonTrading = new ProtocolVN.App.VideoLibrary.PLTextEditAutocomplete();
     this.ClassName = new ProtocolVN.App.VideoLibrary.PLTextEditAutocomplete();
     this.labelControl23 = new DevExpress.XtraEditors.LabelControl();
     this.labelControl13 = new DevExpress.XtraEditors.LabelControl();
     this.Code = new DevExpress.XtraEditors.TextEdit();
     this.TenGoc = new ProtocolVN.App.VideoLibrary.PLTextEditAutocomplete();
     this.NoiDung = new ProtocolVN.App.VideoLibrary.PLTextEditAutocomplete();
     this.Period = new ProtocolVN.App.VideoLibrary.PLTextEditAutocomplete();
     this.Category = new ProtocolVN.App.VideoLibrary.PLTextEditAutocomplete();
     this.TrailerGoc = new DevExpress.XtraEditors.CheckEdit();
     this.Photos = new DevExpress.XtraEditors.CheckEdit();
     this.Script = new DevExpress.XtraEditors.CheckEdit();
     this.ckcMoiTrenThiTruong = new DevExpress.XtraEditors.CheckEdit();
     this.ckcTrongKho = new DevExpress.XtraEditors.CheckEdit();
     this.ThanhLy = new DevExpress.XtraEditors.CheckEdit();
     this.groupControl8 = new DevExpress.XtraEditors.GroupControl();
     this.KyHieuXepKho_NoiDung = new DevExpress.XtraEditors.TextEdit();
     this.textEdit1 = new DevExpress.XtraEditors.TextEdit();
     this.Ranking = new ProtocolVN.Framework.Win.PLDMGrid();
     this.DienVien = new ProtocolVN.Framework.Win.PLMultiCombobox();
     this.labelControl22 = new DevExpress.XtraEditors.LabelControl();
     this.labelControl16 = new DevExpress.XtraEditors.LabelControl();
     this.labelControl12 = new DevExpress.XtraEditors.LabelControl();
     this.label24 = new DevExpress.XtraEditors.LabelControl();
     this.TuKhoaSelect = new ProtocolVN.Framework.Win.PLMultiCombobox();
     this.labelControl11 = new DevExpress.XtraEditors.LabelControl();
     this.NgayAWB = new DevExpress.XtraEditors.DateEdit();
     this.TomTatNoiDung = new DevExpress.XtraEditors.MemoEdit();
     this.GhiChu = new DevExpress.XtraEditors.MemoEdit();
     this.TuKhoaText = new DevExpress.XtraEditors.MemoEdit();
     this.label20 = new DevExpress.XtraEditors.LabelControl();
     this.labelControl2 = new DevExpress.XtraEditors.LabelControl();
     this.label33 = new DevExpress.XtraEditors.LabelControl();
     this.labelControl5 = new DevExpress.XtraEditors.LabelControl();
     this.label36 = new DevExpress.XtraEditors.LabelControl();
     this.Info = new ProtocolVN.Framework.Win.PLInfoBoxEtx();
     this.TinhTrangBang = new ProtocolVN.Framework.Win.PLDMGrid();
     this.TietMuc = new ProtocolVN.Framework.Win.PLDMGrid();
     this.labelControl3 = new DevExpress.XtraEditors.LabelControl();
     this.MaChuongTrinh = new DevExpress.XtraEditors.TextEdit();
     this.label42 = new DevExpress.XtraEditors.LabelControl();
     this.labelControl1 = new DevExpress.XtraEditors.LabelControl();
     this.xtraTabControlMain = new DevExpress.XtraTab.XtraTabControl();
     this.xtraTabPageChuongTrinh = new DevExpress.XtraTab.XtraTabPage();
     this.xtraScrollableControl1 = new DevExpress.XtraEditors.XtraScrollableControl();
     this.xtraTabPageAdd = new DevExpress.XtraTab.XtraTabPage();
     this.popupMenuTab = new DevExpress.XtraBars.PopupMenu(this.components);
     this.barButtonItem1 = new DevExpress.XtraBars.BarButtonItem();
     this.flowLayoutPanel1.SuspendLayout();
     this.flowLayoutPanel2.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.KyHieuPhanLoai.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.KyHieuXepKho_KHPL.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.groupControlThongTinPhatSong)).BeginInit();
     this.groupControlThongTinPhatSong.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.ReleaseDate.Properties.VistaTimeProperties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.ReleaseDate.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.SoRunConlai.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.ReleaseRun.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.Release.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.SoDaRun.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridControlPhatSongKhac)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridviewPhatSongKhac)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridControlNgayPhatDauTien)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridViewNgayPhatDauTien)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.RunThu.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.TongSoRun.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.ReleaseRule.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.MuaKem.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.Rating.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.DoiTuongKhanGia.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.groupControlNguonGoc)).BeginInit();
     this.groupControlNguonGoc.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.NoteBQ.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridControlThongTinBan)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridViewThongTinBan)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.groupControl7)).BeginInit();
     this.groupControl7.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.DonViHauKy.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.NamSanXuat.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.QuocGia.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.KenhHanCheBan.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.groupControl1)).BeginInit();
     this.groupControl1.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.BanQuyenHTV.Properties.VistaTimeProperties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.BanQuyenHTV.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.BanQuyenDIDEnd.Properties.VistaTimeProperties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.BanQuyenDIDEnd.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.BanQuyenDTNNEnd.Properties.VistaTimeProperties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.BanQuyenDTNNEnd.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.BanQuyenDIDStart.Properties.VistaTimeProperties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.BanQuyenDIDStart.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.BanQuyenDTNNStart.Properties.VistaTimeProperties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.BanQuyenDTNNStart.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.ChanelRight.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.DaoDien.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.groupControlThongTin)).BeginInit();
     this.groupControlThongTin.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.gridControlGhiChu)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridViewGhiChu)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.PhanLoaiDrama.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.barManager1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.NguonTrading.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.ClassName.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.Code.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.TenGoc.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.NoiDung.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.Period.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.Category.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.TrailerGoc.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.Photos.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.Script.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.ckcMoiTrenThiTruong.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.ckcTrongKho.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.ThanhLy.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.groupControl8)).BeginInit();
     this.groupControl8.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.KyHieuXepKho_NoiDung.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.textEdit1.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.DienVien.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.TuKhoaSelect.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.NgayAWB.Properties.VistaTimeProperties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.NgayAWB.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.TomTatNoiDung.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.GhiChu.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.TuKhoaText.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.MaChuongTrinh.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.xtraTabControlMain)).BeginInit();
     this.xtraTabControlMain.SuspendLayout();
     this.xtraTabPageChuongTrinh.SuspendLayout();
     this.xtraScrollableControl1.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.popupMenuTab)).BeginInit();
     this.SuspendLayout();
     //
     // flowLayoutPanel1
     //
     this.flowLayoutPanel1.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
     this.flowLayoutPanel1.Controls.Add(this.btnClose);
     this.flowLayoutPanel1.Controls.Add(this.btnDelete);
     this.flowLayoutPanel1.Controls.Add(this.btnDeleteRealy);
     this.flowLayoutPanel1.Controls.Add(this.btnRestore);
     this.flowLayoutPanel1.Controls.Add(this.btnSave);
     this.flowLayoutPanel1.FlowDirection = System.Windows.Forms.FlowDirection.RightToLeft;
     this.flowLayoutPanel1.Location = new System.Drawing.Point(626, 716);
     this.flowLayoutPanel1.Name = "flowLayoutPanel1";
     this.flowLayoutPanel1.Size = new System.Drawing.Size(415, 31);
     this.flowLayoutPanel1.TabIndex = 4;
     //
     // btnClose
     //
     this.btnClose.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
     this.btnClose.Location = new System.Drawing.Point(337, 3);
     this.btnClose.Name = "btnClose";
     this.btnClose.Size = new System.Drawing.Size(75, 23);
     this.btnClose.TabIndex = 2;
     this.btnClose.Text = "Đ&óng";
     this.btnClose.Click += new System.EventHandler(this.btnClose_Click);
     //
     // btnDelete
     //
     this.btnDelete.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
     this.btnDelete.Location = new System.Drawing.Point(256, 3);
     this.btnDelete.Name = "btnDelete";
     this.btnDelete.Size = new System.Drawing.Size(75, 23);
     this.btnDelete.TabIndex = 1;
     this.btnDelete.Text = "&Xóa";
     this.btnDelete.Click += new System.EventHandler(this.btnDelete_Click);
     //
     // btnDeleteRealy
     //
     this.btnDeleteRealy.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
     this.btnDeleteRealy.Location = new System.Drawing.Point(175, 3);
     this.btnDeleteRealy.Name = "btnDeleteRealy";
     this.btnDeleteRealy.Size = new System.Drawing.Size(75, 23);
     this.btnDeleteRealy.TabIndex = 1;
     this.btnDeleteRealy.Text = "&Xóa hẳn";
     this.btnDeleteRealy.Visible = false;
     this.btnDeleteRealy.Click += new System.EventHandler(this.btnDeleteRealy_Click);
     //
     // btnRestore
     //
     this.btnRestore.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
     this.btnRestore.Location = new System.Drawing.Point(94, 3);
     this.btnRestore.Name = "btnRestore";
     this.btnRestore.Size = new System.Drawing.Size(75, 23);
     this.btnRestore.TabIndex = 1;
     this.btnRestore.Text = "&Phục hồi";
     this.btnRestore.Visible = false;
     this.btnRestore.Click += new System.EventHandler(this.btnRestore_Click);
     //
     // btnSave
     //
     this.btnSave.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
     this.btnSave.Location = new System.Drawing.Point(13, 3);
     this.btnSave.Name = "btnSave";
     this.btnSave.Size = new System.Drawing.Size(75, 23);
     this.btnSave.TabIndex = 0;
     this.btnSave.Text = "&Lưu";
     this.btnSave.Click += new System.EventHandler(this.btnSave_Click);
     //
     // InPhieu
     //
     this.InPhieu.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
     this.InPhieu.Location = new System.Drawing.Point(30, 3);
     this.InPhieu.Name = "InPhieu";
     this.InPhieu.Size = new System.Drawing.Size(81, 23);
     this.InPhieu.TabIndex = 1;
     this.InPhieu.Text = "&In nhãn";
     //
     // ctMnuInPhieu
     //
     this.ctMnuInPhieu.Name = "contextMenuStrip2";
     this.ctMnuInPhieu.Size = new System.Drawing.Size(61, 4);
     //
     // NghiepVu
     //
     this.NghiepVu.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
     this.NghiepVu.Location = new System.Drawing.Point(117, 3);
     this.NghiepVu.Name = "NghiepVu";
     this.NghiepVu.Size = new System.Drawing.Size(81, 23);
     this.NghiepVu.TabIndex = 2;
     this.NghiepVu.Text = "Nghiệp vụ";
     this.NghiepVu.Visible = false;
     //
     // ctMnuNghiepVu
     //
     this.ctMnuNghiepVu.Name = "contextMenuStrip3";
     this.ctMnuNghiepVu.Size = new System.Drawing.Size(61, 4);
     //
     // Duyet
     //
     this.Duyet.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
     this.Duyet.Enabled = false;
     this.Duyet.Location = new System.Drawing.Point(3, 6);
     this.Duyet.Name = "Duyet";
     this.Duyet.Size = new System.Drawing.Size(21, 20);
     this.Duyet.TabIndex = 0;
     this.Duyet.Visible = false;
     //
     // flowLayoutPanel2
     //
     this.flowLayoutPanel2.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
     this.flowLayoutPanel2.Controls.Add(this.Duyet);
     this.flowLayoutPanel2.Controls.Add(this.InPhieu);
     this.flowLayoutPanel2.Controls.Add(this.NghiepVu);
     this.flowLayoutPanel2.Location = new System.Drawing.Point(6, 716);
     this.flowLayoutPanel2.Name = "flowLayoutPanel2";
     this.flowLayoutPanel2.Size = new System.Drawing.Size(218, 31);
     this.flowLayoutPanel2.TabIndex = 3;
     //
     // label7
     //
     this.label7.Location = new System.Drawing.Point(638, 52);
     this.label7.Name = "label7";
     this.label7.Size = new System.Drawing.Size(40, 13);
     this.label7.TabIndex = 0;
     this.label7.Text = "Tiết mục";
     //
     // label8
     //
     this.label8.Location = new System.Drawing.Point(9, 76);
     this.label8.Name = "label8";
     this.label8.Size = new System.Drawing.Size(82, 13);
     this.label8.TabIndex = 0;
     this.label8.Text = "Tên chương trình";
     //
     // KyHieuPhanLoai
     //
     this.KyHieuPhanLoai.Location = new System.Drawing.Point(405, 165);
     this.KyHieuPhanLoai.Name = "KyHieuPhanLoai";
     this.KyHieuPhanLoai.Properties.Appearance.Options.UseTextOptions = true;
     this.KyHieuPhanLoai.Properties.Appearance.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.KyHieuPhanLoai.Size = new System.Drawing.Size(227, 20);
     this.KyHieuPhanLoai.TabIndex = 11;
     this.KyHieuPhanLoai.Validated += new System.EventHandler(this.KyHieuPhanLoai_Validated);
     //
     // label21
     //
     this.label21.Location = new System.Drawing.Point(343, 168);
     this.label21.Name = "label21";
     this.label21.Size = new System.Drawing.Size(24, 13);
     this.label21.TabIndex = 0;
     this.label21.Text = "KHPL";
     this.label21.ToolTip = "Ký hiệu phân loại";
     //
     // label22
     //
     this.label22.Appearance.ForeColor = System.Drawing.Color.Blue;
     this.label22.Appearance.Options.UseForeColor = true;
     this.label22.Location = new System.Drawing.Point(345, 191);
     this.label22.Name = "label22";
     this.label22.Size = new System.Drawing.Size(25, 13);
     this.label22.TabIndex = 0;
     this.label22.Text = "KHXK";
     this.label22.ToolTip = "Ký hiệu xếp kho";
     //
     // label2
     //
     this.label2.Location = new System.Drawing.Point(5, 33);
     this.label2.Name = "label2";
     this.label2.Size = new System.Drawing.Size(67, 13);
     this.label2.TabIndex = 0;
     this.label2.Text = "Đơn vị sở hữu";
     //
     // label4
     //
     this.label4.Location = new System.Drawing.Point(5, 10);
     this.label4.Name = "label4";
     this.label4.Size = new System.Drawing.Size(77, 13);
     this.label4.TabIndex = 0;
     this.label4.Text = "Đơn vị cung cấp";
     //
     // label5
     //
     this.label5.Location = new System.Drawing.Point(9, 100);
     this.label5.Name = "label5";
     this.label5.Size = new System.Drawing.Size(43, 13);
     this.label5.TabIndex = 0;
     this.label5.Text = "Đạo diễn";
     //
     // label15
     //
     this.label15.Location = new System.Drawing.Point(639, 122);
     this.label15.Name = "label15";
     this.label15.Size = new System.Drawing.Size(46, 13);
     this.label15.TabIndex = 0;
     this.label15.Text = "Rating TB";
     this.label15.ToolTip = "Rating trung bình";
     //
     // lblTitle
     //
     this.lblTitle.Appearance.Font = new System.Drawing.Font("Tahoma", 18F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.lblTitle.Appearance.Options.UseFont = true;
     this.lblTitle.Appearance.Options.UseTextOptions = true;
     this.lblTitle.Appearance.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.lblTitle.AutoSizeMode = DevExpress.XtraEditors.LabelAutoSizeMode.None;
     this.lblTitle.Dock = System.Windows.Forms.DockStyle.Top;
     this.lblTitle.Location = new System.Drawing.Point(0, 0);
     this.lblTitle.Name = "lblTitle";
     this.lblTitle.Size = new System.Drawing.Size(1049, 38);
     this.lblTitle.TabIndex = 0;
     this.lblTitle.Text = "CHƯƠNG TRÌNH";
     //
     // KyHieuXepKho_KHPL
     //
     this.KyHieuXepKho_KHPL.Location = new System.Drawing.Point(3, 1);
     this.KyHieuXepKho_KHPL.Name = "KyHieuXepKho_KHPL";
     this.KyHieuXepKho_KHPL.Properties.AppearanceReadOnly.Options.UseTextOptions = true;
     this.KyHieuXepKho_KHPL.Properties.AppearanceReadOnly.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.KyHieuXepKho_KHPL.Properties.BorderStyle = DevExpress.XtraEditors.Controls.BorderStyles.NoBorder;
     this.KyHieuXepKho_KHPL.Properties.ReadOnly = true;
     this.KyHieuXepKho_KHPL.Size = new System.Drawing.Size(221, 18);
     this.KyHieuXepKho_KHPL.TabIndex = 0;
     this.KyHieuXepKho_KHPL.TabStop = false;
     //
     // groupControlThongTinPhatSong
     //
     this.groupControlThongTinPhatSong.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
                 | System.Windows.Forms.AnchorStyles.Right)));
     this.groupControlThongTinPhatSong.AppearanceCaption.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold);
     this.groupControlThongTinPhatSong.AppearanceCaption.Options.UseFont = true;
     this.groupControlThongTinPhatSong.Controls.Add(this.ReleaseDate);
     this.groupControlThongTinPhatSong.Controls.Add(this.SoRunConlai);
     this.groupControlThongTinPhatSong.Controls.Add(this.ReleaseRun);
     this.groupControlThongTinPhatSong.Controls.Add(this.Release);
     this.groupControlThongTinPhatSong.Controls.Add(this.SoDaRun);
     this.groupControlThongTinPhatSong.Controls.Add(this.gridControlPhatSongKhac);
     this.groupControlThongTinPhatSong.Controls.Add(this.gridControlNgayPhatDauTien);
     this.groupControlThongTinPhatSong.Controls.Add(this.labelControl8);
     this.groupControlThongTinPhatSong.Controls.Add(this.labelControl9);
     this.groupControlThongTinPhatSong.Controls.Add(this.RunThu);
     this.groupControlThongTinPhatSong.Controls.Add(this.TongSoRun);
     this.groupControlThongTinPhatSong.Controls.Add(this.labelControl20);
     this.groupControlThongTinPhatSong.Controls.Add(this.labelControl19);
     this.groupControlThongTinPhatSong.Controls.Add(this.labelControl6);
     this.groupControlThongTinPhatSong.Controls.Add(this.labelControl24);
     this.groupControlThongTinPhatSong.Controls.Add(this.labelControl21);
     this.groupControlThongTinPhatSong.Controls.Add(this.labelControl15);
     this.groupControlThongTinPhatSong.Controls.Add(this.labelControl10);
     this.groupControlThongTinPhatSong.Controls.Add(this.ReleaseRule);
     this.groupControlThongTinPhatSong.Controls.Add(this.MuaKem);
     this.groupControlThongTinPhatSong.Location = new System.Drawing.Point(3, 672);
     this.groupControlThongTinPhatSong.Name = "groupControlThongTinPhatSong";
     this.groupControlThongTinPhatSong.Size = new System.Drawing.Size(1000, 351);
     this.groupControlThongTinPhatSong.TabIndex = 2;
     this.groupControlThongTinPhatSong.Text = "Thông tin phát sóng";
     //
     // ReleaseDate
     //
     this.ReleaseDate.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
     this.ReleaseDate.EditValue = null;
     this.ReleaseDate.Location = new System.Drawing.Point(840, 150);
     this.ReleaseDate.Name = "ReleaseDate";
     this.ReleaseDate.Properties.AllowNullInput = DevExpress.Utils.DefaultBoolean.True;
     this.ReleaseDate.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.ReleaseDate.Properties.VistaTimeProperties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton()});
     this.ReleaseDate.Size = new System.Drawing.Size(155, 20);
     this.ReleaseDate.TabIndex = 5;
     //
     // SoRunConlai
     //
     this.SoRunConlai.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
     this.SoRunConlai.EditValue = new decimal(new int[] {
     0,
     0,
     0,
     0});
     this.SoRunConlai.Location = new System.Drawing.Point(840, 102);
     this.SoRunConlai.Name = "SoRunConlai";
     this.SoRunConlai.Properties.AllowNullInput = DevExpress.Utils.DefaultBoolean.True;
     this.SoRunConlai.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton()});
     this.SoRunConlai.Properties.ReadOnly = true;
     this.SoRunConlai.Size = new System.Drawing.Size(155, 20);
     this.SoRunConlai.TabIndex = 4;
     this.SoRunConlai.TabStop = false;
     //
     // ReleaseRun
     //
     this.ReleaseRun.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
     this.ReleaseRun.EditValue = new decimal(new int[] {
     0,
     0,
     0,
     0});
     this.ReleaseRun.Location = new System.Drawing.Point(841, 175);
     this.ReleaseRun.Name = "ReleaseRun";
     this.ReleaseRun.Properties.AllowNullInput = DevExpress.Utils.DefaultBoolean.True;
     this.ReleaseRun.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton()});
     this.ReleaseRun.Size = new System.Drawing.Size(154, 20);
     this.ReleaseRun.TabIndex = 5;
     //
     // Release
     //
     this.Release.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
     this.Release.EditValue = new decimal(new int[] {
     0,
     0,
     0,
     0});
     this.Release.Location = new System.Drawing.Point(840, 125);
     this.Release.Name = "Release";
     this.Release.Properties.AllowNullInput = DevExpress.Utils.DefaultBoolean.True;
     this.Release.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton()});
     this.Release.Size = new System.Drawing.Size(155, 20);
     this.Release.TabIndex = 5;
     //
     // SoDaRun
     //
     this.SoDaRun.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
     this.SoDaRun.EditValue = new decimal(new int[] {
     0,
     0,
     0,
     0});
     this.SoDaRun.Location = new System.Drawing.Point(840, 78);
     this.SoDaRun.Name = "SoDaRun";
     this.SoDaRun.Properties.AllowNullInput = DevExpress.Utils.DefaultBoolean.True;
     this.SoDaRun.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton()});
     this.SoDaRun.Size = new System.Drawing.Size(155, 20);
     this.SoDaRun.TabIndex = 3;
     this.SoDaRun.TabStop = false;
     this.SoDaRun.EditValueChanged += new System.EventHandler(this.TongSoRun_EditValueChanged);
     //
     // gridControlPhatSongKhac
     //
     this.gridControlPhatSongKhac.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
     this.gridControlPhatSongKhac.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("gridControlPhatSongKhac.BackgroundImage")));
     this.gridControlPhatSongKhac.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Center;
     this.gridControlPhatSongKhac.Location = new System.Drawing.Point(450, 32);
     this.gridControlPhatSongKhac.MainView = this.gridviewPhatSongKhac;
     this.gridControlPhatSongKhac.Name = "gridControlPhatSongKhac";
     this.gridControlPhatSongKhac.Size = new System.Drawing.Size(305, 314);
     this.gridControlPhatSongKhac.TabIndex = 1;
     this.gridControlPhatSongKhac.ViewCollection.AddRange(new DevExpress.XtraGrid.Views.Base.BaseView[] {
     this.gridviewPhatSongKhac});
     //
     // gridviewPhatSongKhac
     //
     this.gridviewPhatSongKhac.Appearance.HeaderPanel.Options.UseTextOptions = true;
     this.gridviewPhatSongKhac.Appearance.HeaderPanel.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.gridviewPhatSongKhac.Columns.AddRange(new DevExpress.XtraGrid.Columns.GridColumn[] {
     this.ColPSK_Kenh,
     this.ColPSK_TuNgay,
     this.ColPSK_DenNgay,
     this.ColPSK_LanPhat});
     this.gridviewPhatSongKhac.GridControl = this.gridControlPhatSongKhac;
     this.gridviewPhatSongKhac.GroupCount = 1;
     this.gridviewPhatSongKhac.IndicatorWidth = 40;
     this.gridviewPhatSongKhac.Name = "gridviewPhatSongKhac";
     this.gridviewPhatSongKhac.OptionsLayout.Columns.AddNewColumns = false;
     this.gridviewPhatSongKhac.OptionsNavigation.AutoFocusNewRow = true;
     this.gridviewPhatSongKhac.OptionsNavigation.EnterMoveNextColumn = true;
     this.gridviewPhatSongKhac.OptionsPrint.UsePrintStyles = true;
     this.gridviewPhatSongKhac.OptionsView.EnableAppearanceEvenRow = true;
     this.gridviewPhatSongKhac.OptionsView.EnableAppearanceOddRow = true;
     this.gridviewPhatSongKhac.OptionsView.NewItemRowPosition = DevExpress.XtraGrid.Views.Grid.NewItemRowPosition.Top;
     this.gridviewPhatSongKhac.OptionsView.ShowFilterPanelMode = DevExpress.XtraGrid.Views.Base.ShowFilterPanelMode.Never;
     this.gridviewPhatSongKhac.OptionsView.ShowFooter = true;
     this.gridviewPhatSongKhac.OptionsView.ShowGroupedColumns = true;
     this.gridviewPhatSongKhac.OptionsView.ShowGroupPanel = false;
     this.gridviewPhatSongKhac.OptionsView.ShowIndicator = false;
     this.gridviewPhatSongKhac.OptionsView.ShowViewCaption = true;
     this.gridviewPhatSongKhac.SortInfo.AddRange(new DevExpress.XtraGrid.Columns.GridColumnSortInfo[] {
     new DevExpress.XtraGrid.Columns.GridColumnSortInfo(this.ColPSK_Kenh, DevExpress.Data.ColumnSortOrder.Ascending)});
     this.gridviewPhatSongKhac.ViewCaption = "Thời gian phát sóng trên các kênh khác";
     this.gridviewPhatSongKhac.ValidateRow += new DevExpress.XtraGrid.Views.Base.ValidateRowEventHandler(this.gridViewPhatSongKhac_ValidateRow);
     //
     // ColPSK_Kenh
     //
     this.ColPSK_Kenh.Caption = "Kênh phát sóng";
     this.ColPSK_Kenh.Name = "ColPSK_Kenh";
     this.ColPSK_Kenh.SummaryItem.DisplayFormat = "Số lần đã phát {0}";
     this.ColPSK_Kenh.SummaryItem.SummaryType = DevExpress.Data.SummaryItemType.Count;
     this.ColPSK_Kenh.Visible = true;
     this.ColPSK_Kenh.VisibleIndex = 0;
     this.ColPSK_Kenh.Width = 100;
     //
     // ColPSK_TuNgay
     //
     this.ColPSK_TuNgay.Caption = "Từ ngày";
     this.ColPSK_TuNgay.Name = "ColPSK_TuNgay";
     this.ColPSK_TuNgay.Visible = true;
     this.ColPSK_TuNgay.VisibleIndex = 1;
     this.ColPSK_TuNgay.Width = 52;
     //
     // ColPSK_DenNgay
     //
     this.ColPSK_DenNgay.Caption = "Đến ngày";
     this.ColPSK_DenNgay.Name = "ColPSK_DenNgay";
     this.ColPSK_DenNgay.Visible = true;
     this.ColPSK_DenNgay.VisibleIndex = 2;
     this.ColPSK_DenNgay.Width = 59;
     //
     // ColPSK_LanPhat
     //
     this.ColPSK_LanPhat.Caption = "Run thứ";
     this.ColPSK_LanPhat.Name = "ColPSK_LanPhat";
     this.ColPSK_LanPhat.SummaryItem.DisplayFormat = "Run thứ:{0}";
     this.ColPSK_LanPhat.SummaryItem.SummaryType = DevExpress.Data.SummaryItemType.Sum;
     this.ColPSK_LanPhat.Visible = true;
     this.ColPSK_LanPhat.VisibleIndex = 3;
     this.ColPSK_LanPhat.Width = 52;
     //
     // gridControlNgayPhatDauTien
     //
     this.gridControlNgayPhatDauTien.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
                 | System.Windows.Forms.AnchorStyles.Right)));
     this.gridControlNgayPhatDauTien.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("gridControlNgayPhatDauTien.BackgroundImage")));
     this.gridControlNgayPhatDauTien.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Center;
     this.gridControlNgayPhatDauTien.Location = new System.Drawing.Point(6, 32);
     this.gridControlNgayPhatDauTien.MainView = this.gridViewNgayPhatDauTien;
     this.gridControlNgayPhatDauTien.Name = "gridControlNgayPhatDauTien";
     this.gridControlNgayPhatDauTien.Size = new System.Drawing.Size(436, 314);
     this.gridControlNgayPhatDauTien.TabIndex = 0;
     this.gridControlNgayPhatDauTien.ViewCollection.AddRange(new DevExpress.XtraGrid.Views.Base.BaseView[] {
     this.gridViewNgayPhatDauTien});
     //
     // gridViewNgayPhatDauTien
     //
     this.gridViewNgayPhatDauTien.Appearance.HeaderPanel.Options.UseTextOptions = true;
     this.gridViewNgayPhatDauTien.Appearance.HeaderPanel.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.gridViewNgayPhatDauTien.Columns.AddRange(new DevExpress.XtraGrid.Columns.GridColumn[] {
     this.ColKenhPhatSong,
     this.ColIsPhatLai,
     this.ColNgayPhatStart,
     this.ColNgayPhatEnd,
     this.ColTimeSlot,
     this.ColLanPhat});
     this.gridViewNgayPhatDauTien.GridControl = this.gridControlNgayPhatDauTien;
     this.gridViewNgayPhatDauTien.GroupCount = 1;
     this.gridViewNgayPhatDauTien.IndicatorWidth = 40;
     this.gridViewNgayPhatDauTien.Name = "gridViewNgayPhatDauTien";
     this.gridViewNgayPhatDauTien.OptionsLayout.Columns.AddNewColumns = false;
     this.gridViewNgayPhatDauTien.OptionsMenu.EnableFooterMenu = false;
     this.gridViewNgayPhatDauTien.OptionsNavigation.AutoFocusNewRow = true;
     this.gridViewNgayPhatDauTien.OptionsNavigation.EnterMoveNextColumn = true;
     this.gridViewNgayPhatDauTien.OptionsPrint.UsePrintStyles = true;
     this.gridViewNgayPhatDauTien.OptionsView.EnableAppearanceEvenRow = true;
     this.gridViewNgayPhatDauTien.OptionsView.EnableAppearanceOddRow = true;
     this.gridViewNgayPhatDauTien.OptionsView.NewItemRowPosition = DevExpress.XtraGrid.Views.Grid.NewItemRowPosition.Top;
     this.gridViewNgayPhatDauTien.OptionsView.ShowFilterPanelMode = DevExpress.XtraGrid.Views.Base.ShowFilterPanelMode.Never;
     this.gridViewNgayPhatDauTien.OptionsView.ShowFooter = true;
     this.gridViewNgayPhatDauTien.OptionsView.ShowGroupedColumns = true;
     this.gridViewNgayPhatDauTien.OptionsView.ShowGroupPanel = false;
     this.gridViewNgayPhatDauTien.OptionsView.ShowIndicator = false;
     this.gridViewNgayPhatDauTien.OptionsView.ShowViewCaption = true;
     this.gridViewNgayPhatDauTien.SortInfo.AddRange(new DevExpress.XtraGrid.Columns.GridColumnSortInfo[] {
     new DevExpress.XtraGrid.Columns.GridColumnSortInfo(this.ColKenhPhatSong, DevExpress.Data.ColumnSortOrder.Ascending)});
     this.gridViewNgayPhatDauTien.ViewCaption = "Ngày phát sóng đầu tiên";
     this.gridViewNgayPhatDauTien.CustomDrawGroupRow += new DevExpress.XtraGrid.Views.Base.RowObjectCustomDrawEventHandler(this.gridViewNgayPhatDauTien_CustomDrawGroupRow);
     this.gridViewNgayPhatDauTien.RowUpdated += new DevExpress.XtraGrid.Views.Base.RowObjectEventHandler(this.gridViewNgayPhatDauTien_RowUpdated);
     this.gridViewNgayPhatDauTien.ValidateRow += new DevExpress.XtraGrid.Views.Base.ValidateRowEventHandler(this.gridViewNgayPhatDauTien_ValidateRow);
     //
     // ColKenhPhatSong
     //
     this.ColKenhPhatSong.Caption = "Kênh";
     this.ColKenhPhatSong.Name = "ColKenhPhatSong";
     this.ColKenhPhatSong.SummaryItem.DisplayFormat = "Phát chính: {0} lần";
     this.ColKenhPhatSong.SummaryItem.SummaryType = DevExpress.Data.SummaryItemType.Count;
     this.ColKenhPhatSong.Visible = true;
     this.ColKenhPhatSong.VisibleIndex = 0;
     this.ColKenhPhatSong.Width = 83;
     //
     // ColIsPhatLai
     //
     this.ColIsPhatLai.Caption = "Phát lại";
     this.ColIsPhatLai.Name = "ColIsPhatLai";
     this.ColIsPhatLai.SummaryItem.DisplayFormat = "Phát lại: {0} lần";
     this.ColIsPhatLai.SummaryItem.SummaryType = DevExpress.Data.SummaryItemType.Count;
     this.ColIsPhatLai.Visible = true;
     this.ColIsPhatLai.VisibleIndex = 1;
     this.ColIsPhatLai.Width = 68;
     //
     // ColNgayPhatStart
     //
     this.ColNgayPhatStart.Caption = "Từ ngày";
     this.ColNgayPhatStart.Name = "ColNgayPhatStart";
     this.ColNgayPhatStart.Visible = true;
     this.ColNgayPhatStart.VisibleIndex = 2;
     this.ColNgayPhatStart.Width = 52;
     //
     // ColNgayPhatEnd
     //
     this.ColNgayPhatEnd.Caption = "Đến ngày";
     this.ColNgayPhatEnd.Name = "ColNgayPhatEnd";
     this.ColNgayPhatEnd.Visible = true;
     this.ColNgayPhatEnd.VisibleIndex = 3;
     this.ColNgayPhatEnd.Width = 59;
     //
     // ColTimeSlot
     //
     this.ColTimeSlot.Caption = "Timeslot";
     this.ColTimeSlot.Name = "ColTimeSlot";
     this.ColTimeSlot.Visible = true;
     this.ColTimeSlot.VisibleIndex = 4;
     this.ColTimeSlot.Width = 51;
     //
     // ColLanPhat
     //
     this.ColLanPhat.Caption = "Run thứ";
     this.ColLanPhat.Name = "ColLanPhat";
     this.ColLanPhat.SummaryItem.DisplayFormat = "Run thứ:{0}";
     this.ColLanPhat.SummaryItem.SummaryType = DevExpress.Data.SummaryItemType.Sum;
     this.ColLanPhat.Visible = true;
     this.ColLanPhat.VisibleIndex = 5;
     this.ColLanPhat.Width = 52;
     //
     // labelControl8
     //
     this.labelControl8.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
     this.labelControl8.Location = new System.Drawing.Point(760, 105);
     this.labelControl8.Name = "labelControl8";
     this.labelControl8.Size = new System.Drawing.Size(52, 13);
     this.labelControl8.TabIndex = 137;
     this.labelControl8.Text = "Run còn lại";
     //
     // labelControl9
     //
     this.labelControl9.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
     this.labelControl9.Location = new System.Drawing.Point(760, 81);
     this.labelControl9.Name = "labelControl9";
     this.labelControl9.Size = new System.Drawing.Size(49, 13);
     this.labelControl9.TabIndex = 137;
     this.labelControl9.Text = "Số đã Run";
     //
     // RunThu
     //
     this.RunThu.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
     this.RunThu.EditValue = new decimal(new int[] {
     0,
     0,
     0,
     0});
     this.RunThu.Location = new System.Drawing.Point(840, 32);
     this.RunThu.Name = "RunThu";
     this.RunThu.Properties.AllowNullInput = DevExpress.Utils.DefaultBoolean.True;
     this.RunThu.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton()});
     this.RunThu.Size = new System.Drawing.Size(155, 20);
     this.RunThu.TabIndex = 2;
     this.RunThu.EditValueChanged += new System.EventHandler(this.TongSoRun_EditValueChanged);
     //
     // TongSoRun
     //
     this.TongSoRun.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
     this.TongSoRun.EditValue = new decimal(new int[] {
     0,
     0,
     0,
     0});
     this.TongSoRun.Location = new System.Drawing.Point(840, 55);
     this.TongSoRun.Name = "TongSoRun";
     this.TongSoRun.Properties.AllowNullInput = DevExpress.Utils.DefaultBoolean.True;
     this.TongSoRun.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton()});
     this.TongSoRun.Size = new System.Drawing.Size(155, 20);
     this.TongSoRun.TabIndex = 2;
     this.TongSoRun.EditValueChanged += new System.EventHandler(this.TongSoRun_EditValueChanged);
     //
     // labelControl20
     //
     this.labelControl20.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
     this.labelControl20.Location = new System.Drawing.Point(760, 178);
     this.labelControl20.Name = "labelControl20";
     this.labelControl20.Size = new System.Drawing.Size(57, 13);
     this.labelControl20.TabIndex = 129;
     this.labelControl20.Text = "Release run";
     //
     // labelControl19
     //
     this.labelControl19.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
     this.labelControl19.Location = new System.Drawing.Point(760, 151);
     this.labelControl19.Name = "labelControl19";
     this.labelControl19.Size = new System.Drawing.Size(63, 13);
     this.labelControl19.TabIndex = 129;
     this.labelControl19.Text = "Release date";
     //
     // labelControl6
     //
     this.labelControl6.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
     this.labelControl6.Location = new System.Drawing.Point(760, 127);
     this.labelControl6.Name = "labelControl6";
     this.labelControl6.Size = new System.Drawing.Size(74, 13);
     this.labelControl6.TabIndex = 129;
     this.labelControl6.Text = "Release (Ngày)";
     //
     // labelControl24
     //
     this.labelControl24.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
     this.labelControl24.Location = new System.Drawing.Point(760, 205);
     this.labelControl24.Name = "labelControl24";
     this.labelControl24.Size = new System.Drawing.Size(53, 13);
     this.labelControl24.TabIndex = 137;
     this.labelControl24.Text = "Realse rule";
     //
     // labelControl21
     //
     this.labelControl21.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
     this.labelControl21.Location = new System.Drawing.Point(760, 276);
     this.labelControl21.Name = "labelControl21";
     this.labelControl21.Size = new System.Drawing.Size(42, 13);
     this.labelControl21.TabIndex = 137;
     this.labelControl21.Text = "Mua kèm";
     //
     // labelControl15
     //
     this.labelControl15.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
     this.labelControl15.Location = new System.Drawing.Point(760, 36);
     this.labelControl15.Name = "labelControl15";
     this.labelControl15.Size = new System.Drawing.Size(39, 13);
     this.labelControl15.TabIndex = 137;
     this.labelControl15.Text = "Run thứ";
     //
     // labelControl10
     //
     this.labelControl10.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
     this.labelControl10.Location = new System.Drawing.Point(760, 57);
     this.labelControl10.Name = "labelControl10";
     this.labelControl10.Size = new System.Drawing.Size(60, 13);
     this.labelControl10.TabIndex = 137;
     this.labelControl10.Text = "Tổng số Run";
     //
     // ReleaseRule
     //
     this.ReleaseRule.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
     this.ReleaseRule.Location = new System.Drawing.Point(841, 201);
     this.ReleaseRule.Name = "ReleaseRule";
     this.ReleaseRule.Size = new System.Drawing.Size(152, 70);
     this.ReleaseRule.TabIndex = 6;
     //
     // MuaKem
     //
     this.MuaKem.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
     this.MuaKem.Location = new System.Drawing.Point(841, 277);
     this.MuaKem.Name = "MuaKem";
     this.MuaKem.Size = new System.Drawing.Size(155, 69);
     this.MuaKem.TabIndex = 6;
     //
     // Rating
     //
     this.Rating.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
                 | System.Windows.Forms.AnchorStyles.Right)));
     this.Rating.Location = new System.Drawing.Point(690, 120);
     this.Rating.Name = "Rating";
     this.Rating.Properties.AllowNullInput = DevExpress.Utils.DefaultBoolean.True;
     this.Rating.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.Rating.Size = new System.Drawing.Size(303, 20);
     this.Rating.TabIndex = 12;
     //
     // DoiTuongKhanGia
     //
     this.DoiTuongKhanGia.DataSource = null;
     this.DoiTuongKhanGia.DisplayField = null;
     this.DoiTuongKhanGia.EditValue = "";
     this.DoiTuongKhanGia.Location = new System.Drawing.Point(93, 120);
     this.DoiTuongKhanGia.Name = "DoiTuongKhanGia";
     this.DoiTuongKhanGia.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.DoiTuongKhanGia.Size = new System.Drawing.Size(241, 20);
     this.DoiTuongKhanGia.TabIndex = 10;
     this.DoiTuongKhanGia.ValueField = null;
     //
     // label14
     //
     this.label14.Location = new System.Drawing.Point(9, 124);
     this.label14.Name = "label14";
     this.label14.Size = new System.Drawing.Size(57, 13);
     this.label14.TabIndex = 0;
     this.label14.Text = "ĐT khán giả";
     //
     // groupControlNguonGoc
     //
     this.groupControlNguonGoc.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
                 | System.Windows.Forms.AnchorStyles.Right)));
     this.groupControlNguonGoc.AppearanceCaption.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold);
     this.groupControlNguonGoc.AppearanceCaption.Options.UseFont = true;
     this.groupControlNguonGoc.Controls.Add(this.NoteBQ);
     this.groupControlNguonGoc.Controls.Add(this.gridControlThongTinBan);
     this.groupControlNguonGoc.Controls.Add(this.groupControl7);
     this.groupControlNguonGoc.Controls.Add(this.labelControl17);
     this.groupControlNguonGoc.Controls.Add(this.groupControl1);
     this.groupControlNguonGoc.Controls.Add(this.labelControl14);
     this.groupControlNguonGoc.Location = new System.Drawing.Point(4, 425);
     this.groupControlNguonGoc.Name = "groupControlNguonGoc";
     this.groupControlNguonGoc.Size = new System.Drawing.Size(999, 228);
     this.groupControlNguonGoc.TabIndex = 1;
     this.groupControlNguonGoc.Text = "Nguồn gốc - bản quyền";
     //
     // NoteBQ
     //
     this.NoteBQ.Location = new System.Drawing.Point(95, 180);
     this.NoteBQ.Name = "NoteBQ";
     this.NoteBQ.Size = new System.Drawing.Size(539, 43);
     this.NoteBQ.TabIndex = 136;
     //
     // gridControlThongTinBan
     //
     this.gridControlThongTinBan.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
                 | System.Windows.Forms.AnchorStyles.Right)));
     this.gridControlThongTinBan.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("gridControlThongTinBan.BackgroundImage")));
     this.gridControlThongTinBan.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Center;
     this.gridControlThongTinBan.Location = new System.Drawing.Point(645, 29);
     this.gridControlThongTinBan.MainView = this.gridViewThongTinBan;
     this.gridControlThongTinBan.Name = "gridControlThongTinBan";
     this.gridControlThongTinBan.Size = new System.Drawing.Size(350, 194);
     this.gridControlThongTinBan.TabIndex = 2;
     this.gridControlThongTinBan.ViewCollection.AddRange(new DevExpress.XtraGrid.Views.Base.BaseView[] {
     this.gridViewThongTinBan});
     //
     // gridViewThongTinBan
     //
     this.gridViewThongTinBan.Appearance.HeaderPanel.Options.UseTextOptions = true;
     this.gridViewThongTinBan.Appearance.HeaderPanel.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.gridViewThongTinBan.Columns.AddRange(new DevExpress.XtraGrid.Columns.GridColumn[] {
     this.ColKenhBan,
     this.ColNgayBanTu,
     this.ColNgayBanDen});
     this.gridViewThongTinBan.GridControl = this.gridControlThongTinBan;
     this.gridViewThongTinBan.GroupCount = 1;
     this.gridViewThongTinBan.IndicatorWidth = 40;
     this.gridViewThongTinBan.Name = "gridViewThongTinBan";
     this.gridViewThongTinBan.OptionsLayout.Columns.AddNewColumns = false;
     this.gridViewThongTinBan.OptionsNavigation.AutoFocusNewRow = true;
     this.gridViewThongTinBan.OptionsNavigation.EnterMoveNextColumn = true;
     this.gridViewThongTinBan.OptionsPrint.UsePrintStyles = true;
     this.gridViewThongTinBan.OptionsView.EnableAppearanceEvenRow = true;
     this.gridViewThongTinBan.OptionsView.EnableAppearanceOddRow = true;
     this.gridViewThongTinBan.OptionsView.NewItemRowPosition = DevExpress.XtraGrid.Views.Grid.NewItemRowPosition.Top;
     this.gridViewThongTinBan.OptionsView.ShowFilterPanelMode = DevExpress.XtraGrid.Views.Base.ShowFilterPanelMode.Never;
     this.gridViewThongTinBan.OptionsView.ShowGroupedColumns = true;
     this.gridViewThongTinBan.OptionsView.ShowGroupPanel = false;
     this.gridViewThongTinBan.OptionsView.ShowIndicator = false;
     this.gridViewThongTinBan.OptionsView.ShowViewCaption = true;
     this.gridViewThongTinBan.SortInfo.AddRange(new DevExpress.XtraGrid.Columns.GridColumnSortInfo[] {
     new DevExpress.XtraGrid.Columns.GridColumnSortInfo(this.ColKenhBan, DevExpress.Data.ColumnSortOrder.Ascending)});
     this.gridViewThongTinBan.ViewCaption = "Thông tin bán";
     this.gridViewThongTinBan.CustomDrawGroupRow += new DevExpress.XtraGrid.Views.Base.RowObjectCustomDrawEventHandler(this.gridViewThongTinBan_CustomDrawGroupRow);
     this.gridViewThongTinBan.ValidateRow += new DevExpress.XtraGrid.Views.Base.ValidateRowEventHandler(this.gridViewThongTinBan_ValidateRow);
     //
     // ColKenhBan
     //
     this.ColKenhBan.Caption = "Kênh bán";
     this.ColKenhBan.Name = "ColKenhBan";
     this.ColKenhBan.SummaryItem.DisplayFormat = "Tồng số lần đã bán {0}";
     this.ColKenhBan.SummaryItem.SummaryType = DevExpress.Data.SummaryItemType.Count;
     this.ColKenhBan.Visible = true;
     this.ColKenhBan.VisibleIndex = 0;
     this.ColKenhBan.Width = 70;
     //
     // ColNgayBanTu
     //
     this.ColNgayBanTu.Caption = "Từ ngày";
     this.ColNgayBanTu.Name = "ColNgayBanTu";
     this.ColNgayBanTu.Visible = true;
     this.ColNgayBanTu.VisibleIndex = 1;
     this.ColNgayBanTu.Width = 52;
     //
     // ColNgayBanDen
     //
     this.ColNgayBanDen.Caption = "Đên ngày";
     this.ColNgayBanDen.Name = "ColNgayBanDen";
     this.ColNgayBanDen.Visible = true;
     this.ColNgayBanDen.VisibleIndex = 2;
     this.ColNgayBanDen.Width = 59;
     //
     // groupControl7
     //
     this.groupControl7.Controls.Add(this.DonViHauKy);
     this.groupControl7.Controls.Add(this.HangSanXuat);
     this.groupControl7.Controls.Add(this.DonViSoHuu);
     this.groupControl7.Controls.Add(this.NamSanXuat);
     this.groupControl7.Controls.Add(this.label4);
     this.groupControl7.Controls.Add(this.label2);
     this.groupControl7.Controls.Add(this.labelControl33);
     this.groupControl7.Controls.Add(this.labelControl32);
     this.groupControl7.Controls.Add(this.labelControl4);
     this.groupControl7.Controls.Add(this.labelControl7);
     this.groupControl7.Controls.Add(this.QuocGia);
     this.groupControl7.Controls.Add(this.label25);
     this.groupControl7.Controls.Add(this.KenhHanCheBan);
     this.groupControl7.Controls.Add(this.DonViCungCap);
     this.groupControl7.Location = new System.Drawing.Point(2, 29);
     this.groupControl7.Name = "groupControl7";
     this.groupControl7.ShowCaption = false;
     this.groupControl7.Size = new System.Drawing.Size(338, 147);
     this.groupControl7.TabIndex = 0;
     this.groupControl7.Text = "groupControl7";
     //
     // DonViHauKy
     //
     this.DonViHauKy._DataSource = null;
     this.DonViHauKy._GetField = null;
     this.DonViHauKy.Location = new System.Drawing.Point(92, 53);
     this.DonViHauKy.Name = "DonViHauKy";
     this.DonViHauKy.Properties.CloseUpKey = new DevExpress.Utils.KeyShortcut(System.Windows.Forms.Keys.None);
     this.DonViHauKy.Size = new System.Drawing.Size(241, 20);
     this.DonViHauKy.TabIndex = 133;
     //
     // HangSanXuat
     //
     this.HangSanXuat.Location = new System.Drawing.Point(92, 78);
     this.HangSanXuat.Name = "HangSanXuat";
     this.HangSanXuat.Size = new System.Drawing.Size(241, 20);
     this.HangSanXuat.TabIndex = 1;
     this.HangSanXuat.ZZZWidthFactor = 2F;
     //
     // DonViSoHuu
     //
     this.DonViSoHuu.Location = new System.Drawing.Point(92, 31);
     this.DonViSoHuu.Name = "DonViSoHuu";
     this.DonViSoHuu.Size = new System.Drawing.Size(241, 20);
     this.DonViSoHuu.TabIndex = 1;
     this.DonViSoHuu.ZZZWidthFactor = 2F;
     //
     // NamSanXuat
     //
     this.NamSanXuat.EditValue = new decimal(new int[] {
     1999,
     0,
     0,
     0});
     this.NamSanXuat.Location = new System.Drawing.Point(278, 101);
     this.NamSanXuat.Name = "NamSanXuat";
     this.NamSanXuat.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton()});
     this.NamSanXuat.Properties.Mask.EditMask = "n0";
     this.NamSanXuat.Properties.Mask.UseMaskAsDisplayFormat = true;
     this.NamSanXuat.Properties.MaxValue = new decimal(new int[] {
     -1530494977,
     232830,
     0,
     0});
     this.NamSanXuat.Size = new System.Drawing.Size(55, 20);
     this.NamSanXuat.TabIndex = 3;
     //
     // labelControl33
     //
     this.labelControl33.Location = new System.Drawing.Point(6, 81);
     this.labelControl33.Name = "labelControl33";
     this.labelControl33.Size = new System.Drawing.Size(70, 13);
     this.labelControl33.TabIndex = 0;
     this.labelControl33.Text = "Hãng sản xuất";
     //
     // labelControl32
     //
     this.labelControl32.Location = new System.Drawing.Point(5, 55);
     this.labelControl32.Name = "labelControl32";
     this.labelControl32.Size = new System.Drawing.Size(66, 13);
     this.labelControl32.TabIndex = 0;
     this.labelControl32.Text = "Đơn vị hậu kỳ";
     //
     // labelControl4
     //
     this.labelControl4.Location = new System.Drawing.Point(5, 104);
     this.labelControl4.Name = "labelControl4";
     this.labelControl4.Size = new System.Drawing.Size(70, 13);
     this.labelControl4.TabIndex = 0;
     this.labelControl4.Text = "Nước sản xuất";
     //
     // labelControl7
     //
     this.labelControl7.Location = new System.Drawing.Point(5, 127);
     this.labelControl7.Name = "labelControl7";
     this.labelControl7.Size = new System.Drawing.Size(86, 13);
     this.labelControl7.TabIndex = 0;
     this.labelControl7.Text = "Kênh hạn chế bán";
     //
     // QuocGia
     //
     this.QuocGia.DataSource = null;
     this.QuocGia.DisplayField = null;
     this.QuocGia.EditValue = "";
     this.QuocGia.Location = new System.Drawing.Point(92, 101);
     this.QuocGia.Name = "QuocGia";
     this.QuocGia.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.QuocGia.Size = new System.Drawing.Size(137, 20);
     this.QuocGia.TabIndex = 2;
     this.QuocGia.ValueField = null;
     //
     // label25
     //
     this.label25.Appearance.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label25.Appearance.ForeColor = System.Drawing.Color.Black;
     this.label25.Appearance.Options.UseFont = true;
     this.label25.Appearance.Options.UseForeColor = true;
     this.label25.Location = new System.Drawing.Point(236, 104);
     this.label25.Name = "label25";
     this.label25.Size = new System.Drawing.Size(36, 13);
     this.label25.TabIndex = 0;
     this.label25.Text = "Năm SX";
     //
     // KenhHanCheBan
     //
     this.KenhHanCheBan.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
                 | System.Windows.Forms.AnchorStyles.Right)));
     this.KenhHanCheBan.DataSource = null;
     this.KenhHanCheBan.DisplayField = null;
     this.KenhHanCheBan.EditValue = "";
     this.KenhHanCheBan.Location = new System.Drawing.Point(92, 123);
     this.KenhHanCheBan.Name = "KenhHanCheBan";
     this.KenhHanCheBan.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.KenhHanCheBan.Size = new System.Drawing.Size(241, 20);
     this.KenhHanCheBan.TabIndex = 4;
     this.KenhHanCheBan.ValueField = null;
     //
     // DonViCungCap
     //
     this.DonViCungCap.Location = new System.Drawing.Point(92, 8);
     this.DonViCungCap.Name = "DonViCungCap";
     this.DonViCungCap.Size = new System.Drawing.Size(241, 20);
     this.DonViCungCap.TabIndex = 0;
     this.DonViCungCap.ZZZWidthFactor = 2F;
     //
     // labelControl17
     //
     this.labelControl17.Location = new System.Drawing.Point(436, 23);
     this.labelControl17.Name = "labelControl17";
     this.labelControl17.Size = new System.Drawing.Size(95, 13);
     this.labelControl17.TabIndex = 0;
     this.labelControl17.Text = "Thời hạn bản quyền";
     //
     // groupControl1
     //
     this.groupControl1.Controls.Add(this.BanQuyenHTV);
     this.groupControl1.Controls.Add(this.BanQuyenDIDEnd);
     this.groupControl1.Controls.Add(this.BanQuyenDTNNEnd);
     this.groupControl1.Controls.Add(this.BanQuyenDIDStart);
     this.groupControl1.Controls.Add(this.BanQuyenDTNNStart);
     this.groupControl1.Controls.Add(this.ChanelRight);
     this.groupControl1.Controls.Add(this.labelControl25);
     this.groupControl1.Controls.Add(this.labelControl26);
     this.groupControl1.Controls.Add(this.labelControl27);
     this.groupControl1.Controls.Add(this.labelControl28);
     this.groupControl1.Controls.Add(this.labelControl29);
     this.groupControl1.Controls.Add(this.labelControl30);
     this.groupControl1.Controls.Add(this.BanQuyenThuoc);
     this.groupControl1.Controls.Add(this.labelControl31);
     this.groupControl1.Location = new System.Drawing.Point(345, 29);
     this.groupControl1.Name = "groupControl1";
     this.groupControl1.ShowCaption = false;
     this.groupControl1.Size = new System.Drawing.Size(289, 145);
     this.groupControl1.TabIndex = 1;
     this.groupControl1.Text = "groupControl5";
     //
     // BanQuyenHTV
     //
     this.BanQuyenHTV.EditValue = null;
     this.BanQuyenHTV.Location = new System.Drawing.Point(72, 83);
     this.BanQuyenHTV.Name = "BanQuyenHTV";
     this.BanQuyenHTV.Properties.AllowNullInput = DevExpress.Utils.DefaultBoolean.True;
     this.BanQuyenHTV.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.BanQuyenHTV.Properties.VistaTimeProperties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton()});
     this.BanQuyenHTV.Size = new System.Drawing.Size(213, 20);
     this.BanQuyenHTV.TabIndex = 5;
     //
     // BanQuyenDIDEnd
     //
     this.BanQuyenDIDEnd.EditValue = null;
     this.BanQuyenDIDEnd.Location = new System.Drawing.Point(192, 38);
     this.BanQuyenDIDEnd.Name = "BanQuyenDIDEnd";
     this.BanQuyenDIDEnd.Properties.AllowNullInput = DevExpress.Utils.DefaultBoolean.True;
     this.BanQuyenDIDEnd.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.BanQuyenDIDEnd.Properties.VistaTimeProperties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton()});
     this.BanQuyenDIDEnd.Size = new System.Drawing.Size(94, 20);
     this.BanQuyenDIDEnd.TabIndex = 2;
     this.BanQuyenDIDEnd.ToolTip = "Bản quyền đối với đối tác trong nước End";
     //
     // BanQuyenDTNNEnd
     //
     this.BanQuyenDTNNEnd.EditValue = null;
     this.BanQuyenDTNNEnd.Location = new System.Drawing.Point(192, 60);
     this.BanQuyenDTNNEnd.Name = "BanQuyenDTNNEnd";
     this.BanQuyenDTNNEnd.Properties.AllowNullInput = DevExpress.Utils.DefaultBoolean.True;
     this.BanQuyenDTNNEnd.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.BanQuyenDTNNEnd.Properties.VistaTimeProperties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton()});
     this.BanQuyenDTNNEnd.Size = new System.Drawing.Size(94, 20);
     this.BanQuyenDTNNEnd.TabIndex = 4;
     this.BanQuyenDTNNEnd.ToolTip = "Bản quyền với đối tác nước ngoài end";
     //
     // BanQuyenDIDStart
     //
     this.BanQuyenDIDStart.EditValue = null;
     this.BanQuyenDIDStart.Location = new System.Drawing.Point(71, 38);
     this.BanQuyenDIDStart.Name = "BanQuyenDIDStart";
     this.BanQuyenDIDStart.Properties.AllowNullInput = DevExpress.Utils.DefaultBoolean.True;
     this.BanQuyenDIDStart.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.BanQuyenDIDStart.Properties.VistaTimeProperties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton()});
     this.BanQuyenDIDStart.Size = new System.Drawing.Size(91, 20);
     this.BanQuyenDIDStart.TabIndex = 1;
     this.BanQuyenDIDStart.ToolTip = "Bản quyền đối với đối tác trong nước start";
     //
     // BanQuyenDTNNStart
     //
     this.BanQuyenDTNNStart.EditValue = null;
     this.BanQuyenDTNNStart.Location = new System.Drawing.Point(71, 60);
     this.BanQuyenDTNNStart.Name = "BanQuyenDTNNStart";
     this.BanQuyenDTNNStart.Properties.AllowNullInput = DevExpress.Utils.DefaultBoolean.True;
     this.BanQuyenDTNNStart.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.BanQuyenDTNNStart.Properties.VistaTimeProperties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton()});
     this.BanQuyenDTNNStart.Size = new System.Drawing.Size(90, 20);
     this.BanQuyenDTNNStart.TabIndex = 3;
     //
     // ChanelRight
     //
     this.ChanelRight.DataSource = null;
     this.ChanelRight.DisplayField = null;
     this.ChanelRight.EditValue = "";
     this.ChanelRight.Location = new System.Drawing.Point(72, 106);
     this.ChanelRight.Name = "ChanelRight";
     this.ChanelRight.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.ChanelRight.Size = new System.Drawing.Size(213, 20);
     this.ChanelRight.TabIndex = 11;
     this.ChanelRight.ValueField = null;
     //
     // labelControl25
     //
     this.labelControl25.Location = new System.Drawing.Point(2, 110);
     this.labelControl25.Name = "labelControl25";
     this.labelControl25.Size = new System.Drawing.Size(64, 13);
     this.labelControl25.TabIndex = 0;
     this.labelControl25.Text = "Channel right";
     //
     // labelControl26
     //
     this.labelControl26.Location = new System.Drawing.Point(3, 20);
     this.labelControl26.Name = "labelControl26";
     this.labelControl26.Size = new System.Drawing.Size(44, 13);
     this.labelControl26.TabIndex = 0;
     this.labelControl26.Text = "BQ thuộc";
     this.labelControl26.ToolTip = "Bản quyền thuộc";
     //
     // labelControl27
     //
     this.labelControl27.Location = new System.Drawing.Point(3, 87);
     this.labelControl27.Name = "labelControl27";
     this.labelControl27.Size = new System.Drawing.Size(19, 13);
     this.labelControl27.TabIndex = 0;
     this.labelControl27.Text = "HTV";
     this.labelControl27.ToolTip = "Bản quyền HTV";
     //
     // labelControl28
     //
     this.labelControl28.Location = new System.Drawing.Point(3, 64);
     this.labelControl28.Name = "labelControl28";
     this.labelControl28.Size = new System.Drawing.Size(54, 13);
     this.labelControl28.TabIndex = 0;
     this.labelControl28.Text = "DTNN Start";
     this.labelControl28.ToolTip = "Bản quyền với đối tác nước ngoài Start";
     //
     // labelControl29
     //
     this.labelControl29.Location = new System.Drawing.Point(3, 42);
     this.labelControl29.Name = "labelControl29";
     this.labelControl29.Size = new System.Drawing.Size(53, 13);
     this.labelControl29.TabIndex = 0;
     this.labelControl29.Text = "DTTN Start";
     //
     // labelControl30
     //
     this.labelControl30.Location = new System.Drawing.Point(169, 64);
     this.labelControl30.Name = "labelControl30";
     this.labelControl30.Size = new System.Drawing.Size(18, 13);
     this.labelControl30.TabIndex = 0;
     this.labelControl30.Text = "End";
     //
     // BanQuyenThuoc
     //
     this.BanQuyenThuoc.Location = new System.Drawing.Point(71, 16);
     this.BanQuyenThuoc.Name = "BanQuyenThuoc";
     this.BanQuyenThuoc.Size = new System.Drawing.Size(217, 20);
     this.BanQuyenThuoc.TabIndex = 0;
     this.BanQuyenThuoc.ZZZWidthFactor = 2F;
     //
     // labelControl31
     //
     this.labelControl31.Location = new System.Drawing.Point(169, 42);
     this.labelControl31.Name = "labelControl31";
     this.labelControl31.Size = new System.Drawing.Size(18, 13);
     this.labelControl31.TabIndex = 0;
     this.labelControl31.Text = "End";
     //
     // labelControl14
     //
     this.labelControl14.Location = new System.Drawing.Point(6, 182);
     this.labelControl14.Name = "labelControl14";
     this.labelControl14.Size = new System.Drawing.Size(40, 13);
     this.labelControl14.TabIndex = 0;
     this.labelControl14.Text = "Note BQ";
     //
     // DaoDien
     //
     this.DaoDien.DataSource = null;
     this.DaoDien.DisplayField = null;
     this.DaoDien.EditValue = "";
     this.DaoDien.Location = new System.Drawing.Point(93, 96);
     this.DaoDien.Name = "DaoDien";
     this.DaoDien.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.DaoDien.Size = new System.Drawing.Size(239, 20);
     this.DaoDien.TabIndex = 7;
     this.DaoDien.ValueField = null;
     //
     // groupControlThongTin
     //
     this.groupControlThongTin.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
                 | System.Windows.Forms.AnchorStyles.Right)));
     this.groupControlThongTin.AppearanceCaption.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold);
     this.groupControlThongTin.AppearanceCaption.Options.UseFont = true;
     this.groupControlThongTin.Controls.Add(this.gridControlGhiChu);
     this.groupControlThongTin.Controls.Add(this.labelControl34);
     this.groupControlThongTin.Controls.Add(this.PhanLoaiDrama);
     this.groupControlThongTin.Controls.Add(this.labelControl18);
     this.groupControlThongTin.Controls.Add(this.NguonTrading);
     this.groupControlThongTin.Controls.Add(this.ClassName);
     this.groupControlThongTin.Controls.Add(this.labelControl23);
     this.groupControlThongTin.Controls.Add(this.labelControl13);
     this.groupControlThongTin.Controls.Add(this.Code);
     this.groupControlThongTin.Controls.Add(this.TenGoc);
     this.groupControlThongTin.Controls.Add(this.NoiDung);
     this.groupControlThongTin.Controls.Add(this.Period);
     this.groupControlThongTin.Controls.Add(this.Category);
     this.groupControlThongTin.Controls.Add(this.TrailerGoc);
     this.groupControlThongTin.Controls.Add(this.Photos);
     this.groupControlThongTin.Controls.Add(this.Script);
     this.groupControlThongTin.Controls.Add(this.ckcMoiTrenThiTruong);
     this.groupControlThongTin.Controls.Add(this.ckcTrongKho);
     this.groupControlThongTin.Controls.Add(this.ThanhLy);
     this.groupControlThongTin.Controls.Add(this.groupControl8);
     this.groupControlThongTin.Controls.Add(this.label22);
     this.groupControlThongTin.Controls.Add(this.Ranking);
     this.groupControlThongTin.Controls.Add(this.Rating);
     this.groupControlThongTin.Controls.Add(this.DienVien);
     this.groupControlThongTin.Controls.Add(this.DaoDien);
     this.groupControlThongTin.Controls.Add(this.KyHieuPhanLoai);
     this.groupControlThongTin.Controls.Add(this.labelControl22);
     this.groupControlThongTin.Controls.Add(this.labelControl16);
     this.groupControlThongTin.Controls.Add(this.label21);
     this.groupControlThongTin.Controls.Add(this.labelControl12);
     this.groupControlThongTin.Controls.Add(this.label15);
     this.groupControlThongTin.Controls.Add(this.label5);
     this.groupControlThongTin.Controls.Add(this.label24);
     this.groupControlThongTin.Controls.Add(this.TuKhoaSelect);
     this.groupControlThongTin.Controls.Add(this.DoiTuongKhanGia);
     this.groupControlThongTin.Controls.Add(this.labelControl11);
     this.groupControlThongTin.Controls.Add(this.label14);
     this.groupControlThongTin.Controls.Add(this.NgayAWB);
     this.groupControlThongTin.Controls.Add(this.TomTatNoiDung);
     this.groupControlThongTin.Controls.Add(this.GhiChu);
     this.groupControlThongTin.Controls.Add(this.TuKhoaText);
     this.groupControlThongTin.Controls.Add(this.label20);
     this.groupControlThongTin.Controls.Add(this.labelControl2);
     this.groupControlThongTin.Controls.Add(this.label33);
     this.groupControlThongTin.Controls.Add(this.labelControl5);
     this.groupControlThongTin.Controls.Add(this.label36);
     this.groupControlThongTin.Controls.Add(this.Info);
     this.groupControlThongTin.Controls.Add(this.TinhTrangBang);
     this.groupControlThongTin.Controls.Add(this.TietMuc);
     this.groupControlThongTin.Controls.Add(this.labelControl3);
     this.groupControlThongTin.Controls.Add(this.MaChuongTrinh);
     this.groupControlThongTin.Controls.Add(this.label7);
     this.groupControlThongTin.Controls.Add(this.label42);
     this.groupControlThongTin.Controls.Add(this.labelControl1);
     this.groupControlThongTin.Controls.Add(this.label8);
     this.groupControlThongTin.Location = new System.Drawing.Point(3, 0);
     this.groupControlThongTin.Name = "groupControlThongTin";
     this.groupControlThongTin.Size = new System.Drawing.Size(1000, 410);
     this.groupControlThongTin.TabIndex = 0;
     this.groupControlThongTin.Text = "Thông tin chính";
     //
     // gridControlGhiChu
     //
     this.gridControlGhiChu.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
                 | System.Windows.Forms.AnchorStyles.Right)));
     this.gridControlGhiChu.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("gridControlGhiChu.BackgroundImage")));
     this.gridControlGhiChu.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Center;
     this.gridControlGhiChu.Location = new System.Drawing.Point(405, 241);
     this.gridControlGhiChu.MainView = this.gridViewGhiChu;
     this.gridControlGhiChu.Name = "gridControlGhiChu";
     this.gridControlGhiChu.Size = new System.Drawing.Size(588, 152);
     this.gridControlGhiChu.TabIndex = 138;
     this.gridControlGhiChu.ViewCollection.AddRange(new DevExpress.XtraGrid.Views.Base.BaseView[] {
     this.gridViewGhiChu});
     //
     // gridViewGhiChu
     //
     this.gridViewGhiChu.Appearance.HeaderPanel.Options.UseTextOptions = true;
     this.gridViewGhiChu.Appearance.HeaderPanel.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.gridViewGhiChu.Columns.AddRange(new DevExpress.XtraGrid.Columns.GridColumn[] {
     this.colLoaiGhiChu,
     this.colNoiDungGhiChu});
     this.gridViewGhiChu.GridControl = this.gridControlGhiChu;
     this.gridViewGhiChu.IndicatorWidth = 40;
     this.gridViewGhiChu.Name = "gridViewGhiChu";
     this.gridViewGhiChu.OptionsLayout.Columns.AddNewColumns = false;
     this.gridViewGhiChu.OptionsNavigation.AutoFocusNewRow = true;
     this.gridViewGhiChu.OptionsNavigation.EnterMoveNextColumn = true;
     this.gridViewGhiChu.OptionsPrint.UsePrintStyles = true;
     this.gridViewGhiChu.OptionsView.EnableAppearanceEvenRow = true;
     this.gridViewGhiChu.OptionsView.EnableAppearanceOddRow = true;
     this.gridViewGhiChu.OptionsView.NewItemRowPosition = DevExpress.XtraGrid.Views.Grid.NewItemRowPosition.Top;
     this.gridViewGhiChu.OptionsView.ShowFilterPanelMode = DevExpress.XtraGrid.Views.Base.ShowFilterPanelMode.Never;
     this.gridViewGhiChu.OptionsView.ShowGroupedColumns = true;
     this.gridViewGhiChu.OptionsView.ShowGroupPanel = false;
     this.gridViewGhiChu.OptionsView.ShowIndicator = false;
     this.gridViewGhiChu.ViewCaption = "Thông tin bán";
     //
     // colLoaiGhiChu
     //
     this.colLoaiGhiChu.Caption = "Loại ghi chú";
     this.colLoaiGhiChu.Name = "colLoaiGhiChu";
     this.colLoaiGhiChu.SummaryItem.DisplayFormat = "Tồng số lần đã bán {0}";
     this.colLoaiGhiChu.SummaryItem.SummaryType = DevExpress.Data.SummaryItemType.Count;
     this.colLoaiGhiChu.Visible = true;
     this.colLoaiGhiChu.VisibleIndex = 0;
     this.colLoaiGhiChu.Width = 68;
     //
     // colNoiDungGhiChu
     //
     this.colNoiDungGhiChu.Caption = "Nội dung";
     this.colNoiDungGhiChu.Name = "colNoiDungGhiChu";
     this.colNoiDungGhiChu.Visible = true;
     this.colNoiDungGhiChu.VisibleIndex = 1;
     this.colNoiDungGhiChu.Width = 54;
     //
     // labelControl34
     //
     this.labelControl34.Location = new System.Drawing.Point(342, 245);
     this.labelControl34.Name = "labelControl34";
     this.labelControl34.Size = new System.Drawing.Size(60, 13);
     this.labelControl34.TabIndex = 139;
     this.labelControl34.Text = "Ghi chú khác";
     //
     // PhanLoaiDrama
     //
     this.PhanLoaiDrama._DataSource = null;
     this.PhanLoaiDrama._GetField = null;
     this.PhanLoaiDrama.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
                 | System.Windows.Forms.AnchorStyles.Right)));
     this.PhanLoaiDrama.Location = new System.Drawing.Point(690, 142);
     this.PhanLoaiDrama.MenuManager = this.barManager1;
     this.PhanLoaiDrama.Name = "PhanLoaiDrama";
     this.PhanLoaiDrama.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo, "", 0, true, false, false, DevExpress.XtraEditors.ImageLocation.Default, null, new DevExpress.Utils.KeyShortcut(System.Windows.Forms.Keys.None), serializableAppearanceObject1, "", null, null, false)});
     this.PhanLoaiDrama.Properties.CloseUpKey = new DevExpress.Utils.KeyShortcut(System.Windows.Forms.Keys.None);
     this.PhanLoaiDrama.Size = new System.Drawing.Size(303, 20);
     this.PhanLoaiDrama.TabIndex = 137;
     //
     // barManager1
     //
     this.barManager1.DockControls.Add(this.barDockControlTop);
     this.barManager1.DockControls.Add(this.barDockControlBottom);
     this.barManager1.DockControls.Add(this.barDockControlLeft);
     this.barManager1.DockControls.Add(this.barDockControlRight);
     this.barManager1.Form = this;
     this.barManager1.MaxItemId = 2;
     //
     // barDockControlTop
     //
     this.barDockControlTop.Dock = System.Windows.Forms.DockStyle.Top;
     this.barDockControlTop.Location = new System.Drawing.Point(0, 0);
     this.barDockControlTop.Size = new System.Drawing.Size(1049, 0);
     //
     // barDockControlBottom
     //
     this.barDockControlBottom.Dock = System.Windows.Forms.DockStyle.Bottom;
     this.barDockControlBottom.Location = new System.Drawing.Point(0, 750);
     this.barDockControlBottom.Size = new System.Drawing.Size(1049, 0);
     //
     // barDockControlLeft
     //
     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, 750);
     //
     // barDockControlRight
     //
     this.barDockControlRight.Dock = System.Windows.Forms.DockStyle.Right;
     this.barDockControlRight.Location = new System.Drawing.Point(1049, 0);
     this.barDockControlRight.Size = new System.Drawing.Size(0, 750);
     //
     // labelControl18
     //
     this.labelControl18.Location = new System.Drawing.Point(639, 144);
     this.labelControl18.Name = "labelControl18";
     this.labelControl18.Size = new System.Drawing.Size(49, 13);
     this.labelControl18.TabIndex = 136;
     this.labelControl18.Text = "P/L Drama";
     this.labelControl18.ToolTip = "Phân loại Drama";
     //
     // NguonTrading
     //
     this.NguonTrading._DataSource = null;
     this.NguonTrading._GetField = null;
     this.NguonTrading.Location = new System.Drawing.Point(93, 191);
     this.NguonTrading.Name = "NguonTrading";
     this.NguonTrading.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo, "", 0, true, false, false, DevExpress.XtraEditors.ImageLocation.Default, null, new DevExpress.Utils.KeyShortcut(System.Windows.Forms.Keys.None), serializableAppearanceObject2, "", null, null, false)});
     this.NguonTrading.Properties.CloseUpKey = new DevExpress.Utils.KeyShortcut(System.Windows.Forms.Keys.None);
     this.NguonTrading.Size = new System.Drawing.Size(239, 20);
     this.NguonTrading.TabIndex = 135;
     //
     // ClassName
     //
     this.ClassName._DataSource = null;
     this.ClassName._GetField = null;
     this.ClassName.Location = new System.Drawing.Point(405, 119);
     this.ClassName.MenuManager = this.barManager1;
     this.ClassName.Name = "ClassName";
     this.ClassName.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo, "", 0, true, false, false, DevExpress.XtraEditors.ImageLocation.Default, null, new DevExpress.Utils.KeyShortcut(System.Windows.Forms.Keys.None), serializableAppearanceObject3, "", null, null, false)});
     this.ClassName.Properties.CloseUpKey = new DevExpress.Utils.KeyShortcut(System.Windows.Forms.Keys.None);
     this.ClassName.Size = new System.Drawing.Size(227, 20);
     this.ClassName.TabIndex = 135;
     //
     // labelControl23
     //
     this.labelControl23.Location = new System.Drawing.Point(8, 192);
     this.labelControl23.Name = "labelControl23";
     this.labelControl23.Size = new System.Drawing.Size(70, 13);
     this.labelControl23.TabIndex = 134;
     this.labelControl23.Text = "Nguồn Trading";
     //
     // labelControl13
     //
     this.labelControl13.Location = new System.Drawing.Point(9, 170);
     this.labelControl13.Name = "labelControl13";
     this.labelControl13.Size = new System.Drawing.Size(41, 13);
     this.labelControl13.TabIndex = 134;
     this.labelControl13.Text = "Code CT";
     this.labelControl13.ToolTip = "Mã code kế toán";
     //
     // Code
     //
     this.Code.Location = new System.Drawing.Point(93, 168);
     this.Code.MenuManager = this.barManager1;
     this.Code.Name = "Code";
     this.Code.Size = new System.Drawing.Size(239, 20);
     this.Code.TabIndex = 133;
     //
     // TenGoc
     //
     this.TenGoc._DataSource = null;
     this.TenGoc._GetField = null;
     this.TenGoc.Location = new System.Drawing.Point(405, 73);
     this.TenGoc.Name = "TenGoc";
     this.TenGoc.Properties.CloseUpKey = new DevExpress.Utils.KeyShortcut(System.Windows.Forms.Keys.None);
     this.TenGoc.Size = new System.Drawing.Size(227, 20);
     this.TenGoc.TabIndex = 132;
     //
     // NoiDung
     //
     this.NoiDung._DataSource = null;
     this.NoiDung._GetField = null;
     this.NoiDung.Location = new System.Drawing.Point(93, 73);
     this.NoiDung.Name = "NoiDung";
     this.NoiDung.Properties.CloseUpKey = new DevExpress.Utils.KeyShortcut(System.Windows.Forms.Keys.None);
     this.NoiDung.Size = new System.Drawing.Size(240, 20);
     this.NoiDung.TabIndex = 132;
     this.NoiDung.Validated += new System.EventHandler(this.KyHieuPhanLoai_Validated);
     //
     // Period
     //
     this.Period._DataSource = null;
     this.Period._GetField = null;
     this.Period.Location = new System.Drawing.Point(405, 142);
     this.Period.Name = "Period";
     this.Period.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo, "", 0, true, false, false, DevExpress.XtraEditors.ImageLocation.Default, null, new DevExpress.Utils.KeyShortcut(System.Windows.Forms.Keys.None), serializableAppearanceObject4, "", null, null, false)});
     this.Period.Properties.CloseUpKey = new DevExpress.Utils.KeyShortcut(System.Windows.Forms.Keys.None);
     this.Period.Size = new System.Drawing.Size(228, 20);
     this.Period.TabIndex = 6;
     //
     // Category
     //
     this.Category._DataSource = null;
     this.Category._GetField = null;
     this.Category.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
                 | System.Windows.Forms.AnchorStyles.Right)));
     this.Category.Location = new System.Drawing.Point(690, 72);
     this.Category.MenuManager = this.barManager1;
     this.Category.Name = "Category";
     this.Category.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo, "", 0, true, false, false, DevExpress.XtraEditors.ImageLocation.Default, null, new DevExpress.Utils.KeyShortcut(System.Windows.Forms.Keys.None), serializableAppearanceObject5, "", null, null, false)});
     this.Category.Properties.CloseUpKey = new DevExpress.Utils.KeyShortcut(System.Windows.Forms.Keys.None);
     this.Category.Size = new System.Drawing.Size(303, 20);
     this.Category.TabIndex = 6;
     //
     // TrailerGoc
     //
     this.TrailerGoc.Location = new System.Drawing.Point(260, 215);
     this.TrailerGoc.Name = "TrailerGoc";
     this.TrailerGoc.Properties.Caption = "Trailer gốc";
     this.TrailerGoc.Size = new System.Drawing.Size(72, 19);
     this.TrailerGoc.TabIndex = 16;
     //
     // Photos
     //
     this.Photos.Location = new System.Drawing.Point(174, 215);
     this.Photos.Name = "Photos";
     this.Photos.Properties.Caption = "Photo";
     this.Photos.Size = new System.Drawing.Size(56, 19);
     this.Photos.TabIndex = 15;
     //
     // Script
     //
     this.Script.Location = new System.Drawing.Point(93, 215);
     this.Script.MenuManager = this.barManager1;
     this.Script.Name = "Script";
     this.Script.Properties.Caption = "Script";
     this.Script.Size = new System.Drawing.Size(48, 19);
     this.Script.TabIndex = 14;
     //
     // ckcMoiTrenThiTruong
     //
     this.ckcMoiTrenThiTruong.Location = new System.Drawing.Point(313, 25);
     this.ckcMoiTrenThiTruong.Name = "ckcMoiTrenThiTruong";
     this.ckcMoiTrenThiTruong.Properties.Appearance.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold);
     this.ckcMoiTrenThiTruong.Properties.Appearance.ForeColor = System.Drawing.Color.Red;
     this.ckcMoiTrenThiTruong.Properties.Appearance.Options.UseFont = true;
     this.ckcMoiTrenThiTruong.Properties.Appearance.Options.UseForeColor = true;
     this.ckcMoiTrenThiTruong.Properties.Caption = "Mới trên thị trường";
     this.ckcMoiTrenThiTruong.Size = new System.Drawing.Size(142, 19);
     this.ckcMoiTrenThiTruong.TabIndex = 0;
     //
     // ckcTrongKho
     //
     this.ckcTrongKho.Location = new System.Drawing.Point(204, 24);
     this.ckcTrongKho.Name = "ckcTrongKho";
     this.ckcTrongKho.Properties.Appearance.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold);
     this.ckcTrongKho.Properties.Appearance.ForeColor = System.Drawing.Color.Red;
     this.ckcTrongKho.Properties.Appearance.Options.UseFont = true;
     this.ckcTrongKho.Properties.Appearance.Options.UseForeColor = true;
     this.ckcTrongKho.Properties.Caption = "Có trong kho";
     this.ckcTrongKho.Size = new System.Drawing.Size(98, 19);
     this.ckcTrongKho.TabIndex = 0;
     //
     // ThanhLy
     //
     this.ThanhLy.Location = new System.Drawing.Point(91, 24);
     this.ThanhLy.Name = "ThanhLy";
     this.ThanhLy.Properties.Appearance.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold);
     this.ThanhLy.Properties.Appearance.ForeColor = System.Drawing.Color.Red;
     this.ThanhLy.Properties.Appearance.Options.UseFont = true;
     this.ThanhLy.Properties.Appearance.Options.UseForeColor = true;
     this.ThanhLy.Properties.Caption = "Thanh lý";
     this.ThanhLy.Size = new System.Drawing.Size(88, 19);
     this.ThanhLy.TabIndex = 0;
     //
     // groupControl8
     //
     this.groupControl8.Controls.Add(this.KyHieuXepKho_KHPL);
     this.groupControl8.Controls.Add(this.KyHieuXepKho_NoiDung);
     this.groupControl8.Controls.Add(this.textEdit1);
     this.groupControl8.Location = new System.Drawing.Point(405, 188);
     this.groupControl8.Name = "groupControl8";
     this.groupControl8.ShowCaption = false;
     this.groupControl8.Size = new System.Drawing.Size(227, 46);
     this.groupControl8.TabIndex = 17;
     this.groupControl8.Text = "groupControl8";
     //
     // KyHieuXepKho_NoiDung
     //
     this.KyHieuXepKho_NoiDung.Location = new System.Drawing.Point(2, 26);
     this.KyHieuXepKho_NoiDung.Name = "KyHieuXepKho_NoiDung";
     this.KyHieuXepKho_NoiDung.Properties.AppearanceReadOnly.Options.UseTextOptions = true;
     this.KyHieuXepKho_NoiDung.Properties.AppearanceReadOnly.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.KyHieuXepKho_NoiDung.Properties.BorderStyle = DevExpress.XtraEditors.Controls.BorderStyles.NoBorder;
     this.KyHieuXepKho_NoiDung.Properties.ReadOnly = true;
     this.KyHieuXepKho_NoiDung.Size = new System.Drawing.Size(220, 18);
     this.KyHieuXepKho_NoiDung.TabIndex = 2;
     this.KyHieuXepKho_NoiDung.TabStop = false;
     //
     // textEdit1
     //
     this.textEdit1.EditValue = "___________________";
     this.textEdit1.Location = new System.Drawing.Point(2, 9);
     this.textEdit1.Name = "textEdit1";
     this.textEdit1.Properties.AllowFocused = false;
     this.textEdit1.Properties.AppearanceReadOnly.Options.UseTextOptions = true;
     this.textEdit1.Properties.AppearanceReadOnly.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.textEdit1.Properties.BorderStyle = DevExpress.XtraEditors.Controls.BorderStyles.NoBorder;
     this.textEdit1.Properties.ReadOnly = true;
     this.textEdit1.Size = new System.Drawing.Size(220, 18);
     this.textEdit1.TabIndex = 5;
     this.textEdit1.TabStop = false;
     //
     // Ranking
     //
     this.Ranking.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
                 | System.Windows.Forms.AnchorStyles.Right)));
     this.Ranking.Location = new System.Drawing.Point(690, 96);
     this.Ranking.Name = "Ranking";
     this.Ranking.Size = new System.Drawing.Size(305, 20);
     this.Ranking.TabIndex = 9;
     this.Ranking.ZZZWidthFactor = 2F;
     //
     // DienVien
     //
     this.DienVien.DataSource = null;
     this.DienVien.DisplayField = null;
     this.DienVien.EditValue = "";
     this.DienVien.Location = new System.Drawing.Point(405, 96);
     this.DienVien.Name = "DienVien";
     this.DienVien.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.DienVien.Size = new System.Drawing.Size(227, 20);
     this.DienVien.TabIndex = 8;
     this.DienVien.ValueField = null;
     //
     // labelControl22
     //
     this.labelControl22.Location = new System.Drawing.Point(344, 122);
     this.labelControl22.Name = "labelControl22";
     this.labelControl22.Size = new System.Drawing.Size(24, 13);
     this.labelControl22.TabIndex = 0;
     this.labelControl22.Text = "Điểm";
     //
     // labelControl16
     //
     this.labelControl16.Location = new System.Drawing.Point(343, 145);
     this.labelControl16.Name = "labelControl16";
     this.labelControl16.Size = new System.Drawing.Size(30, 13);
     this.labelControl16.TabIndex = 0;
     this.labelControl16.Text = "Period";
     //
     // labelControl12
     //
     this.labelControl12.Location = new System.Drawing.Point(640, 98);
     this.labelControl12.Name = "labelControl12";
     this.labelControl12.Size = new System.Drawing.Size(38, 13);
     this.labelControl12.TabIndex = 0;
     this.labelControl12.Text = "Ranking";
     //
     // label24
     //
     this.label24.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
     this.label24.Location = new System.Drawing.Point(968, 125);
     this.label24.Name = "label24";
     this.label24.Size = new System.Drawing.Size(19, 13);
     this.label24.TabIndex = 0;
     this.label24.Text = "(%)";
     //
     // TuKhoaSelect
     //
     this.TuKhoaSelect.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
                 | System.Windows.Forms.AnchorStyles.Right)));
     this.TuKhoaSelect.DataSource = null;
     this.TuKhoaSelect.DisplayField = null;
     this.TuKhoaSelect.EditValue = "";
     this.TuKhoaSelect.Location = new System.Drawing.Point(690, 216);
     this.TuKhoaSelect.Name = "TuKhoaSelect";
     this.TuKhoaSelect.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.TuKhoaSelect.Properties.TextEditStyle = DevExpress.XtraEditors.Controls.TextEditStyles.HideTextEditor;
     this.TuKhoaSelect.Size = new System.Drawing.Size(303, 19);
     this.TuKhoaSelect.TabIndex = 18;
     this.TuKhoaSelect.TabStop = false;
     this.TuKhoaSelect.ValueField = null;
     this.TuKhoaSelect.EditValueChanged += new System.EventHandler(this.TuKhoaSelect_EditValueChanged);
     this.TuKhoaSelect.CloseUp += new DevExpress.XtraEditors.Controls.CloseUpEventHandler(this.TuKhoaSelect_CloseUp);
     //
     // labelControl11
     //
     this.labelControl11.Location = new System.Drawing.Point(638, 74);
     this.labelControl11.Name = "labelControl11";
     this.labelControl11.Size = new System.Drawing.Size(45, 13);
     this.labelControl11.TabIndex = 0;
     this.labelControl11.Text = "Category";
     //
     // NgayAWB
     //
     this.NgayAWB.EditValue = null;
     this.NgayAWB.Location = new System.Drawing.Point(405, 48);
     this.NgayAWB.Name = "NgayAWB";
     this.NgayAWB.Properties.AllowNullInput = DevExpress.Utils.DefaultBoolean.True;
     this.NgayAWB.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.NgayAWB.Properties.VistaTimeProperties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton()});
     this.NgayAWB.Size = new System.Drawing.Size(227, 20);
     this.NgayAWB.TabIndex = 2;
     //
     // TomTatNoiDung
     //
     this.TomTatNoiDung.Location = new System.Drawing.Point(93, 242);
     this.TomTatNoiDung.Name = "TomTatNoiDung";
     this.TomTatNoiDung.Size = new System.Drawing.Size(241, 80);
     this.TomTatNoiDung.TabIndex = 20;
     //
     // GhiChu
     //
     this.GhiChu.Location = new System.Drawing.Point(91, 326);
     this.GhiChu.Name = "GhiChu";
     this.GhiChu.Size = new System.Drawing.Size(243, 78);
     this.GhiChu.TabIndex = 21;
     this.GhiChu.EditValueChanged += new System.EventHandler(this.GhiChu_EditValueChanged);
     //
     // TuKhoaText
     //
     this.TuKhoaText.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
                 | System.Windows.Forms.AnchorStyles.Right)));
     this.TuKhoaText.Location = new System.Drawing.Point(690, 167);
     this.TuKhoaText.Name = "TuKhoaText";
     this.TuKhoaText.Properties.ReadOnly = true;
     this.TuKhoaText.Size = new System.Drawing.Size(303, 50);
     this.TuKhoaText.TabIndex = 19;
     this.TuKhoaText.KeyDown += new System.Windows.Forms.KeyEventHandler(this.TuKhoaText_KeyDown);
     //
     // label20
     //
     this.label20.Location = new System.Drawing.Point(639, 169);
     this.label20.Name = "label20";
     this.label20.Size = new System.Drawing.Size(39, 13);
     this.label20.TabIndex = 131;
     this.label20.Text = "Từ khóa";
     //
     // labelControl2
     //
     this.labelControl2.Location = new System.Drawing.Point(343, 100);
     this.labelControl2.Name = "labelControl2";
     this.labelControl2.Size = new System.Drawing.Size(44, 13);
     this.labelControl2.TabIndex = 129;
     this.labelControl2.Text = "Diễn viên";
     //
     // label33
     //
     this.label33.Location = new System.Drawing.Point(343, 52);
     this.label33.Name = "label33";
     this.label33.Size = new System.Drawing.Size(51, 13);
     this.label33.TabIndex = 129;
     this.label33.Text = "Ngày AWB";
     //
     // labelControl5
     //
     this.labelControl5.Location = new System.Drawing.Point(8, 244);
     this.labelControl5.Name = "labelControl5";
     this.labelControl5.Size = new System.Drawing.Size(81, 13);
     this.labelControl5.TabIndex = 129;
     this.labelControl5.Text = "Tóm tắt nội dung";
     //
     // label36
     //
     this.label36.Location = new System.Drawing.Point(12, 329);
     this.label36.Name = "label36";
     this.label36.Size = new System.Drawing.Size(35, 13);
     this.label36.TabIndex = 129;
     this.label36.Text = "Ghi chú";
     //
     // Info
     //
     this.Info.Location = new System.Drawing.Point(308, 46);
     this.Info.Name = "Info";
     this.Info.Size = new System.Drawing.Size(24, 21);
     this.Info.TabIndex = 1;
     //
     // TinhTrangBang
     //
     this.TinhTrangBang.Location = new System.Drawing.Point(93, 144);
     this.TinhTrangBang.Name = "TinhTrangBang";
     this.TinhTrangBang.Size = new System.Drawing.Size(241, 20);
     this.TinhTrangBang.TabIndex = 13;
     this.TinhTrangBang.ZZZWidthFactor = 2F;
     //
     // TietMuc
     //
     this.TietMuc.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
                 | System.Windows.Forms.AnchorStyles.Right)));
     this.TietMuc.Location = new System.Drawing.Point(690, 48);
     this.TietMuc.Name = "TietMuc";
     this.TietMuc.Size = new System.Drawing.Size(303, 20);
     this.TietMuc.TabIndex = 3;
     this.TietMuc.ZZZWidthFactor = 2F;
     //
     // labelControl3
     //
     this.labelControl3.Location = new System.Drawing.Point(9, 148);
     this.labelControl3.Name = "labelControl3";
     this.labelControl3.Size = new System.Drawing.Size(39, 13);
     this.labelControl3.TabIndex = 0;
     this.labelControl3.Text = "TT băng";
     this.labelControl3.ToolTip = "Tình trạng băng";
     //
     // MaChuongTrinh
     //
     this.MaChuongTrinh.Location = new System.Drawing.Point(93, 48);
     this.MaChuongTrinh.Name = "MaChuongTrinh";
     this.MaChuongTrinh.Properties.Appearance.BackColor = System.Drawing.Color.White;
     this.MaChuongTrinh.Properties.Appearance.Options.UseBackColor = true;
     this.MaChuongTrinh.Properties.MaxLength = 100;
     this.MaChuongTrinh.Properties.ReadOnly = true;
     this.MaChuongTrinh.Size = new System.Drawing.Size(209, 20);
     this.MaChuongTrinh.TabIndex = 1;
     this.MaChuongTrinh.TabStop = false;
     this.MaChuongTrinh.ToolTip = "Mã chương trình";
     //
     // label42
     //
     this.label42.Appearance.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label42.Appearance.Options.UseFont = true;
     this.label42.Location = new System.Drawing.Point(342, 76);
     this.label42.Name = "label42";
     this.label42.Size = new System.Drawing.Size(38, 13);
     this.label42.TabIndex = 0;
     this.label42.Text = "Tên gốc";
     //
     // labelControl1
     //
     this.labelControl1.Location = new System.Drawing.Point(9, 52);
     this.labelControl1.Name = "labelControl1";
     this.labelControl1.Size = new System.Drawing.Size(78, 13);
     this.labelControl1.TabIndex = 0;
     this.labelControl1.Text = "Mã chương trình";
     //
     // xtraTabControlMain
     //
     this.xtraTabControlMain.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.xtraTabControlMain.AppearancePage.Header.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold);
     this.xtraTabControlMain.AppearancePage.Header.Options.UseFont = true;
     this.xtraTabControlMain.AppearancePage.HeaderActive.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold);
     this.xtraTabControlMain.AppearancePage.HeaderActive.ForeColor = System.Drawing.Color.Blue;
     this.xtraTabControlMain.AppearancePage.HeaderActive.Options.UseFont = true;
     this.xtraTabControlMain.AppearancePage.HeaderActive.Options.UseForeColor = true;
     this.xtraTabControlMain.ClosePageButtonShowMode = DevExpress.XtraTab.ClosePageButtonShowMode.InAllTabPageHeaders;
     this.xtraTabControlMain.Location = new System.Drawing.Point(6, 44);
     this.xtraTabControlMain.Name = "xtraTabControlMain";
     this.xtraTabControlMain.SelectedTabPage = this.xtraTabPageChuongTrinh;
     this.xtraTabControlMain.Size = new System.Drawing.Size(1043, 666);
     this.xtraTabControlMain.TabIndex = 130;
     this.xtraTabControlMain.TabPages.AddRange(new DevExpress.XtraTab.XtraTabPage[] {
     this.xtraTabPageChuongTrinh,
     this.xtraTabPageAdd});
     this.xtraTabControlMain.SelectedPageChanging += new DevExpress.XtraTab.TabPageChangingEventHandler(this.xtraTabControl1_SelectedPageChanging);
     this.xtraTabControlMain.CloseButtonClick += new System.EventHandler(this.xtraTabControlMain_CloseButtonClick);
     //
     // xtraTabPageChuongTrinh
     //
     this.xtraTabPageChuongTrinh.AutoScroll = true;
     this.xtraTabPageChuongTrinh.Controls.Add(this.xtraScrollableControl1);
     this.xtraTabPageChuongTrinh.FireScrollEventOnMouseWheel = true;
     this.xtraTabPageChuongTrinh.Name = "xtraTabPageChuongTrinh";
     this.xtraTabPageChuongTrinh.ShowCloseButton = DevExpress.Utils.DefaultBoolean.False;
     this.xtraTabPageChuongTrinh.Size = new System.Drawing.Size(1036, 637);
     this.xtraTabPageChuongTrinh.Text = "Thông tin chương trình";
     //
     // xtraScrollableControl1
     //
     this.xtraScrollableControl1.Controls.Add(this.groupControlThongTinPhatSong);
     this.xtraScrollableControl1.Controls.Add(this.groupControlNguonGoc);
     this.xtraScrollableControl1.Controls.Add(this.groupControlThongTin);
     this.xtraScrollableControl1.Dock = System.Windows.Forms.DockStyle.Fill;
     this.xtraScrollableControl1.FireScrollEventOnMouseWheel = true;
     this.xtraScrollableControl1.Location = new System.Drawing.Point(0, 0);
     this.xtraScrollableControl1.Name = "xtraScrollableControl1";
     this.xtraScrollableControl1.Size = new System.Drawing.Size(1036, 637);
     this.xtraScrollableControl1.TabIndex = 130;
     //
     // xtraTabPageAdd
     //
     this.xtraTabPageAdd.Appearance.Header.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold);
     this.xtraTabPageAdd.Appearance.Header.Options.UseFont = true;
     this.xtraTabPageAdd.Name = "xtraTabPageAdd";
     this.xtraTabPageAdd.ShowCloseButton = DevExpress.Utils.DefaultBoolean.False;
     this.xtraTabPageAdd.Size = new System.Drawing.Size(1036, 637);
     this.xtraTabPageAdd.Text = "+";
     //
     // popupMenuTab
     //
     this.popupMenuTab.Manager = this.barManager1;
     this.popupMenuTab.Name = "popupMenuTab";
     //
     // barButtonItem1
     //
     this.barButtonItem1.Caption = "Text";
     this.barButtonItem1.Id = 0;
     this.barButtonItem1.Name = "barButtonItem1";
     //
     // FrmChuongTrinh
     //
     this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.None;
     this.ClientSize = new System.Drawing.Size(1049, 750);
     this.Controls.Add(this.flowLayoutPanel1);
     this.Controls.Add(this.flowLayoutPanel2);
     this.Controls.Add(this.xtraTabControlMain);
     this.Controls.Add(this.lblTitle);
     this.Controls.Add(this.barDockControlLeft);
     this.Controls.Add(this.barDockControlRight);
     this.Controls.Add(this.barDockControlBottom);
     this.Controls.Add(this.barDockControlTop);
     this.Cursor = System.Windows.Forms.Cursors.Default;
     this.Name = "FrmChuongTrinh";
     this.Text = "Chương trình";
     this.WindowState = System.Windows.Forms.FormWindowState.Maximized;
     this.Load += new System.EventHandler(this.frmPhuongAnDeXuatTour_Load);
     this.flowLayoutPanel1.ResumeLayout(false);
     this.flowLayoutPanel2.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.KyHieuPhanLoai.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.KyHieuXepKho_KHPL.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.groupControlThongTinPhatSong)).EndInit();
     this.groupControlThongTinPhatSong.ResumeLayout(false);
     this.groupControlThongTinPhatSong.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(this.ReleaseDate.Properties.VistaTimeProperties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.ReleaseDate.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.SoRunConlai.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.ReleaseRun.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.Release.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.SoDaRun.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridControlPhatSongKhac)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridviewPhatSongKhac)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridControlNgayPhatDauTien)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridViewNgayPhatDauTien)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.RunThu.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.TongSoRun.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.ReleaseRule.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.MuaKem.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.Rating.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.DoiTuongKhanGia.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.groupControlNguonGoc)).EndInit();
     this.groupControlNguonGoc.ResumeLayout(false);
     this.groupControlNguonGoc.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(this.NoteBQ.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridControlThongTinBan)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridViewThongTinBan)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.groupControl7)).EndInit();
     this.groupControl7.ResumeLayout(false);
     this.groupControl7.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(this.DonViHauKy.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.NamSanXuat.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.QuocGia.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.KenhHanCheBan.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.groupControl1)).EndInit();
     this.groupControl1.ResumeLayout(false);
     this.groupControl1.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(this.BanQuyenHTV.Properties.VistaTimeProperties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.BanQuyenHTV.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.BanQuyenDIDEnd.Properties.VistaTimeProperties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.BanQuyenDIDEnd.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.BanQuyenDTNNEnd.Properties.VistaTimeProperties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.BanQuyenDTNNEnd.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.BanQuyenDIDStart.Properties.VistaTimeProperties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.BanQuyenDIDStart.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.BanQuyenDTNNStart.Properties.VistaTimeProperties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.BanQuyenDTNNStart.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.ChanelRight.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.DaoDien.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.groupControlThongTin)).EndInit();
     this.groupControlThongTin.ResumeLayout(false);
     this.groupControlThongTin.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(this.gridControlGhiChu)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridViewGhiChu)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.PhanLoaiDrama.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.barManager1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.NguonTrading.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.ClassName.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.Code.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.TenGoc.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.NoiDung.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.Period.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.Category.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.TrailerGoc.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.Photos.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.Script.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.ckcMoiTrenThiTruong.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.ckcTrongKho.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.ThanhLy.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.groupControl8)).EndInit();
     this.groupControl8.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.KyHieuXepKho_NoiDung.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.textEdit1.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.DienVien.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.TuKhoaSelect.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.NgayAWB.Properties.VistaTimeProperties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.NgayAWB.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.TomTatNoiDung.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.GhiChu.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.TuKhoaText.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.MaChuongTrinh.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.xtraTabControlMain)).EndInit();
     this.xtraTabControlMain.ResumeLayout(false);
     this.xtraTabPageChuongTrinh.ResumeLayout(false);
     this.xtraScrollableControl1.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.popupMenuTab)).EndInit();
     this.ResumeLayout(false);
 }
Пример #47
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(frmProducts));
     DevExpress.Utils.SuperToolTip superToolTip1 = new DevExpress.Utils.SuperToolTip();
     DevExpress.Utils.ToolTipTitleItem toolTipTitleItem1 = new DevExpress.Utils.ToolTipTitleItem();
     DevExpress.Utils.SuperToolTip superToolTip2 = new DevExpress.Utils.SuperToolTip();
     DevExpress.Utils.ToolTipTitleItem toolTipTitleItem2 = new DevExpress.Utils.ToolTipTitleItem();
     DevExpress.Utils.SuperToolTip superToolTip3 = new DevExpress.Utils.SuperToolTip();
     DevExpress.Utils.ToolTipTitleItem toolTipTitleItem3 = new DevExpress.Utils.ToolTipTitleItem();
     DevExpress.Utils.SuperToolTip superToolTip4 = new DevExpress.Utils.SuperToolTip();
     DevExpress.Utils.ToolTipTitleItem toolTipTitleItem4 = new DevExpress.Utils.ToolTipTitleItem();
     DevExpress.Utils.SuperToolTip superToolTip5 = new DevExpress.Utils.SuperToolTip();
     DevExpress.Utils.ToolTipItem toolTipItem1 = new DevExpress.Utils.ToolTipItem();
     DevExpress.Utils.SuperToolTip superToolTip6 = new DevExpress.Utils.SuperToolTip();
     DevExpress.Utils.ToolTipItem toolTipItem2 = new DevExpress.Utils.ToolTipItem();
     DevExpress.Utils.SuperToolTip superToolTip7 = new DevExpress.Utils.SuperToolTip();
     DevExpress.Utils.ToolTipItem toolTipItem3 = new DevExpress.Utils.ToolTipItem();
     DevExpress.Utils.SuperToolTip superToolTip8 = new DevExpress.Utils.SuperToolTip();
     DevExpress.Utils.ToolTipItem toolTipItem4 = new DevExpress.Utils.ToolTipItem();
     DevExpress.Utils.SuperToolTip superToolTip9 = new DevExpress.Utils.SuperToolTip();
     DevExpress.Utils.ToolTipItem toolTipItem5 = new DevExpress.Utils.ToolTipItem();
     DevExpress.Utils.SuperToolTip superToolTip10 = new DevExpress.Utils.SuperToolTip();
     DevExpress.Utils.ToolTipTitleItem toolTipTitleItem5 = new DevExpress.Utils.ToolTipTitleItem();
     DevExpress.Utils.SuperToolTip superToolTip11 = new DevExpress.Utils.SuperToolTip();
     DevExpress.Utils.ToolTipTitleItem toolTipTitleItem6 = new DevExpress.Utils.ToolTipTitleItem();
     this.xtraTabControl1 = new DevExpress.XtraTab.XtraTabControl();
     this.xtrabarGeneralinformation = new DevExpress.XtraTab.XtraTabPage();
     this.panelControl1 = new DevExpress.XtraEditors.PanelControl();
     this.txtfactor = new DevExpress.XtraEditors.ComboBoxEdit();
     this.txtuompurchase = new DevExpress.XtraEditors.ComboBoxEdit();
     this.txtuomsize = new DevExpress.XtraEditors.ComboBoxEdit();
     this.txtuomsale = new DevExpress.XtraEditors.ComboBoxEdit();
     this.cmbValueMethod = new DevExpress.XtraEditors.ComboBoxEdit();
     this.txtAvgRate = new DevExpress.XtraEditors.TextEdit();
     this.txtToleranceDay = new DevExpress.XtraEditors.TextEdit();
     this.txtLoadTime = new DevExpress.XtraEditors.TextEdit();
     this.txtPurchaseRate = new DevExpress.XtraEditors.TextEdit();
     this.txtSpecialRate = new DevExpress.XtraEditors.TextEdit();
     this.txtCostRate = new DevExpress.XtraEditors.TextEdit();
     this.txtTransit = new DevExpress.XtraEditors.TextEdit();
     this.txtTarget = new DevExpress.XtraEditors.TextEdit();
     this.txtNetBalance = new DevExpress.XtraEditors.TextEdit();
     this.txtBalanceBonus = new DevExpress.XtraEditors.TextEdit();
     this.txtBalanceStock = new DevExpress.XtraEditors.TextEdit();
     this.txtMaxQuantityDays = new DevExpress.XtraEditors.TextEdit();
     this.txtMaxQuantityPCustomer = new DevExpress.XtraEditors.TextEdit();
     this.txtPackInBox = new DevExpress.XtraEditors.TextEdit();
     this.txtInventoryDays = new DevExpress.XtraEditors.TextEdit();
     this.txtMinFlatRate = new DevExpress.XtraEditors.TextEdit();
     this.txtMaxFlatRate = new DevExpress.XtraEditors.TextEdit();
     this.cmbSaleTaxCalculation = new DevExpress.XtraEditors.ComboBoxEdit();
     this.txtSaleTaxVale = new DevExpress.XtraEditors.TextEdit();
     this.txtSaleTaxPer = new DevExpress.XtraEditors.TextEdit();
     this.txtMaxSalesDisc = new DevExpress.XtraEditors.TextEdit();
     this.txtPurchaseDiscountPer = new DevExpress.XtraEditors.TextEdit();
     this.txtRetailPrice = new DevExpress.XtraEditors.TextEdit();
     this.chkwolallow = new DevExpress.XtraEditors.CheckEdit();
     this.chkAllowPer = new DevExpress.XtraEditors.CheckEdit();
     this.chkAutoBonus = new DevExpress.XtraEditors.CheckEdit();
     this.chkSaleBase = new DevExpress.XtraEditors.CheckEdit();
     this.chkSaleTaxReg = new DevExpress.XtraEditors.CheckEdit();
     this.chkNonPharma = new DevExpress.XtraEditors.CheckEdit();
     this.chkExcempted = new DevExpress.XtraEditors.CheckEdit();
     this.chkUseFlatRate = new DevExpress.XtraEditors.CheckEdit();
     this.chkNorCotics = new DevExpress.XtraEditors.CheckEdit();
     this.chkHideinTabs = new DevExpress.XtraEditors.CheckEdit();
     this.chkAllowMaxQtyDays = new DevExpress.XtraEditors.CheckEdit();
     this.chkProductDiscontinue = new DevExpress.XtraEditors.CheckEdit();
     this.txtTradePrice = new DevExpress.XtraEditors.TextEdit();
     this.txtSaleRate = new DevExpress.XtraEditors.TextEdit();
     this.txtPackInCarton = new DevExpress.XtraEditors.TextEdit();
     this.labelControl9 = new DevExpress.XtraEditors.LabelControl();
     this.labelControl18 = new DevExpress.XtraEditors.LabelControl();
     this.labelControl17 = new DevExpress.XtraEditors.LabelControl();
     this.labelControl16 = new DevExpress.XtraEditors.LabelControl();
     this.labelControl15 = new DevExpress.XtraEditors.LabelControl();
     this.labelControl13 = new DevExpress.XtraEditors.LabelControl();
     this.labelControl50 = new DevExpress.XtraEditors.LabelControl();
     this.labelControl12 = new DevExpress.XtraEditors.LabelControl();
     this.labelControl11 = new DevExpress.XtraEditors.LabelControl();
     this.labelControl19 = new DevExpress.XtraEditors.LabelControl();
     this.labelControl20 = new DevExpress.XtraEditors.LabelControl();
     this.labelControl25 = new DevExpress.XtraEditors.LabelControl();
     this.labelControl24 = new DevExpress.XtraEditors.LabelControl();
     this.labelControl23 = new DevExpress.XtraEditors.LabelControl();
     this.labelControl22 = new DevExpress.XtraEditors.LabelControl();
     this.labelControl21 = new DevExpress.XtraEditors.LabelControl();
     this.labelControl26 = new DevExpress.XtraEditors.LabelControl();
     this.labelControl52 = new DevExpress.XtraEditors.LabelControl();
     this.labelControl53 = new DevExpress.XtraEditors.LabelControl();
     this.labelControl27 = new DevExpress.XtraEditors.LabelControl();
     this.labelControl28 = new DevExpress.XtraEditors.LabelControl();
     this.labelControl29 = new DevExpress.XtraEditors.LabelControl();
     this.labelControl30 = new DevExpress.XtraEditors.LabelControl();
     this.labelControl31 = new DevExpress.XtraEditors.LabelControl();
     this.labelControl32 = new DevExpress.XtraEditors.LabelControl();
     this.labelControl37 = new DevExpress.XtraEditors.LabelControl();
     this.labelControl38 = new DevExpress.XtraEditors.LabelControl();
     this.labelControl44 = new DevExpress.XtraEditors.LabelControl();
     this.labelControl43 = new DevExpress.XtraEditors.LabelControl();
     this.labelControl41 = new DevExpress.XtraEditors.LabelControl();
     this.labelControl42 = new DevExpress.XtraEditors.LabelControl();
     this.XtrabarBonus = new DevExpress.XtraTab.XtraTabPage();
     this.datagridBonus = new C1.Win.C1TrueDBGrid.C1TrueDBGrid();
     this.xtraTabPage1 = new DevExpress.XtraTab.XtraTabPage();
     this.datagridProductAllocation = new C1.Win.C1TrueDBGrid.C1TrueDBGrid();
     this.xtraTabPage2 = new DevExpress.XtraTab.XtraTabPage();
     this.groupControl5 = new DevExpress.XtraEditors.GroupControl();
     this.txtMaxLimit = new DevExpress.XtraEditors.TextEdit();
     this.txtMinLimit = new DevExpress.XtraEditors.TextEdit();
     this.txtBarCode = new DevExpress.XtraEditors.TextEdit();
     this.txtShelfCode = new DevExpress.XtraEditors.TextEdit();
     this.grdPresevasionStandard = new C1.Win.C1TrueDBGrid.C1TrueDBGrid();
     this.simpleButton8 = new DevExpress.XtraEditors.SimpleButton();
     this.txtClaimPartnerID = new System.Windows.Forms.MaskedTextBox();
     this.txtClaimPartnerName = new DevExpress.XtraEditors.TextEdit();
     this.simpleButton7 = new DevExpress.XtraEditors.SimpleButton();
     this.txtBussinessPartnerid = new System.Windows.Forms.MaskedTextBox();
     this.businessPartnerName = new DevExpress.XtraEditors.TextEdit();
     this.labelControl40 = new DevExpress.XtraEditors.LabelControl();
     this.labelControl48 = new DevExpress.XtraEditors.LabelControl();
     this.labelControl46 = new DevExpress.XtraEditors.LabelControl();
     this.labelControl47 = new DevExpress.XtraEditors.LabelControl();
     this.labelControl54 = new DevExpress.XtraEditors.LabelControl();
     this.labelControl55 = new DevExpress.XtraEditors.LabelControl();
     this.xtraTabPage3 = new DevExpress.XtraTab.XtraTabPage();
     this.dgFileAttachments = new C1.Win.C1TrueDBGrid.C1TrueDBGrid();
     this.Productid = new DevExpress.XtraEditors.LabelControl();
     this.groupControl1 = new DevExpress.XtraEditors.GroupControl();
     this.cmbProductCategory = new DevExpress.XtraEditors.ComboBoxEdit();
     this.txtShortName = new DevExpress.XtraEditors.TextEdit();
     this.txtArtical = new DevExpress.XtraEditors.TextEdit();
     this.txtProductName = new DevExpress.XtraEditors.TextEdit();
     this.cmbSkuType = new DevExpress.XtraEditors.ComboBoxEdit();
     this.cmbGeneralName = new DevExpress.XtraEditors.ComboBoxEdit();
     this.cmbProtoType = new DevExpress.XtraEditors.ComboBoxEdit();
     this.btnPickList = new DevExpress.XtraEditors.SimpleButton();
     this.labelControl3 = new DevExpress.XtraEditors.LabelControl();
     this.txtProductId = new System.Windows.Forms.MaskedTextBox();
     this.txtPack = new DevExpress.XtraEditors.TextEdit();
     this.labelControl6 = new DevExpress.XtraEditors.LabelControl();
     this.labelControl2 = new DevExpress.XtraEditors.LabelControl();
     this.labelControl8 = new DevExpress.XtraEditors.LabelControl();
     this.labelControl14 = new DevExpress.XtraEditors.LabelControl();
     this.labelControl7 = new DevExpress.XtraEditors.LabelControl();
     this.labelControl49 = new DevExpress.XtraEditors.LabelControl();
     this.labelControl39 = new DevExpress.XtraEditors.LabelControl();
     this.labelControl4 = new DevExpress.XtraEditors.LabelControl();
     this.labelControl5 = new DevExpress.XtraEditors.LabelControl();
     this.labelControl10 = new DevExpress.XtraEditors.LabelControl();
     this.txtGroupSeq = new DevExpress.XtraEditors.TextEdit();
     this.txtGroupName = new DevExpress.XtraEditors.TextEdit();
     this.txtGroupid = new System.Windows.Forms.MaskedTextBox();
     this.simpleButton1 = new DevExpress.XtraEditors.SimpleButton();
     this.groupControl2 = new DevExpress.XtraEditors.GroupControl();
     this.txtmanualgroup = new DevExpress.XtraEditors.TextEdit();
     this.labelControl57 = new DevExpress.XtraEditors.LabelControl();
     this.txtdateto = new System.Windows.Forms.MaskedTextBox();
     this.txtdatefrom = new System.Windows.Forms.MaskedTextBox();
     this.simpleButton4 = new DevExpress.XtraEditors.SimpleButton();
     this.labelControl56 = new DevExpress.XtraEditors.LabelControl();
     this.labelControl51 = new DevExpress.XtraEditors.LabelControl();
     this.btnAdd = new DevExpress.XtraEditors.SimpleButton();
     this.btnCancel = new DevExpress.XtraEditors.SimpleButton();
     this.groupControl4 = new DevExpress.XtraEditors.GroupControl();
     this.simpleButton6 = new DevExpress.XtraEditors.SimpleButton();
     this.simpleButton5 = new DevExpress.XtraEditors.SimpleButton();
     this.chkCompanyDiscount = new DevExpress.XtraEditors.CheckEdit();
     this.txtCompanySeq = new DevExpress.XtraEditors.TextEdit();
     this.simpleButton3 = new DevExpress.XtraEditors.SimpleButton();
     this.labelControl35 = new DevExpress.XtraEditors.LabelControl();
     this.txtReportCompanyName = new DevExpress.XtraEditors.TextEdit();
     this.txtReportCompanyid = new System.Windows.Forms.MaskedTextBox();
     this.simpleButton2 = new DevExpress.XtraEditors.SimpleButton();
     this.txtCompanyName = new DevExpress.XtraEditors.TextEdit();
     this.txtCompanyid = new System.Windows.Forms.MaskedTextBox();
     this.labelControl33 = new DevExpress.XtraEditors.LabelControl();
     this.labelControl34 = new DevExpress.XtraEditors.LabelControl();
     this.labelControl36 = new DevExpress.XtraEditors.LabelControl();
     this.labelControl1 = new DevExpress.XtraEditors.LabelControl();
     this.backgroundWorker1 = new System.ComponentModel.BackgroundWorker();
     ((System.ComponentModel.ISupportInitialize)(this.xtraTabControl1)).BeginInit();
     this.xtraTabControl1.SuspendLayout();
     this.xtrabarGeneralinformation.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.panelControl1)).BeginInit();
     this.panelControl1.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.txtfactor.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtuompurchase.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtuomsize.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtuomsale.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.cmbValueMethod.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtAvgRate.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtToleranceDay.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtLoadTime.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtPurchaseRate.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtSpecialRate.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtCostRate.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtTransit.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtTarget.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtNetBalance.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtBalanceBonus.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtBalanceStock.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtMaxQuantityDays.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtMaxQuantityPCustomer.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtPackInBox.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtInventoryDays.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtMinFlatRate.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtMaxFlatRate.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.cmbSaleTaxCalculation.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtSaleTaxVale.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtSaleTaxPer.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtMaxSalesDisc.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtPurchaseDiscountPer.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtRetailPrice.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.chkwolallow.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.chkAllowPer.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.chkAutoBonus.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.chkSaleBase.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.chkSaleTaxReg.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.chkNonPharma.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.chkExcempted.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.chkUseFlatRate.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.chkNorCotics.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.chkHideinTabs.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.chkAllowMaxQtyDays.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.chkProductDiscontinue.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtTradePrice.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtSaleRate.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtPackInCarton.Properties)).BeginInit();
     this.XtrabarBonus.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.datagridBonus)).BeginInit();
     this.xtraTabPage1.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.datagridProductAllocation)).BeginInit();
     this.xtraTabPage2.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.groupControl5)).BeginInit();
     this.groupControl5.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.txtMaxLimit.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtMinLimit.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtBarCode.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtShelfCode.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.grdPresevasionStandard)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtClaimPartnerName.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.businessPartnerName.Properties)).BeginInit();
     this.xtraTabPage3.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.dgFileAttachments)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.groupControl1)).BeginInit();
     this.groupControl1.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.cmbProductCategory.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtShortName.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtArtical.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtProductName.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.cmbSkuType.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.cmbGeneralName.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.cmbProtoType.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtPack.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtGroupSeq.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtGroupName.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.groupControl2)).BeginInit();
     this.groupControl2.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.txtmanualgroup.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.groupControl4)).BeginInit();
     this.groupControl4.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.chkCompanyDiscount.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtCompanySeq.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtReportCompanyName.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtCompanyName.Properties)).BeginInit();
     this.SuspendLayout();
     //
     // xtraTabControl1
     //
     this.xtraTabControl1.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
     | System.Windows.Forms.AnchorStyles.Left)
     | System.Windows.Forms.AnchorStyles.Right)));
     this.xtraTabControl1.Location = new System.Drawing.Point(3, 171);
     this.xtraTabControl1.Name = "xtraTabControl1";
     this.xtraTabControl1.SelectedTabPage = this.xtrabarGeneralinformation;
     this.xtraTabControl1.Size = new System.Drawing.Size(701, 254);
     this.xtraTabControl1.TabIndex = 0;
     this.xtraTabControl1.TabPages.AddRange(new DevExpress.XtraTab.XtraTabPage[] {
     this.xtrabarGeneralinformation,
     this.XtrabarBonus,
     this.xtraTabPage1,
     this.xtraTabPage2,
     this.xtraTabPage3});
     this.xtraTabControl1.SelectedPageChanged += new DevExpress.XtraTab.TabPageChangedEventHandler(this.xtraTabControl1_SelectedPageChanged);
     this.xtraTabControl1.PreviewKeyDown += new System.Windows.Forms.PreviewKeyDownEventHandler(this.xtraTabControl1_PreviewKeyDown);
     //
     // xtrabarGeneralinformation
     //
     this.xtrabarGeneralinformation.Controls.Add(this.panelControl1);
     this.xtrabarGeneralinformation.Name = "xtrabarGeneralinformation";
     this.xtrabarGeneralinformation.Size = new System.Drawing.Size(695, 226);
     this.xtrabarGeneralinformation.Text = "General Information";
     //
     // 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.Appearance.BackColor = System.Drawing.Color.White;
     this.panelControl1.Appearance.Options.UseBackColor = true;
     this.panelControl1.Controls.Add(this.txtfactor);
     this.panelControl1.Controls.Add(this.txtuompurchase);
     this.panelControl1.Controls.Add(this.txtuomsize);
     this.panelControl1.Controls.Add(this.txtuomsale);
     this.panelControl1.Controls.Add(this.cmbValueMethod);
     this.panelControl1.Controls.Add(this.txtAvgRate);
     this.panelControl1.Controls.Add(this.txtToleranceDay);
     this.panelControl1.Controls.Add(this.txtLoadTime);
     this.panelControl1.Controls.Add(this.txtPurchaseRate);
     this.panelControl1.Controls.Add(this.txtSpecialRate);
     this.panelControl1.Controls.Add(this.txtCostRate);
     this.panelControl1.Controls.Add(this.txtTransit);
     this.panelControl1.Controls.Add(this.txtTarget);
     this.panelControl1.Controls.Add(this.txtNetBalance);
     this.panelControl1.Controls.Add(this.txtBalanceBonus);
     this.panelControl1.Controls.Add(this.txtBalanceStock);
     this.panelControl1.Controls.Add(this.txtMaxQuantityDays);
     this.panelControl1.Controls.Add(this.txtMaxQuantityPCustomer);
     this.panelControl1.Controls.Add(this.txtPackInBox);
     this.panelControl1.Controls.Add(this.txtInventoryDays);
     this.panelControl1.Controls.Add(this.txtMinFlatRate);
     this.panelControl1.Controls.Add(this.txtMaxFlatRate);
     this.panelControl1.Controls.Add(this.cmbSaleTaxCalculation);
     this.panelControl1.Controls.Add(this.txtSaleTaxVale);
     this.panelControl1.Controls.Add(this.txtSaleTaxPer);
     this.panelControl1.Controls.Add(this.txtMaxSalesDisc);
     this.panelControl1.Controls.Add(this.txtPurchaseDiscountPer);
     this.panelControl1.Controls.Add(this.txtRetailPrice);
     this.panelControl1.Controls.Add(this.chkwolallow);
     this.panelControl1.Controls.Add(this.chkAllowPer);
     this.panelControl1.Controls.Add(this.chkAutoBonus);
     this.panelControl1.Controls.Add(this.chkSaleBase);
     this.panelControl1.Controls.Add(this.chkSaleTaxReg);
     this.panelControl1.Controls.Add(this.chkNonPharma);
     this.panelControl1.Controls.Add(this.chkExcempted);
     this.panelControl1.Controls.Add(this.chkUseFlatRate);
     this.panelControl1.Controls.Add(this.chkNorCotics);
     this.panelControl1.Controls.Add(this.chkHideinTabs);
     this.panelControl1.Controls.Add(this.chkAllowMaxQtyDays);
     this.panelControl1.Controls.Add(this.chkProductDiscontinue);
     this.panelControl1.Controls.Add(this.txtTradePrice);
     this.panelControl1.Controls.Add(this.txtSaleRate);
     this.panelControl1.Controls.Add(this.txtPackInCarton);
     this.panelControl1.Controls.Add(this.labelControl9);
     this.panelControl1.Controls.Add(this.labelControl18);
     this.panelControl1.Controls.Add(this.labelControl17);
     this.panelControl1.Controls.Add(this.labelControl16);
     this.panelControl1.Controls.Add(this.labelControl15);
     this.panelControl1.Controls.Add(this.labelControl13);
     this.panelControl1.Controls.Add(this.labelControl50);
     this.panelControl1.Controls.Add(this.labelControl12);
     this.panelControl1.Controls.Add(this.labelControl11);
     this.panelControl1.Controls.Add(this.labelControl19);
     this.panelControl1.Controls.Add(this.labelControl20);
     this.panelControl1.Controls.Add(this.labelControl25);
     this.panelControl1.Controls.Add(this.labelControl24);
     this.panelControl1.Controls.Add(this.labelControl23);
     this.panelControl1.Controls.Add(this.labelControl22);
     this.panelControl1.Controls.Add(this.labelControl21);
     this.panelControl1.Controls.Add(this.labelControl26);
     this.panelControl1.Controls.Add(this.labelControl52);
     this.panelControl1.Controls.Add(this.labelControl53);
     this.panelControl1.Controls.Add(this.labelControl27);
     this.panelControl1.Controls.Add(this.labelControl28);
     this.panelControl1.Controls.Add(this.labelControl29);
     this.panelControl1.Controls.Add(this.labelControl30);
     this.panelControl1.Controls.Add(this.labelControl31);
     this.panelControl1.Controls.Add(this.labelControl32);
     this.panelControl1.Controls.Add(this.labelControl37);
     this.panelControl1.Controls.Add(this.labelControl38);
     this.panelControl1.Controls.Add(this.labelControl44);
     this.panelControl1.Controls.Add(this.labelControl43);
     this.panelControl1.Controls.Add(this.labelControl41);
     this.panelControl1.Controls.Add(this.labelControl42);
     this.panelControl1.Location = new System.Drawing.Point(-1, 0);
     this.panelControl1.Name = "panelControl1";
     this.panelControl1.Size = new System.Drawing.Size(700, 226);
     this.panelControl1.TabIndex = 180;
     //
     // txtfactor
     //
     this.txtfactor.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
     this.txtfactor.Location = new System.Drawing.Point(449, 161);
     this.txtfactor.Name = "txtfactor";
     this.txtfactor.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.txtfactor.Properties.Items.AddRange(new object[] {
     "Town",
     "Brick",
     "SubBrick",
     "Terriorty"});
     this.txtfactor.Properties.TextEditStyle = DevExpress.XtraEditors.Controls.TextEditStyles.DisableTextEditor;
     this.txtfactor.Size = new System.Drawing.Size(82, 20);
     this.txtfactor.TabIndex = 124270;
     this.txtfactor.PreviewKeyDown += new System.Windows.Forms.PreviewKeyDownEventHandler(this.txtfactor_PreviewKeyDown);
     //
     // txtuompurchase
     //
     this.txtuompurchase.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
     this.txtuompurchase.Location = new System.Drawing.Point(449, 142);
     this.txtuompurchase.Name = "txtuompurchase";
     this.txtuompurchase.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.txtuompurchase.Properties.Items.AddRange(new object[] {
     "Town",
     "Brick",
     "SubBrick",
     "Terriorty"});
     this.txtuompurchase.Properties.TextEditStyle = DevExpress.XtraEditors.Controls.TextEditStyles.DisableTextEditor;
     this.txtuompurchase.Size = new System.Drawing.Size(82, 20);
     this.txtuompurchase.TabIndex = 124262;
     this.txtuompurchase.PreviewKeyDown += new System.Windows.Forms.PreviewKeyDownEventHandler(this.txtuompurchase_PreviewKeyDown);
     //
     // txtuomsize
     //
     this.txtuomsize.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
     this.txtuomsize.Location = new System.Drawing.Point(449, 123);
     this.txtuomsize.Name = "txtuomsize";
     this.txtuomsize.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.txtuomsize.Properties.Items.AddRange(new object[] {
     "Town",
     "Brick",
     "SubBrick",
     "Terriorty"});
     this.txtuomsize.Properties.TextEditStyle = DevExpress.XtraEditors.Controls.TextEditStyles.DisableTextEditor;
     this.txtuomsize.Size = new System.Drawing.Size(82, 20);
     this.txtuomsize.TabIndex = 124258;
     this.txtuomsize.PreviewKeyDown += new System.Windows.Forms.PreviewKeyDownEventHandler(this.txtuomsize_PreviewKeyDown);
     //
     // txtuomsale
     //
     this.txtuomsale.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
     this.txtuomsale.Location = new System.Drawing.Point(449, 104);
     this.txtuomsale.Name = "txtuomsale";
     this.txtuomsale.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.txtuomsale.Properties.Items.AddRange(new object[] {
     "Town",
     "Brick",
     "SubBrick",
     "Terriorty"});
     this.txtuomsale.Properties.TextEditStyle = DevExpress.XtraEditors.Controls.TextEditStyles.DisableTextEditor;
     this.txtuomsale.Size = new System.Drawing.Size(82, 20);
     this.txtuomsale.TabIndex = 124260;
     this.txtuomsale.PreviewKeyDown += new System.Windows.Forms.PreviewKeyDownEventHandler(this.txtuomsale_PreviewKeyDown);
     //
     // cmbValueMethod
     //
     this.cmbValueMethod.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
     this.cmbValueMethod.Location = new System.Drawing.Point(449, 85);
     this.cmbValueMethod.Name = "cmbValueMethod";
     this.cmbValueMethod.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.cmbValueMethod.Properties.Items.AddRange(new object[] {
     "Town",
     "Brick",
     "SubBrick",
     "Terriorty"});
     this.cmbValueMethod.Properties.TextEditStyle = DevExpress.XtraEditors.Controls.TextEditStyles.DisableTextEditor;
     this.cmbValueMethod.Size = new System.Drawing.Size(82, 20);
     this.cmbValueMethod.TabIndex = 37;
     this.cmbValueMethod.PreviewKeyDown += new System.Windows.Forms.PreviewKeyDownEventHandler(this.cmbValueMethod_PreviewKeyDown);
     //
     // txtAvgRate
     //
     this.txtAvgRate.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
     this.txtAvgRate.Location = new System.Drawing.Point(449, 66);
     this.txtAvgRate.Name = "txtAvgRate";
     this.txtAvgRate.Size = new System.Drawing.Size(82, 20);
     this.txtAvgRate.TabIndex = 36;
     this.txtAvgRate.PreviewKeyDown += new System.Windows.Forms.PreviewKeyDownEventHandler(this.txtAvgRate_PreviewKeyDown);
     //
     // txtToleranceDay
     //
     this.txtToleranceDay.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
     this.txtToleranceDay.Location = new System.Drawing.Point(449, 47);
     this.txtToleranceDay.Name = "txtToleranceDay";
     this.txtToleranceDay.Size = new System.Drawing.Size(82, 20);
     this.txtToleranceDay.TabIndex = 35;
     this.txtToleranceDay.PreviewKeyDown += new System.Windows.Forms.PreviewKeyDownEventHandler(this.txtToleranceDay_PreviewKeyDown);
     //
     // txtLoadTime
     //
     this.txtLoadTime.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
     this.txtLoadTime.Location = new System.Drawing.Point(449, 28);
     this.txtLoadTime.Name = "txtLoadTime";
     this.txtLoadTime.Size = new System.Drawing.Size(82, 20);
     this.txtLoadTime.TabIndex = 34;
     this.txtLoadTime.PreviewKeyDown += new System.Windows.Forms.PreviewKeyDownEventHandler(this.txtLoadTime_PreviewKeyDown);
     //
     // txtPurchaseRate
     //
     this.txtPurchaseRate.EditValue = "0.00";
     this.txtPurchaseRate.Location = new System.Drawing.Point(285, 199);
     this.txtPurchaseRate.Name = "txtPurchaseRate";
     this.txtPurchaseRate.Size = new System.Drawing.Size(82, 20);
     this.txtPurchaseRate.TabIndex = 32;
     this.txtPurchaseRate.PreviewKeyDown += new System.Windows.Forms.PreviewKeyDownEventHandler(this.txtPurchaseRate_PreviewKeyDown);
     //
     // txtSpecialRate
     //
     this.txtSpecialRate.EditValue = "0.00";
     this.txtSpecialRate.Location = new System.Drawing.Point(285, 180);
     this.txtSpecialRate.Name = "txtSpecialRate";
     this.txtSpecialRate.Size = new System.Drawing.Size(82, 20);
     this.txtSpecialRate.TabIndex = 31;
     this.txtSpecialRate.PreviewKeyDown += new System.Windows.Forms.PreviewKeyDownEventHandler(this.txtSpecialRate_PreviewKeyDown);
     //
     // txtCostRate
     //
     this.txtCostRate.EditValue = "0.00";
     this.txtCostRate.Location = new System.Drawing.Point(285, 161);
     this.txtCostRate.Name = "txtCostRate";
     this.txtCostRate.Size = new System.Drawing.Size(82, 20);
     this.txtCostRate.TabIndex = 30;
     this.txtCostRate.PreviewKeyDown += new System.Windows.Forms.PreviewKeyDownEventHandler(this.txtCostRate_PreviewKeyDown);
     //
     // txtTransit
     //
     this.txtTransit.EditValue = "0.00";
     this.txtTransit.Location = new System.Drawing.Point(285, 142);
     this.txtTransit.Name = "txtTransit";
     this.txtTransit.Size = new System.Drawing.Size(82, 20);
     this.txtTransit.TabIndex = 124268;
     this.txtTransit.PreviewKeyDown += new System.Windows.Forms.PreviewKeyDownEventHandler(this.txtTransit_PreviewKeyDown);
     //
     // txtTarget
     //
     this.txtTarget.EditValue = "0.00";
     this.txtTarget.Location = new System.Drawing.Point(285, 123);
     this.txtTarget.Name = "txtTarget";
     this.txtTarget.Size = new System.Drawing.Size(82, 20);
     this.txtTarget.TabIndex = 124266;
     this.txtTarget.PreviewKeyDown += new System.Windows.Forms.PreviewKeyDownEventHandler(this.txtTarget_PreviewKeyDown);
     //
     // txtNetBalance
     //
     this.txtNetBalance.EditValue = "0.00";
     this.txtNetBalance.Location = new System.Drawing.Point(285, 104);
     this.txtNetBalance.Name = "txtNetBalance";
     this.txtNetBalance.Size = new System.Drawing.Size(82, 20);
     this.txtNetBalance.TabIndex = 29;
     this.txtNetBalance.PreviewKeyDown += new System.Windows.Forms.PreviewKeyDownEventHandler(this.txtNetBalance_PreviewKeyDown);
     //
     // txtBalanceBonus
     //
     this.txtBalanceBonus.EditValue = "";
     this.txtBalanceBonus.Location = new System.Drawing.Point(285, 85);
     this.txtBalanceBonus.Name = "txtBalanceBonus";
     this.txtBalanceBonus.Size = new System.Drawing.Size(82, 20);
     this.txtBalanceBonus.TabIndex = 28;
     this.txtBalanceBonus.PreviewKeyDown += new System.Windows.Forms.PreviewKeyDownEventHandler(this.txtBalanceBonus_PreviewKeyDown);
     //
     // txtBalanceStock
     //
     this.txtBalanceStock.Location = new System.Drawing.Point(285, 66);
     this.txtBalanceStock.Name = "txtBalanceStock";
     this.txtBalanceStock.Size = new System.Drawing.Size(82, 20);
     this.txtBalanceStock.TabIndex = 27;
     this.txtBalanceStock.PreviewKeyDown += new System.Windows.Forms.PreviewKeyDownEventHandler(this.txtBalanceStock_PreviewKeyDown);
     //
     // txtMaxQuantityDays
     //
     this.txtMaxQuantityDays.Location = new System.Drawing.Point(285, 47);
     this.txtMaxQuantityDays.Name = "txtMaxQuantityDays";
     this.txtMaxQuantityDays.Size = new System.Drawing.Size(82, 20);
     this.txtMaxQuantityDays.TabIndex = 26;
     this.txtMaxQuantityDays.PreviewKeyDown += new System.Windows.Forms.PreviewKeyDownEventHandler(this.txtMaxQuantityDays_PreviewKeyDown);
     //
     // txtMaxQuantityPCustomer
     //
     this.txtMaxQuantityPCustomer.Location = new System.Drawing.Point(285, 28);
     this.txtMaxQuantityPCustomer.Name = "txtMaxQuantityPCustomer";
     this.txtMaxQuantityPCustomer.Size = new System.Drawing.Size(82, 20);
     this.txtMaxQuantityPCustomer.TabIndex = 25;
     this.txtMaxQuantityPCustomer.PreviewKeyDown += new System.Windows.Forms.PreviewKeyDownEventHandler(this.txtMaxQuantityPCustomer_PreviewKeyDown);
     //
     // txtPackInBox
     //
     this.txtPackInBox.Location = new System.Drawing.Point(102, 199);
     this.txtPackInBox.Name = "txtPackInBox";
     this.txtPackInBox.Size = new System.Drawing.Size(82, 20);
     this.txtPackInBox.TabIndex = 23;
     this.txtPackInBox.PreviewKeyDown += new System.Windows.Forms.PreviewKeyDownEventHandler(this.txtPackInBox_PreviewKeyDown);
     //
     // txtInventoryDays
     //
     this.txtInventoryDays.EditValue = "0.00";
     this.txtInventoryDays.Location = new System.Drawing.Point(102, 180);
     this.txtInventoryDays.Name = "txtInventoryDays";
     this.txtInventoryDays.Size = new System.Drawing.Size(82, 20);
     this.txtInventoryDays.TabIndex = 22;
     this.txtInventoryDays.PreviewKeyDown += new System.Windows.Forms.PreviewKeyDownEventHandler(this.txtInventoryDays_PreviewKeyDown);
     //
     // txtMinFlatRate
     //
     this.txtMinFlatRate.EditValue = "0.00";
     this.txtMinFlatRate.Location = new System.Drawing.Point(102, 161);
     this.txtMinFlatRate.Name = "txtMinFlatRate";
     this.txtMinFlatRate.Size = new System.Drawing.Size(82, 20);
     this.txtMinFlatRate.TabIndex = 21;
     this.txtMinFlatRate.PreviewKeyDown += new System.Windows.Forms.PreviewKeyDownEventHandler(this.txtMinFlatRate_PreviewKeyDown);
     //
     // txtMaxFlatRate
     //
     this.txtMaxFlatRate.EditValue = "0.00";
     this.txtMaxFlatRate.Location = new System.Drawing.Point(102, 142);
     this.txtMaxFlatRate.Name = "txtMaxFlatRate";
     this.txtMaxFlatRate.Size = new System.Drawing.Size(82, 20);
     this.txtMaxFlatRate.TabIndex = 20;
     this.txtMaxFlatRate.PreviewKeyDown += new System.Windows.Forms.PreviewKeyDownEventHandler(this.txtMaxFlatRate_PreviewKeyDown);
     //
     // cmbSaleTaxCalculation
     //
     this.cmbSaleTaxCalculation.Location = new System.Drawing.Point(102, 123);
     this.cmbSaleTaxCalculation.Name = "cmbSaleTaxCalculation";
     this.cmbSaleTaxCalculation.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.cmbSaleTaxCalculation.Properties.Items.AddRange(new object[] {
     "Town",
     "Brick",
     "SubBrick",
     "Terriorty"});
     this.cmbSaleTaxCalculation.Properties.TextEditStyle = DevExpress.XtraEditors.Controls.TextEditStyles.DisableTextEditor;
     this.cmbSaleTaxCalculation.Size = new System.Drawing.Size(82, 20);
     this.cmbSaleTaxCalculation.TabIndex = 59;
     //
     // txtSaleTaxVale
     //
     this.txtSaleTaxVale.EditValue = "0.00";
     this.txtSaleTaxVale.Location = new System.Drawing.Point(102, 104);
     this.txtSaleTaxVale.Name = "txtSaleTaxVale";
     this.txtSaleTaxVale.Size = new System.Drawing.Size(82, 20);
     this.txtSaleTaxVale.TabIndex = 19;
     this.txtSaleTaxVale.PreviewKeyDown += new System.Windows.Forms.PreviewKeyDownEventHandler(this.txtSaleTaxVale_PreviewKeyDown);
     //
     // txtSaleTaxPer
     //
     this.txtSaleTaxPer.EditValue = "0.00";
     this.txtSaleTaxPer.Location = new System.Drawing.Point(102, 85);
     this.txtSaleTaxPer.Name = "txtSaleTaxPer";
     this.txtSaleTaxPer.Size = new System.Drawing.Size(82, 20);
     this.txtSaleTaxPer.TabIndex = 18;
     this.txtSaleTaxPer.PreviewKeyDown += new System.Windows.Forms.PreviewKeyDownEventHandler(this.txtSaleTaxPer_PreviewKeyDown);
     //
     // txtMaxSalesDisc
     //
     this.txtMaxSalesDisc.EditValue = "0.00";
     this.txtMaxSalesDisc.Location = new System.Drawing.Point(102, 66);
     this.txtMaxSalesDisc.Name = "txtMaxSalesDisc";
     this.txtMaxSalesDisc.Size = new System.Drawing.Size(82, 20);
     this.txtMaxSalesDisc.TabIndex = 17;
     this.txtMaxSalesDisc.PreviewKeyDown += new System.Windows.Forms.PreviewKeyDownEventHandler(this.txtMaxSalesDisc_PreviewKeyDown);
     //
     // txtPurchaseDiscountPer
     //
     this.txtPurchaseDiscountPer.EditValue = "0.0000";
     this.txtPurchaseDiscountPer.Location = new System.Drawing.Point(102, 47);
     this.txtPurchaseDiscountPer.Name = "txtPurchaseDiscountPer";
     this.txtPurchaseDiscountPer.Size = new System.Drawing.Size(82, 20);
     this.txtPurchaseDiscountPer.TabIndex = 16;
     this.txtPurchaseDiscountPer.PreviewKeyDown += new System.Windows.Forms.PreviewKeyDownEventHandler(this.txtPurchaseDiscountPer_PreviewKeyDown);
     //
     // txtRetailPrice
     //
     this.txtRetailPrice.EditValue = "0.00";
     this.txtRetailPrice.Location = new System.Drawing.Point(102, 28);
     this.txtRetailPrice.Name = "txtRetailPrice";
     this.txtRetailPrice.Size = new System.Drawing.Size(82, 20);
     this.txtRetailPrice.TabIndex = 15;
     this.txtRetailPrice.PreviewKeyDown += new System.Windows.Forms.PreviewKeyDownEventHandler(this.txtRetailPrice_PreviewKeyDown);
     //
     // chkwolallow
     //
     this.chkwolallow.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
     this.chkwolallow.EnterMoveNextControl = true;
     this.chkwolallow.Location = new System.Drawing.Point(545, 179);
     this.chkwolallow.Name = "chkwolallow";
     this.chkwolallow.Properties.Appearance.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.chkwolallow.Properties.Appearance.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(66)))), ((int)(((byte)(88)))), ((int)(((byte)(168)))));
     this.chkwolallow.Properties.Appearance.Options.UseFont = true;
     this.chkwolallow.Properties.Appearance.Options.UseForeColor = true;
     this.chkwolallow.Properties.Caption = "With Out Lic Allow";
     this.chkwolallow.Size = new System.Drawing.Size(136, 19);
     this.chkwolallow.TabIndex = 50;
     this.chkwolallow.PreviewKeyDown += new System.Windows.Forms.PreviewKeyDownEventHandler(this.chkwolallow_PreviewKeyDown);
     //
     // chkAllowPer
     //
     this.chkAllowPer.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
     this.chkAllowPer.Location = new System.Drawing.Point(545, 145);
     this.chkAllowPer.Name = "chkAllowPer";
     this.chkAllowPer.Properties.Appearance.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.chkAllowPer.Properties.Appearance.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(66)))), ((int)(((byte)(88)))), ((int)(((byte)(168)))));
     this.chkAllowPer.Properties.Appearance.Options.UseFont = true;
     this.chkAllowPer.Properties.Appearance.Options.UseForeColor = true;
     this.chkAllowPer.Properties.Caption = "Allow 100%";
     this.chkAllowPer.Size = new System.Drawing.Size(136, 19);
     this.chkAllowPer.TabIndex = 48;
     this.chkAllowPer.PreviewKeyDown += new System.Windows.Forms.PreviewKeyDownEventHandler(this.chkAllowPer_PreviewKeyDown);
     //
     // chkAutoBonus
     //
     this.chkAutoBonus.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
     this.chkAutoBonus.Location = new System.Drawing.Point(545, 162);
     this.chkAutoBonus.Name = "chkAutoBonus";
     this.chkAutoBonus.Properties.Appearance.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.chkAutoBonus.Properties.Appearance.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(66)))), ((int)(((byte)(88)))), ((int)(((byte)(168)))));
     this.chkAutoBonus.Properties.Appearance.Options.UseFont = true;
     this.chkAutoBonus.Properties.Appearance.Options.UseForeColor = true;
     this.chkAutoBonus.Properties.Caption = "Auto Bonus";
     this.chkAutoBonus.Size = new System.Drawing.Size(136, 19);
     this.chkAutoBonus.TabIndex = 49;
     this.chkAutoBonus.PreviewKeyDown += new System.Windows.Forms.PreviewKeyDownEventHandler(this.chkAutoBonus_PreviewKeyDown);
     //
     // chkSaleBase
     //
     this.chkSaleBase.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
     this.chkSaleBase.Location = new System.Drawing.Point(545, 128);
     this.chkSaleBase.Name = "chkSaleBase";
     this.chkSaleBase.Properties.Appearance.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.chkSaleBase.Properties.Appearance.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(66)))), ((int)(((byte)(88)))), ((int)(((byte)(168)))));
     this.chkSaleBase.Properties.Appearance.Options.UseFont = true;
     this.chkSaleBase.Properties.Appearance.Options.UseForeColor = true;
     this.chkSaleBase.Properties.Caption = "Sale Base";
     this.chkSaleBase.Size = new System.Drawing.Size(136, 19);
     this.chkSaleBase.TabIndex = 47;
     this.chkSaleBase.PreviewKeyDown += new System.Windows.Forms.PreviewKeyDownEventHandler(this.chkSaleBase_PreviewKeyDown);
     //
     // chkSaleTaxReg
     //
     this.chkSaleTaxReg.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
     this.chkSaleTaxReg.Location = new System.Drawing.Point(545, 93);
     this.chkSaleTaxReg.Name = "chkSaleTaxReg";
     this.chkSaleTaxReg.Properties.Appearance.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.chkSaleTaxReg.Properties.Appearance.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(66)))), ((int)(((byte)(88)))), ((int)(((byte)(168)))));
     this.chkSaleTaxReg.Properties.Appearance.Options.UseFont = true;
     this.chkSaleTaxReg.Properties.Appearance.Options.UseForeColor = true;
     this.chkSaleTaxReg.Properties.Caption = "S.Tax Reg";
     this.chkSaleTaxReg.Size = new System.Drawing.Size(111, 19);
     this.chkSaleTaxReg.TabIndex = 44;
     this.chkSaleTaxReg.PreviewKeyDown += new System.Windows.Forms.PreviewKeyDownEventHandler(this.chkSaleTaxReg_PreviewKeyDown);
     //
     // chkNonPharma
     //
     this.chkNonPharma.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
     this.chkNonPharma.Location = new System.Drawing.Point(545, 110);
     this.chkNonPharma.Name = "chkNonPharma";
     this.chkNonPharma.Properties.Appearance.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.chkNonPharma.Properties.Appearance.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(66)))), ((int)(((byte)(88)))), ((int)(((byte)(168)))));
     this.chkNonPharma.Properties.Appearance.Options.UseFont = true;
     this.chkNonPharma.Properties.Appearance.Options.UseForeColor = true;
     this.chkNonPharma.Properties.Caption = "Non Pharma";
     this.chkNonPharma.Size = new System.Drawing.Size(89, 19);
     this.chkNonPharma.TabIndex = 45;
     this.chkNonPharma.PreviewKeyDown += new System.Windows.Forms.PreviewKeyDownEventHandler(this.chkNonPharma_PreviewKeyDown);
     //
     // chkExcempted
     //
     this.chkExcempted.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
     this.chkExcempted.Location = new System.Drawing.Point(545, 76);
     this.chkExcempted.Name = "chkExcempted";
     this.chkExcempted.Properties.Appearance.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.chkExcempted.Properties.Appearance.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(66)))), ((int)(((byte)(88)))), ((int)(((byte)(168)))));
     this.chkExcempted.Properties.Appearance.Options.UseFont = true;
     this.chkExcempted.Properties.Appearance.Options.UseForeColor = true;
     this.chkExcempted.Properties.Caption = "Tax Excempted";
     this.chkExcempted.Size = new System.Drawing.Size(111, 19);
     this.chkExcempted.TabIndex = 43;
     this.chkExcempted.PreviewKeyDown += new System.Windows.Forms.PreviewKeyDownEventHandler(this.chkExcempted_PreviewKeyDown);
     //
     // chkUseFlatRate
     //
     this.chkUseFlatRate.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
     this.chkUseFlatRate.Location = new System.Drawing.Point(545, 7);
     this.chkUseFlatRate.Name = "chkUseFlatRate";
     this.chkUseFlatRate.Properties.Appearance.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.chkUseFlatRate.Properties.Appearance.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(66)))), ((int)(((byte)(88)))), ((int)(((byte)(168)))));
     this.chkUseFlatRate.Properties.Appearance.Options.UseFont = true;
     this.chkUseFlatRate.Properties.Appearance.Options.UseForeColor = true;
     this.chkUseFlatRate.Properties.Caption = "Use Flat Rate";
     this.chkUseFlatRate.Size = new System.Drawing.Size(139, 19);
     this.chkUseFlatRate.TabIndex = 39;
     this.chkUseFlatRate.PreviewKeyDown += new System.Windows.Forms.PreviewKeyDownEventHandler(this.chkUseFlatRate_PreviewKeyDown);
     //
     // chkNorCotics
     //
     this.chkNorCotics.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
     this.chkNorCotics.Location = new System.Drawing.Point(545, 24);
     this.chkNorCotics.Name = "chkNorCotics";
     this.chkNorCotics.Properties.Appearance.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.chkNorCotics.Properties.Appearance.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(66)))), ((int)(((byte)(88)))), ((int)(((byte)(168)))));
     this.chkNorCotics.Properties.Appearance.Options.UseFont = true;
     this.chkNorCotics.Properties.Appearance.Options.UseForeColor = true;
     this.chkNorCotics.Properties.Caption = "Norcotics";
     this.chkNorCotics.Size = new System.Drawing.Size(75, 19);
     this.chkNorCotics.TabIndex = 40;
     this.chkNorCotics.PreviewKeyDown += new System.Windows.Forms.PreviewKeyDownEventHandler(this.chkNorCotics_PreviewKeyDown);
     //
     // chkHideinTabs
     //
     this.chkHideinTabs.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
     this.chkHideinTabs.Location = new System.Drawing.Point(545, 59);
     this.chkHideinTabs.Name = "chkHideinTabs";
     this.chkHideinTabs.Properties.Appearance.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.chkHideinTabs.Properties.Appearance.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(66)))), ((int)(((byte)(88)))), ((int)(((byte)(168)))));
     this.chkHideinTabs.Properties.Appearance.Options.UseFont = true;
     this.chkHideinTabs.Properties.Appearance.Options.UseForeColor = true;
     this.chkHideinTabs.Properties.Caption = "Hide in Tabs";
     this.chkHideinTabs.Size = new System.Drawing.Size(111, 19);
     this.chkHideinTabs.TabIndex = 42;
     this.chkHideinTabs.PreviewKeyDown += new System.Windows.Forms.PreviewKeyDownEventHandler(this.chkHideinTabs_PreviewKeyDown);
     //
     // chkAllowMaxQtyDays
     //
     this.chkAllowMaxQtyDays.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
     this.chkAllowMaxQtyDays.Location = new System.Drawing.Point(545, 42);
     this.chkAllowMaxQtyDays.Name = "chkAllowMaxQtyDays";
     this.chkAllowMaxQtyDays.Properties.Appearance.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.chkAllowMaxQtyDays.Properties.Appearance.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(66)))), ((int)(((byte)(88)))), ((int)(((byte)(168)))));
     this.chkAllowMaxQtyDays.Properties.Appearance.Options.UseFont = true;
     this.chkAllowMaxQtyDays.Properties.Appearance.Options.UseForeColor = true;
     this.chkAllowMaxQtyDays.Properties.Caption = "Allow Max Qty & Days";
     this.chkAllowMaxQtyDays.Size = new System.Drawing.Size(139, 19);
     this.chkAllowMaxQtyDays.TabIndex = 41;
     this.chkAllowMaxQtyDays.PreviewKeyDown += new System.Windows.Forms.PreviewKeyDownEventHandler(this.chkAllowMaxQtyDays_PreviewKeyDown);
     //
     // chkProductDiscontinue
     //
     this.chkProductDiscontinue.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
     this.chkProductDiscontinue.Location = new System.Drawing.Point(545, 197);
     this.chkProductDiscontinue.Name = "chkProductDiscontinue";
     this.chkProductDiscontinue.Properties.Appearance.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.chkProductDiscontinue.Properties.Appearance.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(66)))), ((int)(((byte)(88)))), ((int)(((byte)(168)))));
     this.chkProductDiscontinue.Properties.Appearance.Options.UseFont = true;
     this.chkProductDiscontinue.Properties.Appearance.Options.UseForeColor = true;
     this.chkProductDiscontinue.Properties.Caption = "Product Discountinue";
     this.chkProductDiscontinue.Size = new System.Drawing.Size(141, 19);
     this.chkProductDiscontinue.TabIndex = 38;
     this.chkProductDiscontinue.PreviewKeyDown += new System.Windows.Forms.PreviewKeyDownEventHandler(this.chkProductDiscontinue_PreviewKeyDown);
     //
     // txtTradePrice
     //
     this.txtTradePrice.EditValue = "0.00";
     this.txtTradePrice.Location = new System.Drawing.Point(102, 9);
     this.txtTradePrice.Name = "txtTradePrice";
     this.txtTradePrice.Size = new System.Drawing.Size(82, 20);
     this.txtTradePrice.TabIndex = 14;
     this.txtTradePrice.PreviewKeyDown += new System.Windows.Forms.PreviewKeyDownEventHandler(this.txtTradePrice_PreviewKeyDown);
     //
     // txtSaleRate
     //
     this.txtSaleRate.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
     this.txtSaleRate.EditValue = "0.00";
     this.txtSaleRate.Location = new System.Drawing.Point(449, 9);
     this.txtSaleRate.Name = "txtSaleRate";
     this.txtSaleRate.Size = new System.Drawing.Size(82, 20);
     this.txtSaleRate.TabIndex = 33;
     this.txtSaleRate.PreviewKeyDown += new System.Windows.Forms.PreviewKeyDownEventHandler(this.txtSaleRate_PreviewKeyDown);
     //
     // txtPackInCarton
     //
     this.txtPackInCarton.Location = new System.Drawing.Point(285, 9);
     this.txtPackInCarton.Name = "txtPackInCarton";
     this.txtPackInCarton.Size = new System.Drawing.Size(82, 20);
     this.txtPackInCarton.TabIndex = 24;
     this.txtPackInCarton.PreviewKeyDown += new System.Windows.Forms.PreviewKeyDownEventHandler(this.txtPackInCarton_PreviewKeyDown);
     //
     // labelControl9
     //
     this.labelControl9.AutoSizeMode = DevExpress.XtraEditors.LabelAutoSizeMode.None;
     this.labelControl9.LineLocation = DevExpress.XtraEditors.LineLocation.Bottom;
     this.labelControl9.LineVisible = true;
     this.labelControl9.Location = new System.Drawing.Point(16, 9);
     this.labelControl9.Name = "labelControl9";
     this.labelControl9.Size = new System.Drawing.Size(96, 20);
     this.labelControl9.TabIndex = 140;
     this.labelControl9.Text = "Trade Price";
     //
     // labelControl18
     //
     this.labelControl18.AutoSizeMode = DevExpress.XtraEditors.LabelAutoSizeMode.None;
     this.labelControl18.LineLocation = DevExpress.XtraEditors.LineLocation.Bottom;
     this.labelControl18.LineVisible = true;
     this.labelControl18.Location = new System.Drawing.Point(16, 28);
     this.labelControl18.Name = "labelControl18";
     this.labelControl18.Size = new System.Drawing.Size(96, 20);
     this.labelControl18.TabIndex = 157;
     this.labelControl18.Text = "Retail Price";
     //
     // labelControl17
     //
     this.labelControl17.AutoSizeMode = DevExpress.XtraEditors.LabelAutoSizeMode.None;
     this.labelControl17.LineLocation = DevExpress.XtraEditors.LineLocation.Bottom;
     this.labelControl17.LineVisible = true;
     this.labelControl17.Location = new System.Drawing.Point(16, 47);
     this.labelControl17.Name = "labelControl17";
     this.labelControl17.Size = new System.Drawing.Size(96, 20);
     this.labelControl17.TabIndex = 156;
     this.labelControl17.Text = "Purchase Disc %";
     //
     // labelControl16
     //
     this.labelControl16.AutoSizeMode = DevExpress.XtraEditors.LabelAutoSizeMode.None;
     this.labelControl16.LineLocation = DevExpress.XtraEditors.LineLocation.Bottom;
     this.labelControl16.LineVisible = true;
     this.labelControl16.Location = new System.Drawing.Point(16, 66);
     this.labelControl16.Name = "labelControl16";
     this.labelControl16.Size = new System.Drawing.Size(96, 20);
     this.labelControl16.TabIndex = 155;
     this.labelControl16.Text = "Max Sales Disc %";
     //
     // labelControl15
     //
     this.labelControl15.AutoSizeMode = DevExpress.XtraEditors.LabelAutoSizeMode.None;
     this.labelControl15.LineLocation = DevExpress.XtraEditors.LineLocation.Bottom;
     this.labelControl15.LineVisible = true;
     this.labelControl15.Location = new System.Drawing.Point(16, 85);
     this.labelControl15.Name = "labelControl15";
     this.labelControl15.Size = new System.Drawing.Size(96, 20);
     this.labelControl15.TabIndex = 154;
     this.labelControl15.Text = "Sale Tax %";
     //
     // labelControl13
     //
     this.labelControl13.AutoSizeMode = DevExpress.XtraEditors.LabelAutoSizeMode.None;
     this.labelControl13.LineLocation = DevExpress.XtraEditors.LineLocation.Bottom;
     this.labelControl13.LineVisible = true;
     this.labelControl13.Location = new System.Drawing.Point(16, 104);
     this.labelControl13.Name = "labelControl13";
     this.labelControl13.Size = new System.Drawing.Size(96, 20);
     this.labelControl13.TabIndex = 153;
     this.labelControl13.Text = "Sale Tax Value";
     //
     // labelControl50
     //
     this.labelControl50.AutoSizeMode = DevExpress.XtraEditors.LabelAutoSizeMode.None;
     this.labelControl50.LineLocation = DevExpress.XtraEditors.LineLocation.Bottom;
     this.labelControl50.LineVisible = true;
     this.labelControl50.Location = new System.Drawing.Point(16, 123);
     this.labelControl50.Name = "labelControl50";
     this.labelControl50.Size = new System.Drawing.Size(96, 20);
     this.labelControl50.TabIndex = 60;
     this.labelControl50.Text = "Sale Tax Calc";
     //
     // labelControl12
     //
     this.labelControl12.AutoSizeMode = DevExpress.XtraEditors.LabelAutoSizeMode.None;
     this.labelControl12.LineLocation = DevExpress.XtraEditors.LineLocation.Bottom;
     this.labelControl12.LineVisible = true;
     this.labelControl12.Location = new System.Drawing.Point(16, 142);
     this.labelControl12.Name = "labelControl12";
     this.labelControl12.Size = new System.Drawing.Size(96, 20);
     this.labelControl12.TabIndex = 152;
     this.labelControl12.Text = "Max Flat Rate";
     //
     // labelControl11
     //
     this.labelControl11.AutoSizeMode = DevExpress.XtraEditors.LabelAutoSizeMode.None;
     this.labelControl11.LineLocation = DevExpress.XtraEditors.LineLocation.Bottom;
     this.labelControl11.LineVisible = true;
     this.labelControl11.Location = new System.Drawing.Point(16, 161);
     this.labelControl11.Name = "labelControl11";
     this.labelControl11.Size = new System.Drawing.Size(96, 20);
     this.labelControl11.TabIndex = 151;
     this.labelControl11.Text = "Min Flat Rate";
     //
     // labelControl19
     //
     this.labelControl19.AutoSizeMode = DevExpress.XtraEditors.LabelAutoSizeMode.None;
     this.labelControl19.LineLocation = DevExpress.XtraEditors.LineLocation.Bottom;
     this.labelControl19.LineVisible = true;
     this.labelControl19.Location = new System.Drawing.Point(16, 180);
     this.labelControl19.Name = "labelControl19";
     this.labelControl19.Size = new System.Drawing.Size(96, 20);
     this.labelControl19.TabIndex = 158;
     this.labelControl19.Text = "Inventory Days";
     //
     // labelControl20
     //
     this.labelControl20.AutoSizeMode = DevExpress.XtraEditors.LabelAutoSizeMode.None;
     this.labelControl20.LineLocation = DevExpress.XtraEditors.LineLocation.Bottom;
     this.labelControl20.LineVisible = true;
     this.labelControl20.Location = new System.Drawing.Point(16, 198);
     this.labelControl20.Name = "labelControl20";
     this.labelControl20.Size = new System.Drawing.Size(96, 20);
     this.labelControl20.TabIndex = 159;
     this.labelControl20.Text = "Tabs in Pack";
     //
     // labelControl25
     //
     this.labelControl25.AutoSizeMode = DevExpress.XtraEditors.LabelAutoSizeMode.None;
     this.labelControl25.LineLocation = DevExpress.XtraEditors.LineLocation.Bottom;
     this.labelControl25.LineVisible = true;
     this.labelControl25.Location = new System.Drawing.Point(191, 10);
     this.labelControl25.Name = "labelControl25";
     this.labelControl25.Size = new System.Drawing.Size(100, 20);
     this.labelControl25.TabIndex = 164;
     this.labelControl25.Text = "Packs in Carton";
     //
     // labelControl24
     //
     this.labelControl24.AutoSizeMode = DevExpress.XtraEditors.LabelAutoSizeMode.None;
     this.labelControl24.LineLocation = DevExpress.XtraEditors.LineLocation.Bottom;
     this.labelControl24.LineVisible = true;
     this.labelControl24.Location = new System.Drawing.Point(191, 29);
     this.labelControl24.Name = "labelControl24";
     this.labelControl24.Size = new System.Drawing.Size(100, 20);
     this.labelControl24.TabIndex = 163;
     this.labelControl24.Text = "Max Qty/Customer";
     //
     // labelControl23
     //
     this.labelControl23.AutoSizeMode = DevExpress.XtraEditors.LabelAutoSizeMode.None;
     this.labelControl23.LineLocation = DevExpress.XtraEditors.LineLocation.Bottom;
     this.labelControl23.LineVisible = true;
     this.labelControl23.Location = new System.Drawing.Point(191, 48);
     this.labelControl23.Name = "labelControl23";
     this.labelControl23.Size = new System.Drawing.Size(100, 20);
     this.labelControl23.TabIndex = 162;
     this.labelControl23.Text = "Max Qty Days";
     //
     // labelControl22
     //
     this.labelControl22.AutoSizeMode = DevExpress.XtraEditors.LabelAutoSizeMode.None;
     this.labelControl22.LineLocation = DevExpress.XtraEditors.LineLocation.Bottom;
     this.labelControl22.LineVisible = true;
     this.labelControl22.Location = new System.Drawing.Point(191, 67);
     this.labelControl22.Name = "labelControl22";
     this.labelControl22.Size = new System.Drawing.Size(100, 20);
     this.labelControl22.TabIndex = 161;
     this.labelControl22.Text = "Balance Stock";
     //
     // labelControl21
     //
     this.labelControl21.AutoSizeMode = DevExpress.XtraEditors.LabelAutoSizeMode.None;
     this.labelControl21.LineLocation = DevExpress.XtraEditors.LineLocation.Bottom;
     this.labelControl21.LineVisible = true;
     this.labelControl21.Location = new System.Drawing.Point(191, 86);
     this.labelControl21.Name = "labelControl21";
     this.labelControl21.Size = new System.Drawing.Size(100, 20);
     this.labelControl21.TabIndex = 160;
     this.labelControl21.Text = "Balance Bonus";
     //
     // labelControl26
     //
     this.labelControl26.AutoSizeMode = DevExpress.XtraEditors.LabelAutoSizeMode.None;
     this.labelControl26.LineLocation = DevExpress.XtraEditors.LineLocation.Bottom;
     this.labelControl26.LineVisible = true;
     this.labelControl26.Location = new System.Drawing.Point(191, 104);
     this.labelControl26.Name = "labelControl26";
     this.labelControl26.Size = new System.Drawing.Size(100, 20);
     this.labelControl26.TabIndex = 165;
     this.labelControl26.Text = "Net Balance";
     //
     // labelControl52
     //
     this.labelControl52.AutoSizeMode = DevExpress.XtraEditors.LabelAutoSizeMode.None;
     this.labelControl52.LineLocation = DevExpress.XtraEditors.LineLocation.Bottom;
     this.labelControl52.LineVisible = true;
     this.labelControl52.Location = new System.Drawing.Point(191, 123);
     this.labelControl52.Name = "labelControl52";
     this.labelControl52.Size = new System.Drawing.Size(100, 20);
     this.labelControl52.TabIndex = 124267;
     this.labelControl52.Text = "Target";
     //
     // labelControl53
     //
     this.labelControl53.AutoSizeMode = DevExpress.XtraEditors.LabelAutoSizeMode.None;
     this.labelControl53.LineLocation = DevExpress.XtraEditors.LineLocation.Bottom;
     this.labelControl53.LineVisible = true;
     this.labelControl53.Location = new System.Drawing.Point(191, 142);
     this.labelControl53.Name = "labelControl53";
     this.labelControl53.Size = new System.Drawing.Size(100, 20);
     this.labelControl53.TabIndex = 124269;
     this.labelControl53.Text = "Transit";
     //
     // labelControl27
     //
     this.labelControl27.AutoSizeMode = DevExpress.XtraEditors.LabelAutoSizeMode.None;
     this.labelControl27.LineLocation = DevExpress.XtraEditors.LineLocation.Bottom;
     this.labelControl27.LineVisible = true;
     this.labelControl27.Location = new System.Drawing.Point(191, 162);
     this.labelControl27.Name = "labelControl27";
     this.labelControl27.Size = new System.Drawing.Size(100, 20);
     this.labelControl27.TabIndex = 166;
     this.labelControl27.Text = "Total Cost";
     //
     // labelControl28
     //
     this.labelControl28.AutoSizeMode = DevExpress.XtraEditors.LabelAutoSizeMode.None;
     this.labelControl28.LineLocation = DevExpress.XtraEditors.LineLocation.Bottom;
     this.labelControl28.LineVisible = true;
     this.labelControl28.Location = new System.Drawing.Point(191, 180);
     this.labelControl28.Name = "labelControl28";
     this.labelControl28.Size = new System.Drawing.Size(100, 20);
     this.labelControl28.TabIndex = 167;
     this.labelControl28.Text = "Special Rate";
     //
     // labelControl29
     //
     this.labelControl29.AutoSizeMode = DevExpress.XtraEditors.LabelAutoSizeMode.None;
     this.labelControl29.LineLocation = DevExpress.XtraEditors.LineLocation.Bottom;
     this.labelControl29.LineVisible = true;
     this.labelControl29.Location = new System.Drawing.Point(191, 199);
     this.labelControl29.Name = "labelControl29";
     this.labelControl29.Size = new System.Drawing.Size(100, 20);
     this.labelControl29.TabIndex = 168;
     this.labelControl29.Text = "Pure Rate";
     //
     // labelControl30
     //
     this.labelControl30.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
     this.labelControl30.AutoSizeMode = DevExpress.XtraEditors.LabelAutoSizeMode.None;
     this.labelControl30.LineLocation = DevExpress.XtraEditors.LineLocation.Bottom;
     this.labelControl30.LineVisible = true;
     this.labelControl30.Location = new System.Drawing.Point(373, 10);
     this.labelControl30.Name = "labelControl30";
     this.labelControl30.Size = new System.Drawing.Size(82, 20);
     this.labelControl30.TabIndex = 169;
     this.labelControl30.Text = "Sale Rate";
     //
     // labelControl31
     //
     this.labelControl31.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
     this.labelControl31.AutoSizeMode = DevExpress.XtraEditors.LabelAutoSizeMode.None;
     this.labelControl31.LineLocation = DevExpress.XtraEditors.LineLocation.Bottom;
     this.labelControl31.LineVisible = true;
     this.labelControl31.Location = new System.Drawing.Point(373, 29);
     this.labelControl31.Name = "labelControl31";
     this.labelControl31.Size = new System.Drawing.Size(82, 20);
     this.labelControl31.TabIndex = 182;
     this.labelControl31.Text = "Lead Time";
     //
     // labelControl32
     //
     this.labelControl32.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
     this.labelControl32.AutoSizeMode = DevExpress.XtraEditors.LabelAutoSizeMode.None;
     this.labelControl32.LineLocation = DevExpress.XtraEditors.LineLocation.Bottom;
     this.labelControl32.LineVisible = true;
     this.labelControl32.Location = new System.Drawing.Point(373, 48);
     this.labelControl32.Name = "labelControl32";
     this.labelControl32.Size = new System.Drawing.Size(82, 20);
     this.labelControl32.TabIndex = 184;
     this.labelControl32.Text = "Tolerance Day";
     //
     // labelControl37
     //
     this.labelControl37.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
     this.labelControl37.AutoSizeMode = DevExpress.XtraEditors.LabelAutoSizeMode.None;
     this.labelControl37.LineLocation = DevExpress.XtraEditors.LineLocation.Bottom;
     this.labelControl37.LineVisible = true;
     this.labelControl37.Location = new System.Drawing.Point(373, 67);
     this.labelControl37.Name = "labelControl37";
     this.labelControl37.Size = new System.Drawing.Size(82, 20);
     this.labelControl37.TabIndex = 186;
     this.labelControl37.Text = "Avg Rate";
     //
     // labelControl38
     //
     this.labelControl38.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
     this.labelControl38.AutoSizeMode = DevExpress.XtraEditors.LabelAutoSizeMode.None;
     this.labelControl38.LineLocation = DevExpress.XtraEditors.LineLocation.Bottom;
     this.labelControl38.LineVisible = true;
     this.labelControl38.Location = new System.Drawing.Point(373, 86);
     this.labelControl38.Name = "labelControl38";
     this.labelControl38.Size = new System.Drawing.Size(82, 20);
     this.labelControl38.TabIndex = 103;
     this.labelControl38.Text = "Value Method";
     //
     // labelControl44
     //
     this.labelControl44.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
     this.labelControl44.AutoSizeMode = DevExpress.XtraEditors.LabelAutoSizeMode.None;
     this.labelControl44.LineLocation = DevExpress.XtraEditors.LineLocation.Bottom;
     this.labelControl44.LineVisible = true;
     this.labelControl44.Location = new System.Drawing.Point(373, 105);
     this.labelControl44.Name = "labelControl44";
     this.labelControl44.Size = new System.Drawing.Size(82, 20);
     this.labelControl44.TabIndex = 124261;
     this.labelControl44.Text = "UOM-Sale";
     //
     // labelControl43
     //
     this.labelControl43.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
     this.labelControl43.AutoSizeMode = DevExpress.XtraEditors.LabelAutoSizeMode.None;
     this.labelControl43.LineLocation = DevExpress.XtraEditors.LineLocation.Bottom;
     this.labelControl43.LineVisible = true;
     this.labelControl43.Location = new System.Drawing.Point(373, 124);
     this.labelControl43.Name = "labelControl43";
     this.labelControl43.Size = new System.Drawing.Size(82, 20);
     this.labelControl43.TabIndex = 124259;
     this.labelControl43.Text = "UOM-Size";
     //
     // labelControl41
     //
     this.labelControl41.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
     this.labelControl41.AutoSizeMode = DevExpress.XtraEditors.LabelAutoSizeMode.None;
     this.labelControl41.LineLocation = DevExpress.XtraEditors.LineLocation.Bottom;
     this.labelControl41.LineVisible = true;
     this.labelControl41.Location = new System.Drawing.Point(373, 144);
     this.labelControl41.Name = "labelControl41";
     this.labelControl41.Size = new System.Drawing.Size(82, 20);
     this.labelControl41.TabIndex = 124263;
     this.labelControl41.Text = "UOM-Purchase";
     //
     // labelControl42
     //
     this.labelControl42.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
     this.labelControl42.AutoSizeMode = DevExpress.XtraEditors.LabelAutoSizeMode.None;
     this.labelControl42.LineLocation = DevExpress.XtraEditors.LineLocation.Bottom;
     this.labelControl42.LineVisible = true;
     this.labelControl42.Location = new System.Drawing.Point(373, 161);
     this.labelControl42.Name = "labelControl42";
     this.labelControl42.Size = new System.Drawing.Size(82, 20);
     this.labelControl42.TabIndex = 124265;
     this.labelControl42.Text = "Factor";
     //
     // XtrabarBonus
     //
     this.XtrabarBonus.Controls.Add(this.datagridBonus);
     this.XtrabarBonus.Name = "XtrabarBonus";
     this.XtrabarBonus.Size = new System.Drawing.Size(695, 226);
     this.XtrabarBonus.Text = "Bonus";
     //
     // datagridBonus
     //
     this.datagridBonus.AllowAddNew = true;
     this.datagridBonus.BackColor = System.Drawing.SystemColors.ControlLightLight;
     this.datagridBonus.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D;
     this.datagridBonus.Caption = "Product Bonus";
     this.datagridBonus.CaptionHeight = 20;
     this.datagridBonus.CollapseColor = System.Drawing.Color.Transparent;
     this.datagridBonus.ColumnFooters = true;
     this.datagridBonus.DirectionAfterEnter = C1.Win.C1TrueDBGrid.DirectionAfterEnterEnum.MoveNone;
     this.datagridBonus.ExpandColor = System.Drawing.Color.Transparent;
     this.datagridBonus.ForeColor = System.Drawing.SystemColors.Window;
     this.datagridBonus.Images.Add(((System.Drawing.Image)(resources.GetObject("datagridBonus.Images"))));
     this.datagridBonus.Location = new System.Drawing.Point(0, 1);
     this.datagridBonus.Name = "datagridBonus";
     this.datagridBonus.PreviewInfo.Location = new System.Drawing.Point(0, 0);
     this.datagridBonus.PreviewInfo.Size = new System.Drawing.Size(0, 0);
     this.datagridBonus.PreviewInfo.ZoomFactor = 75D;
     this.datagridBonus.PrintInfo.PageSettings = ((System.Drawing.Printing.PageSettings)(resources.GetObject("datagridBonus.PrintInfo.PageSettings")));
     this.datagridBonus.RecordSelectors = false;
     this.datagridBonus.RowHeight = 20;
     this.datagridBonus.RowSubDividerColor = System.Drawing.Color.Black;
     this.datagridBonus.ScrollTips = true;
     this.datagridBonus.Size = new System.Drawing.Size(726, 304);
     this.datagridBonus.TabIndex = 32000;
     this.datagridBonus.Text = "c1TrueDBGrid1";
     this.datagridBonus.VisualStyle = C1.Win.C1TrueDBGrid.VisualStyle.Office2007Blue;
     this.datagridBonus.AfterColUpdate += new C1.Win.C1TrueDBGrid.ColEventHandler(this.datagridBonus_AfterColUpdate);
     this.datagridBonus.KeyDown += new System.Windows.Forms.KeyEventHandler(this.datagridBonus_KeyDown);
     this.datagridBonus.PropBag = resources.GetString("datagridBonus.PropBag");
     //
     // xtraTabPage1
     //
     this.xtraTabPage1.Controls.Add(this.datagridProductAllocation);
     this.xtraTabPage1.Name = "xtraTabPage1";
     this.xtraTabPage1.Size = new System.Drawing.Size(695, 226);
     this.xtraTabPage1.Text = "Territory Allocation";
     //
     // datagridProductAllocation
     //
     this.datagridProductAllocation.AllowAddNew = true;
     this.datagridProductAllocation.BackColor = System.Drawing.SystemColors.ControlLightLight;
     this.datagridProductAllocation.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D;
     this.datagridProductAllocation.Caption = "Product Allocation";
     this.datagridProductAllocation.CaptionHeight = 20;
     this.datagridProductAllocation.CollapseColor = System.Drawing.Color.Transparent;
     this.datagridProductAllocation.ColumnFooters = true;
     this.datagridProductAllocation.DirectionAfterEnter = C1.Win.C1TrueDBGrid.DirectionAfterEnterEnum.MoveNone;
     this.datagridProductAllocation.ExpandColor = System.Drawing.Color.Transparent;
     this.datagridProductAllocation.ForeColor = System.Drawing.SystemColors.Window;
     this.datagridProductAllocation.Images.Add(((System.Drawing.Image)(resources.GetObject("datagridProductAllocation.Images"))));
     this.datagridProductAllocation.Location = new System.Drawing.Point(-1, 0);
     this.datagridProductAllocation.Name = "datagridProductAllocation";
     this.datagridProductAllocation.PreviewInfo.Location = new System.Drawing.Point(0, 0);
     this.datagridProductAllocation.PreviewInfo.Size = new System.Drawing.Size(0, 0);
     this.datagridProductAllocation.PreviewInfo.ZoomFactor = 75D;
     this.datagridProductAllocation.PrintInfo.PageSettings = ((System.Drawing.Printing.PageSettings)(resources.GetObject("datagridProductAllocation.PrintInfo.PageSettings")));
     this.datagridProductAllocation.RecordSelectors = false;
     this.datagridProductAllocation.RowHeight = 20;
     this.datagridProductAllocation.RowSubDividerColor = System.Drawing.Color.Black;
     this.datagridProductAllocation.ScrollTips = true;
     this.datagridProductAllocation.Size = new System.Drawing.Size(696, 233);
     this.datagridProductAllocation.TabIndex = 1;
     this.datagridProductAllocation.Text = "c1TrueDBGrid1";
     this.datagridProductAllocation.VisualStyle = C1.Win.C1TrueDBGrid.VisualStyle.Office2007Blue;
     this.datagridProductAllocation.AfterColUpdate += new C1.Win.C1TrueDBGrid.ColEventHandler(this.datagridProductAllocation_AfterColUpdate);
     this.datagridProductAllocation.KeyDown += new System.Windows.Forms.KeyEventHandler(this.datagridProductAllocation_KeyDown);
     this.datagridProductAllocation.PropBag = resources.GetString("datagridProductAllocation.PropBag");
     //
     // xtraTabPage2
     //
     this.xtraTabPage2.Controls.Add(this.groupControl5);
     this.xtraTabPage2.Name = "xtraTabPage2";
     this.xtraTabPage2.Size = new System.Drawing.Size(695, 226);
     this.xtraTabPage2.Text = "Advance Information";
     //
     // groupControl5
     //
     this.groupControl5.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.groupControl5.Controls.Add(this.txtMaxLimit);
     this.groupControl5.Controls.Add(this.txtMinLimit);
     this.groupControl5.Controls.Add(this.txtBarCode);
     this.groupControl5.Controls.Add(this.txtShelfCode);
     this.groupControl5.Controls.Add(this.grdPresevasionStandard);
     this.groupControl5.Controls.Add(this.simpleButton8);
     this.groupControl5.Controls.Add(this.txtClaimPartnerID);
     this.groupControl5.Controls.Add(this.txtClaimPartnerName);
     this.groupControl5.Controls.Add(this.simpleButton7);
     this.groupControl5.Controls.Add(this.txtBussinessPartnerid);
     this.groupControl5.Controls.Add(this.businessPartnerName);
     this.groupControl5.Controls.Add(this.labelControl40);
     this.groupControl5.Controls.Add(this.labelControl48);
     this.groupControl5.Controls.Add(this.labelControl46);
     this.groupControl5.Controls.Add(this.labelControl47);
     this.groupControl5.Controls.Add(this.labelControl54);
     this.groupControl5.Controls.Add(this.labelControl55);
     this.groupControl5.Location = new System.Drawing.Point(0, 0);
     this.groupControl5.Name = "groupControl5";
     this.groupControl5.ShowCaption = false;
     this.groupControl5.Size = new System.Drawing.Size(695, 233);
     this.groupControl5.TabIndex = 0;
     this.groupControl5.Text = "Extra Information";
     //
     // txtMaxLimit
     //
     this.txtMaxLimit.Location = new System.Drawing.Point(103, 102);
     this.txtMaxLimit.Name = "txtMaxLimit";
     this.txtMaxLimit.Size = new System.Drawing.Size(209, 20);
     this.txtMaxLimit.TabIndex = 124268;
     this.txtMaxLimit.PreviewKeyDown += new System.Windows.Forms.PreviewKeyDownEventHandler(this.txtMaxLimit_PreviewKeyDown);
     //
     // txtMinLimit
     //
     this.txtMinLimit.Location = new System.Drawing.Point(103, 83);
     this.txtMinLimit.Name = "txtMinLimit";
     this.txtMinLimit.Size = new System.Drawing.Size(209, 20);
     this.txtMinLimit.TabIndex = 124266;
     this.txtMinLimit.PreviewKeyDown += new System.Windows.Forms.PreviewKeyDownEventHandler(this.txtMinLimit_PreviewKeyDown);
     //
     // txtBarCode
     //
     this.txtBarCode.Location = new System.Drawing.Point(103, 64);
     this.txtBarCode.Name = "txtBarCode";
     this.txtBarCode.Size = new System.Drawing.Size(209, 20);
     this.txtBarCode.TabIndex = 124261;
     this.txtBarCode.TabStop = false;
     this.txtBarCode.PreviewKeyDown += new System.Windows.Forms.PreviewKeyDownEventHandler(this.txtBarCode_PreviewKeyDown);
     //
     // txtShelfCode
     //
     this.txtShelfCode.Location = new System.Drawing.Point(103, 45);
     this.txtShelfCode.Name = "txtShelfCode";
     this.txtShelfCode.Size = new System.Drawing.Size(209, 20);
     this.txtShelfCode.TabIndex = 124259;
     this.txtShelfCode.TabStop = false;
     this.txtShelfCode.PreviewKeyDown += new System.Windows.Forms.PreviewKeyDownEventHandler(this.txtShelfCode_PreviewKeyDown);
     //
     // grdPresevasionStandard
     //
     this.grdPresevasionStandard.AllowAddNew = true;
     this.grdPresevasionStandard.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
     | System.Windows.Forms.AnchorStyles.Right)));
     this.grdPresevasionStandard.CaptionHeight = 17;
     this.grdPresevasionStandard.Images.Add(((System.Drawing.Image)(resources.GetObject("grdPresevasionStandard.Images"))));
     this.grdPresevasionStandard.Location = new System.Drawing.Point(411, 5);
     this.grdPresevasionStandard.Name = "grdPresevasionStandard";
     this.grdPresevasionStandard.PreviewInfo.Location = new System.Drawing.Point(0, 0);
     this.grdPresevasionStandard.PreviewInfo.Size = new System.Drawing.Size(0, 0);
     this.grdPresevasionStandard.PreviewInfo.ZoomFactor = 75D;
     this.grdPresevasionStandard.PrintInfo.PageSettings = ((System.Drawing.Printing.PageSettings)(resources.GetObject("grdPresevasionStandard.PrintInfo.PageSettings")));
     this.grdPresevasionStandard.RowHeight = 15;
     this.grdPresevasionStandard.Size = new System.Drawing.Size(277, 225);
     this.grdPresevasionStandard.TabIndex = 124270;
     this.grdPresevasionStandard.Text = "c1TrueDBGrid2";
     this.grdPresevasionStandard.AfterColUpdate += new C1.Win.C1TrueDBGrid.ColEventHandler(this.grdPresevasionStandard_AfterColUpdate);
     this.grdPresevasionStandard.PreviewKeyDown += new System.Windows.Forms.PreviewKeyDownEventHandler(this.grdPresevasionStandard_PreviewKeyDown);
     this.grdPresevasionStandard.PropBag = resources.GetString("grdPresevasionStandard.PropBag");
     //
     // simpleButton8
     //
     this.simpleButton8.Appearance.Font = new System.Drawing.Font("Tahoma", 9F);
     this.simpleButton8.Appearance.Options.UseFont = true;
     this.simpleButton8.Image = global::ERPGUI.Properties.Resources.find_16x16;
     this.simpleButton8.ImageLocation = DevExpress.XtraEditors.ImageLocation.MiddleLeft;
     this.simpleButton8.Location = new System.Drawing.Point(152, 26);
     this.simpleButton8.Name = "simpleButton8";
     this.simpleButton8.ShowFocusRectangle = DevExpress.Utils.DefaultBoolean.False;
     this.simpleButton8.Size = new System.Drawing.Size(24, 20);
     toolTipTitleItem1.Text = "Add New Entry";
     superToolTip1.Items.Add(toolTipTitleItem1);
     this.simpleButton8.SuperTip = superToolTip1;
     this.simpleButton8.TabIndex = 124264;
     this.simpleButton8.Click += new System.EventHandler(this.simpleButton8_Click);
     //
     // txtClaimPartnerID
     //
     this.txtClaimPartnerID.Location = new System.Drawing.Point(103, 25);
     this.txtClaimPartnerID.Mask = "000000";
     this.txtClaimPartnerID.Name = "txtClaimPartnerID";
     this.txtClaimPartnerID.Size = new System.Drawing.Size(49, 21);
     this.txtClaimPartnerID.TabIndex = 124262;
     this.txtClaimPartnerID.PreviewKeyDown += new System.Windows.Forms.PreviewKeyDownEventHandler(this.txtClaimPartnerID_PreviewKeyDown);
     //
     // txtClaimPartnerName
     //
     this.txtClaimPartnerName.Location = new System.Drawing.Point(176, 26);
     this.txtClaimPartnerName.Name = "txtClaimPartnerName";
     this.txtClaimPartnerName.Size = new System.Drawing.Size(136, 20);
     this.txtClaimPartnerName.TabIndex = 124265;
     //
     // simpleButton7
     //
     this.simpleButton7.Appearance.Font = new System.Drawing.Font("Tahoma", 9F);
     this.simpleButton7.Appearance.Options.UseFont = true;
     this.simpleButton7.Image = global::ERPGUI.Properties.Resources.find_16x16;
     this.simpleButton7.ImageLocation = DevExpress.XtraEditors.ImageLocation.MiddleLeft;
     this.simpleButton7.Location = new System.Drawing.Point(152, 6);
     this.simpleButton7.Name = "simpleButton7";
     this.simpleButton7.ShowFocusRectangle = DevExpress.Utils.DefaultBoolean.False;
     this.simpleButton7.Size = new System.Drawing.Size(24, 20);
     toolTipTitleItem2.Text = "Add New Entry";
     superToolTip2.Items.Add(toolTipTitleItem2);
     this.simpleButton7.SuperTip = superToolTip2;
     this.simpleButton7.TabIndex = 124250;
     this.simpleButton7.Click += new System.EventHandler(this.simpleButton7_Click);
     //
     // txtBussinessPartnerid
     //
     this.txtBussinessPartnerid.Location = new System.Drawing.Point(103, 6);
     this.txtBussinessPartnerid.Mask = "000000";
     this.txtBussinessPartnerid.Name = "txtBussinessPartnerid";
     this.txtBussinessPartnerid.Size = new System.Drawing.Size(49, 21);
     this.txtBussinessPartnerid.TabIndex = 124248;
     this.txtBussinessPartnerid.PreviewKeyDown += new System.Windows.Forms.PreviewKeyDownEventHandler(this.txtBussinessPartnerid_PreviewKeyDown);
     //
     // businessPartnerName
     //
     this.businessPartnerName.Location = new System.Drawing.Point(176, 7);
     this.businessPartnerName.Name = "businessPartnerName";
     this.businessPartnerName.Size = new System.Drawing.Size(136, 20);
     this.businessPartnerName.TabIndex = 124251;
     //
     // labelControl40
     //
     this.labelControl40.AutoSizeMode = DevExpress.XtraEditors.LabelAutoSizeMode.None;
     this.labelControl40.LineLocation = DevExpress.XtraEditors.LineLocation.Bottom;
     this.labelControl40.LineVisible = true;
     this.labelControl40.Location = new System.Drawing.Point(8, 6);
     this.labelControl40.Name = "labelControl40";
     this.labelControl40.Size = new System.Drawing.Size(103, 20);
     this.labelControl40.TabIndex = 124249;
     this.labelControl40.Text = "Business Partner ID";
     //
     // labelControl48
     //
     this.labelControl48.AutoSizeMode = DevExpress.XtraEditors.LabelAutoSizeMode.None;
     this.labelControl48.LineLocation = DevExpress.XtraEditors.LineLocation.Bottom;
     this.labelControl48.LineVisible = true;
     this.labelControl48.Location = new System.Drawing.Point(8, 26);
     this.labelControl48.Name = "labelControl48";
     this.labelControl48.Size = new System.Drawing.Size(103, 20);
     this.labelControl48.TabIndex = 124263;
     this.labelControl48.Text = "Claim Partner ID";
     //
     // labelControl46
     //
     this.labelControl46.AutoSizeMode = DevExpress.XtraEditors.LabelAutoSizeMode.None;
     this.labelControl46.LineLocation = DevExpress.XtraEditors.LineLocation.Bottom;
     this.labelControl46.LineVisible = true;
     this.labelControl46.Location = new System.Drawing.Point(8, 46);
     this.labelControl46.Name = "labelControl46";
     this.labelControl46.Size = new System.Drawing.Size(103, 20);
     this.labelControl46.TabIndex = 124258;
     this.labelControl46.Text = "Shelf Code";
     //
     // labelControl47
     //
     this.labelControl47.AutoSizeMode = DevExpress.XtraEditors.LabelAutoSizeMode.None;
     this.labelControl47.LineLocation = DevExpress.XtraEditors.LineLocation.Bottom;
     this.labelControl47.LineVisible = true;
     this.labelControl47.Location = new System.Drawing.Point(8, 65);
     this.labelControl47.Name = "labelControl47";
     this.labelControl47.Size = new System.Drawing.Size(103, 20);
     this.labelControl47.TabIndex = 124260;
     this.labelControl47.Text = "Bar Code";
     //
     // labelControl54
     //
     this.labelControl54.AutoSizeMode = DevExpress.XtraEditors.LabelAutoSizeMode.None;
     this.labelControl54.LineLocation = DevExpress.XtraEditors.LineLocation.Bottom;
     this.labelControl54.LineVisible = true;
     this.labelControl54.Location = new System.Drawing.Point(8, 85);
     this.labelControl54.Name = "labelControl54";
     this.labelControl54.Size = new System.Drawing.Size(103, 20);
     this.labelControl54.TabIndex = 124267;
     this.labelControl54.Text = "Min Limit";
     //
     // labelControl55
     //
     this.labelControl55.AutoSizeMode = DevExpress.XtraEditors.LabelAutoSizeMode.None;
     this.labelControl55.LineLocation = DevExpress.XtraEditors.LineLocation.Bottom;
     this.labelControl55.LineVisible = true;
     this.labelControl55.Location = new System.Drawing.Point(8, 103);
     this.labelControl55.Name = "labelControl55";
     this.labelControl55.Size = new System.Drawing.Size(103, 20);
     this.labelControl55.TabIndex = 124269;
     this.labelControl55.Text = "Max Limit";
     //
     // xtraTabPage3
     //
     this.xtraTabPage3.Controls.Add(this.dgFileAttachments);
     this.xtraTabPage3.Name = "xtraTabPage3";
     this.xtraTabPage3.Size = new System.Drawing.Size(695, 226);
     this.xtraTabPage3.Text = "Attachment & Remarks";
     //
     // dgFileAttachments
     //
     this.dgFileAttachments.AllowAddNew = true;
     this.dgFileAttachments.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.dgFileAttachments.CaptionHeight = 17;
     this.dgFileAttachments.Images.Add(((System.Drawing.Image)(resources.GetObject("dgFileAttachments.Images"))));
     this.dgFileAttachments.Location = new System.Drawing.Point(0, 0);
     this.dgFileAttachments.Name = "dgFileAttachments";
     this.dgFileAttachments.PreviewInfo.Location = new System.Drawing.Point(0, 0);
     this.dgFileAttachments.PreviewInfo.Size = new System.Drawing.Size(0, 0);
     this.dgFileAttachments.PreviewInfo.ZoomFactor = 75D;
     this.dgFileAttachments.PrintInfo.PageSettings = ((System.Drawing.Printing.PageSettings)(resources.GetObject("dgFileAttachments.PrintInfo.PageSettings")));
     this.dgFileAttachments.RowHeight = 15;
     this.dgFileAttachments.Size = new System.Drawing.Size(698, 233);
     this.dgFileAttachments.TabIndex = 0;
     this.dgFileAttachments.Text = "c1TrueDBGrid1";
     this.dgFileAttachments.AfterColUpdate += new C1.Win.C1TrueDBGrid.ColEventHandler(this.dgFileAttachments_AfterColUpdate);
     this.dgFileAttachments.ButtonClick += new C1.Win.C1TrueDBGrid.ColEventHandler(this.dgFileAttachments_ButtonClick);
     this.dgFileAttachments.PreviewKeyDown += new System.Windows.Forms.PreviewKeyDownEventHandler(this.dgFileAttachments_PreviewKeyDown);
     this.dgFileAttachments.PropBag = resources.GetString("dgFileAttachments.PropBag");
     //
     // Productid
     //
     this.Productid.Anchor = System.Windows.Forms.AnchorStyles.None;
     this.Productid.AutoSizeMode = DevExpress.XtraEditors.LabelAutoSizeMode.None;
     this.Productid.LineLocation = DevExpress.XtraEditors.LineLocation.Bottom;
     this.Productid.LineVisible = true;
     this.Productid.Location = new System.Drawing.Point(4, 12);
     this.Productid.Name = "Productid";
     this.Productid.Size = new System.Drawing.Size(72, 20);
     this.Productid.TabIndex = 1;
     this.Productid.Text = "Item Id";
     //
     // groupControl1
     //
     this.groupControl1.Controls.Add(this.cmbProductCategory);
     this.groupControl1.Controls.Add(this.txtShortName);
     this.groupControl1.Controls.Add(this.txtArtical);
     this.groupControl1.Controls.Add(this.txtProductName);
     this.groupControl1.Controls.Add(this.cmbSkuType);
     this.groupControl1.Controls.Add(this.cmbGeneralName);
     this.groupControl1.Controls.Add(this.cmbProtoType);
     this.groupControl1.Controls.Add(this.btnPickList);
     this.groupControl1.Controls.Add(this.labelControl3);
     this.groupControl1.Controls.Add(this.txtProductId);
     this.groupControl1.Controls.Add(this.txtPack);
     this.groupControl1.Controls.Add(this.Productid);
     this.groupControl1.Controls.Add(this.labelControl6);
     this.groupControl1.Controls.Add(this.labelControl2);
     this.groupControl1.Controls.Add(this.labelControl8);
     this.groupControl1.Controls.Add(this.labelControl14);
     this.groupControl1.Controls.Add(this.labelControl7);
     this.groupControl1.Controls.Add(this.labelControl49);
     this.groupControl1.Controls.Add(this.labelControl39);
     this.groupControl1.Location = new System.Drawing.Point(2, 3);
     this.groupControl1.Name = "groupControl1";
     this.groupControl1.ShowCaption = false;
     this.groupControl1.Size = new System.Drawing.Size(405, 105);
     this.groupControl1.TabIndex = 11;
     this.groupControl1.Text = "Products";
     //
     // cmbProductCategory
     //
     this.cmbProductCategory.Anchor = System.Windows.Forms.AnchorStyles.None;
     this.cmbProductCategory.Location = new System.Drawing.Point(308, 67);
     this.cmbProductCategory.Name = "cmbProductCategory";
     this.cmbProductCategory.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.cmbProductCategory.Properties.Items.AddRange(new object[] {
     "Town",
     "Brick",
     "SubBrick",
     "Terriorty"});
     this.cmbProductCategory.Properties.TextEditStyle = DevExpress.XtraEditors.Controls.TextEditStyles.DisableTextEditor;
     this.cmbProductCategory.Size = new System.Drawing.Size(91, 20);
     this.cmbProductCategory.TabIndex = 55;
     this.cmbProductCategory.PreviewKeyDown += new System.Windows.Forms.PreviewKeyDownEventHandler(this.cmbProductCategory_PreviewKeyDown);
     //
     // txtShortName
     //
     this.txtShortName.Anchor = System.Windows.Forms.AnchorStyles.None;
     this.txtShortName.Location = new System.Drawing.Point(62, 69);
     this.txtShortName.Name = "txtShortName";
     this.txtShortName.Size = new System.Drawing.Size(169, 20);
     this.txtShortName.TabIndex = 6;
     this.txtShortName.PreviewKeyDown += new System.Windows.Forms.PreviewKeyDownEventHandler(this.txtShortName_PreviewKeyDown);
     //
     // txtArtical
     //
     this.txtArtical.Anchor = System.Windows.Forms.AnchorStyles.None;
     this.txtArtical.Location = new System.Drawing.Point(62, 50);
     this.txtArtical.Name = "txtArtical";
     this.txtArtical.Size = new System.Drawing.Size(169, 20);
     this.txtArtical.TabIndex = 5;
     this.txtArtical.PreviewKeyDown += new System.Windows.Forms.PreviewKeyDownEventHandler(this.txtArtical_PreviewKeyDown);
     //
     // txtProductName
     //
     this.txtProductName.Anchor = System.Windows.Forms.AnchorStyles.None;
     this.txtProductName.Location = new System.Drawing.Point(62, 31);
     this.txtProductName.Name = "txtProductName";
     this.txtProductName.Size = new System.Drawing.Size(169, 20);
     this.txtProductName.TabIndex = 4;
     this.txtProductName.PreviewKeyDown += new System.Windows.Forms.PreviewKeyDownEventHandler(this.txtProductName_PreviewKeyDown);
     //
     // cmbSkuType
     //
     this.cmbSkuType.Anchor = System.Windows.Forms.AnchorStyles.None;
     this.cmbSkuType.Location = new System.Drawing.Point(308, 48);
     this.cmbSkuType.Name = "cmbSkuType";
     this.cmbSkuType.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.cmbSkuType.Properties.Items.AddRange(new object[] {
     "Town",
     "Brick",
     "SubBrick",
     "Terriorty"});
     this.cmbSkuType.Properties.TextEditStyle = DevExpress.XtraEditors.Controls.TextEditStyles.DisableTextEditor;
     this.cmbSkuType.Size = new System.Drawing.Size(91, 20);
     this.cmbSkuType.TabIndex = 57;
     this.cmbSkuType.PreviewKeyDown += new System.Windows.Forms.PreviewKeyDownEventHandler(this.cmbSkuType_PreviewKeyDown);
     //
     // cmbGeneralName
     //
     this.cmbGeneralName.Anchor = System.Windows.Forms.AnchorStyles.None;
     this.cmbGeneralName.Location = new System.Drawing.Point(308, 29);
     this.cmbGeneralName.Name = "cmbGeneralName";
     this.cmbGeneralName.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.cmbGeneralName.Properties.Items.AddRange(new object[] {
     "Town",
     "Brick",
     "SubBrick",
     "Terriorty"});
     this.cmbGeneralName.Properties.TextEditStyle = DevExpress.XtraEditors.Controls.TextEditStyles.DisableTextEditor;
     this.cmbGeneralName.Size = new System.Drawing.Size(91, 20);
     this.cmbGeneralName.TabIndex = 3;
     this.cmbGeneralName.PreviewKeyDown += new System.Windows.Forms.PreviewKeyDownEventHandler(this.cmbGeneralName_PreviewKeyDown);
     //
     // cmbProtoType
     //
     this.cmbProtoType.Anchor = System.Windows.Forms.AnchorStyles.None;
     this.cmbProtoType.Location = new System.Drawing.Point(308, 11);
     this.cmbProtoType.Name = "cmbProtoType";
     this.cmbProtoType.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.cmbProtoType.Properties.Items.AddRange(new object[] {
     "Town",
     "Brick",
     "SubBrick",
     "Terriorty"});
     this.cmbProtoType.Properties.TextEditStyle = DevExpress.XtraEditors.Controls.TextEditStyles.DisableTextEditor;
     this.cmbProtoType.Size = new System.Drawing.Size(91, 20);
     this.cmbProtoType.TabIndex = 2;
     this.cmbProtoType.PreviewKeyDown += new System.Windows.Forms.PreviewKeyDownEventHandler(this.cmbProtoType_PreviewKeyDown);
     //
     // btnPickList
     //
     this.btnPickList.Anchor = System.Windows.Forms.AnchorStyles.None;
     this.btnPickList.Appearance.Font = new System.Drawing.Font("Tahoma", 9F);
     this.btnPickList.Appearance.Options.UseFont = true;
     this.btnPickList.Image = global::ERPGUI.Properties.Resources.find_16x16;
     this.btnPickList.ImageLocation = DevExpress.XtraEditors.ImageLocation.MiddleLeft;
     this.btnPickList.Location = new System.Drawing.Point(113, 12);
     this.btnPickList.Name = "btnPickList";
     this.btnPickList.ShowFocusRectangle = DevExpress.Utils.DefaultBoolean.False;
     this.btnPickList.Size = new System.Drawing.Size(24, 20);
     toolTipTitleItem3.Text = "Add New Entry";
     superToolTip3.Items.Add(toolTipTitleItem3);
     this.btnPickList.SuperTip = superToolTip3;
     this.btnPickList.TabIndex = 47;
     this.btnPickList.TabStop = false;
     this.btnPickList.Click += new System.EventHandler(this.btnPickList_Click);
     //
     // labelControl3
     //
     this.labelControl3.Anchor = System.Windows.Forms.AnchorStyles.None;
     this.labelControl3.Location = new System.Drawing.Point(140, 15);
     this.labelControl3.Name = "labelControl3";
     this.labelControl3.Size = new System.Drawing.Size(22, 13);
     this.labelControl3.TabIndex = 4;
     this.labelControl3.Text = "Pack";
     //
     // txtProductId
     //
     this.txtProductId.Anchor = System.Windows.Forms.AnchorStyles.None;
     this.txtProductId.Location = new System.Drawing.Point(62, 11);
     this.txtProductId.Mask = "000-000";
     this.txtProductId.Name = "txtProductId";
     this.txtProductId.Size = new System.Drawing.Size(51, 21);
     this.txtProductId.TabIndex = 0;
     this.txtProductId.KeyDown += new System.Windows.Forms.KeyEventHandler(this.txtProductId_KeyDown);
     this.txtProductId.KeyPress += new System.Windows.Forms.KeyPressEventHandler(this.txtProductId_KeyPress);
     this.txtProductId.PreviewKeyDown += new System.Windows.Forms.PreviewKeyDownEventHandler(this.txtProductId_PreviewKeyDown);
     //
     // txtPack
     //
     this.txtPack.Anchor = System.Windows.Forms.AnchorStyles.None;
     this.txtPack.Location = new System.Drawing.Point(171, 12);
     this.txtPack.Name = "txtPack";
     this.txtPack.Size = new System.Drawing.Size(60, 20);
     this.txtPack.TabIndex = 1;
     this.txtPack.PreviewKeyDown += new System.Windows.Forms.PreviewKeyDownEventHandler(this.txtPack_PreviewKeyDown);
     //
     // labelControl6
     //
     this.labelControl6.Anchor = System.Windows.Forms.AnchorStyles.None;
     this.labelControl6.AutoSizeMode = DevExpress.XtraEditors.LabelAutoSizeMode.None;
     this.labelControl6.LineLocation = DevExpress.XtraEditors.LineLocation.Bottom;
     this.labelControl6.LineVisible = true;
     this.labelControl6.Location = new System.Drawing.Point(4, 32);
     this.labelControl6.Name = "labelControl6";
     this.labelControl6.Size = new System.Drawing.Size(79, 20);
     this.labelControl6.TabIndex = 7;
     this.labelControl6.Text = "Item Name";
     //
     // labelControl2
     //
     this.labelControl2.Anchor = System.Windows.Forms.AnchorStyles.None;
     this.labelControl2.AutoSizeMode = DevExpress.XtraEditors.LabelAutoSizeMode.None;
     this.labelControl2.LineLocation = DevExpress.XtraEditors.LineLocation.Bottom;
     this.labelControl2.LineVisible = true;
     this.labelControl2.Location = new System.Drawing.Point(4, 51);
     this.labelControl2.Name = "labelControl2";
     this.labelControl2.Size = new System.Drawing.Size(72, 20);
     this.labelControl2.TabIndex = 52;
     this.labelControl2.Text = "Artical No.";
     //
     // labelControl8
     //
     this.labelControl8.Anchor = System.Windows.Forms.AnchorStyles.None;
     this.labelControl8.AutoSizeMode = DevExpress.XtraEditors.LabelAutoSizeMode.None;
     this.labelControl8.LineLocation = DevExpress.XtraEditors.LineLocation.Bottom;
     this.labelControl8.LineVisible = true;
     this.labelControl8.Location = new System.Drawing.Point(4, 70);
     this.labelControl8.Name = "labelControl8";
     this.labelControl8.Size = new System.Drawing.Size(72, 20);
     this.labelControl8.TabIndex = 59;
     this.labelControl8.Text = "Description";
     //
     // labelControl14
     //
     this.labelControl14.Anchor = System.Windows.Forms.AnchorStyles.None;
     this.labelControl14.AutoSizeMode = DevExpress.XtraEditors.LabelAutoSizeMode.None;
     this.labelControl14.LineLocation = DevExpress.XtraEditors.LineLocation.Bottom;
     this.labelControl14.LineVisible = true;
     this.labelControl14.Location = new System.Drawing.Point(235, 11);
     this.labelControl14.Name = "labelControl14";
     this.labelControl14.Size = new System.Drawing.Size(90, 20);
     this.labelControl14.TabIndex = 52;
     this.labelControl14.Text = "Item Type";
     //
     // labelControl7
     //
     this.labelControl7.Anchor = System.Windows.Forms.AnchorStyles.None;
     this.labelControl7.AutoSizeMode = DevExpress.XtraEditors.LabelAutoSizeMode.None;
     this.labelControl7.LineLocation = DevExpress.XtraEditors.LineLocation.Bottom;
     this.labelControl7.LineVisible = true;
     this.labelControl7.Location = new System.Drawing.Point(235, 30);
     this.labelControl7.Name = "labelControl7";
     this.labelControl7.Size = new System.Drawing.Size(90, 20);
     this.labelControl7.TabIndex = 54;
     this.labelControl7.Text = "Gen. Name";
     //
     // labelControl49
     //
     this.labelControl49.Anchor = System.Windows.Forms.AnchorStyles.None;
     this.labelControl49.AutoSizeMode = DevExpress.XtraEditors.LabelAutoSizeMode.None;
     this.labelControl49.LineLocation = DevExpress.XtraEditors.LineLocation.Bottom;
     this.labelControl49.LineVisible = true;
     this.labelControl49.Location = new System.Drawing.Point(235, 48);
     this.labelControl49.Name = "labelControl49";
     this.labelControl49.Size = new System.Drawing.Size(77, 20);
     this.labelControl49.TabIndex = 58;
     this.labelControl49.Text = "SKU Type";
     //
     // labelControl39
     //
     this.labelControl39.Anchor = System.Windows.Forms.AnchorStyles.None;
     this.labelControl39.AutoSizeMode = DevExpress.XtraEditors.LabelAutoSizeMode.None;
     this.labelControl39.LineLocation = DevExpress.XtraEditors.LineLocation.Bottom;
     this.labelControl39.LineVisible = true;
     this.labelControl39.Location = new System.Drawing.Point(235, 67);
     this.labelControl39.Name = "labelControl39";
     this.labelControl39.Size = new System.Drawing.Size(90, 20);
     this.labelControl39.TabIndex = 56;
     this.labelControl39.Text = "Item Category";
     //
     // labelControl4
     //
     this.labelControl4.Anchor = System.Windows.Forms.AnchorStyles.None;
     this.labelControl4.AutoSizeMode = DevExpress.XtraEditors.LabelAutoSizeMode.None;
     this.labelControl4.LineLocation = DevExpress.XtraEditors.LineLocation.Bottom;
     this.labelControl4.LineVisible = true;
     this.labelControl4.Location = new System.Drawing.Point(169, 9);
     this.labelControl4.Name = "labelControl4";
     this.labelControl4.Size = new System.Drawing.Size(54, 20);
     this.labelControl4.TabIndex = 5;
     this.labelControl4.Text = "Group Seq.";
     //
     // labelControl5
     //
     this.labelControl5.Anchor = System.Windows.Forms.AnchorStyles.None;
     this.labelControl5.AutoSizeMode = DevExpress.XtraEditors.LabelAutoSizeMode.None;
     this.labelControl5.LineLocation = DevExpress.XtraEditors.LineLocation.Bottom;
     this.labelControl5.LineVisible = true;
     this.labelControl5.Location = new System.Drawing.Point(5, 30);
     this.labelControl5.Name = "labelControl5";
     this.labelControl5.Size = new System.Drawing.Size(84, 20);
     this.labelControl5.TabIndex = 6;
     this.labelControl5.Text = "Group Name";
     //
     // labelControl10
     //
     this.labelControl10.Anchor = System.Windows.Forms.AnchorStyles.None;
     this.labelControl10.AutoSizeMode = DevExpress.XtraEditors.LabelAutoSizeMode.None;
     this.labelControl10.LineLocation = DevExpress.XtraEditors.LineLocation.Bottom;
     this.labelControl10.LineVisible = true;
     this.labelControl10.Location = new System.Drawing.Point(5, 8);
     this.labelControl10.Name = "labelControl10";
     this.labelControl10.Size = new System.Drawing.Size(71, 20);
     this.labelControl10.TabIndex = 11;
     this.labelControl10.Text = "Group Id";
     //
     // txtGroupSeq
     //
     this.txtGroupSeq.Anchor = System.Windows.Forms.AnchorStyles.None;
     this.txtGroupSeq.Location = new System.Drawing.Point(224, 10);
     this.txtGroupSeq.Name = "txtGroupSeq";
     this.txtGroupSeq.Size = new System.Drawing.Size(62, 20);
     this.txtGroupSeq.TabIndex = 8;
     this.txtGroupSeq.PreviewKeyDown += new System.Windows.Forms.PreviewKeyDownEventHandler(this.txtGroupSeq_PreviewKeyDown);
     //
     // txtGroupName
     //
     this.txtGroupName.Anchor = System.Windows.Forms.AnchorStyles.None;
     this.txtGroupName.Location = new System.Drawing.Point(85, 29);
     this.txtGroupName.Name = "txtGroupName";
     this.txtGroupName.Size = new System.Drawing.Size(201, 20);
     this.txtGroupName.TabIndex = 124244;
     this.txtGroupName.TabStop = false;
     //
     // txtGroupid
     //
     this.txtGroupid.Anchor = System.Windows.Forms.AnchorStyles.None;
     this.txtGroupid.Location = new System.Drawing.Point(85, 9);
     this.txtGroupid.Mask = "000-000";
     this.txtGroupid.Name = "txtGroupid";
     this.txtGroupid.Size = new System.Drawing.Size(51, 21);
     this.txtGroupid.TabIndex = 7;
     this.txtGroupid.PreviewKeyDown += new System.Windows.Forms.PreviewKeyDownEventHandler(this.txtGroupid_PreviewKeyDown);
     //
     // simpleButton1
     //
     this.simpleButton1.Anchor = System.Windows.Forms.AnchorStyles.None;
     this.simpleButton1.Appearance.Font = new System.Drawing.Font("Tahoma", 9F);
     this.simpleButton1.Appearance.Options.UseFont = true;
     this.simpleButton1.Image = global::ERPGUI.Properties.Resources.find_16x16;
     this.simpleButton1.ImageLocation = DevExpress.XtraEditors.ImageLocation.MiddleLeft;
     this.simpleButton1.Location = new System.Drawing.Point(137, 9);
     this.simpleButton1.Name = "simpleButton1";
     this.simpleButton1.ShowFocusRectangle = DevExpress.Utils.DefaultBoolean.False;
     this.simpleButton1.Size = new System.Drawing.Size(24, 20);
     toolTipTitleItem4.Text = "Add New Entry";
     superToolTip4.Items.Add(toolTipTitleItem4);
     this.simpleButton1.SuperTip = superToolTip4;
     this.simpleButton1.TabIndex = 48;
     this.simpleButton1.TabStop = false;
     this.simpleButton1.Click += new System.EventHandler(this.simpleButton1_Click);
     //
     // groupControl2
     //
     this.groupControl2.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
     this.groupControl2.Controls.Add(this.txtmanualgroup);
     this.groupControl2.Controls.Add(this.labelControl57);
     this.groupControl2.Controls.Add(this.txtdateto);
     this.groupControl2.Controls.Add(this.txtdatefrom);
     this.groupControl2.Controls.Add(this.simpleButton4);
     this.groupControl2.Controls.Add(this.simpleButton1);
     this.groupControl2.Controls.Add(this.labelControl10);
     this.groupControl2.Controls.Add(this.txtGroupName);
     this.groupControl2.Controls.Add(this.labelControl4);
     this.groupControl2.Controls.Add(this.txtGroupSeq);
     this.groupControl2.Controls.Add(this.txtGroupid);
     this.groupControl2.Controls.Add(this.labelControl5);
     this.groupControl2.Controls.Add(this.labelControl56);
     this.groupControl2.Controls.Add(this.labelControl51);
     this.groupControl2.Location = new System.Drawing.Point(411, 3);
     this.groupControl2.Name = "groupControl2";
     this.groupControl2.ShowCaption = false;
     this.groupControl2.Size = new System.Drawing.Size(291, 105);
     this.groupControl2.TabIndex = 12;
     this.groupControl2.Text = "Group";
     this.groupControl2.Paint += new System.Windows.Forms.PaintEventHandler(this.groupControl2_Paint);
     //
     // txtmanualgroup
     //
     this.txtmanualgroup.Anchor = System.Windows.Forms.AnchorStyles.None;
     this.txtmanualgroup.Location = new System.Drawing.Point(85, 68);
     this.txtmanualgroup.Name = "txtmanualgroup";
     this.txtmanualgroup.Size = new System.Drawing.Size(201, 20);
     this.txtmanualgroup.TabIndex = 124245;
     this.txtmanualgroup.PreviewKeyDown += new System.Windows.Forms.PreviewKeyDownEventHandler(this.txtmanualgroup_PreviewKeyDown);
     //
     // labelControl57
     //
     this.labelControl57.Anchor = System.Windows.Forms.AnchorStyles.None;
     this.labelControl57.AutoSizeMode = DevExpress.XtraEditors.LabelAutoSizeMode.None;
     this.labelControl57.LineLocation = DevExpress.XtraEditors.LineLocation.Bottom;
     this.labelControl57.LineVisible = true;
     this.labelControl57.Location = new System.Drawing.Point(168, 50);
     this.labelControl57.Name = "labelControl57";
     this.labelControl57.Size = new System.Drawing.Size(38, 20);
     this.labelControl57.TabIndex = 124252;
     this.labelControl57.Text = "Date To";
     //
     // txtdateto
     //
     this.txtdateto.Location = new System.Drawing.Point(211, 48);
     this.txtdateto.Mask = "00/00/0000";
     this.txtdateto.Name = "txtdateto";
     this.txtdateto.Size = new System.Drawing.Size(75, 21);
     this.txtdateto.TabIndex = 124251;
     this.txtdateto.ValidatingType = typeof(System.DateTime);
     this.txtdateto.PreviewKeyDown += new System.Windows.Forms.PreviewKeyDownEventHandler(this.txtdateto_PreviewKeyDown);
     //
     // txtdatefrom
     //
     this.txtdatefrom.Location = new System.Drawing.Point(85, 48);
     this.txtdatefrom.Mask = "00/00/0000";
     this.txtdatefrom.Name = "txtdatefrom";
     this.txtdatefrom.Size = new System.Drawing.Size(75, 21);
     this.txtdatefrom.TabIndex = 124250;
     this.txtdatefrom.ValidatingType = typeof(System.DateTime);
     this.txtdatefrom.PreviewKeyDown += new System.Windows.Forms.PreviewKeyDownEventHandler(this.txtdatefrom_PreviewKeyDown);
     //
     // simpleButton4
     //
     this.simpleButton4.Anchor = System.Windows.Forms.AnchorStyles.None;
     this.simpleButton4.Image = ((System.Drawing.Image)(resources.GetObject("simpleButton4.Image")));
     this.simpleButton4.ImageLocation = DevExpress.XtraEditors.ImageLocation.MiddleLeft;
     this.simpleButton4.Location = new System.Drawing.Point(63, 9);
     this.simpleButton4.Name = "simpleButton4";
     this.simpleButton4.Size = new System.Drawing.Size(21, 20);
     toolTipItem1.Text = "Save Module";
     superToolTip5.Items.Add(toolTipItem1);
     this.simpleButton4.SuperTip = superToolTip5;
     this.simpleButton4.TabIndex = 187;
     this.simpleButton4.Click += new System.EventHandler(this.simpleButton4_Click);
     //
     // labelControl56
     //
     this.labelControl56.Anchor = System.Windows.Forms.AnchorStyles.None;
     this.labelControl56.AutoSizeMode = DevExpress.XtraEditors.LabelAutoSizeMode.None;
     this.labelControl56.LineLocation = DevExpress.XtraEditors.LineLocation.Bottom;
     this.labelControl56.LineVisible = true;
     this.labelControl56.Location = new System.Drawing.Point(5, 51);
     this.labelControl56.Name = "labelControl56";
     this.labelControl56.Size = new System.Drawing.Size(84, 20);
     this.labelControl56.TabIndex = 124249;
     this.labelControl56.Text = "Date From";
     //
     // labelControl51
     //
     this.labelControl51.Anchor = System.Windows.Forms.AnchorStyles.None;
     this.labelControl51.AutoSizeMode = DevExpress.XtraEditors.LabelAutoSizeMode.None;
     this.labelControl51.LineLocation = DevExpress.XtraEditors.LineLocation.Bottom;
     this.labelControl51.LineVisible = true;
     this.labelControl51.Location = new System.Drawing.Point(5, 69);
     this.labelControl51.Name = "labelControl51";
     this.labelControl51.Size = new System.Drawing.Size(84, 20);
     this.labelControl51.TabIndex = 124246;
     this.labelControl51.Text = "Manual Groups";
     //
     // btnAdd
     //
     this.btnAdd.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
     this.btnAdd.Image = global::ERPGUI.Properties.Resources.addfooter_16x16;
     this.btnAdd.ImageLocation = DevExpress.XtraEditors.ImageLocation.MiddleLeft;
     this.btnAdd.Location = new System.Drawing.Point(3, 426);
     this.btnAdd.Name = "btnAdd";
     this.btnAdd.Size = new System.Drawing.Size(70, 23);
     toolTipItem2.Text = "Add New Module";
     superToolTip6.Items.Add(toolTipItem2);
     this.btnAdd.SuperTip = superToolTip6;
     this.btnAdd.TabIndex = 47;
     this.btnAdd.Text = " &Add ";
     this.btnAdd.Click += new System.EventHandler(this.btnAdd_Click);
     //
     // btnCancel
     //
     this.btnCancel.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
     this.btnCancel.Image = global::ERPGUI.Properties.Resources.deletedatasource_16x16;
     this.btnCancel.ImageLocation = DevExpress.XtraEditors.ImageLocation.MiddleLeft;
     this.btnCancel.Location = new System.Drawing.Point(79, 426);
     this.btnCancel.Name = "btnCancel";
     this.btnCancel.Size = new System.Drawing.Size(70, 23);
     toolTipItem3.Text = "Cancel Current Operation";
     superToolTip7.Items.Add(toolTipItem3);
     this.btnCancel.SuperTip = superToolTip7;
     this.btnCancel.TabIndex = 50;
     this.btnCancel.Text = "&Cancel";
     this.btnCancel.Click += new System.EventHandler(this.btnCancel_Click);
     //
     // groupControl4
     //
     this.groupControl4.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
     | System.Windows.Forms.AnchorStyles.Right)));
     this.groupControl4.Controls.Add(this.simpleButton6);
     this.groupControl4.Controls.Add(this.simpleButton5);
     this.groupControl4.Controls.Add(this.chkCompanyDiscount);
     this.groupControl4.Controls.Add(this.txtCompanySeq);
     this.groupControl4.Controls.Add(this.simpleButton3);
     this.groupControl4.Controls.Add(this.labelControl35);
     this.groupControl4.Controls.Add(this.txtReportCompanyName);
     this.groupControl4.Controls.Add(this.txtReportCompanyid);
     this.groupControl4.Controls.Add(this.simpleButton2);
     this.groupControl4.Controls.Add(this.txtCompanyName);
     this.groupControl4.Controls.Add(this.txtCompanyid);
     this.groupControl4.Controls.Add(this.labelControl33);
     this.groupControl4.Controls.Add(this.labelControl34);
     this.groupControl4.Controls.Add(this.labelControl36);
     this.groupControl4.Controls.Add(this.labelControl1);
     this.groupControl4.Location = new System.Drawing.Point(3, 110);
     this.groupControl4.Name = "groupControl4";
     this.groupControl4.ShowCaption = false;
     this.groupControl4.Size = new System.Drawing.Size(699, 55);
     this.groupControl4.TabIndex = 49;
     this.groupControl4.Text = "Group";
     //
     // simpleButton6
     //
     this.simpleButton6.Anchor = System.Windows.Forms.AnchorStyles.Left;
     this.simpleButton6.Image = ((System.Drawing.Image)(resources.GetObject("simpleButton6.Image")));
     this.simpleButton6.ImageLocation = DevExpress.XtraEditors.ImageLocation.MiddleLeft;
     this.simpleButton6.Location = new System.Drawing.Point(110, 27);
     this.simpleButton6.Name = "simpleButton6";
     this.simpleButton6.Size = new System.Drawing.Size(21, 20);
     toolTipItem4.Text = "Save Module";
     superToolTip8.Items.Add(toolTipItem4);
     this.simpleButton6.SuperTip = superToolTip8;
     this.simpleButton6.TabIndex = 124246;
     //
     // simpleButton5
     //
     this.simpleButton5.Anchor = System.Windows.Forms.AnchorStyles.Left;
     this.simpleButton5.Image = ((System.Drawing.Image)(resources.GetObject("simpleButton5.Image")));
     this.simpleButton5.ImageLocation = DevExpress.XtraEditors.ImageLocation.MiddleLeft;
     this.simpleButton5.Location = new System.Drawing.Point(110, 6);
     this.simpleButton5.Name = "simpleButton5";
     this.simpleButton5.Size = new System.Drawing.Size(21, 20);
     toolTipItem5.Text = "Save Module";
     superToolTip9.Items.Add(toolTipItem5);
     this.simpleButton5.SuperTip = superToolTip9;
     this.simpleButton5.TabIndex = 124245;
     //
     // chkCompanyDiscount
     //
     this.chkCompanyDiscount.Anchor = System.Windows.Forms.AnchorStyles.Left;
     this.chkCompanyDiscount.Location = new System.Drawing.Point(472, 26);
     this.chkCompanyDiscount.Name = "chkCompanyDiscount";
     this.chkCompanyDiscount.Properties.Appearance.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.chkCompanyDiscount.Properties.Appearance.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(66)))), ((int)(((byte)(88)))), ((int)(((byte)(168)))));
     this.chkCompanyDiscount.Properties.Appearance.Options.UseFont = true;
     this.chkCompanyDiscount.Properties.Appearance.Options.UseForeColor = true;
     this.chkCompanyDiscount.Properties.Caption = "Company Discount";
     this.chkCompanyDiscount.Size = new System.Drawing.Size(136, 19);
     this.chkCompanyDiscount.TabIndex = 100001;
     this.chkCompanyDiscount.PreviewKeyDown += new System.Windows.Forms.PreviewKeyDownEventHandler(this.chkCompanyDiscount_PreviewKeyDown);
     //
     // txtCompanySeq
     //
     this.txtCompanySeq.Anchor = System.Windows.Forms.AnchorStyles.Left;
     this.txtCompanySeq.Location = new System.Drawing.Point(542, 6);
     this.txtCompanySeq.Name = "txtCompanySeq";
     this.txtCompanySeq.Size = new System.Drawing.Size(62, 20);
     this.txtCompanySeq.TabIndex = 10;
     this.txtCompanySeq.PreviewKeyDown += new System.Windows.Forms.PreviewKeyDownEventHandler(this.txtCompanySeq_PreviewKeyDown);
     //
     // simpleButton3
     //
     this.simpleButton3.Anchor = System.Windows.Forms.AnchorStyles.Left;
     this.simpleButton3.Appearance.Font = new System.Drawing.Font("Tahoma", 9F);
     this.simpleButton3.Appearance.Options.UseFont = true;
     this.simpleButton3.Image = global::ERPGUI.Properties.Resources.find_16x16;
     this.simpleButton3.ImageLocation = DevExpress.XtraEditors.ImageLocation.MiddleLeft;
     this.simpleButton3.Location = new System.Drawing.Point(159, 27);
     this.simpleButton3.Name = "simpleButton3";
     this.simpleButton3.ShowFocusRectangle = DevExpress.Utils.DefaultBoolean.False;
     this.simpleButton3.Size = new System.Drawing.Size(24, 20);
     toolTipTitleItem5.Text = "Add New Entry";
     superToolTip10.Items.Add(toolTipTitleItem5);
     this.simpleButton3.SuperTip = superToolTip10;
     this.simpleButton3.TabIndex = 53;
     this.simpleButton3.Click += new System.EventHandler(this.simpleButton3_Click);
     //
     // labelControl35
     //
     this.labelControl35.Anchor = System.Windows.Forms.AnchorStyles.Left;
     this.labelControl35.AutoSizeMode = DevExpress.XtraEditors.LabelAutoSizeMode.None;
     this.labelControl35.LineLocation = DevExpress.XtraEditors.LineLocation.Bottom;
     this.labelControl35.LineVisible = true;
     this.labelControl35.Location = new System.Drawing.Point(17, 29);
     this.labelControl35.Name = "labelControl35";
     this.labelControl35.Size = new System.Drawing.Size(101, 20);
     this.labelControl35.TabIndex = 50;
     this.labelControl35.Text = "Report CompanyId";
     //
     // txtReportCompanyName
     //
     this.txtReportCompanyName.Anchor = System.Windows.Forms.AnchorStyles.Left;
     this.txtReportCompanyName.Location = new System.Drawing.Point(264, 26);
     this.txtReportCompanyName.Name = "txtReportCompanyName";
     this.txtReportCompanyName.Size = new System.Drawing.Size(204, 20);
     this.txtReportCompanyName.TabIndex = 13;
     //
     // txtReportCompanyid
     //
     this.txtReportCompanyid.Anchor = System.Windows.Forms.AnchorStyles.Left;
     this.txtReportCompanyid.Location = new System.Drawing.Point(133, 27);
     this.txtReportCompanyid.Mask = "000";
     this.txtReportCompanyid.Name = "txtReportCompanyid";
     this.txtReportCompanyid.Size = new System.Drawing.Size(25, 21);
     this.txtReportCompanyid.TabIndex = 11;
     this.txtReportCompanyid.PreviewKeyDown += new System.Windows.Forms.PreviewKeyDownEventHandler(this.txtReportCompanyid_PreviewKeyDown);
     //
     // simpleButton2
     //
     this.simpleButton2.Anchor = System.Windows.Forms.AnchorStyles.Left;
     this.simpleButton2.Appearance.Font = new System.Drawing.Font("Tahoma", 9F);
     this.simpleButton2.Appearance.Options.UseFont = true;
     this.simpleButton2.Image = global::ERPGUI.Properties.Resources.find_16x16;
     this.simpleButton2.ImageLocation = DevExpress.XtraEditors.ImageLocation.MiddleLeft;
     this.simpleButton2.Location = new System.Drawing.Point(159, 6);
     this.simpleButton2.Name = "simpleButton2";
     this.simpleButton2.ShowFocusRectangle = DevExpress.Utils.DefaultBoolean.False;
     this.simpleButton2.Size = new System.Drawing.Size(24, 20);
     toolTipTitleItem6.Text = "Add New Entry";
     superToolTip11.Items.Add(toolTipTitleItem6);
     this.simpleButton2.SuperTip = superToolTip11;
     this.simpleButton2.TabIndex = 48;
     this.simpleButton2.Click += new System.EventHandler(this.simpleButton2_Click);
     //
     // txtCompanyName
     //
     this.txtCompanyName.Anchor = System.Windows.Forms.AnchorStyles.Left;
     this.txtCompanyName.Location = new System.Drawing.Point(264, 6);
     this.txtCompanyName.Name = "txtCompanyName";
     this.txtCompanyName.Size = new System.Drawing.Size(204, 20);
     this.txtCompanyName.TabIndex = 100000;
     //
     // txtCompanyid
     //
     this.txtCompanyid.Anchor = System.Windows.Forms.AnchorStyles.Left;
     this.txtCompanyid.Location = new System.Drawing.Point(133, 6);
     this.txtCompanyid.Mask = "000";
     this.txtCompanyid.Name = "txtCompanyid";
     this.txtCompanyid.Size = new System.Drawing.Size(25, 21);
     this.txtCompanyid.TabIndex = 9;
     this.txtCompanyid.PreviewKeyDown += new System.Windows.Forms.PreviewKeyDownEventHandler(this.txtCompanyid_PreviewKeyDown);
     //
     // labelControl33
     //
     this.labelControl33.Anchor = System.Windows.Forms.AnchorStyles.Left;
     this.labelControl33.AutoSizeMode = DevExpress.XtraEditors.LabelAutoSizeMode.None;
     this.labelControl33.LineLocation = DevExpress.XtraEditors.LineLocation.Bottom;
     this.labelControl33.LineVisible = true;
     this.labelControl33.Location = new System.Drawing.Point(17, 7);
     this.labelControl33.Name = "labelControl33";
     this.labelControl33.Size = new System.Drawing.Size(101, 20);
     this.labelControl33.TabIndex = 11;
     this.labelControl33.Text = "Company Id";
     //
     // labelControl34
     //
     this.labelControl34.Anchor = System.Windows.Forms.AnchorStyles.Left;
     this.labelControl34.AutoSizeMode = DevExpress.XtraEditors.LabelAutoSizeMode.None;
     this.labelControl34.LineLocation = DevExpress.XtraEditors.LineLocation.Bottom;
     this.labelControl34.LineVisible = true;
     this.labelControl34.Location = new System.Drawing.Point(187, 6);
     this.labelControl34.Name = "labelControl34";
     this.labelControl34.Size = new System.Drawing.Size(95, 20);
     this.labelControl34.TabIndex = 6;
     this.labelControl34.Text = "Company Name";
     //
     // labelControl36
     //
     this.labelControl36.Anchor = System.Windows.Forms.AnchorStyles.Left;
     this.labelControl36.AutoSizeMode = DevExpress.XtraEditors.LabelAutoSizeMode.None;
     this.labelControl36.LineLocation = DevExpress.XtraEditors.LineLocation.Bottom;
     this.labelControl36.LineVisible = true;
     this.labelControl36.Location = new System.Drawing.Point(187, 26);
     this.labelControl36.Name = "labelControl36";
     this.labelControl36.Size = new System.Drawing.Size(95, 20);
     this.labelControl36.TabIndex = 49;
     this.labelControl36.Text = "Company Name";
     //
     // labelControl1
     //
     this.labelControl1.Anchor = System.Windows.Forms.AnchorStyles.Left;
     this.labelControl1.AutoSizeMode = DevExpress.XtraEditors.LabelAutoSizeMode.None;
     this.labelControl1.LineLocation = DevExpress.XtraEditors.LineLocation.Bottom;
     this.labelControl1.LineVisible = true;
     this.labelControl1.Location = new System.Drawing.Point(471, 6);
     this.labelControl1.Name = "labelControl1";
     this.labelControl1.Size = new System.Drawing.Size(81, 20);
     this.labelControl1.TabIndex = 54;
     this.labelControl1.Text = "Company Seq.";
     //
     // frmProducts
     //
     this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
     this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
     this.ClientSize = new System.Drawing.Size(704, 454);
     this.Controls.Add(this.groupControl4);
     this.Controls.Add(this.groupControl2);
     this.Controls.Add(this.groupControl1);
     this.Controls.Add(this.xtraTabControl1);
     this.Controls.Add(this.btnAdd);
     this.Controls.Add(this.btnCancel);
     this.Icon = ((System.Drawing.Icon)(resources.GetObject("$this.Icon")));
     this.Name = "frmProducts";
     this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen;
     this.Text = "Products";
     this.FormClosing += new System.Windows.Forms.FormClosingEventHandler(this.frmProducts_FormClosing);
     this.Load += new System.EventHandler(this.frmProducts_Load);
     this.Enter += new System.EventHandler(this.frmProducts_Enter);
     ((System.ComponentModel.ISupportInitialize)(this.xtraTabControl1)).EndInit();
     this.xtraTabControl1.ResumeLayout(false);
     this.xtrabarGeneralinformation.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.panelControl1)).EndInit();
     this.panelControl1.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.txtfactor.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtuompurchase.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtuomsize.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtuomsale.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.cmbValueMethod.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtAvgRate.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtToleranceDay.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtLoadTime.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtPurchaseRate.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtSpecialRate.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtCostRate.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtTransit.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtTarget.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtNetBalance.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtBalanceBonus.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtBalanceStock.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtMaxQuantityDays.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtMaxQuantityPCustomer.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtPackInBox.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtInventoryDays.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtMinFlatRate.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtMaxFlatRate.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.cmbSaleTaxCalculation.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtSaleTaxVale.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtSaleTaxPer.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtMaxSalesDisc.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtPurchaseDiscountPer.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtRetailPrice.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.chkwolallow.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.chkAllowPer.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.chkAutoBonus.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.chkSaleBase.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.chkSaleTaxReg.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.chkNonPharma.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.chkExcempted.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.chkUseFlatRate.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.chkNorCotics.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.chkHideinTabs.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.chkAllowMaxQtyDays.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.chkProductDiscontinue.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtTradePrice.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtSaleRate.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtPackInCarton.Properties)).EndInit();
     this.XtrabarBonus.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.datagridBonus)).EndInit();
     this.xtraTabPage1.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.datagridProductAllocation)).EndInit();
     this.xtraTabPage2.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.groupControl5)).EndInit();
     this.groupControl5.ResumeLayout(false);
     this.groupControl5.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(this.txtMaxLimit.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtMinLimit.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtBarCode.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtShelfCode.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.grdPresevasionStandard)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtClaimPartnerName.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.businessPartnerName.Properties)).EndInit();
     this.xtraTabPage3.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.dgFileAttachments)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.groupControl1)).EndInit();
     this.groupControl1.ResumeLayout(false);
     this.groupControl1.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(this.cmbProductCategory.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtShortName.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtArtical.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtProductName.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.cmbSkuType.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.cmbGeneralName.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.cmbProtoType.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtPack.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtGroupSeq.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtGroupName.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.groupControl2)).EndInit();
     this.groupControl2.ResumeLayout(false);
     this.groupControl2.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(this.txtmanualgroup.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.groupControl4)).EndInit();
     this.groupControl4.ResumeLayout(false);
     this.groupControl4.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(this.chkCompanyDiscount.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtCompanySeq.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtReportCompanyName.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtCompanyName.Properties)).EndInit();
     this.ResumeLayout(false);
 }
 /// <summary>
 /// Required method for Designer support - do not modify
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     this.components = new System.ComponentModel.Container();
     System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(Frm_lista_precios));
     DevExpress.Utils.SuperToolTip superToolTip1 = new DevExpress.Utils.SuperToolTip();
     DevExpress.Utils.ToolTipTitleItem toolTipTitleItem1 = new DevExpress.Utils.ToolTipTitleItem();
     DevExpress.Utils.SuperToolTip superToolTip2 = new DevExpress.Utils.SuperToolTip();
     DevExpress.Utils.ToolTipTitleItem toolTipTitleItem2 = new DevExpress.Utils.ToolTipTitleItem();
     DevExpress.Utils.SuperToolTip superToolTip3 = new DevExpress.Utils.SuperToolTip();
     DevExpress.Utils.ToolTipTitleItem toolTipTitleItem3 = new DevExpress.Utils.ToolTipTitleItem();
     DevExpress.Utils.SuperToolTip superToolTip4 = new DevExpress.Utils.SuperToolTip();
     DevExpress.Utils.ToolTipTitleItem toolTipTitleItem4 = new DevExpress.Utils.ToolTipTitleItem();
     DevExpress.Utils.SuperToolTip superToolTip5 = new DevExpress.Utils.SuperToolTip();
     DevExpress.Utils.ToolTipTitleItem toolTipTitleItem5 = new DevExpress.Utils.ToolTipTitleItem();
     DevExpress.Utils.SuperToolTip superToolTip6 = new DevExpress.Utils.SuperToolTip();
     DevExpress.Utils.ToolTipTitleItem toolTipTitleItem6 = new DevExpress.Utils.ToolTipTitleItem();
     DevExpress.Utils.SuperToolTip superToolTip7 = new DevExpress.Utils.SuperToolTip();
     DevExpress.Utils.ToolTipTitleItem toolTipTitleItem7 = new DevExpress.Utils.ToolTipTitleItem();
     DevExpress.Utils.SuperToolTip superToolTip8 = new DevExpress.Utils.SuperToolTip();
     DevExpress.Utils.ToolTipTitleItem toolTipTitleItem8 = new DevExpress.Utils.ToolTipTitleItem();
     DevExpress.Utils.SuperToolTip superToolTip9 = new DevExpress.Utils.SuperToolTip();
     DevExpress.Utils.ToolTipTitleItem toolTipTitleItem9 = new DevExpress.Utils.ToolTipTitleItem();
     DevExpress.Utils.SuperToolTip superToolTip10 = new DevExpress.Utils.SuperToolTip();
     DevExpress.Utils.ToolTipTitleItem toolTipTitleItem10 = new DevExpress.Utils.ToolTipTitleItem();
     DevExpress.Utils.SuperToolTip superToolTip11 = new DevExpress.Utils.SuperToolTip();
     DevExpress.Utils.ToolTipTitleItem toolTipTitleItem11 = new DevExpress.Utils.ToolTipTitleItem();
     DevExpress.Utils.SuperToolTip superToolTip12 = new DevExpress.Utils.SuperToolTip();
     DevExpress.Utils.ToolTipTitleItem toolTipTitleItem12 = new DevExpress.Utils.ToolTipTitleItem();
     DevExpress.Utils.SuperToolTip superToolTip13 = new DevExpress.Utils.SuperToolTip();
     DevExpress.Utils.ToolTipTitleItem toolTipTitleItem13 = new DevExpress.Utils.ToolTipTitleItem();
     System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle3 = new System.Windows.Forms.DataGridViewCellStyle();
     System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle1 = new System.Windows.Forms.DataGridViewCellStyle();
     System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle2 = new System.Windows.Forms.DataGridViewCellStyle();
     DevExpress.XtraGrid.StyleFormatCondition styleFormatCondition1 = new DevExpress.XtraGrid.StyleFormatCondition();
     this.articid = new System.Windows.Forms.TextBox();
     this.articname = new System.Windows.Forms.TextBox();
     this.panelControl2 = new DevExpress.XtraEditors.PanelControl();
     this.label11 = new System.Windows.Forms.Label();
     this.bar2 = new DevExpress.XtraBars.Bar();
     this.barManager1 = new DevExpress.XtraBars.BarManager(this.components);
     this.bar1 = new DevExpress.XtraBars.Bar();
     this.btn_nuevo = new DevExpress.XtraBars.BarButtonItem();
     this.btn_editar = new DevExpress.XtraBars.BarButtonItem();
     this.btn_cancelar = new DevExpress.XtraBars.BarButtonItem();
     this.btn_grabar = new DevExpress.XtraBars.BarButtonItem();
     this.btn_eliminar = new DevExpress.XtraBars.BarButtonItem();
     this.btn_imprimir = new DevExpress.XtraBars.BarButtonItem();
     this.btn_log = new DevExpress.XtraBars.BarButtonItem();
     this.btn_clave = new DevExpress.XtraBars.BarButtonItem();
     this.btn_salir = new DevExpress.XtraBars.BarButtonItem();
     this.barDockControlTop = new DevExpress.XtraBars.BarDockControl();
     this.barDockControlBottom = new DevExpress.XtraBars.BarDockControl();
     this.barDockControlLeft = new DevExpress.XtraBars.BarDockControl();
     this.barDockControlRight = new DevExpress.XtraBars.BarDockControl();
     this.btnLoad = new DevExpress.XtraBars.BarButtonItem();
     this.btnInicio = new DevExpress.XtraBars.BarButtonItem();
     this.btnAnterior = new DevExpress.XtraBars.BarButtonItem();
     this.btnSiguiente = new DevExpress.XtraBars.BarButtonItem();
     this.btnUltimo = new DevExpress.XtraBars.BarButtonItem();
     this.pnl_01 = new DevExpress.XtraEditors.PanelControl();
     this.fechdocfin = new System.Windows.Forms.DateTimePicker();
     this.visible = new DevExpress.XtraEditors.CheckEdit();
     this.fechdocini = new System.Windows.Forms.DateTimePicker();
     this.tcamb = new System.Windows.Forms.TextBox();
     this.incigv = new DevExpress.XtraEditors.CheckEdit();
     this.labelControl7 = new DevExpress.XtraEditors.LabelControl();
     this.labelControl6 = new DevExpress.XtraEditors.LabelControl();
     this.labelControl5 = new DevExpress.XtraEditors.LabelControl();
     this.ctactelistname = new System.Windows.Forms.TextBox();
     this.ctactelist = new System.Windows.Forms.TextBox();
     this.labelControl4 = new DevExpress.XtraEditors.LabelControl();
     this.tiendalistname = new System.Windows.Forms.TextBox();
     this.tiendalist = new System.Windows.Forms.TextBox();
     this.listaprecid = new System.Windows.Forms.TextBox();
     this.listaprecname = new System.Windows.Forms.TextBox();
     this.labelControl3 = new DevExpress.XtraEditors.LabelControl();
     this.labelControl1 = new DevExpress.XtraEditors.LabelControl();
     this.pnlcontroldet = new DevExpress.XtraEditors.PanelControl();
     this.labelControl10 = new DevExpress.XtraEditors.LabelControl();
     this.ExportCatalog = new DevExpress.XtraEditors.SimpleButton();
     this.btn_importar = new System.Windows.Forms.Button();
     this.btn_exportar = new System.Windows.Forms.Button();
     this.btn_del = new DevExpress.XtraEditors.SimpleButton();
     this.btn_add = new DevExpress.XtraEditors.SimpleButton();
     this.btn_save = new DevExpress.XtraEditors.SimpleButton();
     this.precunit2 = new System.Windows.Forms.TextBox();
     this.precunit1 = new System.Windows.Forms.TextBox();
     this.labelControl9 = new DevExpress.XtraEditors.LabelControl();
     this.labelControl8 = new DevExpress.XtraEditors.LabelControl();
     this.dgb_listaPrecios = new System.Windows.Forms.DataGridView();
     this.@__listaprecid = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.codigo = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.denominacion = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this._precunit1 = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this._precunit2 = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.usuar = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.feact = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.labelControl2 = new DevExpress.XtraEditors.LabelControl();
     this.groupControl1 = new DevExpress.XtraEditors.GroupControl();
     this.Mdi_dgv_precioslist = new DevExpress.XtraGrid.GridControl();
     this.dgv_precioslist = new DevExpress.XtraGrid.Views.Grid.GridView();
     this._listaprecid = new DevExpress.XtraGrid.Columns.GridColumn();
     this._listaprecname = new DevExpress.XtraGrid.Columns.GridColumn();
     this._fechaini = new DevExpress.XtraGrid.Columns.GridColumn();
     this._fechafin = new DevExpress.XtraGrid.Columns.GridColumn();
     this._tiendalist = new DevExpress.XtraGrid.Columns.GridColumn();
     this._ctactelist = new DevExpress.XtraGrid.Columns.GridColumn();
     this._tcamb = new DevExpress.XtraGrid.Columns.GridColumn();
     this._incigv = new DevExpress.XtraGrid.Columns.GridColumn();
     this._visible = new DevExpress.XtraGrid.Columns.GridColumn();
     this._usuar = new DevExpress.XtraGrid.Columns.GridColumn();
     this._feact = new DevExpress.XtraGrid.Columns.GridColumn();
     this.repositoryItemTextEdit1 = new DevExpress.XtraEditors.Repository.RepositoryItemTextEdit();
     this.repositoryItemCheckEdit2 = new DevExpress.XtraEditors.Repository.RepositoryItemCheckEdit();
     this.repositoryItemTextEdit2 = new DevExpress.XtraEditors.Repository.RepositoryItemTextEdit();
     this.repositoryItemCheckEdit3 = new DevExpress.XtraEditors.Repository.RepositoryItemCheckEdit();
     ((System.ComponentModel.ISupportInitialize)(this.panelControl2)).BeginInit();
     this.panelControl2.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.barManager1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.pnl_01)).BeginInit();
     this.pnl_01.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.visible.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.incigv.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.pnlcontroldet)).BeginInit();
     this.pnlcontroldet.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.dgb_listaPrecios)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.groupControl1)).BeginInit();
     this.groupControl1.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.Mdi_dgv_precioslist)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.dgv_precioslist)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemTextEdit1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemCheckEdit2)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemTextEdit2)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemCheckEdit3)).BeginInit();
     this.SuspendLayout();
     //
     // articid
     //
     this.articid.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.articid.Location = new System.Drawing.Point(76, 4);
     this.articid.MaxLength = 10;
     this.articid.Name = "articid";
     this.articid.Size = new System.Drawing.Size(100, 20);
     this.articid.TabIndex = 11;
     this.articid.Text = "0000000000000";
     this.articid.KeyDown += new System.Windows.Forms.KeyEventHandler(this.articid_KeyDown);
     //
     // articname
     //
     this.articname.CharacterCasing = System.Windows.Forms.CharacterCasing.Upper;
     this.articname.Location = new System.Drawing.Point(177, 4);
     this.articname.Name = "articname";
     this.articname.Size = new System.Drawing.Size(300, 21);
     this.articname.TabIndex = 12;
     //
     // panelControl2
     //
     this.panelControl2.Appearance.BackColor = System.Drawing.Color.Teal;
     this.panelControl2.Appearance.ForeColor = System.Drawing.Color.White;
     this.panelControl2.Appearance.Options.UseBackColor = true;
     this.panelControl2.Appearance.Options.UseForeColor = true;
     this.panelControl2.BorderStyle = DevExpress.XtraEditors.Controls.BorderStyles.NoBorder;
     this.panelControl2.Controls.Add(this.label11);
     this.panelControl2.Location = new System.Drawing.Point(-12, 26);
     this.panelControl2.Name = "panelControl2";
     this.panelControl2.Size = new System.Drawing.Size(990, 26);
     this.panelControl2.TabIndex = 113;
     //
     // label11
     //
     this.label11.AutoSize = true;
     this.label11.BackColor = System.Drawing.Color.Transparent;
     this.label11.Font = new System.Drawing.Font("Microsoft Sans Serif", 14.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label11.ForeColor = System.Drawing.Color.White;
     this.label11.Location = new System.Drawing.Point(408, 2);
     this.label11.Name = "label11";
     this.label11.Size = new System.Drawing.Size(158, 24);
     this.label11.TabIndex = 5;
     this.label11.Text = "Lista de Precios";
     //
     // bar2
     //
     this.bar2.BarName = "Main menu";
     this.bar2.DockCol = 0;
     this.bar2.DockRow = 0;
     this.bar2.DockStyle = DevExpress.XtraBars.BarDockStyle.Top;
     this.bar2.FloatLocation = new System.Drawing.Point(214, 135);
     this.bar2.OptionsBar.MultiLine = true;
     this.bar2.OptionsBar.UseWholeRow = true;
     this.bar2.Text = "Main menu";
     //
     // barManager1
     //
     this.barManager1.Bars.AddRange(new DevExpress.XtraBars.Bar[] {
     this.bar1});
     this.barManager1.DockControls.Add(this.barDockControlTop);
     this.barManager1.DockControls.Add(this.barDockControlBottom);
     this.barManager1.DockControls.Add(this.barDockControlLeft);
     this.barManager1.DockControls.Add(this.barDockControlRight);
     this.barManager1.Form = this;
     this.barManager1.Items.AddRange(new DevExpress.XtraBars.BarItem[] {
     this.btn_nuevo,
     this.btn_editar,
     this.btn_grabar,
     this.btn_cancelar,
     this.btn_eliminar,
     this.btn_imprimir,
     this.btnLoad,
     this.btn_log,
     this.btnInicio,
     this.btnAnterior,
     this.btnSiguiente,
     this.btnUltimo,
     this.btn_salir,
     this.btn_clave});
     this.barManager1.MainMenu = this.bar1;
     this.barManager1.MaxItemId = 16;
     //
     // bar1
     //
     this.bar1.BarName = "Main menu";
     this.bar1.DockCol = 0;
     this.bar1.DockRow = 0;
     this.bar1.DockStyle = DevExpress.XtraBars.BarDockStyle.Top;
     this.bar1.FloatLocation = new System.Drawing.Point(214, 135);
     this.bar1.LinksPersistInfo.AddRange(new DevExpress.XtraBars.LinkPersistInfo[] {
     new DevExpress.XtraBars.LinkPersistInfo(DevExpress.XtraBars.BarLinkUserDefines.PaintStyle, this.btn_nuevo, DevExpress.XtraBars.BarItemPaintStyle.Standard),
     new DevExpress.XtraBars.LinkPersistInfo(this.btn_editar),
     new DevExpress.XtraBars.LinkPersistInfo(this.btn_cancelar),
     new DevExpress.XtraBars.LinkPersistInfo(this.btn_grabar),
     new DevExpress.XtraBars.LinkPersistInfo(this.btn_eliminar),
     new DevExpress.XtraBars.LinkPersistInfo(this.btn_imprimir),
     new DevExpress.XtraBars.LinkPersistInfo(this.btn_log),
     new DevExpress.XtraBars.LinkPersistInfo(this.btn_clave),
     new DevExpress.XtraBars.LinkPersistInfo(this.btn_salir)});
     this.bar1.OptionsBar.MultiLine = true;
     this.bar1.OptionsBar.UseWholeRow = true;
     this.bar1.Text = "Main menu";
     //
     // btn_nuevo
     //
     this.btn_nuevo.Caption = "btnNew";
     this.btn_nuevo.Glyph = ((System.Drawing.Image)(resources.GetObject("btn_nuevo.Glyph")));
     this.btn_nuevo.Id = 2;
     this.btn_nuevo.LargeGlyph = ((System.Drawing.Image)(resources.GetObject("btn_nuevo.LargeGlyph")));
     this.btn_nuevo.Name = "btn_nuevo";
     toolTipTitleItem1.Text = "Nuevo";
     superToolTip1.Items.Add(toolTipTitleItem1);
     this.btn_nuevo.SuperTip = superToolTip1;
     this.btn_nuevo.ItemClick += new DevExpress.XtraBars.ItemClickEventHandler(this.btn_nuevo_ItemClick);
     //
     // btn_editar
     //
     this.btn_editar.Caption = "btnEdit";
     this.btn_editar.Glyph = ((System.Drawing.Image)(resources.GetObject("btn_editar.Glyph")));
     this.btn_editar.Id = 3;
     this.btn_editar.LargeGlyph = ((System.Drawing.Image)(resources.GetObject("btn_editar.LargeGlyph")));
     this.btn_editar.Name = "btn_editar";
     toolTipTitleItem2.Text = "Editar";
     superToolTip2.Items.Add(toolTipTitleItem2);
     this.btn_editar.SuperTip = superToolTip2;
     this.btn_editar.ItemClick += new DevExpress.XtraBars.ItemClickEventHandler(this.btn_editar_ItemClick);
     //
     // btn_cancelar
     //
     this.btn_cancelar.Caption = "btnCancel";
     this.btn_cancelar.Glyph = ((System.Drawing.Image)(resources.GetObject("btn_cancelar.Glyph")));
     this.btn_cancelar.Id = 5;
     this.btn_cancelar.LargeGlyph = ((System.Drawing.Image)(resources.GetObject("btn_cancelar.LargeGlyph")));
     this.btn_cancelar.Name = "btn_cancelar";
     toolTipTitleItem3.Text = "Cancelar";
     superToolTip3.Items.Add(toolTipTitleItem3);
     this.btn_cancelar.SuperTip = superToolTip3;
     this.btn_cancelar.ItemClick += new DevExpress.XtraBars.ItemClickEventHandler(this.btn_cancelar_ItemClick);
     //
     // btn_grabar
     //
     this.btn_grabar.Caption = "btnSave";
     this.btn_grabar.Glyph = ((System.Drawing.Image)(resources.GetObject("btn_grabar.Glyph")));
     this.btn_grabar.Id = 4;
     this.btn_grabar.LargeGlyph = ((System.Drawing.Image)(resources.GetObject("btn_grabar.LargeGlyph")));
     this.btn_grabar.Name = "btn_grabar";
     toolTipTitleItem4.Text = "Guardar";
     superToolTip4.Items.Add(toolTipTitleItem4);
     this.btn_grabar.SuperTip = superToolTip4;
     this.btn_grabar.ItemClick += new DevExpress.XtraBars.ItemClickEventHandler(this.btn_grabar_ItemClick);
     //
     // btn_eliminar
     //
     this.btn_eliminar.Caption = "btnDelete";
     this.btn_eliminar.Glyph = ((System.Drawing.Image)(resources.GetObject("btn_eliminar.Glyph")));
     this.btn_eliminar.Id = 6;
     this.btn_eliminar.LargeGlyph = ((System.Drawing.Image)(resources.GetObject("btn_eliminar.LargeGlyph")));
     this.btn_eliminar.Name = "btn_eliminar";
     toolTipTitleItem5.Text = "Elimar Registro";
     superToolTip5.Items.Add(toolTipTitleItem5);
     this.btn_eliminar.SuperTip = superToolTip5;
     this.btn_eliminar.ItemClick += new DevExpress.XtraBars.ItemClickEventHandler(this.btn_eliminar_ItemClick);
     //
     // btn_imprimir
     //
     this.btn_imprimir.Caption = "btnPrint";
     this.btn_imprimir.Glyph = ((System.Drawing.Image)(resources.GetObject("btn_imprimir.Glyph")));
     this.btn_imprimir.Id = 7;
     this.btn_imprimir.LargeGlyph = ((System.Drawing.Image)(resources.GetObject("btn_imprimir.LargeGlyph")));
     this.btn_imprimir.Name = "btn_imprimir";
     toolTipTitleItem6.Text = "Imprimir";
     superToolTip6.Items.Add(toolTipTitleItem6);
     this.btn_imprimir.SuperTip = superToolTip6;
     //
     // btn_log
     //
     this.btn_log.Caption = "btnLog";
     this.btn_log.Glyph = ((System.Drawing.Image)(resources.GetObject("btn_log.Glyph")));
     this.btn_log.Id = 9;
     this.btn_log.LargeGlyph = ((System.Drawing.Image)(resources.GetObject("btn_log.LargeGlyph")));
     this.btn_log.Name = "btn_log";
     toolTipTitleItem7.Text = "Log";
     superToolTip7.Items.Add(toolTipTitleItem7);
     this.btn_log.SuperTip = superToolTip7;
     //
     // btn_clave
     //
     this.btn_clave.Caption = "btnLock";
     this.btn_clave.Glyph = global::BapFormulariosNet.Properties.Resources.btn_Lock20;
     this.btn_clave.Id = 15;
     this.btn_clave.Name = "btn_clave";
     this.btn_clave.ItemClick += new DevExpress.XtraBars.ItemClickEventHandler(this.btn_clave_ItemClick);
     //
     // btn_salir
     //
     this.btn_salir.Caption = "btnExit";
     this.btn_salir.Glyph = ((System.Drawing.Image)(resources.GetObject("btn_salir.Glyph")));
     this.btn_salir.Id = 14;
     this.btn_salir.LargeGlyph = ((System.Drawing.Image)(resources.GetObject("btn_salir.LargeGlyph")));
     this.btn_salir.Name = "btn_salir";
     toolTipTitleItem8.Text = "Salir";
     superToolTip8.Items.Add(toolTipTitleItem8);
     this.btn_salir.SuperTip = superToolTip8;
     this.btn_salir.ItemClick += new DevExpress.XtraBars.ItemClickEventHandler(this.btn_salir_ItemClick);
     //
     // barDockControlTop
     //
     this.barDockControlTop.CausesValidation = false;
     this.barDockControlTop.Dock = System.Windows.Forms.DockStyle.Top;
     this.barDockControlTop.Location = new System.Drawing.Point(0, 0);
     this.barDockControlTop.Size = new System.Drawing.Size(978, 28);
     //
     // barDockControlBottom
     //
     this.barDockControlBottom.CausesValidation = false;
     this.barDockControlBottom.Dock = System.Windows.Forms.DockStyle.Bottom;
     this.barDockControlBottom.Location = new System.Drawing.Point(0, 440);
     this.barDockControlBottom.Size = new System.Drawing.Size(978, 0);
     //
     // barDockControlLeft
     //
     this.barDockControlLeft.CausesValidation = false;
     this.barDockControlLeft.Dock = System.Windows.Forms.DockStyle.Left;
     this.barDockControlLeft.Location = new System.Drawing.Point(0, 28);
     this.barDockControlLeft.Size = new System.Drawing.Size(0, 412);
     //
     // barDockControlRight
     //
     this.barDockControlRight.CausesValidation = false;
     this.barDockControlRight.Dock = System.Windows.Forms.DockStyle.Right;
     this.barDockControlRight.Location = new System.Drawing.Point(978, 28);
     this.barDockControlRight.Size = new System.Drawing.Size(0, 412);
     //
     // btnLoad
     //
     this.btnLoad.Caption = "btnLoad";
     this.btnLoad.Glyph = ((System.Drawing.Image)(resources.GetObject("btnLoad.Glyph")));
     this.btnLoad.Id = 8;
     this.btnLoad.LargeGlyph = ((System.Drawing.Image)(resources.GetObject("btnLoad.LargeGlyph")));
     this.btnLoad.Name = "btnLoad";
     toolTipTitleItem9.Text = "Actualizar";
     superToolTip9.Items.Add(toolTipTitleItem9);
     this.btnLoad.SuperTip = superToolTip9;
     //
     // btnInicio
     //
     this.btnInicio.Caption = "btnInicio";
     this.btnInicio.Glyph = ((System.Drawing.Image)(resources.GetObject("btnInicio.Glyph")));
     this.btnInicio.Id = 10;
     this.btnInicio.LargeGlyph = ((System.Drawing.Image)(resources.GetObject("btnInicio.LargeGlyph")));
     this.btnInicio.Name = "btnInicio";
     toolTipTitleItem10.Text = "Primer Registro";
     superToolTip10.Items.Add(toolTipTitleItem10);
     this.btnInicio.SuperTip = superToolTip10;
     //
     // btnAnterior
     //
     this.btnAnterior.Caption = "btnAnterior";
     this.btnAnterior.Glyph = ((System.Drawing.Image)(resources.GetObject("btnAnterior.Glyph")));
     this.btnAnterior.Id = 11;
     this.btnAnterior.LargeGlyph = ((System.Drawing.Image)(resources.GetObject("btnAnterior.LargeGlyph")));
     this.btnAnterior.Name = "btnAnterior";
     toolTipTitleItem11.Text = "Anterior Registro";
     superToolTip11.Items.Add(toolTipTitleItem11);
     this.btnAnterior.SuperTip = superToolTip11;
     //
     // btnSiguiente
     //
     this.btnSiguiente.Caption = "btnSiguiente";
     this.btnSiguiente.Glyph = ((System.Drawing.Image)(resources.GetObject("btnSiguiente.Glyph")));
     this.btnSiguiente.Id = 12;
     this.btnSiguiente.LargeGlyph = ((System.Drawing.Image)(resources.GetObject("btnSiguiente.LargeGlyph")));
     this.btnSiguiente.Name = "btnSiguiente";
     toolTipTitleItem12.Text = "Siguiente Registro";
     superToolTip12.Items.Add(toolTipTitleItem12);
     this.btnSiguiente.SuperTip = superToolTip12;
     //
     // btnUltimo
     //
     this.btnUltimo.Caption = "btnUltimo";
     this.btnUltimo.Glyph = ((System.Drawing.Image)(resources.GetObject("btnUltimo.Glyph")));
     this.btnUltimo.Id = 13;
     this.btnUltimo.LargeGlyph = ((System.Drawing.Image)(resources.GetObject("btnUltimo.LargeGlyph")));
     this.btnUltimo.Name = "btnUltimo";
     toolTipTitleItem13.Text = "Ultimo Registro";
     superToolTip13.Items.Add(toolTipTitleItem13);
     this.btnUltimo.SuperTip = superToolTip13;
     //
     // pnl_01
     //
     this.pnl_01.Appearance.BackColor = System.Drawing.Color.Teal;
     this.pnl_01.Appearance.BackColor2 = System.Drawing.Color.White;
     this.pnl_01.Appearance.Font = new System.Drawing.Font("Tahoma", 9F, System.Drawing.FontStyle.Bold);
     this.pnl_01.Appearance.ForeColor = System.Drawing.Color.White;
     this.pnl_01.Appearance.Options.UseBackColor = true;
     this.pnl_01.Appearance.Options.UseFont = true;
     this.pnl_01.Appearance.Options.UseForeColor = true;
     this.pnl_01.BorderStyle = DevExpress.XtraEditors.Controls.BorderStyles.NoBorder;
     this.pnl_01.Controls.Add(this.fechdocfin);
     this.pnl_01.Controls.Add(this.visible);
     this.pnl_01.Controls.Add(this.fechdocini);
     this.pnl_01.Controls.Add(this.tcamb);
     this.pnl_01.Controls.Add(this.incigv);
     this.pnl_01.Controls.Add(this.labelControl7);
     this.pnl_01.Controls.Add(this.labelControl6);
     this.pnl_01.Controls.Add(this.labelControl5);
     this.pnl_01.Controls.Add(this.ctactelistname);
     this.pnl_01.Controls.Add(this.ctactelist);
     this.pnl_01.Controls.Add(this.labelControl4);
     this.pnl_01.Controls.Add(this.tiendalistname);
     this.pnl_01.Controls.Add(this.tiendalist);
     this.pnl_01.Controls.Add(this.listaprecid);
     this.pnl_01.Controls.Add(this.listaprecname);
     this.pnl_01.Controls.Add(this.labelControl3);
     this.pnl_01.Controls.Add(this.labelControl1);
     this.pnl_01.Location = new System.Drawing.Point(350, 58);
     this.pnl_01.Name = "pnl_01";
     this.pnl_01.Size = new System.Drawing.Size(626, 131);
     this.pnl_01.TabIndex = 120;
     //
     // fechdocfin
     //
     this.fechdocfin.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.fechdocfin.Format = System.Windows.Forms.DateTimePickerFormat.Short;
     this.fechdocfin.Location = new System.Drawing.Point(306, 79);
     this.fechdocfin.Name = "fechdocfin";
     this.fechdocfin.Size = new System.Drawing.Size(80, 20);
     this.fechdocfin.TabIndex = 125;
     //
     // visible
     //
     this.visible.Location = new System.Drawing.Point(300, 102);
     this.visible.Name = "visible";
     this.visible.Properties.Appearance.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold);
     this.visible.Properties.Appearance.ForeColor = System.Drawing.Color.Black;
     this.visible.Properties.Appearance.Options.UseFont = true;
     this.visible.Properties.Appearance.Options.UseForeColor = true;
     this.visible.Properties.Caption = "Visible ?";
     this.visible.Size = new System.Drawing.Size(71, 19);
     this.visible.TabIndex = 139;
     //
     // fechdocini
     //
     this.fechdocini.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.fechdocini.Format = System.Windows.Forms.DateTimePickerFormat.Short;
     this.fechdocini.Location = new System.Drawing.Point(109, 79);
     this.fechdocini.Name = "fechdocini";
     this.fechdocini.Size = new System.Drawing.Size(80, 20);
     this.fechdocini.TabIndex = 124;
     //
     // tcamb
     //
     this.tcamb.CharacterCasing = System.Windows.Forms.CharacterCasing.Upper;
     this.tcamb.Location = new System.Drawing.Point(109, 102);
     this.tcamb.Name = "tcamb";
     this.tcamb.Size = new System.Drawing.Size(80, 21);
     this.tcamb.TabIndex = 138;
     this.tcamb.TextAlign = System.Windows.Forms.HorizontalAlignment.Right;
     //
     // incigv
     //
     this.incigv.Location = new System.Drawing.Point(198, 102);
     this.incigv.Name = "incigv";
     this.incigv.Properties.Appearance.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold);
     this.incigv.Properties.Appearance.ForeColor = System.Drawing.Color.Black;
     this.incigv.Properties.Appearance.Options.UseFont = true;
     this.incigv.Properties.Appearance.Options.UseForeColor = true;
     this.incigv.Properties.Caption = "Inlcuye Igv";
     this.incigv.Size = new System.Drawing.Size(94, 19);
     this.incigv.TabIndex = 137;
     //
     // labelControl7
     //
     this.labelControl7.Appearance.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold);
     this.labelControl7.Location = new System.Drawing.Point(13, 105);
     this.labelControl7.Name = "labelControl7";
     this.labelControl7.Size = new System.Drawing.Size(83, 13);
     this.labelControl7.TabIndex = 136;
     this.labelControl7.Text = "» Tipo Cambio:";
     //
     // labelControl6
     //
     this.labelControl6.Appearance.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold);
     this.labelControl6.Appearance.ForeColor = System.Drawing.Color.Black;
     this.labelControl6.Location = new System.Drawing.Point(234, 82);
     this.labelControl6.Name = "labelControl6";
     this.labelControl6.Size = new System.Drawing.Size(66, 13);
     this.labelControl6.TabIndex = 135;
     this.labelControl6.Text = "» Fecha Fin:";
     //
     // labelControl5
     //
     this.labelControl5.Appearance.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold);
     this.labelControl5.Location = new System.Drawing.Point(13, 82);
     this.labelControl5.Name = "labelControl5";
     this.labelControl5.Size = new System.Drawing.Size(81, 13);
     this.labelControl5.TabIndex = 134;
     this.labelControl5.Text = "» Fecha Inicio:";
     //
     // ctactelistname
     //
     this.ctactelistname.CharacterCasing = System.Windows.Forms.CharacterCasing.Upper;
     this.ctactelistname.Location = new System.Drawing.Point(132, 53);
     this.ctactelistname.Name = "ctactelistname";
     this.ctactelistname.Size = new System.Drawing.Size(303, 21);
     this.ctactelistname.TabIndex = 133;
     //
     // ctactelist
     //
     this.ctactelist.AccessibleDescription = "";
     this.ctactelist.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.ctactelist.Location = new System.Drawing.Point(110, 53);
     this.ctactelist.MaxLength = 4;
     this.ctactelist.Name = "ctactelist";
     this.ctactelist.Size = new System.Drawing.Size(21, 20);
     this.ctactelist.TabIndex = 132;
     this.ctactelist.Text = "0";
     this.ctactelist.TextAlign = System.Windows.Forms.HorizontalAlignment.Center;
     this.ctactelist.KeyDown += new System.Windows.Forms.KeyEventHandler(this.ctactelist_KeyDown);
     //
     // labelControl4
     //
     this.labelControl4.Appearance.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold);
     this.labelControl4.Location = new System.Drawing.Point(11, 57);
     this.labelControl4.Name = "labelControl4";
     this.labelControl4.Size = new System.Drawing.Size(91, 13);
     this.labelControl4.TabIndex = 131;
     this.labelControl4.Text = "» Lista-Clientes:";
     //
     // tiendalistname
     //
     this.tiendalistname.CharacterCasing = System.Windows.Forms.CharacterCasing.Upper;
     this.tiendalistname.Location = new System.Drawing.Point(132, 30);
     this.tiendalistname.Name = "tiendalistname";
     this.tiendalistname.Size = new System.Drawing.Size(287, 21);
     this.tiendalistname.TabIndex = 130;
     //
     // tiendalist
     //
     this.tiendalist.AccessibleDescription = "";
     this.tiendalist.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.tiendalist.Location = new System.Drawing.Point(110, 30);
     this.tiendalist.MaxLength = 4;
     this.tiendalist.Name = "tiendalist";
     this.tiendalist.Size = new System.Drawing.Size(21, 20);
     this.tiendalist.TabIndex = 129;
     this.tiendalist.Text = "0";
     this.tiendalist.TextAlign = System.Windows.Forms.HorizontalAlignment.Center;
     this.tiendalist.KeyDown += new System.Windows.Forms.KeyEventHandler(this.tiendalist_KeyDown);
     //
     // listaprecid
     //
     this.listaprecid.AccessibleDescription = "";
     this.listaprecid.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.listaprecid.Location = new System.Drawing.Point(110, 6);
     this.listaprecid.MaxLength = 4;
     this.listaprecid.Name = "listaprecid";
     this.listaprecid.Size = new System.Drawing.Size(21, 20);
     this.listaprecid.TabIndex = 128;
     this.listaprecid.Text = "0";
     this.listaprecid.TextAlign = System.Windows.Forms.HorizontalAlignment.Center;
     //
     // listaprecname
     //
     this.listaprecname.CharacterCasing = System.Windows.Forms.CharacterCasing.Upper;
     this.listaprecname.Location = new System.Drawing.Point(132, 6);
     this.listaprecname.Name = "listaprecname";
     this.listaprecname.Size = new System.Drawing.Size(303, 21);
     this.listaprecname.TabIndex = 124;
     this.listaprecname.KeyDown += new System.Windows.Forms.KeyEventHandler(this.listaprecname_KeyDown);
     //
     // labelControl3
     //
     this.labelControl3.Appearance.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold);
     this.labelControl3.Location = new System.Drawing.Point(11, 32);
     this.labelControl3.Name = "labelControl3";
     this.labelControl3.Size = new System.Drawing.Size(90, 13);
     this.labelControl3.TabIndex = 123;
     this.labelControl3.Text = "» Lista-Tiendas:";
     //
     // labelControl1
     //
     this.labelControl1.Appearance.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold);
     this.labelControl1.Location = new System.Drawing.Point(11, 9);
     this.labelControl1.Name = "labelControl1";
     this.labelControl1.Size = new System.Drawing.Size(52, 13);
     this.labelControl1.TabIndex = 122;
     this.labelControl1.Text = "» Codigo:";
     //
     // pnlcontroldet
     //
     this.pnlcontroldet.Appearance.BackColor = System.Drawing.Color.Teal;
     this.pnlcontroldet.Appearance.BackColor2 = System.Drawing.Color.White;
     this.pnlcontroldet.Appearance.ForeColor = System.Drawing.Color.White;
     this.pnlcontroldet.Appearance.Options.UseBackColor = true;
     this.pnlcontroldet.Appearance.Options.UseForeColor = true;
     this.pnlcontroldet.BorderStyle = DevExpress.XtraEditors.Controls.BorderStyles.NoBorder;
     this.pnlcontroldet.Controls.Add(this.labelControl10);
     this.pnlcontroldet.Controls.Add(this.ExportCatalog);
     this.pnlcontroldet.Controls.Add(this.btn_importar);
     this.pnlcontroldet.Controls.Add(this.btn_exportar);
     this.pnlcontroldet.Controls.Add(this.btn_del);
     this.pnlcontroldet.Controls.Add(this.btn_add);
     this.pnlcontroldet.Controls.Add(this.btn_save);
     this.pnlcontroldet.Controls.Add(this.precunit2);
     this.pnlcontroldet.Controls.Add(this.precunit1);
     this.pnlcontroldet.Controls.Add(this.labelControl9);
     this.pnlcontroldet.Controls.Add(this.labelControl8);
     this.pnlcontroldet.Controls.Add(this.dgb_listaPrecios);
     this.pnlcontroldet.Controls.Add(this.labelControl2);
     this.pnlcontroldet.Controls.Add(this.articid);
     this.pnlcontroldet.Controls.Add(this.articname);
     this.pnlcontroldet.Location = new System.Drawing.Point(349, 193);
     this.pnlcontroldet.Name = "pnlcontroldet";
     this.pnlcontroldet.Size = new System.Drawing.Size(627, 245);
     this.pnlcontroldet.TabIndex = 121;
     //
     // labelControl10
     //
     this.labelControl10.Appearance.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold);
     this.labelControl10.Appearance.ForeColor = System.Drawing.Color.Black;
     this.labelControl10.Location = new System.Drawing.Point(547, 103);
     this.labelControl10.Name = "labelControl10";
     this.labelControl10.Size = new System.Drawing.Size(70, 13);
     this.labelControl10.TabIndex = 158;
     this.labelControl10.Text = "__________";
     //
     // ExportCatalog
     //
     this.ExportCatalog.Cursor = System.Windows.Forms.Cursors.Hand;
     this.ExportCatalog.Image = ((System.Drawing.Image)(resources.GetObject("ExportCatalog.Image")));
     this.ExportCatalog.ImageLocation = DevExpress.XtraEditors.ImageLocation.MiddleLeft;
     this.ExportCatalog.Location = new System.Drawing.Point(543, 78);
     this.ExportCatalog.Name = "ExportCatalog";
     this.ExportCatalog.Size = new System.Drawing.Size(74, 23);
     this.ExportCatalog.TabIndex = 157;
     this.ExportCatalog.Text = "Productos";
     this.ExportCatalog.ToolTip = "Exportar Productos";
     this.ExportCatalog.ToolTipIconType = DevExpress.Utils.ToolTipIconType.Information;
     this.ExportCatalog.Click += new System.EventHandler(this.ExportCatalog_Click);
     //
     // btn_importar
     //
     this.btn_importar.BackColor = System.Drawing.Color.Transparent;
     this.btn_importar.Cursor = System.Windows.Forms.Cursors.Hand;
     this.btn_importar.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F);
     this.btn_importar.ForeColor = System.Drawing.Color.Black;
     this.btn_importar.Image = global::BapFormulariosNet.Properties.Resources.go_import2;
     this.btn_importar.ImageAlign = System.Drawing.ContentAlignment.MiddleLeft;
     this.btn_importar.Location = new System.Drawing.Point(543, 187);
     this.btn_importar.Name = "btn_importar";
     this.btn_importar.Size = new System.Drawing.Size(81, 35);
     this.btn_importar.TabIndex = 155;
     this.btn_importar.Text = "&Importar";
     this.btn_importar.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
     this.btn_importar.UseVisualStyleBackColor = false;
     this.btn_importar.Click += new System.EventHandler(this.btn_importar_Click);
     //
     // btn_exportar
     //
     this.btn_exportar.BackColor = System.Drawing.Color.Transparent;
     this.btn_exportar.Cursor = System.Windows.Forms.Cursors.Hand;
     this.btn_exportar.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F);
     this.btn_exportar.ForeColor = System.Drawing.Color.Black;
     this.btn_exportar.Image = global::BapFormulariosNet.Properties.Resources.go_export;
     this.btn_exportar.ImageAlign = System.Drawing.ContentAlignment.MiddleLeft;
     this.btn_exportar.Location = new System.Drawing.Point(541, 146);
     this.btn_exportar.Name = "btn_exportar";
     this.btn_exportar.Size = new System.Drawing.Size(83, 35);
     this.btn_exportar.TabIndex = 156;
     this.btn_exportar.Text = "&Exportar";
     this.btn_exportar.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
     this.btn_exportar.UseVisualStyleBackColor = false;
     this.btn_exportar.Click += new System.EventHandler(this.btn_exportar_Click);
     //
     // btn_del
     //
     this.btn_del.Cursor = System.Windows.Forms.Cursors.Hand;
     this.btn_del.Image = ((System.Drawing.Image)(resources.GetObject("btn_del.Image")));
     this.btn_del.ImageLocation = DevExpress.XtraEditors.ImageLocation.MiddleLeft;
     this.btn_del.Location = new System.Drawing.Point(407, 52);
     this.btn_del.Name = "btn_del";
     this.btn_del.Size = new System.Drawing.Size(65, 23);
     this.btn_del.TabIndex = 144;
     this.btn_del.Text = "Eliminar";
     this.btn_del.ToolTip = "Eliminar";
     this.btn_del.ToolTipIconType = DevExpress.Utils.ToolTipIconType.Information;
     this.btn_del.Click += new System.EventHandler(this.btn_del_Click);
     //
     // btn_add
     //
     this.btn_add.Cursor = System.Windows.Forms.Cursors.Hand;
     this.btn_add.Image = ((System.Drawing.Image)(resources.GetObject("btn_add.Image")));
     this.btn_add.ImageLocation = DevExpress.XtraEditors.ImageLocation.MiddleLeft;
     this.btn_add.Location = new System.Drawing.Point(330, 52);
     this.btn_add.Name = "btn_add";
     this.btn_add.Size = new System.Drawing.Size(71, 23);
     this.btn_add.TabIndex = 143;
     this.btn_add.Text = "Adicionar";
     this.btn_add.ToolTip = "Adicionar";
     this.btn_add.ToolTipIconType = DevExpress.Utils.ToolTipIconType.Information;
     this.btn_add.Click += new System.EventHandler(this.btn_add_Click);
     //
     // btn_save
     //
     this.btn_save.Cursor = System.Windows.Forms.Cursors.Hand;
     this.btn_save.Image = ((System.Drawing.Image)(resources.GetObject("btn_save.Image")));
     this.btn_save.Location = new System.Drawing.Point(256, 52);
     this.btn_save.Name = "btn_save";
     this.btn_save.Size = new System.Drawing.Size(68, 23);
     this.btn_save.TabIndex = 154;
     this.btn_save.Text = "&Aceptar";
     this.btn_save.Click += new System.EventHandler(this.btn_save_Click);
     //
     // precunit2
     //
     this.precunit2.CharacterCasing = System.Windows.Forms.CharacterCasing.Upper;
     this.precunit2.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold);
     this.precunit2.Location = new System.Drawing.Point(166, 51);
     this.precunit2.Name = "precunit2";
     this.precunit2.Size = new System.Drawing.Size(80, 21);
     this.precunit2.TabIndex = 153;
     this.precunit2.Text = "00.000.00";
     this.precunit2.TextAlign = System.Windows.Forms.HorizontalAlignment.Right;
     //
     // precunit1
     //
     this.precunit1.CharacterCasing = System.Windows.Forms.CharacterCasing.Upper;
     this.precunit1.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold);
     this.precunit1.Location = new System.Drawing.Point(166, 28);
     this.precunit1.Name = "precunit1";
     this.precunit1.Size = new System.Drawing.Size(80, 21);
     this.precunit1.TabIndex = 152;
     this.precunit1.Text = "00.000.00";
     this.precunit1.TextAlign = System.Windows.Forms.HorizontalAlignment.Right;
     this.precunit1.KeyDown += new System.Windows.Forms.KeyEventHandler(this.precunit1_KeyDown);
     //
     // labelControl9
     //
     this.labelControl9.Appearance.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold);
     this.labelControl9.Location = new System.Drawing.Point(14, 56);
     this.labelControl9.Name = "labelControl9";
     this.labelControl9.Size = new System.Drawing.Size(122, 13);
     this.labelControl9.TabIndex = 151;
     this.labelControl9.Text = "» Precio Moneda US$:";
     //
     // labelControl8
     //
     this.labelControl8.Appearance.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold);
     this.labelControl8.Location = new System.Drawing.Point(14, 32);
     this.labelControl8.Name = "labelControl8";
     this.labelControl8.Size = new System.Drawing.Size(129, 13);
     this.labelControl8.TabIndex = 150;
     this.labelControl8.Text = "» Precio Moneda Local:";
     //
     // dgb_listaPrecios
     //
     this.dgb_listaPrecios.AllowUserToAddRows = false;
     this.dgb_listaPrecios.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.AutoSize;
     this.dgb_listaPrecios.Columns.AddRange(new System.Windows.Forms.DataGridViewColumn[] {
     this.@__listaprecid,
     this.codigo,
     this.denominacion,
     this._precunit1,
     this._precunit2,
     this.usuar,
     this.feact});
     this.dgb_listaPrecios.EnableHeadersVisualStyles = false;
     this.dgb_listaPrecios.Location = new System.Drawing.Point(4, 78);
     this.dgb_listaPrecios.Name = "dgb_listaPrecios";
     this.dgb_listaPrecios.ReadOnly = true;
     this.dgb_listaPrecios.RowHeadersVisible = false;
     dataGridViewCellStyle3.ForeColor = System.Drawing.Color.Black;
     this.dgb_listaPrecios.RowsDefaultCellStyle = dataGridViewCellStyle3;
     this.dgb_listaPrecios.Size = new System.Drawing.Size(536, 164);
     this.dgb_listaPrecios.TabIndex = 149;
     this.dgb_listaPrecios.CellClick += new System.Windows.Forms.DataGridViewCellEventHandler(this.dgb_listaPrecios_CellClick);
     this.dgb_listaPrecios.CellEnter += new System.Windows.Forms.DataGridViewCellEventHandler(this.dgb_listaPrecios_CellEnter);
     this.dgb_listaPrecios.KeyUp += new System.Windows.Forms.KeyEventHandler(this.dgb_listaPrecios_KeyUp);
     //
     // __listaprecid
     //
     this.@__listaprecid.DataPropertyName = "listaprecid";
     this.@__listaprecid.HeaderText = "listaprecid";
     this.@__listaprecid.Name = "__listaprecid";
     this.@__listaprecid.ReadOnly = true;
     this.@__listaprecid.Visible = false;
     //
     // codigo
     //
     this.codigo.DataPropertyName = "codigo";
     this.codigo.HeaderText = "Codigo";
     this.codigo.Name = "codigo";
     this.codigo.ReadOnly = true;
     this.codigo.Width = 80;
     //
     // denominacion
     //
     this.denominacion.DataPropertyName = "denominacion";
     this.denominacion.HeaderText = "Denominación";
     this.denominacion.Name = "denominacion";
     this.denominacion.ReadOnly = true;
     this.denominacion.Width = 300;
     //
     // _precunit1
     //
     this._precunit1.DataPropertyName = "precunit1";
     dataGridViewCellStyle1.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleRight;
     dataGridViewCellStyle1.Format = "N2";
     dataGridViewCellStyle1.NullValue = null;
     this._precunit1.DefaultCellStyle = dataGridViewCellStyle1;
     this._precunit1.HeaderText = "S/.";
     this._precunit1.Name = "_precunit1";
     this._precunit1.ReadOnly = true;
     this._precunit1.Width = 70;
     //
     // _precunit2
     //
     this._precunit2.DataPropertyName = "precunit2";
     dataGridViewCellStyle2.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleRight;
     dataGridViewCellStyle2.Format = "N2";
     dataGridViewCellStyle2.NullValue = null;
     this._precunit2.DefaultCellStyle = dataGridViewCellStyle2;
     this._precunit2.HeaderText = "US$";
     this._precunit2.Name = "_precunit2";
     this._precunit2.ReadOnly = true;
     this._precunit2.Width = 70;
     //
     // usuar
     //
     this.usuar.DataPropertyName = "usuar";
     this.usuar.HeaderText = "usuar";
     this.usuar.Name = "usuar";
     this.usuar.ReadOnly = true;
     this.usuar.Visible = false;
     //
     // feact
     //
     this.feact.DataPropertyName = "feact";
     this.feact.HeaderText = "feact";
     this.feact.Name = "feact";
     this.feact.ReadOnly = true;
     this.feact.Visible = false;
     //
     // labelControl2
     //
     this.labelControl2.Appearance.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold);
     this.labelControl2.Location = new System.Drawing.Point(13, 7);
     this.labelControl2.Name = "labelControl2";
     this.labelControl2.Size = new System.Drawing.Size(58, 13);
     this.labelControl2.TabIndex = 123;
     this.labelControl2.Text = "» Articulo:";
     //
     // groupControl1
     //
     this.groupControl1.Controls.Add(this.Mdi_dgv_precioslist);
     this.groupControl1.Location = new System.Drawing.Point(2, 56);
     this.groupControl1.Name = "groupControl1";
     this.groupControl1.Size = new System.Drawing.Size(342, 382);
     this.groupControl1.TabIndex = 142;
     this.groupControl1.Text = "Lista de Precios";
     //
     // Mdi_dgv_precioslist
     //
     this.Mdi_dgv_precioslist.Location = new System.Drawing.Point(6, 24);
     this.Mdi_dgv_precioslist.MainView = this.dgv_precioslist;
     this.Mdi_dgv_precioslist.Name = "Mdi_dgv_precioslist";
     this.Mdi_dgv_precioslist.RepositoryItems.AddRange(new DevExpress.XtraEditors.Repository.RepositoryItem[] {
     this.repositoryItemTextEdit1,
     this.repositoryItemCheckEdit2,
     this.repositoryItemTextEdit2,
     this.repositoryItemCheckEdit3});
     this.Mdi_dgv_precioslist.Size = new System.Drawing.Size(329, 353);
     this.Mdi_dgv_precioslist.TabIndex = 143;
     this.Mdi_dgv_precioslist.ViewCollection.AddRange(new DevExpress.XtraGrid.Views.Base.BaseView[] {
     this.dgv_precioslist});
     this.Mdi_dgv_precioslist.KeyUp += new System.Windows.Forms.KeyEventHandler(this.Mdi_dgv_tiendalist_KeyUp);
     //
     // dgv_precioslist
     //
     this.dgv_precioslist.Appearance.ColumnFilterButton.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(136)))), ((int)(((byte)(192)))), ((int)(((byte)(184)))));
     this.dgv_precioslist.Appearance.ColumnFilterButton.BackColor2 = System.Drawing.Color.FromArgb(((int)(((byte)(156)))), ((int)(((byte)(212)))), ((int)(((byte)(204)))));
     this.dgv_precioslist.Appearance.ColumnFilterButton.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(136)))), ((int)(((byte)(192)))), ((int)(((byte)(184)))));
     this.dgv_precioslist.Appearance.ColumnFilterButton.ForeColor = System.Drawing.Color.Gray;
     this.dgv_precioslist.Appearance.ColumnFilterButton.Options.UseBackColor = true;
     this.dgv_precioslist.Appearance.ColumnFilterButton.Options.UseBorderColor = true;
     this.dgv_precioslist.Appearance.ColumnFilterButton.Options.UseForeColor = true;
     this.dgv_precioslist.Appearance.ColumnFilterButtonActive.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(156)))), ((int)(((byte)(212)))), ((int)(((byte)(204)))));
     this.dgv_precioslist.Appearance.ColumnFilterButtonActive.BackColor2 = System.Drawing.Color.FromArgb(((int)(((byte)(181)))), ((int)(((byte)(223)))), ((int)(((byte)(217)))));
     this.dgv_precioslist.Appearance.ColumnFilterButtonActive.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(156)))), ((int)(((byte)(212)))), ((int)(((byte)(204)))));
     this.dgv_precioslist.Appearance.ColumnFilterButtonActive.ForeColor = System.Drawing.Color.Blue;
     this.dgv_precioslist.Appearance.ColumnFilterButtonActive.Options.UseBackColor = true;
     this.dgv_precioslist.Appearance.ColumnFilterButtonActive.Options.UseBorderColor = true;
     this.dgv_precioslist.Appearance.ColumnFilterButtonActive.Options.UseForeColor = true;
     this.dgv_precioslist.Appearance.Empty.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(156)))), ((int)(((byte)(212)))), ((int)(((byte)(204)))));
     this.dgv_precioslist.Appearance.Empty.Options.UseBackColor = true;
     this.dgv_precioslist.Appearance.FilterCloseButton.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(212)))), ((int)(((byte)(208)))), ((int)(((byte)(200)))));
     this.dgv_precioslist.Appearance.FilterCloseButton.BackColor2 = System.Drawing.Color.FromArgb(((int)(((byte)(104)))), ((int)(((byte)(138)))), ((int)(((byte)(131)))));
     this.dgv_precioslist.Appearance.FilterCloseButton.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(212)))), ((int)(((byte)(208)))), ((int)(((byte)(200)))));
     this.dgv_precioslist.Appearance.FilterCloseButton.ForeColor = System.Drawing.Color.Black;
     this.dgv_precioslist.Appearance.FilterCloseButton.GradientMode = System.Drawing.Drawing2D.LinearGradientMode.ForwardDiagonal;
     this.dgv_precioslist.Appearance.FilterCloseButton.Options.UseBackColor = true;
     this.dgv_precioslist.Appearance.FilterCloseButton.Options.UseBorderColor = true;
     this.dgv_precioslist.Appearance.FilterCloseButton.Options.UseForeColor = true;
     this.dgv_precioslist.Appearance.FilterPanel.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(14)))), ((int)(((byte)(48)))), ((int)(((byte)(41)))));
     this.dgv_precioslist.Appearance.FilterPanel.BackColor2 = System.Drawing.Color.FromArgb(((int)(((byte)(212)))), ((int)(((byte)(208)))), ((int)(((byte)(200)))));
     this.dgv_precioslist.Appearance.FilterPanel.ForeColor = System.Drawing.Color.White;
     this.dgv_precioslist.Appearance.FilterPanel.GradientMode = System.Drawing.Drawing2D.LinearGradientMode.ForwardDiagonal;
     this.dgv_precioslist.Appearance.FilterPanel.Options.UseBackColor = true;
     this.dgv_precioslist.Appearance.FilterPanel.Options.UseForeColor = true;
     this.dgv_precioslist.Appearance.FixedLine.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(2)))), ((int)(((byte)(74)))), ((int)(((byte)(66)))));
     this.dgv_precioslist.Appearance.FixedLine.Options.UseBackColor = true;
     this.dgv_precioslist.Appearance.FocusedCell.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(200)))), ((int)(((byte)(224)))), ((int)(((byte)(216)))));
     this.dgv_precioslist.Appearance.FocusedCell.ForeColor = System.Drawing.Color.Black;
     this.dgv_precioslist.Appearance.FocusedCell.Options.UseBackColor = true;
     this.dgv_precioslist.Appearance.FocusedCell.Options.UseForeColor = true;
     this.dgv_precioslist.Appearance.FocusedRow.BackColor = System.Drawing.Color.Navy;
     this.dgv_precioslist.Appearance.FocusedRow.BackColor2 = System.Drawing.Color.FromArgb(((int)(((byte)(50)))), ((int)(((byte)(50)))), ((int)(((byte)(178)))));
     this.dgv_precioslist.Appearance.FocusedRow.ForeColor = System.Drawing.Color.White;
     this.dgv_precioslist.Appearance.FocusedRow.Options.UseBackColor = true;
     this.dgv_precioslist.Appearance.FocusedRow.Options.UseForeColor = true;
     this.dgv_precioslist.Appearance.FooterPanel.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(136)))), ((int)(((byte)(192)))), ((int)(((byte)(184)))));
     this.dgv_precioslist.Appearance.FooterPanel.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(136)))), ((int)(((byte)(192)))), ((int)(((byte)(184)))));
     this.dgv_precioslist.Appearance.FooterPanel.ForeColor = System.Drawing.Color.Black;
     this.dgv_precioslist.Appearance.FooterPanel.Options.UseBackColor = true;
     this.dgv_precioslist.Appearance.FooterPanel.Options.UseBorderColor = true;
     this.dgv_precioslist.Appearance.FooterPanel.Options.UseForeColor = true;
     this.dgv_precioslist.Appearance.GroupButton.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(136)))), ((int)(((byte)(192)))), ((int)(((byte)(184)))));
     this.dgv_precioslist.Appearance.GroupButton.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(136)))), ((int)(((byte)(192)))), ((int)(((byte)(184)))));
     this.dgv_precioslist.Appearance.GroupButton.ForeColor = System.Drawing.Color.Black;
     this.dgv_precioslist.Appearance.GroupButton.Options.UseBackColor = true;
     this.dgv_precioslist.Appearance.GroupButton.Options.UseBorderColor = true;
     this.dgv_precioslist.Appearance.GroupButton.Options.UseForeColor = true;
     this.dgv_precioslist.Appearance.GroupFooter.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(146)))), ((int)(((byte)(202)))), ((int)(((byte)(194)))));
     this.dgv_precioslist.Appearance.GroupFooter.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(146)))), ((int)(((byte)(202)))), ((int)(((byte)(194)))));
     this.dgv_precioslist.Appearance.GroupFooter.ForeColor = System.Drawing.Color.Black;
     this.dgv_precioslist.Appearance.GroupFooter.Options.UseBackColor = true;
     this.dgv_precioslist.Appearance.GroupFooter.Options.UseBorderColor = true;
     this.dgv_precioslist.Appearance.GroupFooter.Options.UseForeColor = true;
     this.dgv_precioslist.Appearance.GroupPanel.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(44)))), ((int)(((byte)(78)))), ((int)(((byte)(71)))));
     this.dgv_precioslist.Appearance.GroupPanel.BackColor2 = System.Drawing.Color.White;
     this.dgv_precioslist.Appearance.GroupPanel.Font = new System.Drawing.Font("Tahoma", 8F, System.Drawing.FontStyle.Bold);
     this.dgv_precioslist.Appearance.GroupPanel.ForeColor = System.Drawing.Color.White;
     this.dgv_precioslist.Appearance.GroupPanel.Options.UseBackColor = true;
     this.dgv_precioslist.Appearance.GroupPanel.Options.UseFont = true;
     this.dgv_precioslist.Appearance.GroupPanel.Options.UseForeColor = true;
     this.dgv_precioslist.Appearance.GroupRow.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(72)))), ((int)(((byte)(144)))), ((int)(((byte)(136)))));
     this.dgv_precioslist.Appearance.GroupRow.ForeColor = System.Drawing.Color.Silver;
     this.dgv_precioslist.Appearance.GroupRow.Options.UseBackColor = true;
     this.dgv_precioslist.Appearance.GroupRow.Options.UseForeColor = true;
     this.dgv_precioslist.Appearance.HeaderPanel.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(136)))), ((int)(((byte)(192)))), ((int)(((byte)(184)))));
     this.dgv_precioslist.Appearance.HeaderPanel.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(136)))), ((int)(((byte)(192)))), ((int)(((byte)(184)))));
     this.dgv_precioslist.Appearance.HeaderPanel.Font = new System.Drawing.Font("Tahoma", 8F, System.Drawing.FontStyle.Bold);
     this.dgv_precioslist.Appearance.HeaderPanel.ForeColor = System.Drawing.Color.Black;
     this.dgv_precioslist.Appearance.HeaderPanel.Options.UseBackColor = true;
     this.dgv_precioslist.Appearance.HeaderPanel.Options.UseBorderColor = true;
     this.dgv_precioslist.Appearance.HeaderPanel.Options.UseFont = true;
     this.dgv_precioslist.Appearance.HeaderPanel.Options.UseForeColor = true;
     this.dgv_precioslist.Appearance.HideSelectionRow.BackColor = System.Drawing.Color.Gray;
     this.dgv_precioslist.Appearance.HideSelectionRow.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(212)))), ((int)(((byte)(208)))), ((int)(((byte)(200)))));
     this.dgv_precioslist.Appearance.HideSelectionRow.Options.UseBackColor = true;
     this.dgv_precioslist.Appearance.HideSelectionRow.Options.UseForeColor = true;
     this.dgv_precioslist.Appearance.HorzLine.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(136)))), ((int)(((byte)(192)))), ((int)(((byte)(184)))));
     this.dgv_precioslist.Appearance.HorzLine.Options.UseBackColor = true;
     this.dgv_precioslist.Appearance.Preview.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(196)))), ((int)(((byte)(252)))), ((int)(((byte)(244)))));
     this.dgv_precioslist.Appearance.Preview.BackColor2 = System.Drawing.Color.White;
     this.dgv_precioslist.Appearance.Preview.ForeColor = System.Drawing.Color.Navy;
     this.dgv_precioslist.Appearance.Preview.Options.UseBackColor = true;
     this.dgv_precioslist.Appearance.Preview.Options.UseForeColor = true;
     this.dgv_precioslist.Appearance.Row.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(200)))), ((int)(((byte)(224)))), ((int)(((byte)(216)))));
     this.dgv_precioslist.Appearance.Row.ForeColor = System.Drawing.Color.Black;
     this.dgv_precioslist.Appearance.Row.Options.UseBackColor = true;
     this.dgv_precioslist.Appearance.Row.Options.UseForeColor = true;
     this.dgv_precioslist.Appearance.RowSeparator.BackColor = System.Drawing.Color.White;
     this.dgv_precioslist.Appearance.RowSeparator.BackColor2 = System.Drawing.Color.FromArgb(((int)(((byte)(156)))), ((int)(((byte)(212)))), ((int)(((byte)(204)))));
     this.dgv_precioslist.Appearance.RowSeparator.Options.UseBackColor = true;
     this.dgv_precioslist.Appearance.SelectedRow.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(10)))), ((int)(((byte)(10)))), ((int)(((byte)(138)))));
     this.dgv_precioslist.Appearance.SelectedRow.ForeColor = System.Drawing.Color.White;
     this.dgv_precioslist.Appearance.SelectedRow.Options.UseBackColor = true;
     this.dgv_precioslist.Appearance.SelectedRow.Options.UseForeColor = true;
     this.dgv_precioslist.Appearance.TopNewRow.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(215)))), ((int)(((byte)(232)))), ((int)(((byte)(226)))));
     this.dgv_precioslist.Appearance.TopNewRow.Options.UseBackColor = true;
     this.dgv_precioslist.Appearance.VertLine.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(136)))), ((int)(((byte)(192)))), ((int)(((byte)(184)))));
     this.dgv_precioslist.Appearance.VertLine.Options.UseBackColor = true;
     this.dgv_precioslist.Columns.AddRange(new DevExpress.XtraGrid.Columns.GridColumn[] {
     this._listaprecid,
     this._listaprecname,
     this._fechaini,
     this._fechafin,
     this._tiendalist,
     this._ctactelist,
     this._tcamb,
     this._incigv,
     this._visible,
     this._usuar,
     this._feact});
     styleFormatCondition1.Appearance.BackColor = System.Drawing.Color.Teal;
     styleFormatCondition1.Appearance.BackColor2 = System.Drawing.Color.FromArgb(((int)(((byte)(224)))), ((int)(((byte)(224)))), ((int)(((byte)(224)))));
     styleFormatCondition1.Appearance.Options.UseBackColor = true;
     styleFormatCondition1.ApplyToRow = true;
     styleFormatCondition1.Condition = DevExpress.XtraGrid.FormatConditionEnum.Expression;
     styleFormatCondition1.Expression = "Len(Trim([conceptoid])) == 2";
     this.dgv_precioslist.FormatConditions.AddRange(new DevExpress.XtraGrid.StyleFormatCondition[] {
     styleFormatCondition1});
     this.dgv_precioslist.GridControl = this.Mdi_dgv_precioslist;
     this.dgv_precioslist.Name = "dgv_precioslist";
     this.dgv_precioslist.OptionsSelection.MultiSelect = true;
     this.dgv_precioslist.OptionsSelection.MultiSelectMode = DevExpress.XtraGrid.Views.Grid.GridMultiSelectMode.CellSelect;
     this.dgv_precioslist.OptionsView.ShowGroupPanel = false;
     this.dgv_precioslist.PaintStyleName = "Web";
     this.dgv_precioslist.RowCellClick += new DevExpress.XtraGrid.Views.Grid.RowCellClickEventHandler(this.dgv_tiendalist_RowCellClick);
     //
     // _listaprecid
     //
     this._listaprecid.Caption = "ID";
     this._listaprecid.FieldName = "listaprecid";
     this._listaprecid.Name = "_listaprecid";
     this._listaprecid.OptionsColumn.AllowEdit = false;
     this._listaprecid.Visible = true;
     this._listaprecid.VisibleIndex = 0;
     this._listaprecid.Width = 39;
     //
     // _listaprecname
     //
     this._listaprecname.Caption = "Denominación";
     this._listaprecname.FieldName = "listaprecname";
     this._listaprecname.Name = "_listaprecname";
     this._listaprecname.OptionsColumn.AllowEdit = false;
     this._listaprecname.Visible = true;
     this._listaprecname.VisibleIndex = 1;
     this._listaprecname.Width = 152;
     //
     // _fechaini
     //
     this._fechaini.Caption = "fechaini";
     this._fechaini.FieldName = "fechaini";
     this._fechaini.Name = "_fechaini";
     //
     // _fechafin
     //
     this._fechafin.Caption = "fechafin";
     this._fechafin.FieldName = "fechafin";
     this._fechafin.Name = "_fechafin";
     //
     // _tiendalist
     //
     this._tiendalist.Caption = "tiendalist";
     this._tiendalist.FieldName = "tiendalist";
     this._tiendalist.Name = "_tiendalist";
     //
     // _ctactelist
     //
     this._ctactelist.Caption = "ctactelist";
     this._ctactelist.FieldName = "ctactelist";
     this._ctactelist.Name = "_ctactelist";
     //
     // _tcamb
     //
     this._tcamb.Caption = "tcamb";
     this._tcamb.FieldName = "tcamb";
     this._tcamb.Name = "_tcamb";
     //
     // _incigv
     //
     this._incigv.Caption = "incigv";
     this._incigv.FieldName = "incigv";
     this._incigv.Name = "_incigv";
     //
     // _visible
     //
     this._visible.Caption = "visible";
     this._visible.FieldName = "visible";
     this._visible.Name = "_visible";
     //
     // _usuar
     //
     this._usuar.Caption = "usuar";
     this._usuar.FieldName = "usuar";
     this._usuar.Name = "_usuar";
     //
     // _feact
     //
     this._feact.Caption = "feact";
     this._feact.FieldName = "feact";
     this._feact.Name = "_feact";
     //
     // repositoryItemTextEdit1
     //
     this.repositoryItemTextEdit1.AutoHeight = false;
     this.repositoryItemTextEdit1.DisplayFormat.FormatString = "###,##0.0000";
     this.repositoryItemTextEdit1.DisplayFormat.FormatType = DevExpress.Utils.FormatType.Numeric;
     this.repositoryItemTextEdit1.EditFormat.FormatString = "###,##0.0000";
     this.repositoryItemTextEdit1.EditFormat.FormatType = DevExpress.Utils.FormatType.Numeric;
     this.repositoryItemTextEdit1.Mask.EditMask = "###,##0.0000";
     this.repositoryItemTextEdit1.Mask.MaskType = DevExpress.XtraEditors.Mask.MaskType.Numeric;
     this.repositoryItemTextEdit1.Name = "repositoryItemTextEdit1";
     //
     // repositoryItemCheckEdit2
     //
     this.repositoryItemCheckEdit2.AutoHeight = false;
     this.repositoryItemCheckEdit2.Caption = "Check";
     this.repositoryItemCheckEdit2.Name = "repositoryItemCheckEdit2";
     //
     // repositoryItemTextEdit2
     //
     this.repositoryItemTextEdit2.AutoHeight = false;
     this.repositoryItemTextEdit2.Name = "repositoryItemTextEdit2";
     this.repositoryItemTextEdit2.ReadOnly = true;
     //
     // repositoryItemCheckEdit3
     //
     this.repositoryItemCheckEdit3.AutoHeight = false;
     this.repositoryItemCheckEdit3.Caption = "Check";
     this.repositoryItemCheckEdit3.Name = "repositoryItemCheckEdit3";
     //
     // Frm_lista_precios
     //
     this.Appearance.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(217)))), ((int)(((byte)(218)))), ((int)(((byte)(224)))));
     this.Appearance.Options.UseBackColor = true;
     this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
     this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
     this.AutoSizeMode = System.Windows.Forms.AutoSizeMode.GrowAndShrink;
     this.ClientSize = new System.Drawing.Size(978, 440);
     this.Controls.Add(this.groupControl1);
     this.Controls.Add(this.pnlcontroldet);
     this.Controls.Add(this.pnl_01);
     this.Controls.Add(this.panelControl2);
     this.Controls.Add(this.barDockControlLeft);
     this.Controls.Add(this.barDockControlRight);
     this.Controls.Add(this.barDockControlBottom);
     this.Controls.Add(this.barDockControlTop);
     this.DoubleBuffered = true;
     this.Icon = ((System.Drawing.Icon)(resources.GetObject("$this.Icon")));
     this.KeyPreview = true;
     this.MaximizeBox = false;
     this.Name = "Frm_lista_precios";
     this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen;
     this.Text = "» Lista de Precios";
     this.Load += new System.EventHandler(this.Frm_articulo_tiendalist_Load);
     this.KeyDown += new System.Windows.Forms.KeyEventHandler(this.Frm_articulo_tiendalist_KeyDown);
     ((System.ComponentModel.ISupportInitialize)(this.panelControl2)).EndInit();
     this.panelControl2.ResumeLayout(false);
     this.panelControl2.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(this.barManager1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.pnl_01)).EndInit();
     this.pnl_01.ResumeLayout(false);
     this.pnl_01.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(this.visible.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.incigv.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.pnlcontroldet)).EndInit();
     this.pnlcontroldet.ResumeLayout(false);
     this.pnlcontroldet.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(this.dgb_listaPrecios)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.groupControl1)).EndInit();
     this.groupControl1.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.Mdi_dgv_precioslist)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.dgv_precioslist)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemTextEdit1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemCheckEdit2)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemTextEdit2)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemCheckEdit3)).EndInit();
     this.ResumeLayout(false);
 }
Пример #49
0
 /// <summary>
 /// Required method for Designer support - do not modify
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     this.groupOverTime    = new DevExpress.XtraEditors.GroupControl();
     this.btnViewAll       = new DevExpress.XtraEditors.SimpleButton();
     this.groupControl1    = new DevExpress.XtraEditors.GroupControl();
     this.prevToMonth      = new DevExpress.XtraEditors.ImageComboBoxEdit();
     this.prevFromMonth    = new DevExpress.XtraEditors.ImageComboBoxEdit();
     this.btnPrevGo        = new DevExpress.XtraEditors.SimpleButton();
     this.label5           = new System.Windows.Forms.Label();
     this.label4           = new System.Windows.Forms.Label();
     this.prevToYear       = new DevExpress.XtraEditors.ImageComboBoxEdit();
     this.prevFromYear     = new DevExpress.XtraEditors.ImageComboBoxEdit();
     this.cmbBranch        = new DevExpress.XtraEditors.ImageComboBoxEdit();
     this.label25          = new System.Windows.Forms.Label();
     this.OvertimeStatus   = new DevExpress.XtraEditors.ImageComboBoxEdit();
     this.label151         = new System.Windows.Forms.Label();
     this.gridOverTime     = new DevExpress.XtraGrid.GridControl();
     this.gridViewOverTime = new DevExpress.XtraGrid.Views.Grid.GridView();
     this.gridColumn69     = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn62     = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn63     = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn64     = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn65     = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn5      = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn54     = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn1      = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn2      = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn3      = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn4      = new DevExpress.XtraGrid.Columns.GridColumn();
     this.btnApprove       = new DevExpress.XtraEditors.SimpleButton();
     this.btnReject        = new DevExpress.XtraEditors.SimpleButton();
     this.btnClear         = new DevExpress.XtraEditors.SimpleButton();
     ((System.ComponentModel.ISupportInitialize)(this.groupOverTime)).BeginInit();
     this.groupOverTime.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.groupControl1)).BeginInit();
     this.groupControl1.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.prevToMonth.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.prevFromMonth.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.prevToYear.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.prevFromYear.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.cmbBranch.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.OvertimeStatus.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridOverTime)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridViewOverTime)).BeginInit();
     this.SuspendLayout();
     //
     // groupOverTime
     //
     this.groupOverTime.Appearance.BackColor            = System.Drawing.SystemColors.Control;
     this.groupOverTime.Appearance.Options.UseBackColor = true;
     this.groupOverTime.Controls.Add(this.btnClear);
     this.groupOverTime.Controls.Add(this.btnViewAll);
     this.groupOverTime.Controls.Add(this.groupControl1);
     this.groupOverTime.Controls.Add(this.cmbBranch);
     this.groupOverTime.Controls.Add(this.label25);
     this.groupOverTime.Controls.Add(this.OvertimeStatus);
     this.groupOverTime.Controls.Add(this.label151);
     this.groupOverTime.Controls.Add(this.gridOverTime);
     this.groupOverTime.Controls.Add(this.btnApprove);
     this.groupOverTime.Controls.Add(this.btnReject);
     this.groupOverTime.Dock              = System.Windows.Forms.DockStyle.Fill;
     this.groupOverTime.Location          = new System.Drawing.Point(0, 0);
     this.groupOverTime.LookAndFeel.Style = DevExpress.LookAndFeel.LookAndFeelStyle.Office2003;
     this.groupOverTime.LookAndFeel.UseDefaultLookAndFeel = false;
     this.groupOverTime.Name     = "groupOverTime";
     this.groupOverTime.Size     = new System.Drawing.Size(992, 568);
     this.groupOverTime.TabIndex = 27;
     this.groupOverTime.Text     = "OverTime";
     //
     // btnViewAll
     //
     this.btnViewAll.Appearance.Font            = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.btnViewAll.Appearance.Options.UseFont = true;
     this.btnViewAll.ButtonStyle = DevExpress.XtraEditors.Controls.BorderStyles.Simple;
     this.btnViewAll.Location    = new System.Drawing.Point(464, 88);
     this.btnViewAll.Name        = "btnViewAll";
     this.btnViewAll.Size        = new System.Drawing.Size(72, 20);
     this.btnViewAll.TabIndex    = 182;
     this.btnViewAll.Text        = "View All";
     this.btnViewAll.Click      += new System.EventHandler(this.btnViewAll_Click);
     //
     // groupControl1
     //
     this.groupControl1.Controls.Add(this.prevToMonth);
     this.groupControl1.Controls.Add(this.prevFromMonth);
     this.groupControl1.Controls.Add(this.btnPrevGo);
     this.groupControl1.Controls.Add(this.label5);
     this.groupControl1.Controls.Add(this.label4);
     this.groupControl1.Controls.Add(this.prevToYear);
     this.groupControl1.Controls.Add(this.prevFromYear);
     this.groupControl1.Location = new System.Drawing.Point(16, 32);
     this.groupControl1.LookAndFeel.UseDefaultLookAndFeel = false;
     this.groupControl1.Name     = "groupControl1";
     this.groupControl1.Size     = new System.Drawing.Size(560, 48);
     this.groupControl1.TabIndex = 181;
     //
     // prevToMonth
     //
     this.prevToMonth.Location = new System.Drawing.Point(272, 16);
     this.prevToMonth.Name     = "prevToMonth";
     this.prevToMonth.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
         new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)
     });
     this.prevToMonth.Properties.Items.AddRange(new DevExpress.XtraEditors.Controls.ImageComboBoxItem[] {
         new DevExpress.XtraEditors.Controls.ImageComboBoxItem("January", 1, -1),
         new DevExpress.XtraEditors.Controls.ImageComboBoxItem("February", 2, -1),
         new DevExpress.XtraEditors.Controls.ImageComboBoxItem("March", 3, -1),
         new DevExpress.XtraEditors.Controls.ImageComboBoxItem("April", 4, -1),
         new DevExpress.XtraEditors.Controls.ImageComboBoxItem("May", 5, -1),
         new DevExpress.XtraEditors.Controls.ImageComboBoxItem("June", 6, -1),
         new DevExpress.XtraEditors.Controls.ImageComboBoxItem("July", 7, -1),
         new DevExpress.XtraEditors.Controls.ImageComboBoxItem("August", 8, -1),
         new DevExpress.XtraEditors.Controls.ImageComboBoxItem("September", 9, -1),
         new DevExpress.XtraEditors.Controls.ImageComboBoxItem("October", 10, -1),
         new DevExpress.XtraEditors.Controls.ImageComboBoxItem("November", 11, -1),
         new DevExpress.XtraEditors.Controls.ImageComboBoxItem("December", 12, -1)
     });
     this.prevToMonth.Size     = new System.Drawing.Size(72, 20);
     this.prevToMonth.TabIndex = 56;
     //
     // prevFromMonth
     //
     this.prevFromMonth.Location = new System.Drawing.Point(64, 16);
     this.prevFromMonth.Name     = "prevFromMonth";
     this.prevFromMonth.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
         new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)
     });
     this.prevFromMonth.Properties.Items.AddRange(new DevExpress.XtraEditors.Controls.ImageComboBoxItem[] {
         new DevExpress.XtraEditors.Controls.ImageComboBoxItem("January", 1, -1),
         new DevExpress.XtraEditors.Controls.ImageComboBoxItem("February", 2, -1),
         new DevExpress.XtraEditors.Controls.ImageComboBoxItem("March", 3, -1),
         new DevExpress.XtraEditors.Controls.ImageComboBoxItem("April", 4, -1),
         new DevExpress.XtraEditors.Controls.ImageComboBoxItem("May", 5, -1),
         new DevExpress.XtraEditors.Controls.ImageComboBoxItem("June", 6, -1),
         new DevExpress.XtraEditors.Controls.ImageComboBoxItem("July", 7, -1),
         new DevExpress.XtraEditors.Controls.ImageComboBoxItem("August", 8, -1),
         new DevExpress.XtraEditors.Controls.ImageComboBoxItem("September", 9, -1),
         new DevExpress.XtraEditors.Controls.ImageComboBoxItem("October", 10, -1),
         new DevExpress.XtraEditors.Controls.ImageComboBoxItem("November", 11, -1),
         new DevExpress.XtraEditors.Controls.ImageComboBoxItem("December", 12, -1)
     });
     this.prevFromMonth.Size     = new System.Drawing.Size(72, 20);
     this.prevFromMonth.TabIndex = 55;
     //
     // btnPrevGo
     //
     this.btnPrevGo.Appearance.Font            = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.btnPrevGo.Appearance.Options.UseFont = true;
     this.btnPrevGo.ButtonStyle = DevExpress.XtraEditors.Controls.BorderStyles.Simple;
     this.btnPrevGo.Location    = new System.Drawing.Point(448, 16);
     this.btnPrevGo.Name        = "btnPrevGo";
     this.btnPrevGo.Size        = new System.Drawing.Size(72, 20);
     this.btnPrevGo.TabIndex    = 54;
     this.btnPrevGo.Text        = "Go";
     this.btnPrevGo.Click      += new System.EventHandler(this.btnPrevGo_Click);
     //
     // label5
     //
     this.label5.BackColor = System.Drawing.Color.Transparent;
     this.label5.Font      = new System.Drawing.Font("Microsoft Sans Serif", 9.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label5.Location  = new System.Drawing.Point(240, 16);
     this.label5.Name      = "label5";
     this.label5.Size      = new System.Drawing.Size(24, 16);
     this.label5.TabIndex  = 53;
     this.label5.Text      = "To";
     //
     // label4
     //
     this.label4.BackColor = System.Drawing.Color.Transparent;
     this.label4.Font      = new System.Drawing.Font("Microsoft Sans Serif", 9.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label4.Location  = new System.Drawing.Point(16, 16);
     this.label4.Name      = "label4";
     this.label4.Size      = new System.Drawing.Size(48, 16);
     this.label4.TabIndex  = 52;
     this.label4.Text      = "From";
     //
     // prevToYear
     //
     this.prevToYear.EditValue = "cbGIROStatus";
     this.prevToYear.Location  = new System.Drawing.Point(352, 16);
     this.prevToYear.Name      = "prevToYear";
     this.prevToYear.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
         new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)
     });
     this.prevToYear.Properties.LookAndFeel.UseDefaultLookAndFeel = false;
     this.prevToYear.Size     = new System.Drawing.Size(80, 20);
     this.prevToYear.TabIndex = 51;
     //
     // prevFromYear
     //
     this.prevFromYear.EditValue = "cbGIROStatus";
     this.prevFromYear.Location  = new System.Drawing.Point(144, 16);
     this.prevFromYear.Name      = "prevFromYear";
     this.prevFromYear.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
         new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)
     });
     this.prevFromYear.Properties.LookAndFeel.UseDefaultLookAndFeel = false;
     this.prevFromYear.Size     = new System.Drawing.Size(72, 20);
     this.prevFromYear.TabIndex = 50;
     //
     // cmbBranch
     //
     this.cmbBranch.Location = new System.Drawing.Point(288, 88);
     this.cmbBranch.Name     = "cmbBranch";
     this.cmbBranch.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
         new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)
     });
     this.cmbBranch.Size                  = new System.Drawing.Size(120, 20);
     this.cmbBranch.TabIndex              = 179;
     this.cmbBranch.SelectedValueChanged += new System.EventHandler(this.cmbBranch_SelectedValueChanged);
     //
     // label25
     //
     this.label25.Font      = new System.Drawing.Font("Microsoft Sans Serif", 9.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label25.ForeColor = System.Drawing.Color.Black;
     this.label25.Location  = new System.Drawing.Point(224, 88);
     this.label25.Name      = "label25";
     this.label25.Size      = new System.Drawing.Size(56, 16);
     this.label25.TabIndex  = 174;
     this.label25.Text      = "Branch";
     //
     // OvertimeStatus
     //
     this.OvertimeStatus.EditValue = 0;
     this.OvertimeStatus.Location  = new System.Drawing.Point(80, 88);
     this.OvertimeStatus.Name      = "OvertimeStatus";
     this.OvertimeStatus.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
         new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)
     });
     this.OvertimeStatus.Properties.Items.AddRange(new DevExpress.XtraEditors.Controls.ImageComboBoxItem[] {
         new DevExpress.XtraEditors.Controls.ImageComboBoxItem("Pending", 0, -1),
         new DevExpress.XtraEditors.Controls.ImageComboBoxItem("Approved", 1, -1),
         new DevExpress.XtraEditors.Controls.ImageComboBoxItem("Rejected", 2, -1)
     });
     this.OvertimeStatus.Size                  = new System.Drawing.Size(128, 20);
     this.OvertimeStatus.TabIndex              = 124;
     this.OvertimeStatus.SelectedValueChanged += new System.EventHandler(this.OvertimeStatus_SelectedValueChanged);
     //
     // label151
     //
     this.label151.Font      = new System.Drawing.Font("Microsoft Sans Serif", 9.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label151.ForeColor = System.Drawing.Color.Black;
     this.label151.Location  = new System.Drawing.Point(24, 88);
     this.label151.Name      = "label151";
     this.label151.Size      = new System.Drawing.Size(56, 16);
     this.label151.TabIndex  = 19;
     this.label151.Text      = "Status";
     //
     // gridOverTime
     //
     this.gridOverTime.Dock     = System.Windows.Forms.DockStyle.Bottom;
     this.gridOverTime.Location = new System.Drawing.Point(2, 118);
     this.gridOverTime.LookAndFeel.UseDefaultLookAndFeel = false;
     this.gridOverTime.MainView = this.gridViewOverTime;
     this.gridOverTime.Name     = "gridOverTime";
     this.gridOverTime.Size     = new System.Drawing.Size(988, 448);
     this.gridOverTime.TabIndex = 12;
     this.gridOverTime.ViewCollection.AddRange(new DevExpress.XtraGrid.Views.Base.BaseView[] {
         this.gridViewOverTime
     });
     //
     // gridViewOverTime
     //
     this.gridViewOverTime.Columns.AddRange(new DevExpress.XtraGrid.Columns.GridColumn[] {
         this.gridColumn69,
         this.gridColumn62,
         this.gridColumn63,
         this.gridColumn64,
         this.gridColumn65,
         this.gridColumn5,
         this.gridColumn54,
         this.gridColumn1,
         this.gridColumn2,
         this.gridColumn3,
         this.gridColumn4
     });
     this.gridViewOverTime.GridControl = this.gridOverTime;
     this.gridViewOverTime.Name        = "gridViewOverTime";
     this.gridViewOverTime.OptionsBehavior.Editable         = false;
     this.gridViewOverTime.OptionsCustomization.AllowFilter = false;
     this.gridViewOverTime.OptionsCustomization.AllowSort   = false;
     this.gridViewOverTime.OptionsView.ColumnAutoWidth      = false;
     this.gridViewOverTime.OptionsView.ShowGroupPanel       = false;
     //
     // gridColumn69
     //
     this.gridColumn69.Caption = "Date";
     this.gridColumn69.DisplayFormat.FormatString = "dd/MM/yyyy";
     this.gridColumn69.DisplayFormat.FormatType   = DevExpress.Utils.FormatType.DateTime;
     this.gridColumn69.FieldName = "dtDate";
     this.gridColumn69.GroupFormat.FormatString = "dd/MM/yyyy";
     this.gridColumn69.GroupFormat.FormatType   = DevExpress.Utils.FormatType.Custom;
     this.gridColumn69.Name         = "gridColumn69";
     this.gridColumn69.Visible      = true;
     this.gridColumn69.VisibleIndex = 0;
     this.gridColumn69.Width        = 74;
     //
     // gridColumn62
     //
     this.gridColumn62.Caption      = "Employee Id";
     this.gridColumn62.FieldName    = "nEmployeeID";
     this.gridColumn62.Name         = "gridColumn62";
     this.gridColumn62.Visible      = true;
     this.gridColumn62.VisibleIndex = 1;
     this.gridColumn62.Width        = 84;
     //
     // gridColumn63
     //
     this.gridColumn63.Caption      = "Name";
     this.gridColumn63.FieldName    = "strEmployeeName";
     this.gridColumn63.Name         = "gridColumn63";
     this.gridColumn63.Visible      = true;
     this.gridColumn63.VisibleIndex = 2;
     this.gridColumn63.Width        = 148;
     //
     // gridColumn64
     //
     this.gridColumn64.Caption = "Start Time";
     this.gridColumn64.DisplayFormat.FormatString = "hh:mm:ss tt";
     this.gridColumn64.DisplayFormat.FormatType   = DevExpress.Utils.FormatType.Custom;
     this.gridColumn64.FieldName = "dtStartTime";
     this.gridColumn64.GroupFormat.FormatString = "hh:mm:ss tt";
     this.gridColumn64.GroupFormat.FormatType   = DevExpress.Utils.FormatType.Custom;
     this.gridColumn64.Name         = "gridColumn64";
     this.gridColumn64.Visible      = true;
     this.gridColumn64.VisibleIndex = 3;
     this.gridColumn64.Width        = 74;
     //
     // gridColumn65
     //
     this.gridColumn65.Caption = "End Time";
     this.gridColumn65.DisplayFormat.FormatString = "hh:mm:ss tt";
     this.gridColumn65.DisplayFormat.FormatType   = DevExpress.Utils.FormatType.Custom;
     this.gridColumn65.FieldName = "dtEndTime";
     this.gridColumn65.GroupFormat.FormatString = "hh:mm:ss tt";
     this.gridColumn65.GroupFormat.FormatType   = DevExpress.Utils.FormatType.Custom;
     this.gridColumn65.Name         = "gridColumn65";
     this.gridColumn65.Visible      = true;
     this.gridColumn65.VisibleIndex = 4;
     this.gridColumn65.Width        = 78;
     //
     // gridColumn5
     //
     this.gridColumn5.Caption   = "Hours";
     this.gridColumn5.FieldName = "nHours";
     this.gridColumn5.GroupFormat.FormatString = "f";
     this.gridColumn5.GroupFormat.FormatType   = DevExpress.Utils.FormatType.Custom;
     this.gridColumn5.Name         = "gridColumn5";
     this.gridColumn5.Visible      = true;
     this.gridColumn5.VisibleIndex = 5;
     //
     // gridColumn54
     //
     this.gridColumn54.Caption   = "gridColumn54";
     this.gridColumn54.FieldName = "nOverTimeId";
     this.gridColumn54.Name      = "gridColumn54";
     //
     // gridColumn1
     //
     this.gridColumn1.Caption      = "Charging To ( 0-Time Off, 1-Overtime Pay)";
     this.gridColumn1.FieldName    = "nChargingID";
     this.gridColumn1.Name         = "gridColumn1";
     this.gridColumn1.Visible      = true;
     this.gridColumn1.VisibleIndex = 6;
     this.gridColumn1.Width        = 236;
     //
     // gridColumn2
     //
     this.gridColumn2.Caption      = "Reason";
     this.gridColumn2.FieldName    = "strReason";
     this.gridColumn2.Name         = "gridColumn2";
     this.gridColumn2.Visible      = true;
     this.gridColumn2.VisibleIndex = 7;
     this.gridColumn2.Width        = 109;
     //
     // gridColumn3
     //
     this.gridColumn3.Caption      = "Approving Manager";
     this.gridColumn3.FieldName    = "strApprovingManager";
     this.gridColumn3.Name         = "gridColumn3";
     this.gridColumn3.Visible      = true;
     this.gridColumn3.VisibleIndex = 8;
     this.gridColumn3.Width        = 106;
     //
     // gridColumn4
     //
     this.gridColumn4.Caption      = "Status";
     this.gridColumn4.FieldName    = "OvertimeStatus";
     this.gridColumn4.Name         = "gridColumn4";
     this.gridColumn4.Visible      = true;
     this.gridColumn4.VisibleIndex = 9;
     this.gridColumn4.Width        = 81;
     //
     // btnApprove
     //
     this.btnApprove.Appearance.BackColor            = System.Drawing.SystemColors.Control;
     this.btnApprove.Appearance.Font                 = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.btnApprove.Appearance.Options.UseBackColor = true;
     this.btnApprove.Appearance.Options.UseFont      = true;
     this.btnApprove.ButtonStyle = DevExpress.XtraEditors.Controls.BorderStyles.Simple;
     this.btnApprove.ImeMode     = System.Windows.Forms.ImeMode.NoControl;
     this.btnApprove.Location    = new System.Drawing.Point(544, 88);
     this.btnApprove.Name        = "btnApprove";
     this.btnApprove.Size        = new System.Drawing.Size(72, 20);
     this.btnApprove.TabIndex    = 123;
     this.btnApprove.Text        = "Approve";
     this.btnApprove.Click      += new System.EventHandler(this.btnApprove_Click);
     //
     // btnReject
     //
     this.btnReject.Appearance.BackColor            = System.Drawing.SystemColors.Control;
     this.btnReject.Appearance.Font                 = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.btnReject.Appearance.Options.UseBackColor = true;
     this.btnReject.Appearance.Options.UseFont      = true;
     this.btnReject.ButtonStyle = DevExpress.XtraEditors.Controls.BorderStyles.Simple;
     this.btnReject.ImeMode     = System.Windows.Forms.ImeMode.NoControl;
     this.btnReject.Location    = new System.Drawing.Point(624, 88);
     this.btnReject.Name        = "btnReject";
     this.btnReject.Size        = new System.Drawing.Size(72, 20);
     this.btnReject.TabIndex    = 124;
     this.btnReject.Text        = "Reject";
     this.btnReject.Click      += new System.EventHandler(this.btnReject_Click);
     //
     // btnClear
     //
     this.btnClear.Appearance.Font            = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.btnClear.Appearance.Options.UseFont = true;
     this.btnClear.ButtonStyle = DevExpress.XtraEditors.Controls.BorderStyles.Simple;
     this.btnClear.Location    = new System.Drawing.Point(702, 88);
     this.btnClear.Name        = "btnClear";
     this.btnClear.Size        = new System.Drawing.Size(112, 20);
     this.btnClear.TabIndex    = 183;
     this.btnClear.Text        = "Clear OT Balance";
     this.btnClear.Click      += new System.EventHandler(this.btnClear_Click);
     //
     // frmOvertimeMain
     //
     this.BackColor  = System.Drawing.Color.White;
     this.ClientSize = new System.Drawing.Size(992, 568);
     this.Controls.Add(this.groupOverTime);
     this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.None;
     this.Name            = "frmOvertimeMain";
     this.Text            = "frmOvertimeMain";
     this.Load           += new System.EventHandler(this.frmOvertimeMain_Load);
     ((System.ComponentModel.ISupportInitialize)(this.groupOverTime)).EndInit();
     this.groupOverTime.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.groupControl1)).EndInit();
     this.groupControl1.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.prevToMonth.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.prevFromMonth.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.prevToYear.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.prevFromYear.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.cmbBranch.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.OvertimeStatus.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridOverTime)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridViewOverTime)).EndInit();
     this.ResumeLayout(false);
 }
Пример #50
0
 /// <summary>
 /// Required method for Designer support - do not modify
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     this.btnOK = new DevExpress.XtraEditors.SimpleButton();
     this.btnCancel = new DevExpress.XtraEditors.SimpleButton();
     this.labelControl1 = new DevExpress.XtraEditors.LabelControl();
     this.txtDelete = new DevExpress.XtraEditors.SimpleButton();
     this.labelControl3 = new DevExpress.XtraEditors.LabelControl();
     this.groupControl1 = new DevExpress.XtraEditors.GroupControl();
     this.btbCreate = new DevExpress.XtraEditors.SimpleButton();
     this.txtSchemeName = new DevExpress.XtraEditors.TextEdit();
     this.labelControl2 = new DevExpress.XtraEditors.LabelControl();
     this.groupControl2 = new DevExpress.XtraEditors.GroupControl();
     this.cboSchemes = new System.Windows.Forms.ComboBox();
     ((System.ComponentModel.ISupportInitialize)(this.groupControl1)).BeginInit();
     this.groupControl1.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.txtSchemeName.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.groupControl2)).BeginInit();
     this.groupControl2.SuspendLayout();
     this.SuspendLayout();
     //
     // btnOK
     //
     this.btnOK.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
     this.btnOK.Image = global::FRDB_SQLite.Properties.Resources.Ribbon_Open_16x16;
     this.btnOK.Location = new System.Drawing.Point(108, 266);
     this.btnOK.Name = "btnOK";
     this.btnOK.Size = new System.Drawing.Size(90, 30);
     this.btnOK.TabIndex = 3;
     this.btnOK.Text = "Open";
     this.btnOK.Click += new System.EventHandler(this.btnOK_Click_1);
     //
     // btnCancel
     //
     this.btnCancel.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
     this.btnCancel.Image = global::FRDB_SQLite.Properties.Resources.small_cancel;
     this.btnCancel.Location = new System.Drawing.Point(301, 266);
     this.btnCancel.Name = "btnCancel";
     this.btnCancel.Size = new System.Drawing.Size(90, 30);
     this.btnCancel.TabIndex = 5;
     this.btnCancel.Text = "Cancel";
     this.btnCancel.Click += new System.EventHandler(this.btnCancel_Click_1);
     //
     // labelControl1
     //
     this.labelControl1.Appearance.Font = new System.Drawing.Font("Tahoma", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.labelControl1.Location = new System.Drawing.Point(15, 49);
     this.labelControl1.Name = "labelControl1";
     this.labelControl1.Size = new System.Drawing.Size(90, 16);
     this.labelControl1.TabIndex = 4;
     this.labelControl1.Text = "Select Schema:";
     //
     // txtDelete
     //
     this.txtDelete.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
     this.txtDelete.Image = global::FRDB_SQLite.Properties.Resources.small_dell;
     this.txtDelete.Location = new System.Drawing.Point(205, 266);
     this.txtDelete.Name = "txtDelete";
     this.txtDelete.Size = new System.Drawing.Size(90, 30);
     this.txtDelete.TabIndex = 4;
     this.txtDelete.Text = "Delete";
     this.txtDelete.Click += new System.EventHandler(this.txtDelete_Click);
     //
     // labelControl3
     //
     this.labelControl3.Appearance.Font = new System.Drawing.Font("Tahoma", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.labelControl3.Location = new System.Drawing.Point(148, 16);
     this.labelControl3.Name = "labelControl3";
     this.labelControl3.Size = new System.Drawing.Size(125, 19);
     this.labelControl3.TabIndex = 10;
     this.labelControl3.Text = "Schemes Editor";
     //
     // groupControl1
     //
     this.groupControl1.Controls.Add(this.btbCreate);
     this.groupControl1.Controls.Add(this.txtSchemeName);
     this.groupControl1.Controls.Add(this.labelControl2);
     this.groupControl1.Location = new System.Drawing.Point(12, 56);
     this.groupControl1.Name = "groupControl1";
     this.groupControl1.Size = new System.Drawing.Size(379, 92);
     this.groupControl1.TabIndex = 11;
     this.groupControl1.Text = "New Scheme";
     //
     // btbCreate
     //
     this.btbCreate.Image = global::FRDB_SQLite.Properties.Resources.Ribbon_New_16x16;
     this.btbCreate.Location = new System.Drawing.Point(277, 38);
     this.btbCreate.Name = "btbCreate";
     this.btbCreate.Size = new System.Drawing.Size(90, 30);
     this.btbCreate.TabIndex = 1;
     this.btbCreate.Text = "Create";
     this.btbCreate.Click += new System.EventHandler(this.btbCreate_Click);
     //
     // txtSchemeName
     //
     this.txtSchemeName.Location = new System.Drawing.Point(122, 44);
     this.txtSchemeName.Name = "txtSchemeName";
     this.txtSchemeName.Size = new System.Drawing.Size(144, 20);
     this.txtSchemeName.TabIndex = 0;
     //
     // labelControl2
     //
     this.labelControl2.Appearance.Font = new System.Drawing.Font("Tahoma", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.labelControl2.Location = new System.Drawing.Point(17, 45);
     this.labelControl2.Name = "labelControl2";
     this.labelControl2.Size = new System.Drawing.Size(88, 16);
     this.labelControl2.TabIndex = 5;
     this.labelControl2.Text = "Scheme Name:";
     //
     // groupControl2
     //
     this.groupControl2.Controls.Add(this.labelControl1);
     this.groupControl2.Controls.Add(this.cboSchemes);
     this.groupControl2.Location = new System.Drawing.Point(12, 154);
     this.groupControl2.Name = "groupControl2";
     this.groupControl2.Size = new System.Drawing.Size(379, 96);
     this.groupControl2.TabIndex = 12;
     this.groupControl2.Text = "Choose Scheme";
     //
     // cboSchemes
     //
     this.cboSchemes.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
     this.cboSchemes.Font = new System.Drawing.Font("Microsoft Sans Serif", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.cboSchemes.FormattingEnabled = true;
     this.cboSchemes.Location = new System.Drawing.Point(122, 46);
     this.cboSchemes.Name = "cboSchemes";
     this.cboSchemes.Size = new System.Drawing.Size(245, 24);
     this.cboSchemes.TabIndex = 2;
     //
     // frmSchemeEditor
     //
     this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
     this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
     this.ClientSize = new System.Drawing.Size(403, 308);
     this.Controls.Add(this.groupControl2);
     this.Controls.Add(this.txtDelete);
     this.Controls.Add(this.groupControl1);
     this.Controls.Add(this.labelControl3);
     this.Controls.Add(this.btnOK);
     this.Controls.Add(this.btnCancel);
     this.MaximizeBox = false;
     this.Name = "frmSchemeEditor";
     this.StartPosition = System.Windows.Forms.FormStartPosition.CenterParent;
     this.Text = "Scheme Editor";
     ((System.ComponentModel.ISupportInitialize)(this.groupControl1)).EndInit();
     this.groupControl1.ResumeLayout(false);
     this.groupControl1.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(this.txtSchemeName.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.groupControl2)).EndInit();
     this.groupControl2.ResumeLayout(false);
     this.groupControl2.PerformLayout();
     this.ResumeLayout(false);
     this.PerformLayout();
 }
Пример #51
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(frmZones));
     DevExpress.Utils.SuperToolTip superToolTip1 = new DevExpress.Utils.SuperToolTip();
     DevExpress.Utils.ToolTipTitleItem toolTipTitleItem1 = new DevExpress.Utils.ToolTipTitleItem();
     DevExpress.Utils.SuperToolTip superToolTip2 = new DevExpress.Utils.SuperToolTip();
     DevExpress.Utils.ToolTipItem toolTipItem1 = new DevExpress.Utils.ToolTipItem();
     DevExpress.Utils.SuperToolTip superToolTip3 = new DevExpress.Utils.SuperToolTip();
     DevExpress.Utils.ToolTipTitleItem toolTipTitleItem2 = new DevExpress.Utils.ToolTipTitleItem();
     DevExpress.Utils.SuperToolTip superToolTip4 = new DevExpress.Utils.SuperToolTip();
     DevExpress.Utils.ToolTipTitleItem toolTipTitleItem3 = new DevExpress.Utils.ToolTipTitleItem();
     DevExpress.Utils.SuperToolTip superToolTip5 = new DevExpress.Utils.SuperToolTip();
     DevExpress.Utils.ToolTipTitleItem toolTipTitleItem4 = new DevExpress.Utils.ToolTipTitleItem();
     DevExpress.Utils.SuperToolTip superToolTip6 = new DevExpress.Utils.SuperToolTip();
     DevExpress.Utils.ToolTipItem toolTipItem2 = new DevExpress.Utils.ToolTipItem();
     DevExpress.Utils.SuperToolTip superToolTip7 = new DevExpress.Utils.SuperToolTip();
     DevExpress.Utils.ToolTipItem toolTipItem3 = new DevExpress.Utils.ToolTipItem();
     this.groupControl5 = new DevExpress.XtraEditors.GroupControl();
     this.groupControl1 = new DevExpress.XtraEditors.GroupControl();
     this.ZdatagridRegionalAllocation = new C1.Win.C1TrueDBGrid.C1TrueDBGrid();
     this.ZtxtOtherGroup = new DevExpress.XtraEditors.TextEdit();
     this.ZtxtManagerId = new DevExpress.XtraEditors.TextEdit();
     this.ZtxtCompanyGroupID = new DevExpress.XtraEditors.TextEdit();
     this.checkEdit2 = new DevExpress.XtraEditors.CheckEdit();
     this.ZtxtManagerName = new DevExpress.XtraEditors.TextEdit();
     this.ZtxtGroupName = new DevExpress.XtraEditors.TextEdit();
     this.ZtxtCompanyName = new DevExpress.XtraEditors.TextEdit();
     this.ZtxtCompanyId = new DevExpress.XtraEditors.TextEdit();
     this.ZtxtSPOID = new DevExpress.XtraEditors.TextEdit();
     this.ZchkDiscontinue = new DevExpress.XtraEditors.CheckEdit();
     this.ZchkMerck = new DevExpress.XtraEditors.CheckEdit();
     this.labelControl14 = new DevExpress.XtraEditors.LabelControl();
     this.labelControl13 = new DevExpress.XtraEditors.LabelControl();
     this.labelControl15 = new DevExpress.XtraEditors.LabelControl();
     this.ZPlManagerId = new DevExpress.XtraEditors.SimpleButton();
     this.simpleButton5 = new DevExpress.XtraEditors.SimpleButton();
     this.ZPLCompanyGroupID = new DevExpress.XtraEditors.SimpleButton();
     this.ZPLCompanyId = new DevExpress.XtraEditors.SimpleButton();
     this.labelControl11 = new DevExpress.XtraEditors.LabelControl();
     this.ZPLSPOId = new DevExpress.XtraEditors.SimpleButton();
     this.ZtxtSPOName = new DevExpress.XtraEditors.TextEdit();
     this.labelControl12 = new DevExpress.XtraEditors.LabelControl();
     this.labelControl10 = new DevExpress.XtraEditors.LabelControl();
     this.labelControl8 = new DevExpress.XtraEditors.LabelControl();
     this.labelControl16 = new DevExpress.XtraEditors.LabelControl();
     this.labelControl9 = new DevExpress.XtraEditors.LabelControl();
     this.btnCancel = new DevExpress.XtraEditors.SimpleButton();
     this.btnAdd = new DevExpress.XtraEditors.SimpleButton();
     this.groupControl2 = new DevExpress.XtraEditors.GroupControl();
     ((System.ComponentModel.ISupportInitialize)(this.groupControl5)).BeginInit();
     this.groupControl5.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.groupControl1)).BeginInit();
     this.groupControl1.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.ZdatagridRegionalAllocation)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.ZtxtOtherGroup.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.ZtxtManagerId.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.ZtxtCompanyGroupID.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.checkEdit2.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.ZtxtManagerName.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.ZtxtGroupName.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.ZtxtCompanyName.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.ZtxtCompanyId.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.ZtxtSPOID.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.ZchkDiscontinue.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.ZchkMerck.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.ZtxtSPOName.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.groupControl2)).BeginInit();
     this.groupControl2.SuspendLayout();
     this.SuspendLayout();
     //
     // groupControl5
     //
     this.groupControl5.Controls.Add(this.groupControl1);
     this.groupControl5.Controls.Add(this.ZtxtOtherGroup);
     this.groupControl5.Controls.Add(this.ZtxtManagerId);
     this.groupControl5.Controls.Add(this.ZtxtCompanyGroupID);
     this.groupControl5.Controls.Add(this.checkEdit2);
     this.groupControl5.Controls.Add(this.ZtxtManagerName);
     this.groupControl5.Controls.Add(this.ZtxtGroupName);
     this.groupControl5.Controls.Add(this.ZtxtCompanyName);
     this.groupControl5.Controls.Add(this.ZtxtCompanyId);
     this.groupControl5.Controls.Add(this.ZtxtSPOID);
     this.groupControl5.Controls.Add(this.ZchkDiscontinue);
     this.groupControl5.Controls.Add(this.ZchkMerck);
     this.groupControl5.Controls.Add(this.labelControl14);
     this.groupControl5.Controls.Add(this.labelControl13);
     this.groupControl5.Controls.Add(this.labelControl15);
     this.groupControl5.Controls.Add(this.ZPlManagerId);
     this.groupControl5.Controls.Add(this.simpleButton5);
     this.groupControl5.Controls.Add(this.ZPLCompanyGroupID);
     this.groupControl5.Controls.Add(this.ZPLCompanyId);
     this.groupControl5.Controls.Add(this.labelControl11);
     this.groupControl5.Controls.Add(this.ZPLSPOId);
     this.groupControl5.Controls.Add(this.ZtxtSPOName);
     this.groupControl5.Controls.Add(this.labelControl12);
     this.groupControl5.Controls.Add(this.labelControl10);
     this.groupControl5.Controls.Add(this.labelControl8);
     this.groupControl5.Controls.Add(this.labelControl16);
     this.groupControl5.Controls.Add(this.labelControl9);
     this.groupControl5.Dock = System.Windows.Forms.DockStyle.Fill;
     this.groupControl5.Location = new System.Drawing.Point(0, 0);
     this.groupControl5.Name = "groupControl5";
     this.groupControl5.Size = new System.Drawing.Size(567, 390);
     this.groupControl5.TabIndex = 0;
     this.groupControl5.Text = "Zone Details";
     //
     // groupControl1
     //
     this.groupControl1.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
     | System.Windows.Forms.AnchorStyles.Left)
     | System.Windows.Forms.AnchorStyles.Right)));
     this.groupControl1.Controls.Add(this.ZdatagridRegionalAllocation);
     this.groupControl1.Location = new System.Drawing.Point(0, 130);
     this.groupControl1.Name = "groupControl1";
     this.groupControl1.ShowCaption = false;
     this.groupControl1.Size = new System.Drawing.Size(567, 226);
     this.groupControl1.TabIndex = 124261;
     this.groupControl1.Text = "groupControl1";
     //
     // ZdatagridRegionalAllocation
     //
     this.ZdatagridRegionalAllocation.AllowAddNew = true;
     this.ZdatagridRegionalAllocation.CaptionHeight = 17;
     this.ZdatagridRegionalAllocation.DirectionAfterEnter = C1.Win.C1TrueDBGrid.DirectionAfterEnterEnum.MoveNone;
     this.ZdatagridRegionalAllocation.Dock = System.Windows.Forms.DockStyle.Fill;
     this.ZdatagridRegionalAllocation.ExtendRightColumn = true;
     this.ZdatagridRegionalAllocation.FetchRowStyles = true;
     this.ZdatagridRegionalAllocation.Images.Add(((System.Drawing.Image)(resources.GetObject("ZdatagridRegionalAllocation.Images"))));
     this.ZdatagridRegionalAllocation.LinesPerRow = 1;
     this.ZdatagridRegionalAllocation.Location = new System.Drawing.Point(2, 2);
     this.ZdatagridRegionalAllocation.Name = "ZdatagridRegionalAllocation";
     this.ZdatagridRegionalAllocation.PreviewInfo.Location = new System.Drawing.Point(0, 0);
     this.ZdatagridRegionalAllocation.PreviewInfo.Size = new System.Drawing.Size(0, 0);
     this.ZdatagridRegionalAllocation.PreviewInfo.ZoomFactor = 75D;
     this.ZdatagridRegionalAllocation.PrintInfo.PageSettings = ((System.Drawing.Printing.PageSettings)(resources.GetObject("ZdatagridRegionalAllocation.PrintInfo.PageSettings")));
     this.ZdatagridRegionalAllocation.RecordSelectors = false;
     this.ZdatagridRegionalAllocation.RowDivider.Color = System.Drawing.SystemColors.ActiveCaption;
     this.ZdatagridRegionalAllocation.RowDivider.Style = C1.Win.C1TrueDBGrid.LineStyleEnum.Single;
     this.ZdatagridRegionalAllocation.RowHeight = 20;
     this.ZdatagridRegionalAllocation.RowSubDividerColor = System.Drawing.SystemColors.ActiveCaption;
     this.ZdatagridRegionalAllocation.Size = new System.Drawing.Size(563, 222);
     this.ZdatagridRegionalAllocation.TabIndex = 124255;
     this.ZdatagridRegionalAllocation.Text = "c1TrueDBGrid1";
     this.ZdatagridRegionalAllocation.VisualStyle = C1.Win.C1TrueDBGrid.VisualStyle.Office2010Blue;
     this.ZdatagridRegionalAllocation.AfterColUpdate += new C1.Win.C1TrueDBGrid.ColEventHandler(this.ZdatagridRegionalAllocation_AfterColUpdate);
     this.ZdatagridRegionalAllocation.PropBag = resources.GetString("ZdatagridRegionalAllocation.PropBag");
     //
     // ZtxtOtherGroup
     //
     this.ZtxtOtherGroup.Location = new System.Drawing.Point(98, 104);
     this.ZtxtOtherGroup.Name = "ZtxtOtherGroup";
     this.ZtxtOtherGroup.Size = new System.Drawing.Size(258, 20);
     this.ZtxtOtherGroup.TabIndex = 5;
     this.ZtxtOtherGroup.TabStop = false;
     this.ZtxtOtherGroup.PreviewKeyDown += new System.Windows.Forms.PreviewKeyDownEventHandler(this.ZtxtOtherGroup_PreviewKeyDown);
     //
     // ZtxtManagerId
     //
     this.ZtxtManagerId.Location = new System.Drawing.Point(98, 85);
     this.ZtxtManagerId.Name = "ZtxtManagerId";
     this.ZtxtManagerId.Properties.MaxLength = 6;
     this.ZtxtManagerId.Size = new System.Drawing.Size(49, 20);
     this.ZtxtManagerId.TabIndex = 4;
     this.ZtxtManagerId.KeyPress += new System.Windows.Forms.KeyPressEventHandler(this.ZtxtManagerId_KeyPress);
     this.ZtxtManagerId.Leave += new System.EventHandler(this.ZtxtManagerId_Leave);
     this.ZtxtManagerId.PreviewKeyDown += new System.Windows.Forms.PreviewKeyDownEventHandler(this.ZtxtManagerId_PreviewKeyDown);
     //
     // ZtxtCompanyGroupID
     //
     this.ZtxtCompanyGroupID.Location = new System.Drawing.Point(98, 66);
     this.ZtxtCompanyGroupID.Name = "ZtxtCompanyGroupID";
     this.ZtxtCompanyGroupID.Properties.MaxLength = 6;
     this.ZtxtCompanyGroupID.Size = new System.Drawing.Size(49, 20);
     this.ZtxtCompanyGroupID.TabIndex = 3;
     this.ZtxtCompanyGroupID.KeyPress += new System.Windows.Forms.KeyPressEventHandler(this.ZtxtCompanyGroupID_KeyPress);
     this.ZtxtCompanyGroupID.Leave += new System.EventHandler(this.ZtxtCompanyGroupID_Leave);
     this.ZtxtCompanyGroupID.PreviewKeyDown += new System.Windows.Forms.PreviewKeyDownEventHandler(this.ZtxtCompanyGroupID_PreviewKeyDown);
     //
     // checkEdit2
     //
     this.checkEdit2.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
     this.checkEdit2.Location = new System.Drawing.Point(421, 84);
     this.checkEdit2.Name = "checkEdit2";
     this.checkEdit2.Properties.Appearance.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.checkEdit2.Properties.Appearance.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(66)))), ((int)(((byte)(88)))), ((int)(((byte)(168)))));
     this.checkEdit2.Properties.Appearance.Options.UseFont = true;
     this.checkEdit2.Properties.Appearance.Options.UseForeColor = true;
     this.checkEdit2.Properties.Caption = "Select/UnSelect All";
     this.checkEdit2.Size = new System.Drawing.Size(141, 19);
     this.checkEdit2.TabIndex = 8;
     this.checkEdit2.CheckedChanged += new System.EventHandler(this.checkEdit2_CheckedChanged);
     this.checkEdit2.KeyPress += new System.Windows.Forms.KeyPressEventHandler(this.checkEdit2_KeyPress);
     //
     // ZtxtManagerName
     //
     this.ZtxtManagerName.Enabled = false;
     this.ZtxtManagerName.Location = new System.Drawing.Point(220, 85);
     this.ZtxtManagerName.Name = "ZtxtManagerName";
     this.ZtxtManagerName.Size = new System.Drawing.Size(136, 20);
     this.ZtxtManagerName.TabIndex = 124251;
     this.ZtxtManagerName.TabStop = false;
     //
     // ZtxtGroupName
     //
     this.ZtxtGroupName.Enabled = false;
     this.ZtxtGroupName.Location = new System.Drawing.Point(220, 66);
     this.ZtxtGroupName.Name = "ZtxtGroupName";
     this.ZtxtGroupName.Size = new System.Drawing.Size(136, 20);
     this.ZtxtGroupName.TabIndex = 124246;
     this.ZtxtGroupName.TabStop = false;
     //
     // ZtxtCompanyName
     //
     this.ZtxtCompanyName.Enabled = false;
     this.ZtxtCompanyName.Location = new System.Drawing.Point(220, 47);
     this.ZtxtCompanyName.Name = "ZtxtCompanyName";
     this.ZtxtCompanyName.Size = new System.Drawing.Size(136, 20);
     this.ZtxtCompanyName.TabIndex = 100015;
     this.ZtxtCompanyName.TabStop = false;
     //
     // ZtxtCompanyId
     //
     this.ZtxtCompanyId.Location = new System.Drawing.Point(98, 47);
     this.ZtxtCompanyId.Name = "ZtxtCompanyId";
     this.ZtxtCompanyId.Properties.MaxLength = 3;
     this.ZtxtCompanyId.Size = new System.Drawing.Size(49, 20);
     this.ZtxtCompanyId.TabIndex = 2;
     this.ZtxtCompanyId.KeyPress += new System.Windows.Forms.KeyPressEventHandler(this.ZtxtCompanyId_KeyPress);
     this.ZtxtCompanyId.Leave += new System.EventHandler(this.ZtxtCompanyId_Leave);
     this.ZtxtCompanyId.PreviewKeyDown += new System.Windows.Forms.PreviewKeyDownEventHandler(this.ZtxtCompanyId_PreviewKeyDown);
     //
     // ZtxtSPOID
     //
     this.ZtxtSPOID.Location = new System.Drawing.Point(98, 28);
     this.ZtxtSPOID.Name = "ZtxtSPOID";
     this.ZtxtSPOID.Properties.MaxLength = 6;
     this.ZtxtSPOID.Size = new System.Drawing.Size(49, 20);
     this.ZtxtSPOID.TabIndex = 0;
     this.ZtxtSPOID.PreviewKeyDown += new System.Windows.Forms.PreviewKeyDownEventHandler(this.ZtxtSPOID_PreviewKeyDown);
     //
     // ZchkDiscontinue
     //
     this.ZchkDiscontinue.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
     this.ZchkDiscontinue.Location = new System.Drawing.Point(421, 34);
     this.ZchkDiscontinue.Name = "ZchkDiscontinue";
     this.ZchkDiscontinue.Properties.Appearance.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.ZchkDiscontinue.Properties.Appearance.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(66)))), ((int)(((byte)(88)))), ((int)(((byte)(168)))));
     this.ZchkDiscontinue.Properties.Appearance.Options.UseFont = true;
     this.ZchkDiscontinue.Properties.Appearance.Options.UseForeColor = true;
     this.ZchkDiscontinue.Properties.Caption = "Discontinue";
     this.ZchkDiscontinue.Size = new System.Drawing.Size(93, 19);
     this.ZchkDiscontinue.TabIndex = 6;
     this.ZchkDiscontinue.KeyPress += new System.Windows.Forms.KeyPressEventHandler(this.ZchkDiscontinue_KeyPress);
     //
     // ZchkMerck
     //
     this.ZchkMerck.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
     this.ZchkMerck.Location = new System.Drawing.Point(421, 59);
     this.ZchkMerck.Name = "ZchkMerck";
     this.ZchkMerck.Properties.Appearance.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.ZchkMerck.Properties.Appearance.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(66)))), ((int)(((byte)(88)))), ((int)(((byte)(168)))));
     this.ZchkMerck.Properties.Appearance.Options.UseFont = true;
     this.ZchkMerck.Properties.Appearance.Options.UseForeColor = true;
     this.ZchkMerck.Properties.Caption = "MERCK";
     this.ZchkMerck.Size = new System.Drawing.Size(58, 19);
     this.ZchkMerck.TabIndex = 7;
     this.ZchkMerck.KeyPress += new System.Windows.Forms.KeyPressEventHandler(this.ZchkMerck_KeyPress);
     //
     // labelControl14
     //
     this.labelControl14.AutoSizeMode = DevExpress.XtraEditors.LabelAutoSizeMode.None;
     this.labelControl14.LineLocation = DevExpress.XtraEditors.LineLocation.Bottom;
     this.labelControl14.Location = new System.Drawing.Point(183, 87);
     this.labelControl14.Name = "labelControl14";
     this.labelControl14.Size = new System.Drawing.Size(51, 20);
     this.labelControl14.TabIndex = 124250;
     this.labelControl14.Text = "Name";
     //
     // labelControl13
     //
     this.labelControl13.AutoSizeMode = DevExpress.XtraEditors.LabelAutoSizeMode.None;
     this.labelControl13.LineLocation = DevExpress.XtraEditors.LineLocation.Bottom;
     this.labelControl13.LineVisible = true;
     this.labelControl13.Location = new System.Drawing.Point(183, 68);
     this.labelControl13.Name = "labelControl13";
     this.labelControl13.Size = new System.Drawing.Size(40, 20);
     this.labelControl13.TabIndex = 124245;
     this.labelControl13.Text = "Name";
     //
     // labelControl15
     //
     this.labelControl15.AutoSizeMode = DevExpress.XtraEditors.LabelAutoSizeMode.None;
     this.labelControl15.LineLocation = DevExpress.XtraEditors.LineLocation.Bottom;
     this.labelControl15.LineVisible = true;
     this.labelControl15.Location = new System.Drawing.Point(10, 86);
     this.labelControl15.Name = "labelControl15";
     this.labelControl15.Size = new System.Drawing.Size(95, 20);
     this.labelControl15.TabIndex = 124248;
     this.labelControl15.Text = "Manager Id";
     //
     // ZPlManagerId
     //
     this.ZPlManagerId.Appearance.Font = new System.Drawing.Font("Tahoma", 9F);
     this.ZPlManagerId.Appearance.Options.UseFont = true;
     this.ZPlManagerId.Image = ((System.Drawing.Image)(resources.GetObject("ZPlManagerId.Image")));
     this.ZPlManagerId.ImageLocation = DevExpress.XtraEditors.ImageLocation.MiddleLeft;
     this.ZPlManagerId.Location = new System.Drawing.Point(149, 85);
     this.ZPlManagerId.Name = "ZPlManagerId";
     this.ZPlManagerId.ShowFocusRectangle = DevExpress.Utils.DefaultBoolean.False;
     this.ZPlManagerId.Size = new System.Drawing.Size(24, 20);
     toolTipTitleItem1.Text = "Add New Entry";
     superToolTip1.Items.Add(toolTipTitleItem1);
     this.ZPlManagerId.SuperTip = superToolTip1;
     this.ZPlManagerId.TabIndex = 124249;
     this.ZPlManagerId.TabStop = false;
     this.ZPlManagerId.Click += new System.EventHandler(this.ZPlManagerId_Click);
     //
     // simpleButton5
     //
     this.simpleButton5.Image = ((System.Drawing.Image)(resources.GetObject("simpleButton5.Image")));
     this.simpleButton5.ImageLocation = DevExpress.XtraEditors.ImageLocation.MiddleLeft;
     this.simpleButton5.Location = new System.Drawing.Point(70, 66);
     this.simpleButton5.Name = "simpleButton5";
     this.simpleButton5.Size = new System.Drawing.Size(27, 20);
     toolTipItem1.Text = "Save Module";
     superToolTip2.Items.Add(toolTipItem1);
     this.simpleButton5.SuperTip = superToolTip2;
     this.simpleButton5.TabIndex = 100019;
     this.simpleButton5.TabStop = false;
     this.simpleButton5.Click += new System.EventHandler(this.simpleButton5_Click);
     //
     // ZPLCompanyGroupID
     //
     this.ZPLCompanyGroupID.Appearance.Font = new System.Drawing.Font("Tahoma", 9F);
     this.ZPLCompanyGroupID.Appearance.Options.UseFont = true;
     this.ZPLCompanyGroupID.Image = ((System.Drawing.Image)(resources.GetObject("ZPLCompanyGroupID.Image")));
     this.ZPLCompanyGroupID.ImageLocation = DevExpress.XtraEditors.ImageLocation.MiddleLeft;
     this.ZPLCompanyGroupID.Location = new System.Drawing.Point(149, 66);
     this.ZPLCompanyGroupID.Name = "ZPLCompanyGroupID";
     this.ZPLCompanyGroupID.ShowFocusRectangle = DevExpress.Utils.DefaultBoolean.False;
     this.ZPLCompanyGroupID.Size = new System.Drawing.Size(24, 20);
     toolTipTitleItem2.Text = "Add New Entry";
     superToolTip3.Items.Add(toolTipTitleItem2);
     this.ZPLCompanyGroupID.SuperTip = superToolTip3;
     this.ZPLCompanyGroupID.TabIndex = 100018;
     this.ZPLCompanyGroupID.TabStop = false;
     this.ZPLCompanyGroupID.Click += new System.EventHandler(this.ZPLCompanyGroupID_Click);
     //
     // ZPLCompanyId
     //
     this.ZPLCompanyId.Appearance.Font = new System.Drawing.Font("Tahoma", 9F);
     this.ZPLCompanyId.Appearance.Options.UseFont = true;
     this.ZPLCompanyId.Image = ((System.Drawing.Image)(resources.GetObject("ZPLCompanyId.Image")));
     this.ZPLCompanyId.ImageLocation = DevExpress.XtraEditors.ImageLocation.MiddleLeft;
     this.ZPLCompanyId.Location = new System.Drawing.Point(149, 47);
     this.ZPLCompanyId.Name = "ZPLCompanyId";
     this.ZPLCompanyId.ShowFocusRectangle = DevExpress.Utils.DefaultBoolean.False;
     this.ZPLCompanyId.Size = new System.Drawing.Size(24, 20);
     toolTipTitleItem3.Text = "Add New Entry";
     superToolTip4.Items.Add(toolTipTitleItem3);
     this.ZPLCompanyId.SuperTip = superToolTip4;
     this.ZPLCompanyId.TabIndex = 100014;
     this.ZPLCompanyId.TabStop = false;
     this.ZPLCompanyId.Click += new System.EventHandler(this.ZPLCompanyId_Click);
     //
     // labelControl11
     //
     this.labelControl11.AutoSizeMode = DevExpress.XtraEditors.LabelAutoSizeMode.None;
     this.labelControl11.LineLocation = DevExpress.XtraEditors.LineLocation.Bottom;
     this.labelControl11.LineVisible = true;
     this.labelControl11.Location = new System.Drawing.Point(183, 49);
     this.labelControl11.Name = "labelControl11";
     this.labelControl11.Size = new System.Drawing.Size(40, 20);
     this.labelControl11.TabIndex = 100011;
     this.labelControl11.Text = "Name";
     //
     // ZPLSPOId
     //
     this.ZPLSPOId.Appearance.Font = new System.Drawing.Font("Tahoma", 9F);
     this.ZPLSPOId.Appearance.Options.UseFont = true;
     this.ZPLSPOId.Image = ((System.Drawing.Image)(resources.GetObject("ZPLSPOId.Image")));
     this.ZPLSPOId.ImageLocation = DevExpress.XtraEditors.ImageLocation.MiddleLeft;
     this.ZPLSPOId.Location = new System.Drawing.Point(149, 28);
     this.ZPLSPOId.Name = "ZPLSPOId";
     this.ZPLSPOId.ShowFocusRectangle = DevExpress.Utils.DefaultBoolean.False;
     this.ZPLSPOId.Size = new System.Drawing.Size(24, 20);
     toolTipTitleItem4.Text = "Add New Entry";
     superToolTip5.Items.Add(toolTipTitleItem4);
     this.ZPLSPOId.SuperTip = superToolTip5;
     this.ZPLSPOId.TabIndex = 100009;
     this.ZPLSPOId.TabStop = false;
     this.ZPLSPOId.Click += new System.EventHandler(this.ZPLSPOId_Click);
     //
     // ZtxtSPOName
     //
     this.ZtxtSPOName.Location = new System.Drawing.Point(220, 28);
     this.ZtxtSPOName.Name = "ZtxtSPOName";
     this.ZtxtSPOName.Size = new System.Drawing.Size(136, 20);
     this.ZtxtSPOName.TabIndex = 1;
     this.ZtxtSPOName.PreviewKeyDown += new System.Windows.Forms.PreviewKeyDownEventHandler(this.ZtxtSPOName_PreviewKeyDown);
     //
     // labelControl12
     //
     this.labelControl12.AutoSizeMode = DevExpress.XtraEditors.LabelAutoSizeMode.None;
     this.labelControl12.LineLocation = DevExpress.XtraEditors.LineLocation.Bottom;
     this.labelControl12.LineVisible = true;
     this.labelControl12.Location = new System.Drawing.Point(10, 67);
     this.labelControl12.Name = "labelControl12";
     this.labelControl12.Size = new System.Drawing.Size(95, 20);
     this.labelControl12.TabIndex = 100017;
     this.labelControl12.Text = "CGroup Id";
     //
     // labelControl10
     //
     this.labelControl10.AutoSizeMode = DevExpress.XtraEditors.LabelAutoSizeMode.None;
     this.labelControl10.LineLocation = DevExpress.XtraEditors.LineLocation.Bottom;
     this.labelControl10.LineVisible = true;
     this.labelControl10.Location = new System.Drawing.Point(10, 47);
     this.labelControl10.Name = "labelControl10";
     this.labelControl10.Size = new System.Drawing.Size(95, 20);
     this.labelControl10.TabIndex = 100013;
     this.labelControl10.Text = "Company Id";
     //
     // labelControl8
     //
     this.labelControl8.AutoSizeMode = DevExpress.XtraEditors.LabelAutoSizeMode.None;
     this.labelControl8.LineLocation = DevExpress.XtraEditors.LineLocation.Bottom;
     this.labelControl8.LineVisible = true;
     this.labelControl8.Location = new System.Drawing.Point(10, 28);
     this.labelControl8.Name = "labelControl8";
     this.labelControl8.Size = new System.Drawing.Size(95, 20);
     this.labelControl8.TabIndex = 100008;
     this.labelControl8.Text = "SPO Id";
     //
     // labelControl16
     //
     this.labelControl16.AutoSizeMode = DevExpress.XtraEditors.LabelAutoSizeMode.None;
     this.labelControl16.LineLocation = DevExpress.XtraEditors.LineLocation.Bottom;
     this.labelControl16.LineVisible = true;
     this.labelControl16.Location = new System.Drawing.Point(10, 104);
     this.labelControl16.Name = "labelControl16";
     this.labelControl16.Size = new System.Drawing.Size(95, 20);
     this.labelControl16.TabIndex = 124255;
     this.labelControl16.Text = "Other Groups";
     //
     // labelControl9
     //
     this.labelControl9.AutoSizeMode = DevExpress.XtraEditors.LabelAutoSizeMode.None;
     this.labelControl9.LineLocation = DevExpress.XtraEditors.LineLocation.Bottom;
     this.labelControl9.LineVisible = true;
     this.labelControl9.Location = new System.Drawing.Point(183, 30);
     this.labelControl9.Name = "labelControl9";
     this.labelControl9.Size = new System.Drawing.Size(40, 20);
     this.labelControl9.TabIndex = 100006;
     this.labelControl9.Text = "Name";
     //
     // btnCancel
     //
     this.btnCancel.Anchor = System.Windows.Forms.AnchorStyles.Left;
     this.btnCancel.Image = ((System.Drawing.Image)(resources.GetObject("btnCancel.Image")));
     this.btnCancel.ImageLocation = DevExpress.XtraEditors.ImageLocation.MiddleLeft;
     this.btnCancel.Location = new System.Drawing.Point(88, 6);
     this.btnCancel.Name = "btnCancel";
     this.btnCancel.Size = new System.Drawing.Size(70, 23);
     toolTipItem2.Text = "Cancel Current Operation";
     superToolTip6.Items.Add(toolTipItem2);
     this.btnCancel.SuperTip = superToolTip6;
     this.btnCancel.TabIndex = 10;
     this.btnCancel.Text = "&Cancel";
     this.btnCancel.Click += new System.EventHandler(this.btnCancel_Click);
     //
     // btnAdd
     //
     this.btnAdd.Anchor = System.Windows.Forms.AnchorStyles.Left;
     this.btnAdd.Image = ((System.Drawing.Image)(resources.GetObject("btnAdd.Image")));
     this.btnAdd.ImageLocation = DevExpress.XtraEditors.ImageLocation.MiddleLeft;
     this.btnAdd.Location = new System.Drawing.Point(12, 6);
     this.btnAdd.Name = "btnAdd";
     this.btnAdd.Size = new System.Drawing.Size(70, 23);
     toolTipItem3.Text = "Add New Module";
     superToolTip7.Items.Add(toolTipItem3);
     this.btnAdd.SuperTip = superToolTip7;
     this.btnAdd.TabIndex = 9;
     this.btnAdd.Text = " &Add ";
     this.btnAdd.Click += new System.EventHandler(this.btnAdd_Click);
     //
     // groupControl2
     //
     this.groupControl2.Controls.Add(this.btnAdd);
     this.groupControl2.Controls.Add(this.btnCancel);
     this.groupControl2.Dock = System.Windows.Forms.DockStyle.Bottom;
     this.groupControl2.Location = new System.Drawing.Point(0, 356);
     this.groupControl2.Name = "groupControl2";
     this.groupControl2.ShowCaption = false;
     this.groupControl2.Size = new System.Drawing.Size(567, 34);
     this.groupControl2.TabIndex = 13;
     //
     // frmZones
     //
     this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
     this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
     this.ClientSize = new System.Drawing.Size(567, 390);
     this.Controls.Add(this.groupControl2);
     this.Controls.Add(this.groupControl5);
     this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedSingle;
     this.Name = "frmZones";
     this.ShowIcon = false;
     this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen;
     this.Text = "Zones";
     this.FormClosing += new System.Windows.Forms.FormClosingEventHandler(this.frmZones_FormClosing);
     this.Load += new System.EventHandler(this.VendorEmployees_Load);
     this.Enter += new System.EventHandler(this.frmZones_Enter);
     ((System.ComponentModel.ISupportInitialize)(this.groupControl5)).EndInit();
     this.groupControl5.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.groupControl1)).EndInit();
     this.groupControl1.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.ZdatagridRegionalAllocation)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.ZtxtOtherGroup.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.ZtxtManagerId.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.ZtxtCompanyGroupID.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.checkEdit2.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.ZtxtManagerName.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.ZtxtGroupName.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.ZtxtCompanyName.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.ZtxtCompanyId.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.ZtxtSPOID.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.ZchkDiscontinue.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.ZchkMerck.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.ZtxtSPOName.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.groupControl2)).EndInit();
     this.groupControl2.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.toolStrip1 = new System.Windows.Forms.ToolStrip();
     this.toolStripButton4 = new System.Windows.Forms.ToolStripButton();
     this.toolStripButton1 = new System.Windows.Forms.ToolStripButton();
     this.toolStripButton3 = new System.Windows.Forms.ToolStripButton();
     this.xtraTabControl1 = new DevExpress.XtraTab.XtraTabControl();
     this.xtraTabPage1 = new DevExpress.XtraTab.XtraTabPage();
     this.groupControl3 = new DevExpress.XtraEditors.GroupControl();
     this.labelControl5 = new DevExpress.XtraEditors.LabelControl();
     this.dateEdit2 = new DevExpress.XtraEditors.DateEdit();
     this.dateEdit1 = new DevExpress.XtraEditors.DateEdit();
     this.labelControl4 = new DevExpress.XtraEditors.LabelControl();
     this.labelControl3 = new DevExpress.XtraEditors.LabelControl();
     this.groupControl2 = new DevExpress.XtraEditors.GroupControl();
     this.radioGroup1 = new DevExpress.XtraEditors.RadioGroup();
     this.groupControl1 = new DevExpress.XtraEditors.GroupControl();
     this.simpleButton1 = new DevExpress.XtraEditors.SimpleButton();
     this.textEdit2 = new DevExpress.XtraEditors.TextEdit();
     this.textEdit1 = new DevExpress.XtraEditors.TextEdit();
     this.labelControl2 = new DevExpress.XtraEditors.LabelControl();
     this.labelControl1 = new DevExpress.XtraEditors.LabelControl();
     this.xtraTabPage3 = new DevExpress.XtraTab.XtraTabPage();
     this.groupControl4 = new DevExpress.XtraEditors.GroupControl();
     this.labelControl6 = new DevExpress.XtraEditors.LabelControl();
     this.dateEdit3 = new DevExpress.XtraEditors.DateEdit();
     this.dateEdit4 = new DevExpress.XtraEditors.DateEdit();
     this.labelControl7 = new DevExpress.XtraEditors.LabelControl();
     this.labelControl8 = new DevExpress.XtraEditors.LabelControl();
     this.groupControl5 = new DevExpress.XtraEditors.GroupControl();
     this.radioGroup2 = new DevExpress.XtraEditors.RadioGroup();
     this.groupControl6 = new DevExpress.XtraEditors.GroupControl();
     this.dropDownButton3 = new DevExpress.XtraEditors.DropDownButton();
     this.dropDownButton2 = new DevExpress.XtraEditors.DropDownButton();
     this.dropDownButton1 = new DevExpress.XtraEditors.DropDownButton();
     this.radioGroup3 = new DevExpress.XtraEditors.RadioGroup();
     this.toolStrip1.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.xtraTabControl1)).BeginInit();
     this.xtraTabControl1.SuspendLayout();
     this.xtraTabPage1.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.groupControl3)).BeginInit();
     this.groupControl3.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.dateEdit2.Properties.VistaTimeProperties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.dateEdit2.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.dateEdit1.Properties.VistaTimeProperties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.dateEdit1.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.groupControl2)).BeginInit();
     this.groupControl2.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.radioGroup1.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.groupControl1)).BeginInit();
     this.groupControl1.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.textEdit2.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.textEdit1.Properties)).BeginInit();
     this.xtraTabPage3.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.groupControl4)).BeginInit();
     this.groupControl4.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.dateEdit3.Properties.VistaTimeProperties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.dateEdit3.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.dateEdit4.Properties.VistaTimeProperties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.dateEdit4.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.groupControl5)).BeginInit();
     this.groupControl5.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.radioGroup2.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.groupControl6)).BeginInit();
     this.groupControl6.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.radioGroup3.Properties)).BeginInit();
     this.SuspendLayout();
     //
     // toolStrip1
     //
     this.toolStrip1.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
     this.toolStripButton4,
     this.toolStripButton1,
     this.toolStripButton3});
     this.toolStrip1.Location = new System.Drawing.Point(0, 0);
     this.toolStrip1.Name = "toolStrip1";
     this.toolStrip1.Size = new System.Drawing.Size(455, 25);
     this.toolStrip1.TabIndex = 33;
     this.toolStrip1.Text = "toolStrip1";
     //
     // toolStripButton4
     //
     this.toolStripButton4.Image = global::forms.Properties.Resources.imprimir;
     this.toolStripButton4.ImageTransparentColor = System.Drawing.Color.Magenta;
     this.toolStripButton4.Name = "toolStripButton4";
     this.toolStripButton4.Size = new System.Drawing.Size(68, 22);
     this.toolStripButton4.Text = "Generar";
     //
     // toolStripButton1
     //
     this.toolStripButton1.Image = global::forms.Properties.Resources.guardar;
     this.toolStripButton1.ImageTransparentColor = System.Drawing.Color.Magenta;
     this.toolStripButton1.Name = "toolStripButton1";
     this.toolStripButton1.Size = new System.Drawing.Size(69, 22);
     this.toolStripButton1.Text = "Guardar";
     //
     // toolStripButton3
     //
     this.toolStripButton3.Image = global::forms.Properties.Resources._24_cancelar;
     this.toolStripButton3.ImageTransparentColor = System.Drawing.Color.Magenta;
     this.toolStripButton3.Name = "toolStripButton3";
     this.toolStripButton3.Size = new System.Drawing.Size(49, 22);
     this.toolStripButton3.Text = "Salir";
     //
     // xtraTabControl1
     //
     this.xtraTabControl1.Location = new System.Drawing.Point(12, 35);
     this.xtraTabControl1.Name = "xtraTabControl1";
     this.xtraTabControl1.SelectedTabPage = this.xtraTabPage1;
     this.xtraTabControl1.Size = new System.Drawing.Size(436, 316);
     this.xtraTabControl1.TabIndex = 32;
     this.xtraTabControl1.TabPages.AddRange(new DevExpress.XtraTab.XtraTabPage[] {
     this.xtraTabPage1,
     this.xtraTabPage3});
     //
     // xtraTabPage1
     //
     this.xtraTabPage1.Controls.Add(this.groupControl3);
     this.xtraTabPage1.Controls.Add(this.groupControl2);
     this.xtraTabPage1.Controls.Add(this.groupControl1);
     this.xtraTabPage1.Name = "xtraTabPage1";
     this.xtraTabPage1.Size = new System.Drawing.Size(430, 288);
     this.xtraTabPage1.Text = "Individual";
     //
     // groupControl3
     //
     this.groupControl3.Controls.Add(this.labelControl5);
     this.groupControl3.Controls.Add(this.dateEdit2);
     this.groupControl3.Controls.Add(this.dateEdit1);
     this.groupControl3.Controls.Add(this.labelControl4);
     this.groupControl3.Controls.Add(this.labelControl3);
     this.groupControl3.Location = new System.Drawing.Point(200, 147);
     this.groupControl3.Name = "groupControl3";
     this.groupControl3.Size = new System.Drawing.Size(215, 110);
     this.groupControl3.TabIndex = 38;
     this.groupControl3.Text = "Fecha";
     //
     // labelControl5
     //
     this.labelControl5.Location = new System.Drawing.Point(41, 48);
     this.labelControl5.Name = "labelControl5";
     this.labelControl5.Size = new System.Drawing.Size(30, 13);
     this.labelControl5.TabIndex = 39;
     this.labelControl5.Text = "Desde";
     //
     // dateEdit2
     //
     this.dateEdit2.EditValue = new System.DateTime(2013, 7, 11, 21, 51, 35, 0);
     this.dateEdit2.Location = new System.Drawing.Point(86, 71);
     this.dateEdit2.Name = "dateEdit2";
     this.dateEdit2.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.dateEdit2.Properties.VistaTimeProperties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton()});
     this.dateEdit2.Size = new System.Drawing.Size(100, 20);
     this.dateEdit2.TabIndex = 38;
     //
     // dateEdit1
     //
     this.dateEdit1.EditValue = new System.DateTime(2013, 7, 11, 21, 51, 45, 0);
     this.dateEdit1.Location = new System.Drawing.Point(86, 45);
     this.dateEdit1.Name = "dateEdit1";
     this.dateEdit1.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.dateEdit1.Properties.VistaTimeProperties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton()});
     this.dateEdit1.Size = new System.Drawing.Size(100, 20);
     this.dateEdit1.TabIndex = 37;
     //
     // labelControl4
     //
     this.labelControl4.Location = new System.Drawing.Point(-77, 44);
     this.labelControl4.Name = "labelControl4";
     this.labelControl4.Size = new System.Drawing.Size(30, 13);
     this.labelControl4.TabIndex = 35;
     this.labelControl4.Text = "Desde";
     //
     // labelControl3
     //
     this.labelControl3.Location = new System.Drawing.Point(41, 74);
     this.labelControl3.Name = "labelControl3";
     this.labelControl3.Size = new System.Drawing.Size(28, 13);
     this.labelControl3.TabIndex = 36;
     this.labelControl3.Text = "Hasta";
     //
     // groupControl2
     //
     this.groupControl2.Controls.Add(this.radioGroup1);
     this.groupControl2.Location = new System.Drawing.Point(13, 147);
     this.groupControl2.Name = "groupControl2";
     this.groupControl2.Size = new System.Drawing.Size(181, 110);
     this.groupControl2.TabIndex = 37;
     //
     // radioGroup1
     //
     this.radioGroup1.Dock = System.Windows.Forms.DockStyle.Fill;
     this.radioGroup1.Location = new System.Drawing.Point(2, 21);
     this.radioGroup1.Name = "radioGroup1";
     this.radioGroup1.Properties.Items.AddRange(new DevExpress.XtraEditors.Controls.RadioGroupItem[] {
     new DevExpress.XtraEditors.Controls.RadioGroupItem(null, "Suma"),
     new DevExpress.XtraEditors.Controls.RadioGroupItem(null, "Detalle")});
     this.radioGroup1.Size = new System.Drawing.Size(177, 87);
     this.radioGroup1.TabIndex = 0;
     //
     // groupControl1
     //
     this.groupControl1.Controls.Add(this.simpleButton1);
     this.groupControl1.Controls.Add(this.textEdit2);
     this.groupControl1.Controls.Add(this.textEdit1);
     this.groupControl1.Controls.Add(this.labelControl2);
     this.groupControl1.Controls.Add(this.labelControl1);
     this.groupControl1.Location = new System.Drawing.Point(13, 18);
     this.groupControl1.Name = "groupControl1";
     this.groupControl1.Size = new System.Drawing.Size(402, 110);
     this.groupControl1.TabIndex = 36;
     this.groupControl1.Text = "Empleado";
     //
     // simpleButton1
     //
     this.simpleButton1.Location = new System.Drawing.Point(178, 32);
     this.simpleButton1.Name = "simpleButton1";
     this.simpleButton1.Size = new System.Drawing.Size(30, 23);
     this.simpleButton1.TabIndex = 4;
     this.simpleButton1.Text = "...";
     //
     // textEdit2
     //
     this.textEdit2.Location = new System.Drawing.Point(72, 61);
     this.textEdit2.Name = "textEdit2";
     this.textEdit2.Size = new System.Drawing.Size(241, 20);
     this.textEdit2.TabIndex = 3;
     //
     // textEdit1
     //
     this.textEdit1.Location = new System.Drawing.Point(72, 35);
     this.textEdit1.Name = "textEdit1";
     this.textEdit1.Size = new System.Drawing.Size(100, 20);
     this.textEdit1.TabIndex = 2;
     //
     // labelControl2
     //
     this.labelControl2.Location = new System.Drawing.Point(15, 63);
     this.labelControl2.Name = "labelControl2";
     this.labelControl2.Size = new System.Drawing.Size(41, 13);
     this.labelControl2.TabIndex = 1;
     this.labelControl2.Text = "Nombre:";
     //
     // labelControl1
     //
     this.labelControl1.Location = new System.Drawing.Point(15, 35);
     this.labelControl1.Name = "labelControl1";
     this.labelControl1.Size = new System.Drawing.Size(50, 13);
     this.labelControl1.TabIndex = 0;
     this.labelControl1.Text = "Empleado:";
     //
     // xtraTabPage3
     //
     this.xtraTabPage3.Controls.Add(this.groupControl4);
     this.xtraTabPage3.Controls.Add(this.groupControl5);
     this.xtraTabPage3.Controls.Add(this.groupControl6);
     this.xtraTabPage3.Name = "xtraTabPage3";
     this.xtraTabPage3.Size = new System.Drawing.Size(430, 288);
     this.xtraTabPage3.Text = "General";
     //
     // groupControl4
     //
     this.groupControl4.Controls.Add(this.labelControl6);
     this.groupControl4.Controls.Add(this.dateEdit3);
     this.groupControl4.Controls.Add(this.dateEdit4);
     this.groupControl4.Controls.Add(this.labelControl7);
     this.groupControl4.Controls.Add(this.labelControl8);
     this.groupControl4.Location = new System.Drawing.Point(200, 166);
     this.groupControl4.Name = "groupControl4";
     this.groupControl4.Size = new System.Drawing.Size(215, 91);
     this.groupControl4.TabIndex = 38;
     this.groupControl4.Text = "Fecha";
     //
     // labelControl6
     //
     this.labelControl6.Location = new System.Drawing.Point(41, 39);
     this.labelControl6.Name = "labelControl6";
     this.labelControl6.Size = new System.Drawing.Size(30, 13);
     this.labelControl6.TabIndex = 39;
     this.labelControl6.Text = "Desde";
     //
     // dateEdit3
     //
     this.dateEdit3.EditValue = new System.DateTime(2013, 7, 11, 21, 51, 35, 0);
     this.dateEdit3.Location = new System.Drawing.Point(86, 62);
     this.dateEdit3.Name = "dateEdit3";
     this.dateEdit3.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.dateEdit3.Properties.VistaTimeProperties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton()});
     this.dateEdit3.Size = new System.Drawing.Size(100, 20);
     this.dateEdit3.TabIndex = 38;
     //
     // dateEdit4
     //
     this.dateEdit4.EditValue = new System.DateTime(2013, 7, 11, 21, 51, 45, 0);
     this.dateEdit4.Location = new System.Drawing.Point(86, 36);
     this.dateEdit4.Name = "dateEdit4";
     this.dateEdit4.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.dateEdit4.Properties.VistaTimeProperties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton()});
     this.dateEdit4.Size = new System.Drawing.Size(100, 20);
     this.dateEdit4.TabIndex = 37;
     //
     // labelControl7
     //
     this.labelControl7.Location = new System.Drawing.Point(-77, 44);
     this.labelControl7.Name = "labelControl7";
     this.labelControl7.Size = new System.Drawing.Size(30, 13);
     this.labelControl7.TabIndex = 35;
     this.labelControl7.Text = "Desde";
     //
     // labelControl8
     //
     this.labelControl8.Location = new System.Drawing.Point(41, 65);
     this.labelControl8.Name = "labelControl8";
     this.labelControl8.Size = new System.Drawing.Size(28, 13);
     this.labelControl8.TabIndex = 36;
     this.labelControl8.Text = "Hasta";
     //
     // groupControl5
     //
     this.groupControl5.Controls.Add(this.radioGroup2);
     this.groupControl5.Location = new System.Drawing.Point(13, 166);
     this.groupControl5.Name = "groupControl5";
     this.groupControl5.Size = new System.Drawing.Size(181, 91);
     this.groupControl5.TabIndex = 37;
     //
     // radioGroup2
     //
     this.radioGroup2.Dock = System.Windows.Forms.DockStyle.Fill;
     this.radioGroup2.Location = new System.Drawing.Point(2, 21);
     this.radioGroup2.Name = "radioGroup2";
     this.radioGroup2.Properties.Items.AddRange(new DevExpress.XtraEditors.Controls.RadioGroupItem[] {
     new DevExpress.XtraEditors.Controls.RadioGroupItem(null, "Suma"),
     new DevExpress.XtraEditors.Controls.RadioGroupItem(null, "Detalle")});
     this.radioGroup2.Size = new System.Drawing.Size(177, 68);
     this.radioGroup2.TabIndex = 0;
     //
     // groupControl6
     //
     this.groupControl6.Controls.Add(this.dropDownButton3);
     this.groupControl6.Controls.Add(this.dropDownButton2);
     this.groupControl6.Controls.Add(this.dropDownButton1);
     this.groupControl6.Controls.Add(this.radioGroup3);
     this.groupControl6.Location = new System.Drawing.Point(13, 18);
     this.groupControl6.Name = "groupControl6";
     this.groupControl6.Size = new System.Drawing.Size(402, 142);
     this.groupControl6.TabIndex = 36;
     //
     // dropDownButton3
     //
     this.dropDownButton3.Location = new System.Drawing.Point(109, 87);
     this.dropDownButton3.Name = "dropDownButton3";
     this.dropDownButton3.Size = new System.Drawing.Size(135, 23);
     this.dropDownButton3.TabIndex = 4;
     //
     // dropDownButton2
     //
     this.dropDownButton2.Location = new System.Drawing.Point(109, 58);
     this.dropDownButton2.Name = "dropDownButton2";
     this.dropDownButton2.Size = new System.Drawing.Size(135, 23);
     this.dropDownButton2.TabIndex = 3;
     //
     // dropDownButton1
     //
     this.dropDownButton1.Location = new System.Drawing.Point(109, 29);
     this.dropDownButton1.Name = "dropDownButton1";
     this.dropDownButton1.Size = new System.Drawing.Size(135, 23);
     this.dropDownButton1.TabIndex = 2;
     //
     // radioGroup3
     //
     this.radioGroup3.Dock = System.Windows.Forms.DockStyle.Fill;
     this.radioGroup3.Location = new System.Drawing.Point(2, 21);
     this.radioGroup3.Name = "radioGroup3";
     this.radioGroup3.Properties.Items.AddRange(new DevExpress.XtraEditors.Controls.RadioGroupItem[] {
     new DevExpress.XtraEditors.Controls.RadioGroupItem(null, "Departamento"),
     new DevExpress.XtraEditors.Controls.RadioGroupItem(null, "Empleado"),
     new DevExpress.XtraEditors.Controls.RadioGroupItem(null, "Cargo"),
     new DevExpress.XtraEditors.Controls.RadioGroupItem(null, "Todos")});
     this.radioGroup3.Size = new System.Drawing.Size(398, 119);
     this.radioGroup3.TabIndex = 1;
     //
     // frmConsultaReporteAtrasosFaltas
     //
     this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
     this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
     this.ClientSize = new System.Drawing.Size(455, 363);
     this.Controls.Add(this.toolStrip1);
     this.Controls.Add(this.xtraTabControl1);
     this.Name = "frmConsultaReporteAtrasosFaltas";
     this.Text = "Consulta/Reporte de Atrasos y Faltas";
     this.toolStrip1.ResumeLayout(false);
     this.toolStrip1.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(this.xtraTabControl1)).EndInit();
     this.xtraTabControl1.ResumeLayout(false);
     this.xtraTabPage1.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.groupControl3)).EndInit();
     this.groupControl3.ResumeLayout(false);
     this.groupControl3.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(this.dateEdit2.Properties.VistaTimeProperties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.dateEdit2.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.dateEdit1.Properties.VistaTimeProperties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.dateEdit1.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.groupControl2)).EndInit();
     this.groupControl2.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.radioGroup1.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.groupControl1)).EndInit();
     this.groupControl1.ResumeLayout(false);
     this.groupControl1.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(this.textEdit2.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.textEdit1.Properties)).EndInit();
     this.xtraTabPage3.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.groupControl4)).EndInit();
     this.groupControl4.ResumeLayout(false);
     this.groupControl4.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(this.dateEdit3.Properties.VistaTimeProperties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.dateEdit3.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.dateEdit4.Properties.VistaTimeProperties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.dateEdit4.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.groupControl5)).EndInit();
     this.groupControl5.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.radioGroup2.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.groupControl6)).EndInit();
     this.groupControl6.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.radioGroup3.Properties)).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.gridControlData = new DevExpress.XtraGrid.GridControl();
     this.XPSCSData = new DevExpress.Xpo.XPServerCollectionSource(this.components);
     this.UOWData = new DevExpress.Xpo.UnitOfWork(this.components);
     this.gridViewData = new DevExpress.XtraGrid.Views.Grid.GridView();
     this.colDofatSarfAId = new DevExpress.XtraGrid.Columns.GridColumn();
     this.colMMashatId = new DevExpress.XtraGrid.Columns.GridColumn();
     this.colamanatrem = new DevExpress.XtraGrid.Columns.GridColumn();
     this.repositoryItemMemoExEditremarks = new DevExpress.XtraEditors.Repository.RepositoryItemMemoExEdit();
     this.colBeandate = new DevExpress.XtraGrid.Columns.GridColumn();
     this.repositoryItemDateEditDMY = new DevExpress.XtraEditors.Repository.RepositoryItemDateEdit();
     this.coldateremember = new DevExpress.XtraGrid.Columns.GridColumn();
     this.coldeleted = new DevExpress.XtraGrid.Columns.GridColumn();
     this.coldatein = new DevExpress.XtraGrid.Columns.GridColumn();
     this.repositoryItemDateEditdatein = new DevExpress.XtraEditors.Repository.RepositoryItemDateEdit();
     this.coluserin = new DevExpress.XtraGrid.Columns.GridColumn();
     this.repositoryItemGridLookUpEdituserin = new DevExpress.XtraEditors.Repository.RepositoryItemGridLookUpEdit();
     this.usersBindingSource = new System.Windows.Forms.BindingSource(this.components);
     this.dsRetirementCenter = new RetirementCenter.DataSources.dsRetirementCenter();
     this.gridView2 = new DevExpress.XtraGrid.Views.Grid.GridView();
     this.colRealName = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumnSave = new DevExpress.XtraGrid.Columns.GridColumn();
     this.repositoryItemButtonEditSave = new DevExpress.XtraEditors.Repository.RepositoryItemButtonEdit();
     this.gridColumnDelete = new DevExpress.XtraGrid.Columns.GridColumn();
     this.repositoryItemButtonEditDel = new DevExpress.XtraEditors.Repository.RepositoryItemButtonEdit();
     this.colMMashatName1 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.colsarfnumber = new DevExpress.XtraGrid.Columns.GridColumn();
     this.colSyndicate = new DevExpress.XtraGrid.Columns.GridColumn();
     this.colSubCommitte = new DevExpress.XtraGrid.Columns.GridColumn();
     this.colEDARET = new DevExpress.XtraGrid.Columns.GridColumn();
     this.colEDARET1 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.colEdaraMandopName = new DevExpress.XtraGrid.Columns.GridColumn();
     this.colnkapaMandopName = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn2 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.groupControl1 = new DevExpress.XtraEditors.GroupControl();
     this.groupControl2 = new DevExpress.XtraEditors.GroupControl();
     this.btnNew = new DevExpress.XtraEditors.SimpleButton();
     this.usersTableAdapter = new RetirementCenter.DataSources.dsRetirementCenterTableAdapters.UsersTableAdapter();
     this.tBLBeanWarsaTableAdapter = new RetirementCenter.DataSources.dsRetirementCenterTableAdapters.TBLBeanWarsaTableAdapter();
     ((System.ComponentModel.ISupportInitialize)(this.gridControlData)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.XPSCSData)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.UOWData)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridViewData)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemMemoExEditremarks)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemDateEditDMY)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemDateEditDMY.VistaTimeProperties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemDateEditdatein)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemDateEditdatein.VistaTimeProperties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemGridLookUpEdituserin)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.usersBindingSource)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.dsRetirementCenter)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridView2)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemButtonEditSave)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemButtonEditDel)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.groupControl1)).BeginInit();
     this.groupControl1.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.groupControl2)).BeginInit();
     this.groupControl2.SuspendLayout();
     this.SuspendLayout();
     //
     // gridControlData
     //
     this.gridControlData.DataSource = this.XPSCSData;
     this.gridControlData.Dock = System.Windows.Forms.DockStyle.Fill;
     this.gridControlData.EmbeddedNavigator.Buttons.Append.Visible = false;
     this.gridControlData.EmbeddedNavigator.Buttons.CancelEdit.Visible = false;
     this.gridControlData.EmbeddedNavigator.Buttons.Edit.Visible = false;
     this.gridControlData.EmbeddedNavigator.Buttons.EndEdit.Visible = false;
     this.gridControlData.EmbeddedNavigator.Buttons.Remove.Visible = false;
     this.gridControlData.Location = new System.Drawing.Point(2, 21);
     this.gridControlData.MainView = this.gridViewData;
     this.gridControlData.Name = "gridControlData";
     this.gridControlData.RepositoryItems.AddRange(new DevExpress.XtraEditors.Repository.RepositoryItem[] {
     this.repositoryItemButtonEditSave,
     this.repositoryItemButtonEditDel,
     this.repositoryItemDateEditdatein,
     this.repositoryItemGridLookUpEdituserin,
     this.repositoryItemMemoExEditremarks,
     this.repositoryItemDateEditDMY});
     this.gridControlData.Size = new System.Drawing.Size(1051, 273);
     this.gridControlData.TabIndex = 0;
     this.gridControlData.UseEmbeddedNavigator = true;
     this.gridControlData.ViewCollection.AddRange(new DevExpress.XtraGrid.Views.Base.BaseView[] {
     this.gridViewData});
     this.gridControlData.KeyDown += new System.Windows.Forms.KeyEventHandler(this.ActiveKeyDownEvent);
     //
     // XPSCSData
     //
     this.XPSCSData.AllowEdit = true;
     this.XPSCSData.AllowNew = true;
     this.XPSCSData.AllowRemove = true;
     this.XPSCSData.ObjectType = typeof(RetirementCenter.DataSources.dsQueries.vQry59DataTable);
     this.XPSCSData.Session = this.UOWData;
     //
     // UOWData
     //
     this.UOWData.TrackPropertiesModifications = false;
     //
     // gridViewData
     //
     this.gridViewData.Columns.AddRange(new DevExpress.XtraGrid.Columns.GridColumn[] {
     this.colDofatSarfAId,
     this.colMMashatId,
     this.colamanatrem,
     this.colBeandate,
     this.coldateremember,
     this.coldeleted,
     this.coldatein,
     this.coluserin,
     this.gridColumnSave,
     this.gridColumnDelete,
     this.colMMashatName1,
     this.colsarfnumber,
     this.colSyndicate,
     this.colSubCommitte});
     this.gridViewData.GridControl = this.gridControlData;
     this.gridViewData.Name = "gridViewData";
     this.gridViewData.NewItemRowText = "اضغط لاضافة جديد";
     this.gridViewData.OptionsNavigation.AutoFocusNewRow = true;
     this.gridViewData.OptionsView.ColumnAutoWidth = false;
     this.gridViewData.OptionsView.ShowAutoFilterRow = true;
     this.gridViewData.OptionsView.ShowDetailButtons = false;
     //
     // colDofatSarfAId
     //
     this.colDofatSarfAId.AppearanceCell.Options.UseTextOptions = true;
     this.colDofatSarfAId.AppearanceCell.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.colDofatSarfAId.AppearanceHeader.Options.UseTextOptions = true;
     this.colDofatSarfAId.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.colDofatSarfAId.Caption = "الدفعة";
     this.colDofatSarfAId.FieldName = "DofatSarf";
     this.colDofatSarfAId.Name = "colDofatSarfAId";
     this.colDofatSarfAId.OptionsColumn.AllowEdit = false;
     this.colDofatSarfAId.Visible = true;
     this.colDofatSarfAId.VisibleIndex = 0;
     this.colDofatSarfAId.Width = 128;
     //
     // colMMashatId
     //
     this.colMMashatId.AppearanceCell.Options.UseTextOptions = true;
     this.colMMashatId.AppearanceCell.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.colMMashatId.AppearanceHeader.Options.UseTextOptions = true;
     this.colMMashatId.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.colMMashatId.Caption = "اسم الوريث";
     this.colMMashatId.FieldName = "personName";
     this.colMMashatId.Name = "colMMashatId";
     this.colMMashatId.OptionsColumn.AllowEdit = false;
     this.colMMashatId.Visible = true;
     this.colMMashatId.VisibleIndex = 3;
     this.colMMashatId.Width = 150;
     //
     // colamanatrem
     //
     this.colamanatrem.AppearanceCell.Options.UseTextOptions = true;
     this.colamanatrem.AppearanceCell.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.colamanatrem.AppearanceHeader.Options.UseTextOptions = true;
     this.colamanatrem.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.colamanatrem.Caption = "ملاحظات";
     this.colamanatrem.ColumnEdit = this.repositoryItemMemoExEditremarks;
     this.colamanatrem.FieldName = "remarks";
     this.colamanatrem.Name = "colamanatrem";
     this.colamanatrem.Visible = true;
     this.colamanatrem.VisibleIndex = 7;
     //
     // repositoryItemMemoExEditremarks
     //
     this.repositoryItemMemoExEditremarks.AutoHeight = false;
     this.repositoryItemMemoExEditremarks.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.repositoryItemMemoExEditremarks.Name = "repositoryItemMemoExEditremarks";
     //
     // colBeandate
     //
     this.colBeandate.AppearanceCell.Options.UseTextOptions = true;
     this.colBeandate.AppearanceCell.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.colBeandate.AppearanceHeader.Options.UseTextOptions = true;
     this.colBeandate.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.colBeandate.Caption = "التاريخ";
     this.colBeandate.ColumnEdit = this.repositoryItemDateEditDMY;
     this.colBeandate.FieldName = "Beandate";
     this.colBeandate.Name = "colBeandate";
     this.colBeandate.Visible = true;
     this.colBeandate.VisibleIndex = 8;
     //
     // repositoryItemDateEditDMY
     //
     this.repositoryItemDateEditDMY.AutoHeight = false;
     this.repositoryItemDateEditDMY.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.repositoryItemDateEditDMY.DisplayFormat.FormatString = "d/M/yyyy";
     this.repositoryItemDateEditDMY.DisplayFormat.FormatType = DevExpress.Utils.FormatType.DateTime;
     this.repositoryItemDateEditDMY.EditFormat.FormatString = "d/M/yyyy";
     this.repositoryItemDateEditDMY.EditFormat.FormatType = DevExpress.Utils.FormatType.DateTime;
     this.repositoryItemDateEditDMY.Mask.EditMask = "d/M/yyyy";
     this.repositoryItemDateEditDMY.Name = "repositoryItemDateEditDMY";
     this.repositoryItemDateEditDMY.VistaTimeProperties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton()});
     //
     // coldateremember
     //
     this.coldateremember.AppearanceCell.Options.UseTextOptions = true;
     this.coldateremember.AppearanceCell.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.coldateremember.AppearanceHeader.Options.UseTextOptions = true;
     this.coldateremember.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.coldateremember.Caption = "تاريخ التذكير";
     this.coldateremember.FieldName = "dateremember";
     this.coldateremember.Name = "coldateremember";
     this.coldateremember.Visible = true;
     this.coldateremember.VisibleIndex = 9;
     //
     // coldeleted
     //
     this.coldeleted.AppearanceCell.Options.UseTextOptions = true;
     this.coldeleted.AppearanceCell.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.coldeleted.AppearanceHeader.Options.UseTextOptions = true;
     this.coldeleted.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.coldeleted.Caption = "منع";
     this.coldeleted.FieldName = "deleted";
     this.coldeleted.Name = "coldeleted";
     this.coldeleted.OptionsColumn.AllowEdit = false;
     this.coldeleted.Visible = true;
     this.coldeleted.VisibleIndex = 6;
     //
     // coldatein
     //
     this.coldatein.AppearanceCell.Options.UseTextOptions = true;
     this.coldatein.AppearanceCell.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.coldatein.AppearanceHeader.Options.UseTextOptions = true;
     this.coldatein.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.coldatein.Caption = "تاريخ الادخال";
     this.coldatein.ColumnEdit = this.repositoryItemDateEditdatein;
     this.coldatein.FieldName = "datein";
     this.coldatein.Name = "coldatein";
     this.coldatein.OptionsColumn.AllowEdit = false;
     this.coldatein.Width = 94;
     //
     // repositoryItemDateEditdatein
     //
     this.repositoryItemDateEditdatein.AutoHeight = false;
     this.repositoryItemDateEditdatein.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.repositoryItemDateEditdatein.DisplayFormat.FormatString = "g";
     this.repositoryItemDateEditdatein.DisplayFormat.FormatType = DevExpress.Utils.FormatType.DateTime;
     this.repositoryItemDateEditdatein.EditFormat.FormatString = "g";
     this.repositoryItemDateEditdatein.EditFormat.FormatType = DevExpress.Utils.FormatType.DateTime;
     this.repositoryItemDateEditdatein.Mask.EditMask = "g";
     this.repositoryItemDateEditdatein.Name = "repositoryItemDateEditdatein";
     this.repositoryItemDateEditdatein.VistaTimeProperties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton()});
     //
     // coluserin
     //
     this.coluserin.AppearanceCell.Options.UseTextOptions = true;
     this.coluserin.AppearanceCell.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.coluserin.AppearanceHeader.Options.UseTextOptions = true;
     this.coluserin.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.coluserin.Caption = "مسئول الادخال";
     this.coluserin.ColumnEdit = this.repositoryItemGridLookUpEdituserin;
     this.coluserin.FieldName = "userin";
     this.coluserin.Name = "coluserin";
     this.coluserin.OptionsColumn.AllowEdit = false;
     this.coluserin.Width = 97;
     //
     // repositoryItemGridLookUpEdituserin
     //
     this.repositoryItemGridLookUpEdituserin.AutoHeight = false;
     this.repositoryItemGridLookUpEdituserin.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.repositoryItemGridLookUpEdituserin.DataSource = this.usersBindingSource;
     this.repositoryItemGridLookUpEdituserin.DisplayMember = "RealName";
     this.repositoryItemGridLookUpEdituserin.Name = "repositoryItemGridLookUpEdituserin";
     this.repositoryItemGridLookUpEdituserin.NullText = "";
     this.repositoryItemGridLookUpEdituserin.ValueMember = "UserID";
     this.repositoryItemGridLookUpEdituserin.View = this.gridView2;
     //
     // usersBindingSource
     //
     this.usersBindingSource.DataMember = "Users";
     this.usersBindingSource.DataSource = this.dsRetirementCenter;
     //
     // dsRetirementCenter
     //
     this.dsRetirementCenter.DataSetName = "dsRetirementCenter";
     this.dsRetirementCenter.SchemaSerializationMode = System.Data.SchemaSerializationMode.IncludeSchema;
     //
     // gridView2
     //
     this.gridView2.Columns.AddRange(new DevExpress.XtraGrid.Columns.GridColumn[] {
     this.colRealName});
     this.gridView2.FocusRectStyle = DevExpress.XtraGrid.Views.Grid.DrawFocusRectStyle.RowFocus;
     this.gridView2.Name = "gridView2";
     this.gridView2.OptionsSelection.EnableAppearanceFocusedCell = false;
     this.gridView2.OptionsView.ShowGroupPanel = false;
     //
     // colRealName
     //
     this.colRealName.FieldName = "RealName";
     this.colRealName.Name = "colRealName";
     this.colRealName.Visible = true;
     this.colRealName.VisibleIndex = 0;
     //
     // gridColumnSave
     //
     this.gridColumnSave.AppearanceCell.Options.UseTextOptions = true;
     this.gridColumnSave.AppearanceCell.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.gridColumnSave.AppearanceHeader.Options.UseTextOptions = true;
     this.gridColumnSave.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.gridColumnSave.Caption = "حفظ";
     this.gridColumnSave.ColumnEdit = this.repositoryItemButtonEditSave;
     this.gridColumnSave.Fixed = DevExpress.XtraGrid.Columns.FixedStyle.Right;
     this.gridColumnSave.Name = "gridColumnSave";
     this.gridColumnSave.Visible = true;
     this.gridColumnSave.VisibleIndex = 10;
     this.gridColumnSave.Width = 55;
     //
     // repositoryItemButtonEditSave
     //
     this.repositoryItemButtonEditSave.AutoHeight = false;
     this.repositoryItemButtonEditSave.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.OK)});
     this.repositoryItemButtonEditSave.Name = "repositoryItemButtonEditSave";
     this.repositoryItemButtonEditSave.TextEditStyle = DevExpress.XtraEditors.Controls.TextEditStyles.HideTextEditor;
     this.repositoryItemButtonEditSave.ButtonClick += new DevExpress.XtraEditors.Controls.ButtonPressedEventHandler(this.repositoryItemButtonEditSave_ButtonClick);
     //
     // gridColumnDelete
     //
     this.gridColumnDelete.AppearanceCell.Options.UseTextOptions = true;
     this.gridColumnDelete.AppearanceCell.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.gridColumnDelete.AppearanceHeader.Options.UseTextOptions = true;
     this.gridColumnDelete.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.gridColumnDelete.Caption = "حذف";
     this.gridColumnDelete.ColumnEdit = this.repositoryItemButtonEditDel;
     this.gridColumnDelete.Fixed = DevExpress.XtraGrid.Columns.FixedStyle.Right;
     this.gridColumnDelete.Name = "gridColumnDelete";
     this.gridColumnDelete.Visible = true;
     this.gridColumnDelete.VisibleIndex = 11;
     this.gridColumnDelete.Width = 51;
     //
     // repositoryItemButtonEditDel
     //
     this.repositoryItemButtonEditDel.AutoHeight = false;
     this.repositoryItemButtonEditDel.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Delete)});
     this.repositoryItemButtonEditDel.Name = "repositoryItemButtonEditDel";
     this.repositoryItemButtonEditDel.TextEditStyle = DevExpress.XtraEditors.Controls.TextEditStyles.HideTextEditor;
     this.repositoryItemButtonEditDel.ButtonClick += new DevExpress.XtraEditors.Controls.ButtonPressedEventHandler(this.repositoryItemButtonEditDel_ButtonClick);
     //
     // colMMashatName1
     //
     this.colMMashatName1.AppearanceCell.Options.UseTextOptions = true;
     this.colMMashatName1.AppearanceCell.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.colMMashatName1.AppearanceHeader.Options.UseTextOptions = true;
     this.colMMashatName1.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.colMMashatName1.Caption = "اسم الاب";
     this.colMMashatName1.FieldName = "MMashatName";
     this.colMMashatName1.Name = "colMMashatName1";
     this.colMMashatName1.OptionsColumn.AllowEdit = false;
     this.colMMashatName1.Visible = true;
     this.colMMashatName1.VisibleIndex = 1;
     //
     // colsarfnumber
     //
     this.colsarfnumber.AppearanceCell.Options.UseTextOptions = true;
     this.colsarfnumber.AppearanceCell.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.colsarfnumber.AppearanceHeader.Options.UseTextOptions = true;
     this.colsarfnumber.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.colsarfnumber.Caption = "رقم صرف";
     this.colsarfnumber.FieldName = "sarfnumber";
     this.colsarfnumber.Name = "colsarfnumber";
     this.colsarfnumber.OptionsColumn.AllowEdit = false;
     this.colsarfnumber.Visible = true;
     this.colsarfnumber.VisibleIndex = 2;
     //
     // colSyndicate
     //
     this.colSyndicate.AppearanceCell.Options.UseTextOptions = true;
     this.colSyndicate.AppearanceCell.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.colSyndicate.AppearanceHeader.Options.UseTextOptions = true;
     this.colSyndicate.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.colSyndicate.Caption = "فرعية";
     this.colSyndicate.FieldName = "Syndicate";
     this.colSyndicate.Name = "colSyndicate";
     this.colSyndicate.OptionsColumn.AllowEdit = false;
     this.colSyndicate.Visible = true;
     this.colSyndicate.VisibleIndex = 4;
     //
     // colSubCommitte
     //
     this.colSubCommitte.AppearanceCell.Options.UseTextOptions = true;
     this.colSubCommitte.AppearanceCell.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.colSubCommitte.AppearanceHeader.Options.UseTextOptions = true;
     this.colSubCommitte.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.colSubCommitte.Caption = "لجنة";
     this.colSubCommitte.FieldName = "SubCommitte";
     this.colSubCommitte.Name = "colSubCommitte";
     this.colSubCommitte.OptionsColumn.AllowEdit = false;
     this.colSubCommitte.Visible = true;
     this.colSubCommitte.VisibleIndex = 5;
     //
     // colEDARET
     //
     this.colEDARET.AppearanceCell.Options.UseTextOptions = true;
     this.colEDARET.AppearanceCell.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.colEDARET.AppearanceHeader.Options.UseTextOptions = true;
     this.colEDARET.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.colEDARET.Caption = "اسم الاداره";
     this.colEDARET.FieldName = "EDARET";
     this.colEDARET.Name = "colEDARET";
     this.colEDARET.Visible = true;
     this.colEDARET.VisibleIndex = 0;
     //
     // colEDARET1
     //
     this.colEDARET1.AppearanceCell.Options.UseTextOptions = true;
     this.colEDARET1.AppearanceCell.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.colEDARET1.AppearanceHeader.Options.UseTextOptions = true;
     this.colEDARET1.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.colEDARET1.Caption = "الادارة";
     this.colEDARET1.FieldName = "EDARET";
     this.colEDARET1.Name = "colEDARET1";
     this.colEDARET1.Visible = true;
     this.colEDARET1.VisibleIndex = 0;
     //
     // colEdaraMandopName
     //
     this.colEdaraMandopName.AppearanceCell.Options.UseTextOptions = true;
     this.colEdaraMandopName.AppearanceCell.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.colEdaraMandopName.AppearanceHeader.Options.UseTextOptions = true;
     this.colEdaraMandopName.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.colEdaraMandopName.Caption = "الاسم";
     this.colEdaraMandopName.FieldName = "EdaraMandopName";
     this.colEdaraMandopName.Name = "colEdaraMandopName";
     this.colEdaraMandopName.Visible = true;
     this.colEdaraMandopName.VisibleIndex = 0;
     //
     // colnkapaMandopName
     //
     this.colnkapaMandopName.AppearanceCell.Options.UseTextOptions = true;
     this.colnkapaMandopName.AppearanceCell.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.colnkapaMandopName.AppearanceHeader.Options.UseTextOptions = true;
     this.colnkapaMandopName.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.colnkapaMandopName.Caption = "الاسم";
     this.colnkapaMandopName.FieldName = "nkapaMandopName";
     this.colnkapaMandopName.Name = "colnkapaMandopName";
     this.colnkapaMandopName.Visible = true;
     this.colnkapaMandopName.VisibleIndex = 0;
     //
     // gridColumn2
     //
     this.gridColumn2.AppearanceCell.Options.UseTextOptions = true;
     this.gridColumn2.AppearanceCell.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.gridColumn2.AppearanceHeader.Options.UseTextOptions = true;
     this.gridColumn2.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.gridColumn2.Caption = "اسم الشهر";
     this.gridColumn2.FieldName = "MonthName";
     this.gridColumn2.Name = "gridColumn2";
     this.gridColumn2.Visible = true;
     this.gridColumn2.VisibleIndex = 0;
     //
     // groupControl1
     //
     this.groupControl1.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
     | System.Windows.Forms.AnchorStyles.Left)
     | System.Windows.Forms.AnchorStyles.Right)));
     this.groupControl1.Controls.Add(this.gridControlData);
     this.groupControl1.Location = new System.Drawing.Point(12, 12);
     this.groupControl1.Name = "groupControl1";
     this.groupControl1.Size = new System.Drawing.Size(1055, 296);
     this.groupControl1.TabIndex = 1;
     //
     // groupControl2
     //
     this.groupControl2.AllowTouchScroll = true;
     this.groupControl2.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)
     | System.Windows.Forms.AnchorStyles.Right)));
     this.groupControl2.Controls.Add(this.btnNew);
     this.groupControl2.Location = new System.Drawing.Point(12, 314);
     this.groupControl2.Name = "groupControl2";
     this.groupControl2.Size = new System.Drawing.Size(1055, 62);
     this.groupControl2.TabIndex = 2;
     //
     // btnNew
     //
     this.btnNew.Anchor = System.Windows.Forms.AnchorStyles.Right;
     this.btnNew.Image = global::RetirementCenter.Properties.Resources.Add;
     this.btnNew.Location = new System.Drawing.Point(850, 23);
     this.btnNew.Name = "btnNew";
     this.btnNew.Size = new System.Drawing.Size(200, 35);
     this.btnNew.TabIndex = 0;
     this.btnNew.Text = "جديد";
     this.btnNew.Click += new System.EventHandler(this.btnNew_Click);
     //
     // usersTableAdapter
     //
     this.usersTableAdapter.ClearBeforeFill = true;
     //
     // tBLBeanWarsaTableAdapter
     //
     this.tBLBeanWarsaTableAdapter.ClearBeforeFill = true;
     //
     // TBLBeanWarsaFrm
     //
     this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
     this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
     this.ClientSize = new System.Drawing.Size(1079, 388);
     this.Controls.Add(this.groupControl2);
     this.Controls.Add(this.groupControl1);
     this.Name = "TBLBeanWarsaFrm";
     this.Text = "بيان الورثة";
     this.Load += new System.EventHandler(this.FormFrm_Load);
     ((System.ComponentModel.ISupportInitialize)(this.gridControlData)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.XPSCSData)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.UOWData)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridViewData)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemMemoExEditremarks)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemDateEditDMY.VistaTimeProperties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemDateEditDMY)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemDateEditdatein.VistaTimeProperties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemDateEditdatein)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemGridLookUpEdituserin)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.usersBindingSource)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.dsRetirementCenter)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridView2)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemButtonEditSave)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemButtonEditDel)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.groupControl1)).EndInit();
     this.groupControl1.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.groupControl2)).EndInit();
     this.groupControl2.ResumeLayout(false);
     this.ResumeLayout(false);
 }
Пример #54
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.SerializableAppearanceObject serializableAppearanceObject1 = new DevExpress.Utils.SerializableAppearanceObject();
     DevExpress.Utils.SerializableAppearanceObject serializableAppearanceObject2 = new DevExpress.Utils.SerializableAppearanceObject();
     DevExpress.Utils.SerializableAppearanceObject serializableAppearanceObject3 = new DevExpress.Utils.SerializableAppearanceObject();
     DevExpress.Utils.SerializableAppearanceObject serializableAppearanceObject4 = new DevExpress.Utils.SerializableAppearanceObject();
     DevExpress.Utils.SerializableAppearanceObject serializableAppearanceObject5 = new DevExpress.Utils.SerializableAppearanceObject();
     DevExpress.Utils.SerializableAppearanceObject serializableAppearanceObject6 = new DevExpress.Utils.SerializableAppearanceObject();
     System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(FrmSetPlaneParam));
     DevExpress.Utils.SerializableAppearanceObject serializableAppearanceObject7 = new DevExpress.Utils.SerializableAppearanceObject();
     DevExpress.Utils.SerializableAppearanceObject serializableAppearanceObject8 = new DevExpress.Utils.SerializableAppearanceObject();
     this.groupControl1 = new DevExpress.XtraEditors.GroupControl();
     this.spinEdit4 = new DevExpress.XtraEditors.SpinEdit();
     this.labelControl11 = new DevExpress.XtraEditors.LabelControl();
     this.labelControl10 = new DevExpress.XtraEditors.LabelControl();
     this.labelControl9 = new DevExpress.XtraEditors.LabelControl();
     this.spinEdit3 = new DevExpress.XtraEditors.SpinEdit();
     this.labelControl8 = new DevExpress.XtraEditors.LabelControl();
     this.labelControl7 = new DevExpress.XtraEditors.LabelControl();
     this.comboBoxEdit3 = new DevExpress.XtraEditors.ComboBoxEdit();
     this.comboBoxEdit2 = new DevExpress.XtraEditors.ComboBoxEdit();
     this.buttonEdit1 = new DevExpress.XtraEditors.ButtonEdit();
     this.spinEdit2 = new DevExpress.XtraEditors.SpinEdit();
     this.labelControl6 = new DevExpress.XtraEditors.LabelControl();
     this.simpleButton5 = new DevExpress.XtraEditors.SimpleButton();
     this.labelControl5 = new DevExpress.XtraEditors.LabelControl();
     this.simpleButton4 = new DevExpress.XtraEditors.SimpleButton();
     this.simpleButton3 = new DevExpress.XtraEditors.SimpleButton();
     this.checkButton1 = new DevExpress.XtraEditors.CheckButton();
     this.labelControl4 = new DevExpress.XtraEditors.LabelControl();
     this.textBox1 = new System.Windows.Forms.TextBox();
     this.labelControl3 = new DevExpress.XtraEditors.LabelControl();
     this.comboBoxEdit1 = new DevExpress.XtraEditors.ComboBoxEdit();
     this.spinEdit1 = new DevExpress.XtraEditors.SpinEdit();
     this.textEdit2 = new DevExpress.XtraEditors.TextEdit();
     this.labelControl2 = new DevExpress.XtraEditors.LabelControl();
     this.labelControl1 = new DevExpress.XtraEditors.LabelControl();
     this.simpleButton2 = new DevExpress.XtraEditors.SimpleButton();
     this.simpleButton1 = new DevExpress.XtraEditors.SimpleButton();
     this.openFileDialog1 = new System.Windows.Forms.OpenFileDialog();
     ((System.ComponentModel.ISupportInitialize)(this.groupControl1)).BeginInit();
     this.groupControl1.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.spinEdit4.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.spinEdit3.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.comboBoxEdit3.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.comboBoxEdit2.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.buttonEdit1.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.spinEdit2.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.comboBoxEdit1.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.spinEdit1.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.textEdit2.Properties)).BeginInit();
     this.SuspendLayout();
     //
     // groupControl1
     //
     this.groupControl1.Appearance.GradientMode = System.Drawing.Drawing2D.LinearGradientMode.Horizontal;
     this.groupControl1.Appearance.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Default;
     this.groupControl1.Appearance.TextOptions.HotkeyPrefix = DevExpress.Utils.HKeyPrefix.Default;
     this.groupControl1.Appearance.TextOptions.Trimming = DevExpress.Utils.Trimming.Default;
     this.groupControl1.Appearance.TextOptions.VAlignment = DevExpress.Utils.VertAlignment.Default;
     this.groupControl1.Appearance.TextOptions.WordWrap = DevExpress.Utils.WordWrap.Default;
     this.groupControl1.AppearanceCaption.GradientMode = System.Drawing.Drawing2D.LinearGradientMode.Horizontal;
     this.groupControl1.AppearanceCaption.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Default;
     this.groupControl1.AppearanceCaption.TextOptions.HotkeyPrefix = DevExpress.Utils.HKeyPrefix.Default;
     this.groupControl1.AppearanceCaption.TextOptions.Trimming = DevExpress.Utils.Trimming.Default;
     this.groupControl1.AppearanceCaption.TextOptions.VAlignment = DevExpress.Utils.VertAlignment.Default;
     this.groupControl1.AppearanceCaption.TextOptions.WordWrap = DevExpress.Utils.WordWrap.Default;
     this.groupControl1.CaptionImageLocation = DevExpress.Utils.GroupElementLocation.Default;
     this.groupControl1.CaptionLocation = DevExpress.Utils.Locations.Default;
     this.groupControl1.ContentImageAlignment = System.Drawing.ContentAlignment.MiddleCenter;
     this.groupControl1.Controls.Add(this.spinEdit4);
     this.groupControl1.Controls.Add(this.labelControl11);
     this.groupControl1.Controls.Add(this.labelControl10);
     this.groupControl1.Controls.Add(this.labelControl9);
     this.groupControl1.Controls.Add(this.spinEdit3);
     this.groupControl1.Controls.Add(this.labelControl8);
     this.groupControl1.Controls.Add(this.labelControl7);
     this.groupControl1.Controls.Add(this.comboBoxEdit3);
     this.groupControl1.Controls.Add(this.comboBoxEdit2);
     this.groupControl1.Controls.Add(this.buttonEdit1);
     this.groupControl1.Controls.Add(this.spinEdit2);
     this.groupControl1.Controls.Add(this.labelControl6);
     this.groupControl1.Controls.Add(this.simpleButton5);
     this.groupControl1.Controls.Add(this.labelControl5);
     this.groupControl1.Controls.Add(this.simpleButton4);
     this.groupControl1.Controls.Add(this.simpleButton3);
     this.groupControl1.Controls.Add(this.checkButton1);
     this.groupControl1.Controls.Add(this.labelControl4);
     this.groupControl1.Controls.Add(this.textBox1);
     this.groupControl1.Controls.Add(this.labelControl3);
     this.groupControl1.Controls.Add(this.comboBoxEdit1);
     this.groupControl1.Controls.Add(this.spinEdit1);
     this.groupControl1.Controls.Add(this.textEdit2);
     this.groupControl1.Controls.Add(this.labelControl2);
     this.groupControl1.Controls.Add(this.labelControl1);
     this.groupControl1.Controls.Add(this.simpleButton2);
     this.groupControl1.Controls.Add(this.simpleButton1);
     this.groupControl1.Dock = System.Windows.Forms.DockStyle.Fill;
     this.groupControl1.Location = new System.Drawing.Point(0, 0);
     this.groupControl1.LookAndFeel.Style = DevExpress.LookAndFeel.LookAndFeelStyle.Skin;
     this.groupControl1.Name = "groupControl1";
     this.groupControl1.Size = new System.Drawing.Size(289, 266);
     this.groupControl1.TabIndex = 0;
     this.groupControl1.Text = "飞行参数";
     //
     // spinEdit4
     //
     this.spinEdit4.AllowHtmlTextInToolTip = DevExpress.Utils.DefaultBoolean.Default;
     this.spinEdit4.EditValue = new decimal(new int[] {
     0,
     0,
     0,
     0});
     this.spinEdit4.Location = new System.Drawing.Point(57, 147);
     this.spinEdit4.Name = "spinEdit4";
     this.spinEdit4.Properties.AccessibleRole = System.Windows.Forms.AccessibleRole.Default;
     this.spinEdit4.Properties.AllowNullInput = DevExpress.Utils.DefaultBoolean.Default;
     this.spinEdit4.Properties.Appearance.GradientMode = System.Drawing.Drawing2D.LinearGradientMode.Horizontal;
     this.spinEdit4.Properties.Appearance.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Default;
     this.spinEdit4.Properties.Appearance.TextOptions.HotkeyPrefix = DevExpress.Utils.HKeyPrefix.Default;
     this.spinEdit4.Properties.Appearance.TextOptions.Trimming = DevExpress.Utils.Trimming.Default;
     this.spinEdit4.Properties.Appearance.TextOptions.VAlignment = DevExpress.Utils.VertAlignment.Default;
     this.spinEdit4.Properties.Appearance.TextOptions.WordWrap = DevExpress.Utils.WordWrap.Default;
     this.spinEdit4.Properties.AppearanceDisabled.GradientMode = System.Drawing.Drawing2D.LinearGradientMode.Horizontal;
     this.spinEdit4.Properties.AppearanceDisabled.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Default;
     this.spinEdit4.Properties.AppearanceDisabled.TextOptions.HotkeyPrefix = DevExpress.Utils.HKeyPrefix.Default;
     this.spinEdit4.Properties.AppearanceDisabled.TextOptions.Trimming = DevExpress.Utils.Trimming.Default;
     this.spinEdit4.Properties.AppearanceDisabled.TextOptions.VAlignment = DevExpress.Utils.VertAlignment.Default;
     this.spinEdit4.Properties.AppearanceDisabled.TextOptions.WordWrap = DevExpress.Utils.WordWrap.Default;
     this.spinEdit4.Properties.AppearanceFocused.GradientMode = System.Drawing.Drawing2D.LinearGradientMode.Horizontal;
     this.spinEdit4.Properties.AppearanceFocused.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Default;
     this.spinEdit4.Properties.AppearanceFocused.TextOptions.HotkeyPrefix = DevExpress.Utils.HKeyPrefix.Default;
     this.spinEdit4.Properties.AppearanceFocused.TextOptions.Trimming = DevExpress.Utils.Trimming.Default;
     this.spinEdit4.Properties.AppearanceFocused.TextOptions.VAlignment = DevExpress.Utils.VertAlignment.Default;
     this.spinEdit4.Properties.AppearanceFocused.TextOptions.WordWrap = DevExpress.Utils.WordWrap.Default;
     this.spinEdit4.Properties.AppearanceReadOnly.GradientMode = System.Drawing.Drawing2D.LinearGradientMode.Horizontal;
     this.spinEdit4.Properties.AppearanceReadOnly.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Default;
     this.spinEdit4.Properties.AppearanceReadOnly.TextOptions.HotkeyPrefix = DevExpress.Utils.HKeyPrefix.Default;
     this.spinEdit4.Properties.AppearanceReadOnly.TextOptions.Trimming = DevExpress.Utils.Trimming.Default;
     this.spinEdit4.Properties.AppearanceReadOnly.TextOptions.VAlignment = DevExpress.Utils.VertAlignment.Default;
     this.spinEdit4.Properties.AppearanceReadOnly.TextOptions.WordWrap = DevExpress.Utils.WordWrap.Default;
     this.spinEdit4.Properties.BorderStyle = DevExpress.XtraEditors.Controls.BorderStyles.Default;
     serializableAppearanceObject1.GradientMode = System.Drawing.Drawing2D.LinearGradientMode.Horizontal;
     serializableAppearanceObject1.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Default;
     serializableAppearanceObject1.TextOptions.HotkeyPrefix = DevExpress.Utils.HKeyPrefix.Default;
     serializableAppearanceObject1.TextOptions.Trimming = DevExpress.Utils.Trimming.Default;
     serializableAppearanceObject1.TextOptions.VAlignment = DevExpress.Utils.VertAlignment.Default;
     serializableAppearanceObject1.TextOptions.WordWrap = DevExpress.Utils.WordWrap.Default;
     this.spinEdit4.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Ellipsis, "", -1, true, true, false, DevExpress.XtraEditors.ImageLocation.MiddleCenter, null, new DevExpress.Utils.KeyShortcut(System.Windows.Forms.Keys.None), serializableAppearanceObject1, "", null, null, true)});
     this.spinEdit4.Properties.CharacterCasing = System.Windows.Forms.CharacterCasing.Normal;
     this.spinEdit4.Properties.EditValueChangedFiringMode = DevExpress.XtraEditors.Controls.EditValueChangedFiringMode.Buffered;
     this.spinEdit4.Properties.ExportMode = DevExpress.XtraEditors.Repository.ExportMode.Default;
     this.spinEdit4.Properties.LookAndFeel.Style = DevExpress.LookAndFeel.LookAndFeelStyle.Skin;
     this.spinEdit4.Properties.Mask.AutoComplete = DevExpress.XtraEditors.Mask.AutoCompleteType.Default;
     this.spinEdit4.Properties.Mask.MaskType = DevExpress.XtraEditors.Mask.MaskType.Numeric;
     this.spinEdit4.Properties.SpinStyle = DevExpress.XtraEditors.Controls.SpinStyles.Vertical;
     this.spinEdit4.Properties.TextEditStyle = DevExpress.XtraEditors.Controls.TextEditStyles.Standard;
     this.spinEdit4.Size = new System.Drawing.Size(49, 21);
     this.spinEdit4.TabIndex = 27;
     this.spinEdit4.ToolTipIconType = DevExpress.Utils.ToolTipIconType.None;
     //
     // labelControl11
     //
     this.labelControl11.AllowHtmlTextInToolTip = DevExpress.Utils.DefaultBoolean.Default;
     this.labelControl11.Appearance.GradientMode = System.Drawing.Drawing2D.LinearGradientMode.Horizontal;
     this.labelControl11.Appearance.ImageAlign = System.Drawing.ContentAlignment.MiddleCenter;
     this.labelControl11.Appearance.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Default;
     this.labelControl11.Appearance.TextOptions.HotkeyPrefix = DevExpress.Utils.HKeyPrefix.Default;
     this.labelControl11.Appearance.TextOptions.Trimming = DevExpress.Utils.Trimming.Default;
     this.labelControl11.Appearance.TextOptions.VAlignment = DevExpress.Utils.VertAlignment.Default;
     this.labelControl11.Appearance.TextOptions.WordWrap = DevExpress.Utils.WordWrap.Default;
     this.labelControl11.AutoSizeMode = DevExpress.XtraEditors.LabelAutoSizeMode.Default;
     this.labelControl11.ImageAlignToText = DevExpress.XtraEditors.ImageAlignToText.None;
     this.labelControl11.LineLocation = DevExpress.XtraEditors.LineLocation.Default;
     this.labelControl11.LineOrientation = DevExpress.XtraEditors.LabelLineOrientation.Default;
     this.labelControl11.Location = new System.Drawing.Point(140, 31);
     this.labelControl11.LookAndFeel.Style = DevExpress.LookAndFeel.LookAndFeelStyle.Skin;
     this.labelControl11.Name = "labelControl11";
     this.labelControl11.Size = new System.Drawing.Size(29, 14);
     this.labelControl11.TabIndex = 26;
     this.labelControl11.Text = "米/秒";
     this.labelControl11.ToolTipIconType = DevExpress.Utils.ToolTipIconType.None;
     //
     // labelControl10
     //
     this.labelControl10.AllowHtmlTextInToolTip = DevExpress.Utils.DefaultBoolean.Default;
     this.labelControl10.Appearance.GradientMode = System.Drawing.Drawing2D.LinearGradientMode.Horizontal;
     this.labelControl10.Appearance.ImageAlign = System.Drawing.ContentAlignment.MiddleCenter;
     this.labelControl10.Appearance.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Default;
     this.labelControl10.Appearance.TextOptions.HotkeyPrefix = DevExpress.Utils.HKeyPrefix.Default;
     this.labelControl10.Appearance.TextOptions.Trimming = DevExpress.Utils.Trimming.Default;
     this.labelControl10.Appearance.TextOptions.VAlignment = DevExpress.Utils.VertAlignment.Default;
     this.labelControl10.Appearance.TextOptions.WordWrap = DevExpress.Utils.WordWrap.Default;
     this.labelControl10.AutoSizeMode = DevExpress.XtraEditors.LabelAutoSizeMode.Default;
     this.labelControl10.ImageAlignToText = DevExpress.XtraEditors.ImageAlignToText.None;
     this.labelControl10.LineLocation = DevExpress.XtraEditors.LineLocation.Default;
     this.labelControl10.LineOrientation = DevExpress.XtraEditors.LabelLineOrientation.Default;
     this.labelControl10.Location = new System.Drawing.Point(140, 58);
     this.labelControl10.LookAndFeel.Style = DevExpress.LookAndFeel.LookAndFeelStyle.Skin;
     this.labelControl10.Name = "labelControl10";
     this.labelControl10.Size = new System.Drawing.Size(29, 14);
     this.labelControl10.TabIndex = 25;
     this.labelControl10.Text = "米/秒";
     this.labelControl10.ToolTipIconType = DevExpress.Utils.ToolTipIconType.None;
     //
     // labelControl9
     //
     this.labelControl9.AllowHtmlTextInToolTip = DevExpress.Utils.DefaultBoolean.Default;
     this.labelControl9.Appearance.GradientMode = System.Drawing.Drawing2D.LinearGradientMode.Horizontal;
     this.labelControl9.Appearance.ImageAlign = System.Drawing.ContentAlignment.MiddleCenter;
     this.labelControl9.Appearance.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Default;
     this.labelControl9.Appearance.TextOptions.HotkeyPrefix = DevExpress.Utils.HKeyPrefix.Default;
     this.labelControl9.Appearance.TextOptions.Trimming = DevExpress.Utils.Trimming.Default;
     this.labelControl9.Appearance.TextOptions.VAlignment = DevExpress.Utils.VertAlignment.Default;
     this.labelControl9.Appearance.TextOptions.WordWrap = DevExpress.Utils.WordWrap.Default;
     this.labelControl9.AutoSizeMode = DevExpress.XtraEditors.LabelAutoSizeMode.Default;
     this.labelControl9.ImageAlignToText = DevExpress.XtraEditors.ImageAlignToText.None;
     this.labelControl9.LineLocation = DevExpress.XtraEditors.LineLocation.Default;
     this.labelControl9.LineOrientation = DevExpress.XtraEditors.LabelLineOrientation.Default;
     this.labelControl9.Location = new System.Drawing.Point(4, 92);
     this.labelControl9.LookAndFeel.Style = DevExpress.LookAndFeel.LookAndFeelStyle.Skin;
     this.labelControl9.Name = "labelControl9";
     this.labelControl9.Size = new System.Drawing.Size(52, 14);
     this.labelControl9.TabIndex = 24;
     this.labelControl9.Text = "动态类型:";
     this.labelControl9.ToolTipIconType = DevExpress.Utils.ToolTipIconType.None;
     //
     // spinEdit3
     //
     this.spinEdit3.AllowHtmlTextInToolTip = DevExpress.Utils.DefaultBoolean.Default;
     this.spinEdit3.EditValue = new decimal(new int[] {
     1,
     0,
     0,
     0});
     this.spinEdit3.Location = new System.Drawing.Point(57, 172);
     this.spinEdit3.Name = "spinEdit3";
     this.spinEdit3.Properties.AccessibleRole = System.Windows.Forms.AccessibleRole.Default;
     this.spinEdit3.Properties.AllowNullInput = DevExpress.Utils.DefaultBoolean.Default;
     this.spinEdit3.Properties.Appearance.GradientMode = System.Drawing.Drawing2D.LinearGradientMode.Horizontal;
     this.spinEdit3.Properties.Appearance.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Default;
     this.spinEdit3.Properties.Appearance.TextOptions.HotkeyPrefix = DevExpress.Utils.HKeyPrefix.Default;
     this.spinEdit3.Properties.Appearance.TextOptions.Trimming = DevExpress.Utils.Trimming.Default;
     this.spinEdit3.Properties.Appearance.TextOptions.VAlignment = DevExpress.Utils.VertAlignment.Default;
     this.spinEdit3.Properties.Appearance.TextOptions.WordWrap = DevExpress.Utils.WordWrap.Default;
     this.spinEdit3.Properties.AppearanceDisabled.GradientMode = System.Drawing.Drawing2D.LinearGradientMode.Horizontal;
     this.spinEdit3.Properties.AppearanceDisabled.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Default;
     this.spinEdit3.Properties.AppearanceDisabled.TextOptions.HotkeyPrefix = DevExpress.Utils.HKeyPrefix.Default;
     this.spinEdit3.Properties.AppearanceDisabled.TextOptions.Trimming = DevExpress.Utils.Trimming.Default;
     this.spinEdit3.Properties.AppearanceDisabled.TextOptions.VAlignment = DevExpress.Utils.VertAlignment.Default;
     this.spinEdit3.Properties.AppearanceDisabled.TextOptions.WordWrap = DevExpress.Utils.WordWrap.Default;
     this.spinEdit3.Properties.AppearanceFocused.GradientMode = System.Drawing.Drawing2D.LinearGradientMode.Horizontal;
     this.spinEdit3.Properties.AppearanceFocused.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Default;
     this.spinEdit3.Properties.AppearanceFocused.TextOptions.HotkeyPrefix = DevExpress.Utils.HKeyPrefix.Default;
     this.spinEdit3.Properties.AppearanceFocused.TextOptions.Trimming = DevExpress.Utils.Trimming.Default;
     this.spinEdit3.Properties.AppearanceFocused.TextOptions.VAlignment = DevExpress.Utils.VertAlignment.Default;
     this.spinEdit3.Properties.AppearanceFocused.TextOptions.WordWrap = DevExpress.Utils.WordWrap.Default;
     this.spinEdit3.Properties.AppearanceReadOnly.GradientMode = System.Drawing.Drawing2D.LinearGradientMode.Horizontal;
     this.spinEdit3.Properties.AppearanceReadOnly.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Default;
     this.spinEdit3.Properties.AppearanceReadOnly.TextOptions.HotkeyPrefix = DevExpress.Utils.HKeyPrefix.Default;
     this.spinEdit3.Properties.AppearanceReadOnly.TextOptions.Trimming = DevExpress.Utils.Trimming.Default;
     this.spinEdit3.Properties.AppearanceReadOnly.TextOptions.VAlignment = DevExpress.Utils.VertAlignment.Default;
     this.spinEdit3.Properties.AppearanceReadOnly.TextOptions.WordWrap = DevExpress.Utils.WordWrap.Default;
     this.spinEdit3.Properties.BorderStyle = DevExpress.XtraEditors.Controls.BorderStyles.Default;
     serializableAppearanceObject2.GradientMode = System.Drawing.Drawing2D.LinearGradientMode.Horizontal;
     serializableAppearanceObject2.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Default;
     serializableAppearanceObject2.TextOptions.HotkeyPrefix = DevExpress.Utils.HKeyPrefix.Default;
     serializableAppearanceObject2.TextOptions.Trimming = DevExpress.Utils.Trimming.Default;
     serializableAppearanceObject2.TextOptions.VAlignment = DevExpress.Utils.VertAlignment.Default;
     serializableAppearanceObject2.TextOptions.WordWrap = DevExpress.Utils.WordWrap.Default;
     this.spinEdit3.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Ellipsis, "", -1, true, true, false, DevExpress.XtraEditors.ImageLocation.MiddleCenter, null, new DevExpress.Utils.KeyShortcut(System.Windows.Forms.Keys.None), serializableAppearanceObject2, "", null, null, true)});
     this.spinEdit3.Properties.CharacterCasing = System.Windows.Forms.CharacterCasing.Normal;
     this.spinEdit3.Properties.EditValueChangedFiringMode = DevExpress.XtraEditors.Controls.EditValueChangedFiringMode.Buffered;
     this.spinEdit3.Properties.ExportMode = DevExpress.XtraEditors.Repository.ExportMode.Default;
     this.spinEdit3.Properties.LookAndFeel.Style = DevExpress.LookAndFeel.LookAndFeelStyle.Skin;
     this.spinEdit3.Properties.Mask.AutoComplete = DevExpress.XtraEditors.Mask.AutoCompleteType.Default;
     this.spinEdit3.Properties.Mask.MaskType = DevExpress.XtraEditors.Mask.MaskType.Numeric;
     this.spinEdit3.Properties.SpinStyle = DevExpress.XtraEditors.Controls.SpinStyles.Vertical;
     this.spinEdit3.Properties.TextEditStyle = DevExpress.XtraEditors.Controls.TextEditStyles.Standard;
     this.spinEdit3.Size = new System.Drawing.Size(49, 21);
     this.spinEdit3.TabIndex = 23;
     this.spinEdit3.ToolTipIconType = DevExpress.Utils.ToolTipIconType.None;
     this.spinEdit3.EditValueChanged += new System.EventHandler(this.spinEdit3_EditValueChanged);
     //
     // labelControl8
     //
     this.labelControl8.AllowHtmlTextInToolTip = DevExpress.Utils.DefaultBoolean.Default;
     this.labelControl8.Appearance.GradientMode = System.Drawing.Drawing2D.LinearGradientMode.Horizontal;
     this.labelControl8.Appearance.ImageAlign = System.Drawing.ContentAlignment.MiddleCenter;
     this.labelControl8.Appearance.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Default;
     this.labelControl8.Appearance.TextOptions.HotkeyPrefix = DevExpress.Utils.HKeyPrefix.Default;
     this.labelControl8.Appearance.TextOptions.Trimming = DevExpress.Utils.Trimming.Default;
     this.labelControl8.Appearance.TextOptions.VAlignment = DevExpress.Utils.VertAlignment.Default;
     this.labelControl8.Appearance.TextOptions.WordWrap = DevExpress.Utils.WordWrap.Default;
     this.labelControl8.AutoSizeMode = DevExpress.XtraEditors.LabelAutoSizeMode.Default;
     this.labelControl8.ImageAlignToText = DevExpress.XtraEditors.ImageAlignToText.None;
     this.labelControl8.LineLocation = DevExpress.XtraEditors.LineLocation.Default;
     this.labelControl8.LineOrientation = DevExpress.XtraEditors.LabelLineOrientation.Default;
     this.labelControl8.Location = new System.Drawing.Point(1, 176);
     this.labelControl8.LookAndFeel.Style = DevExpress.LookAndFeel.LookAndFeelStyle.Skin;
     this.labelControl8.Name = "labelControl8";
     this.labelControl8.Size = new System.Drawing.Size(60, 14);
     this.labelControl8.TabIndex = 22;
     this.labelControl8.Text = "模型比例:";
     this.labelControl8.ToolTipIconType = DevExpress.Utils.ToolTipIconType.None;
     //
     // labelControl7
     //
     this.labelControl7.AllowHtmlTextInToolTip = DevExpress.Utils.DefaultBoolean.Default;
     this.labelControl7.Appearance.GradientMode = System.Drawing.Drawing2D.LinearGradientMode.Horizontal;
     this.labelControl7.Appearance.ImageAlign = System.Drawing.ContentAlignment.MiddleCenter;
     this.labelControl7.Appearance.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Default;
     this.labelControl7.Appearance.TextOptions.HotkeyPrefix = DevExpress.Utils.HKeyPrefix.Default;
     this.labelControl7.Appearance.TextOptions.Trimming = DevExpress.Utils.Trimming.Default;
     this.labelControl7.Appearance.TextOptions.VAlignment = DevExpress.Utils.VertAlignment.Default;
     this.labelControl7.Appearance.TextOptions.WordWrap = DevExpress.Utils.WordWrap.Default;
     this.labelControl7.AutoSizeMode = DevExpress.XtraEditors.LabelAutoSizeMode.Default;
     this.labelControl7.ImageAlignToText = DevExpress.XtraEditors.ImageAlignToText.None;
     this.labelControl7.LineLocation = DevExpress.XtraEditors.LineLocation.Default;
     this.labelControl7.LineOrientation = DevExpress.XtraEditors.LabelLineOrientation.Default;
     this.labelControl7.Location = new System.Drawing.Point(4, 123);
     this.labelControl7.LookAndFeel.Style = DevExpress.LookAndFeel.LookAndFeelStyle.Skin;
     this.labelControl7.Name = "labelControl7";
     this.labelControl7.Size = new System.Drawing.Size(52, 14);
     this.labelControl7.TabIndex = 21;
     this.labelControl7.Text = "表现类型:";
     this.labelControl7.ToolTipIconType = DevExpress.Utils.ToolTipIconType.None;
     //
     // comboBoxEdit3
     //
     this.comboBoxEdit3.AllowHtmlTextInToolTip = DevExpress.Utils.DefaultBoolean.Default;
     this.comboBoxEdit3.Enabled = false;
     this.comboBoxEdit3.Location = new System.Drawing.Point(57, 120);
     this.comboBoxEdit3.Name = "comboBoxEdit3";
     this.comboBoxEdit3.Properties.AccessibleRole = System.Windows.Forms.AccessibleRole.Default;
     this.comboBoxEdit3.Properties.AllowNullInput = DevExpress.Utils.DefaultBoolean.Default;
     this.comboBoxEdit3.Properties.Appearance.GradientMode = System.Drawing.Drawing2D.LinearGradientMode.Horizontal;
     this.comboBoxEdit3.Properties.Appearance.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Default;
     this.comboBoxEdit3.Properties.Appearance.TextOptions.HotkeyPrefix = DevExpress.Utils.HKeyPrefix.Default;
     this.comboBoxEdit3.Properties.Appearance.TextOptions.Trimming = DevExpress.Utils.Trimming.Default;
     this.comboBoxEdit3.Properties.Appearance.TextOptions.VAlignment = DevExpress.Utils.VertAlignment.Default;
     this.comboBoxEdit3.Properties.Appearance.TextOptions.WordWrap = DevExpress.Utils.WordWrap.Default;
     this.comboBoxEdit3.Properties.AppearanceDisabled.GradientMode = System.Drawing.Drawing2D.LinearGradientMode.Horizontal;
     this.comboBoxEdit3.Properties.AppearanceDisabled.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Default;
     this.comboBoxEdit3.Properties.AppearanceDisabled.TextOptions.HotkeyPrefix = DevExpress.Utils.HKeyPrefix.Default;
     this.comboBoxEdit3.Properties.AppearanceDisabled.TextOptions.Trimming = DevExpress.Utils.Trimming.Default;
     this.comboBoxEdit3.Properties.AppearanceDisabled.TextOptions.VAlignment = DevExpress.Utils.VertAlignment.Default;
     this.comboBoxEdit3.Properties.AppearanceDisabled.TextOptions.WordWrap = DevExpress.Utils.WordWrap.Default;
     this.comboBoxEdit3.Properties.AppearanceDropDown.GradientMode = System.Drawing.Drawing2D.LinearGradientMode.Horizontal;
     this.comboBoxEdit3.Properties.AppearanceDropDown.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Default;
     this.comboBoxEdit3.Properties.AppearanceDropDown.TextOptions.HotkeyPrefix = DevExpress.Utils.HKeyPrefix.Default;
     this.comboBoxEdit3.Properties.AppearanceDropDown.TextOptions.Trimming = DevExpress.Utils.Trimming.Default;
     this.comboBoxEdit3.Properties.AppearanceDropDown.TextOptions.VAlignment = DevExpress.Utils.VertAlignment.Default;
     this.comboBoxEdit3.Properties.AppearanceDropDown.TextOptions.WordWrap = DevExpress.Utils.WordWrap.Default;
     this.comboBoxEdit3.Properties.AppearanceFocused.GradientMode = System.Drawing.Drawing2D.LinearGradientMode.Horizontal;
     this.comboBoxEdit3.Properties.AppearanceFocused.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Default;
     this.comboBoxEdit3.Properties.AppearanceFocused.TextOptions.HotkeyPrefix = DevExpress.Utils.HKeyPrefix.Default;
     this.comboBoxEdit3.Properties.AppearanceFocused.TextOptions.Trimming = DevExpress.Utils.Trimming.Default;
     this.comboBoxEdit3.Properties.AppearanceFocused.TextOptions.VAlignment = DevExpress.Utils.VertAlignment.Default;
     this.comboBoxEdit3.Properties.AppearanceFocused.TextOptions.WordWrap = DevExpress.Utils.WordWrap.Default;
     this.comboBoxEdit3.Properties.AppearanceReadOnly.GradientMode = System.Drawing.Drawing2D.LinearGradientMode.Horizontal;
     this.comboBoxEdit3.Properties.AppearanceReadOnly.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Default;
     this.comboBoxEdit3.Properties.AppearanceReadOnly.TextOptions.HotkeyPrefix = DevExpress.Utils.HKeyPrefix.Default;
     this.comboBoxEdit3.Properties.AppearanceReadOnly.TextOptions.Trimming = DevExpress.Utils.Trimming.Default;
     this.comboBoxEdit3.Properties.AppearanceReadOnly.TextOptions.VAlignment = DevExpress.Utils.VertAlignment.Default;
     this.comboBoxEdit3.Properties.AppearanceReadOnly.TextOptions.WordWrap = DevExpress.Utils.WordWrap.Default;
     this.comboBoxEdit3.Properties.BorderStyle = DevExpress.XtraEditors.Controls.BorderStyles.Default;
     serializableAppearanceObject3.GradientMode = System.Drawing.Drawing2D.LinearGradientMode.Horizontal;
     serializableAppearanceObject3.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Default;
     serializableAppearanceObject3.TextOptions.HotkeyPrefix = DevExpress.Utils.HKeyPrefix.Default;
     serializableAppearanceObject3.TextOptions.Trimming = DevExpress.Utils.Trimming.Default;
     serializableAppearanceObject3.TextOptions.VAlignment = DevExpress.Utils.VertAlignment.Default;
     serializableAppearanceObject3.TextOptions.WordWrap = DevExpress.Utils.WordWrap.Default;
     this.comboBoxEdit3.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo, "", -1, true, true, false, DevExpress.XtraEditors.ImageLocation.MiddleCenter, null, new DevExpress.Utils.KeyShortcut(System.Windows.Forms.Keys.None), serializableAppearanceObject3, "", null, null, true)});
     this.comboBoxEdit3.Properties.CharacterCasing = System.Windows.Forms.CharacterCasing.Normal;
     this.comboBoxEdit3.Properties.EditValueChangedFiringMode = DevExpress.XtraEditors.Controls.EditValueChangedFiringMode.Default;
     this.comboBoxEdit3.Properties.ExportMode = DevExpress.XtraEditors.Repository.ExportMode.Default;
     this.comboBoxEdit3.Properties.HighlightedItemStyle = DevExpress.XtraEditors.HighlightStyle.Default;
     this.comboBoxEdit3.Properties.Items.AddRange(new object[] {
     "根据地表",
     "客机",
     "直升机"});
     this.comboBoxEdit3.Properties.LookAndFeel.Style = DevExpress.LookAndFeel.LookAndFeelStyle.Skin;
     this.comboBoxEdit3.Properties.PopupResizeMode = DevExpress.XtraEditors.Controls.ResizeMode.Default;
     this.comboBoxEdit3.Properties.ShowDropDown = DevExpress.XtraEditors.Controls.ShowDropDown.SingleClick;
     this.comboBoxEdit3.Properties.TextEditStyle = DevExpress.XtraEditors.Controls.TextEditStyles.Standard;
     this.comboBoxEdit3.Size = new System.Drawing.Size(100, 21);
     this.comboBoxEdit3.TabIndex = 20;
     this.comboBoxEdit3.ToolTipIconType = DevExpress.Utils.ToolTipIconType.None;
     this.comboBoxEdit3.SelectedIndexChanged += new System.EventHandler(this.comboBoxEdit3_SelectedIndexChanged);
     //
     // comboBoxEdit2
     //
     this.comboBoxEdit2.AllowHtmlTextInToolTip = DevExpress.Utils.DefaultBoolean.Default;
     this.comboBoxEdit2.Location = new System.Drawing.Point(58, 89);
     this.comboBoxEdit2.Name = "comboBoxEdit2";
     this.comboBoxEdit2.Properties.AccessibleRole = System.Windows.Forms.AccessibleRole.Default;
     this.comboBoxEdit2.Properties.AllowNullInput = DevExpress.Utils.DefaultBoolean.Default;
     this.comboBoxEdit2.Properties.Appearance.GradientMode = System.Drawing.Drawing2D.LinearGradientMode.Horizontal;
     this.comboBoxEdit2.Properties.Appearance.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Default;
     this.comboBoxEdit2.Properties.Appearance.TextOptions.HotkeyPrefix = DevExpress.Utils.HKeyPrefix.Default;
     this.comboBoxEdit2.Properties.Appearance.TextOptions.Trimming = DevExpress.Utils.Trimming.Default;
     this.comboBoxEdit2.Properties.Appearance.TextOptions.VAlignment = DevExpress.Utils.VertAlignment.Default;
     this.comboBoxEdit2.Properties.Appearance.TextOptions.WordWrap = DevExpress.Utils.WordWrap.Default;
     this.comboBoxEdit2.Properties.AppearanceDisabled.GradientMode = System.Drawing.Drawing2D.LinearGradientMode.Horizontal;
     this.comboBoxEdit2.Properties.AppearanceDisabled.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Default;
     this.comboBoxEdit2.Properties.AppearanceDisabled.TextOptions.HotkeyPrefix = DevExpress.Utils.HKeyPrefix.Default;
     this.comboBoxEdit2.Properties.AppearanceDisabled.TextOptions.Trimming = DevExpress.Utils.Trimming.Default;
     this.comboBoxEdit2.Properties.AppearanceDisabled.TextOptions.VAlignment = DevExpress.Utils.VertAlignment.Default;
     this.comboBoxEdit2.Properties.AppearanceDisabled.TextOptions.WordWrap = DevExpress.Utils.WordWrap.Default;
     this.comboBoxEdit2.Properties.AppearanceDropDown.GradientMode = System.Drawing.Drawing2D.LinearGradientMode.Horizontal;
     this.comboBoxEdit2.Properties.AppearanceDropDown.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Default;
     this.comboBoxEdit2.Properties.AppearanceDropDown.TextOptions.HotkeyPrefix = DevExpress.Utils.HKeyPrefix.Default;
     this.comboBoxEdit2.Properties.AppearanceDropDown.TextOptions.Trimming = DevExpress.Utils.Trimming.Default;
     this.comboBoxEdit2.Properties.AppearanceDropDown.TextOptions.VAlignment = DevExpress.Utils.VertAlignment.Default;
     this.comboBoxEdit2.Properties.AppearanceDropDown.TextOptions.WordWrap = DevExpress.Utils.WordWrap.Default;
     this.comboBoxEdit2.Properties.AppearanceFocused.GradientMode = System.Drawing.Drawing2D.LinearGradientMode.Horizontal;
     this.comboBoxEdit2.Properties.AppearanceFocused.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Default;
     this.comboBoxEdit2.Properties.AppearanceFocused.TextOptions.HotkeyPrefix = DevExpress.Utils.HKeyPrefix.Default;
     this.comboBoxEdit2.Properties.AppearanceFocused.TextOptions.Trimming = DevExpress.Utils.Trimming.Default;
     this.comboBoxEdit2.Properties.AppearanceFocused.TextOptions.VAlignment = DevExpress.Utils.VertAlignment.Default;
     this.comboBoxEdit2.Properties.AppearanceFocused.TextOptions.WordWrap = DevExpress.Utils.WordWrap.Default;
     this.comboBoxEdit2.Properties.AppearanceReadOnly.GradientMode = System.Drawing.Drawing2D.LinearGradientMode.Horizontal;
     this.comboBoxEdit2.Properties.AppearanceReadOnly.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Default;
     this.comboBoxEdit2.Properties.AppearanceReadOnly.TextOptions.HotkeyPrefix = DevExpress.Utils.HKeyPrefix.Default;
     this.comboBoxEdit2.Properties.AppearanceReadOnly.TextOptions.Trimming = DevExpress.Utils.Trimming.Default;
     this.comboBoxEdit2.Properties.AppearanceReadOnly.TextOptions.VAlignment = DevExpress.Utils.VertAlignment.Default;
     this.comboBoxEdit2.Properties.AppearanceReadOnly.TextOptions.WordWrap = DevExpress.Utils.WordWrap.Default;
     this.comboBoxEdit2.Properties.BorderStyle = DevExpress.XtraEditors.Controls.BorderStyles.Default;
     serializableAppearanceObject4.GradientMode = System.Drawing.Drawing2D.LinearGradientMode.Horizontal;
     serializableAppearanceObject4.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Default;
     serializableAppearanceObject4.TextOptions.HotkeyPrefix = DevExpress.Utils.HKeyPrefix.Default;
     serializableAppearanceObject4.TextOptions.Trimming = DevExpress.Utils.Trimming.Default;
     serializableAppearanceObject4.TextOptions.VAlignment = DevExpress.Utils.VertAlignment.Default;
     serializableAppearanceObject4.TextOptions.WordWrap = DevExpress.Utils.WordWrap.Default;
     this.comboBoxEdit2.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo, "", -1, true, true, false, DevExpress.XtraEditors.ImageLocation.MiddleCenter, null, new DevExpress.Utils.KeyShortcut(System.Windows.Forms.Keys.None), serializableAppearanceObject4, "", null, null, true)});
     this.comboBoxEdit2.Properties.CharacterCasing = System.Windows.Forms.CharacterCasing.Normal;
     this.comboBoxEdit2.Properties.EditValueChangedFiringMode = DevExpress.XtraEditors.Controls.EditValueChangedFiringMode.Default;
     this.comboBoxEdit2.Properties.ExportMode = DevExpress.XtraEditors.Repository.ExportMode.Default;
     this.comboBoxEdit2.Properties.HighlightedItemStyle = DevExpress.XtraEditors.HighlightStyle.Default;
     this.comboBoxEdit2.Properties.Items.AddRange(new object[] {
     "无模型",
     "有模型"});
     this.comboBoxEdit2.Properties.LookAndFeel.Style = DevExpress.LookAndFeel.LookAndFeelStyle.Skin;
     this.comboBoxEdit2.Properties.PopupResizeMode = DevExpress.XtraEditors.Controls.ResizeMode.Default;
     this.comboBoxEdit2.Properties.ShowDropDown = DevExpress.XtraEditors.Controls.ShowDropDown.SingleClick;
     this.comboBoxEdit2.Properties.TextEditStyle = DevExpress.XtraEditors.Controls.TextEditStyles.Standard;
     this.comboBoxEdit2.Size = new System.Drawing.Size(100, 21);
     this.comboBoxEdit2.TabIndex = 19;
     this.comboBoxEdit2.ToolTipIconType = DevExpress.Utils.ToolTipIconType.None;
     this.comboBoxEdit2.SelectedIndexChanged += new System.EventHandler(this.comboBoxEdit2_SelectedIndexChanged);
     //
     // buttonEdit1
     //
     this.buttonEdit1.AllowHtmlTextInToolTip = DevExpress.Utils.DefaultBoolean.Default;
     this.buttonEdit1.Location = new System.Drawing.Point(165, 120);
     this.buttonEdit1.Name = "buttonEdit1";
     this.buttonEdit1.Properties.AccessibleRole = System.Windows.Forms.AccessibleRole.Default;
     this.buttonEdit1.Properties.AllowNullInput = DevExpress.Utils.DefaultBoolean.Default;
     this.buttonEdit1.Properties.Appearance.GradientMode = System.Drawing.Drawing2D.LinearGradientMode.Horizontal;
     this.buttonEdit1.Properties.Appearance.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Default;
     this.buttonEdit1.Properties.Appearance.TextOptions.HotkeyPrefix = DevExpress.Utils.HKeyPrefix.Default;
     this.buttonEdit1.Properties.Appearance.TextOptions.Trimming = DevExpress.Utils.Trimming.Default;
     this.buttonEdit1.Properties.Appearance.TextOptions.VAlignment = DevExpress.Utils.VertAlignment.Default;
     this.buttonEdit1.Properties.Appearance.TextOptions.WordWrap = DevExpress.Utils.WordWrap.Default;
     this.buttonEdit1.Properties.AppearanceDisabled.GradientMode = System.Drawing.Drawing2D.LinearGradientMode.Horizontal;
     this.buttonEdit1.Properties.AppearanceDisabled.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Default;
     this.buttonEdit1.Properties.AppearanceDisabled.TextOptions.HotkeyPrefix = DevExpress.Utils.HKeyPrefix.Default;
     this.buttonEdit1.Properties.AppearanceDisabled.TextOptions.Trimming = DevExpress.Utils.Trimming.Default;
     this.buttonEdit1.Properties.AppearanceDisabled.TextOptions.VAlignment = DevExpress.Utils.VertAlignment.Default;
     this.buttonEdit1.Properties.AppearanceDisabled.TextOptions.WordWrap = DevExpress.Utils.WordWrap.Default;
     this.buttonEdit1.Properties.AppearanceFocused.GradientMode = System.Drawing.Drawing2D.LinearGradientMode.Horizontal;
     this.buttonEdit1.Properties.AppearanceFocused.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Default;
     this.buttonEdit1.Properties.AppearanceFocused.TextOptions.HotkeyPrefix = DevExpress.Utils.HKeyPrefix.Default;
     this.buttonEdit1.Properties.AppearanceFocused.TextOptions.Trimming = DevExpress.Utils.Trimming.Default;
     this.buttonEdit1.Properties.AppearanceFocused.TextOptions.VAlignment = DevExpress.Utils.VertAlignment.Default;
     this.buttonEdit1.Properties.AppearanceFocused.TextOptions.WordWrap = DevExpress.Utils.WordWrap.Default;
     this.buttonEdit1.Properties.AppearanceReadOnly.GradientMode = System.Drawing.Drawing2D.LinearGradientMode.Horizontal;
     this.buttonEdit1.Properties.AppearanceReadOnly.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Default;
     this.buttonEdit1.Properties.AppearanceReadOnly.TextOptions.HotkeyPrefix = DevExpress.Utils.HKeyPrefix.Default;
     this.buttonEdit1.Properties.AppearanceReadOnly.TextOptions.Trimming = DevExpress.Utils.Trimming.Default;
     this.buttonEdit1.Properties.AppearanceReadOnly.TextOptions.VAlignment = DevExpress.Utils.VertAlignment.Default;
     this.buttonEdit1.Properties.AppearanceReadOnly.TextOptions.WordWrap = DevExpress.Utils.WordWrap.Default;
     this.buttonEdit1.Properties.BorderStyle = DevExpress.XtraEditors.Controls.BorderStyles.Default;
     serializableAppearanceObject5.GradientMode = System.Drawing.Drawing2D.LinearGradientMode.Horizontal;
     serializableAppearanceObject5.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Default;
     serializableAppearanceObject5.TextOptions.HotkeyPrefix = DevExpress.Utils.HKeyPrefix.Default;
     serializableAppearanceObject5.TextOptions.Trimming = DevExpress.Utils.Trimming.Default;
     serializableAppearanceObject5.TextOptions.VAlignment = DevExpress.Utils.VertAlignment.Default;
     serializableAppearanceObject5.TextOptions.WordWrap = DevExpress.Utils.WordWrap.Default;
     this.buttonEdit1.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Ellipsis, "", -1, true, true, false, DevExpress.XtraEditors.ImageLocation.MiddleCenter, null, new DevExpress.Utils.KeyShortcut(System.Windows.Forms.Keys.None), serializableAppearanceObject5, "", null, null, true)});
     this.buttonEdit1.Properties.CharacterCasing = System.Windows.Forms.CharacterCasing.Normal;
     this.buttonEdit1.Properties.EditValueChangedFiringMode = DevExpress.XtraEditors.Controls.EditValueChangedFiringMode.Default;
     this.buttonEdit1.Properties.ExportMode = DevExpress.XtraEditors.Repository.ExportMode.Default;
     this.buttonEdit1.Properties.LookAndFeel.Style = DevExpress.LookAndFeel.LookAndFeelStyle.Skin;
     this.buttonEdit1.Properties.Mask.AutoComplete = DevExpress.XtraEditors.Mask.AutoCompleteType.Default;
     this.buttonEdit1.Properties.Mask.MaskType = DevExpress.XtraEditors.Mask.MaskType.None;
     this.buttonEdit1.Properties.TextEditStyle = DevExpress.XtraEditors.Controls.TextEditStyles.Standard;
     this.buttonEdit1.Properties.Click += new System.EventHandler(this.buttonEdit1_Properties_Click);
     this.buttonEdit1.Size = new System.Drawing.Size(100, 21);
     this.buttonEdit1.TabIndex = 18;
     this.buttonEdit1.ToolTipIconType = DevExpress.Utils.ToolTipIconType.None;
     this.buttonEdit1.Visible = false;
     //
     // spinEdit2
     //
     this.spinEdit2.AllowHtmlTextInToolTip = DevExpress.Utils.DefaultBoolean.Default;
     this.spinEdit2.EditValue = new decimal(new int[] {
     30,
     0,
     0,
     0});
     this.spinEdit2.Location = new System.Drawing.Point(58, 55);
     this.spinEdit2.Name = "spinEdit2";
     this.spinEdit2.Properties.AccessibleRole = System.Windows.Forms.AccessibleRole.Default;
     this.spinEdit2.Properties.AllowNullInput = DevExpress.Utils.DefaultBoolean.Default;
     this.spinEdit2.Properties.Appearance.GradientMode = System.Drawing.Drawing2D.LinearGradientMode.Horizontal;
     this.spinEdit2.Properties.Appearance.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Default;
     this.spinEdit2.Properties.Appearance.TextOptions.HotkeyPrefix = DevExpress.Utils.HKeyPrefix.Default;
     this.spinEdit2.Properties.Appearance.TextOptions.Trimming = DevExpress.Utils.Trimming.Default;
     this.spinEdit2.Properties.Appearance.TextOptions.VAlignment = DevExpress.Utils.VertAlignment.Default;
     this.spinEdit2.Properties.Appearance.TextOptions.WordWrap = DevExpress.Utils.WordWrap.Default;
     this.spinEdit2.Properties.AppearanceDisabled.GradientMode = System.Drawing.Drawing2D.LinearGradientMode.Horizontal;
     this.spinEdit2.Properties.AppearanceDisabled.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Default;
     this.spinEdit2.Properties.AppearanceDisabled.TextOptions.HotkeyPrefix = DevExpress.Utils.HKeyPrefix.Default;
     this.spinEdit2.Properties.AppearanceDisabled.TextOptions.Trimming = DevExpress.Utils.Trimming.Default;
     this.spinEdit2.Properties.AppearanceDisabled.TextOptions.VAlignment = DevExpress.Utils.VertAlignment.Default;
     this.spinEdit2.Properties.AppearanceDisabled.TextOptions.WordWrap = DevExpress.Utils.WordWrap.Default;
     this.spinEdit2.Properties.AppearanceFocused.GradientMode = System.Drawing.Drawing2D.LinearGradientMode.Horizontal;
     this.spinEdit2.Properties.AppearanceFocused.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Default;
     this.spinEdit2.Properties.AppearanceFocused.TextOptions.HotkeyPrefix = DevExpress.Utils.HKeyPrefix.Default;
     this.spinEdit2.Properties.AppearanceFocused.TextOptions.Trimming = DevExpress.Utils.Trimming.Default;
     this.spinEdit2.Properties.AppearanceFocused.TextOptions.VAlignment = DevExpress.Utils.VertAlignment.Default;
     this.spinEdit2.Properties.AppearanceFocused.TextOptions.WordWrap = DevExpress.Utils.WordWrap.Default;
     this.spinEdit2.Properties.AppearanceReadOnly.GradientMode = System.Drawing.Drawing2D.LinearGradientMode.Horizontal;
     this.spinEdit2.Properties.AppearanceReadOnly.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Default;
     this.spinEdit2.Properties.AppearanceReadOnly.TextOptions.HotkeyPrefix = DevExpress.Utils.HKeyPrefix.Default;
     this.spinEdit2.Properties.AppearanceReadOnly.TextOptions.Trimming = DevExpress.Utils.Trimming.Default;
     this.spinEdit2.Properties.AppearanceReadOnly.TextOptions.VAlignment = DevExpress.Utils.VertAlignment.Default;
     this.spinEdit2.Properties.AppearanceReadOnly.TextOptions.WordWrap = DevExpress.Utils.WordWrap.Default;
     this.spinEdit2.Properties.BorderStyle = DevExpress.XtraEditors.Controls.BorderStyles.Default;
     serializableAppearanceObject6.GradientMode = System.Drawing.Drawing2D.LinearGradientMode.Horizontal;
     serializableAppearanceObject6.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Default;
     serializableAppearanceObject6.TextOptions.HotkeyPrefix = DevExpress.Utils.HKeyPrefix.Default;
     serializableAppearanceObject6.TextOptions.Trimming = DevExpress.Utils.Trimming.Default;
     serializableAppearanceObject6.TextOptions.VAlignment = DevExpress.Utils.VertAlignment.Default;
     serializableAppearanceObject6.TextOptions.WordWrap = DevExpress.Utils.WordWrap.Default;
     this.spinEdit2.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Ellipsis, "", -1, true, true, false, DevExpress.XtraEditors.ImageLocation.MiddleCenter, null, new DevExpress.Utils.KeyShortcut(System.Windows.Forms.Keys.None), serializableAppearanceObject6, "", null, null, true)});
     this.spinEdit2.Properties.CharacterCasing = System.Windows.Forms.CharacterCasing.Normal;
     this.spinEdit2.Properties.EditValueChangedFiringMode = DevExpress.XtraEditors.Controls.EditValueChangedFiringMode.Buffered;
     this.spinEdit2.Properties.ExportMode = DevExpress.XtraEditors.Repository.ExportMode.Default;
     this.spinEdit2.Properties.LookAndFeel.Style = DevExpress.LookAndFeel.LookAndFeelStyle.Skin;
     this.spinEdit2.Properties.Mask.AutoComplete = DevExpress.XtraEditors.Mask.AutoCompleteType.Default;
     this.spinEdit2.Properties.Mask.MaskType = DevExpress.XtraEditors.Mask.MaskType.Numeric;
     this.spinEdit2.Properties.SpinStyle = DevExpress.XtraEditors.Controls.SpinStyles.Vertical;
     this.spinEdit2.Properties.TextEditStyle = DevExpress.XtraEditors.Controls.TextEditStyles.Standard;
     this.spinEdit2.Size = new System.Drawing.Size(76, 21);
     this.spinEdit2.TabIndex = 17;
     this.spinEdit2.ToolTipIconType = DevExpress.Utils.ToolTipIconType.None;
     //
     // labelControl6
     //
     this.labelControl6.AllowHtmlTextInToolTip = DevExpress.Utils.DefaultBoolean.Default;
     this.labelControl6.Appearance.GradientMode = System.Drawing.Drawing2D.LinearGradientMode.Horizontal;
     this.labelControl6.Appearance.ImageAlign = System.Drawing.ContentAlignment.MiddleCenter;
     this.labelControl6.Appearance.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Default;
     this.labelControl6.Appearance.TextOptions.HotkeyPrefix = DevExpress.Utils.HKeyPrefix.Default;
     this.labelControl6.Appearance.TextOptions.Trimming = DevExpress.Utils.Trimming.Default;
     this.labelControl6.Appearance.TextOptions.VAlignment = DevExpress.Utils.VertAlignment.Default;
     this.labelControl6.Appearance.TextOptions.WordWrap = DevExpress.Utils.WordWrap.Default;
     this.labelControl6.AutoSizeMode = DevExpress.XtraEditors.LabelAutoSizeMode.Default;
     this.labelControl6.ImageAlignToText = DevExpress.XtraEditors.ImageAlignToText.None;
     this.labelControl6.LineLocation = DevExpress.XtraEditors.LineLocation.Default;
     this.labelControl6.LineOrientation = DevExpress.XtraEditors.LabelLineOrientation.Default;
     this.labelControl6.Location = new System.Drawing.Point(4, 58);
     this.labelControl6.LookAndFeel.Style = DevExpress.LookAndFeel.LookAndFeelStyle.Skin;
     this.labelControl6.Name = "labelControl6";
     this.labelControl6.Size = new System.Drawing.Size(36, 14);
     this.labelControl6.TabIndex = 16;
     this.labelControl6.Text = "速度:";
     this.labelControl6.ToolTipIconType = DevExpress.Utils.ToolTipIconType.None;
     //
     // simpleButton5
     //
     this.simpleButton5.AllowHtmlTextInToolTip = DevExpress.Utils.DefaultBoolean.Default;
     this.simpleButton5.Appearance.GradientMode = System.Drawing.Drawing2D.LinearGradientMode.Horizontal;
     this.simpleButton5.Appearance.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Default;
     this.simpleButton5.Appearance.TextOptions.HotkeyPrefix = DevExpress.Utils.HKeyPrefix.Default;
     this.simpleButton5.Appearance.TextOptions.Trimming = DevExpress.Utils.Trimming.Default;
     this.simpleButton5.Appearance.TextOptions.VAlignment = DevExpress.Utils.VertAlignment.Default;
     this.simpleButton5.Appearance.TextOptions.WordWrap = DevExpress.Utils.WordWrap.Default;
     this.simpleButton5.ButtonStyle = DevExpress.XtraEditors.Controls.BorderStyles.Default;
     this.simpleButton5.DialogResult = System.Windows.Forms.DialogResult.None;
     this.simpleButton5.Image = ((System.Drawing.Image)(resources.GetObject("simpleButton5.Image")));
     this.simpleButton5.ImageLocation = DevExpress.XtraEditors.ImageLocation.Default;
     this.simpleButton5.Location = new System.Drawing.Point(160, 170);
     this.simpleButton5.LookAndFeel.Style = DevExpress.LookAndFeel.LookAndFeelStyle.Skin;
     this.simpleButton5.Name = "simpleButton5";
     this.simpleButton5.Size = new System.Drawing.Size(24, 23);
     this.simpleButton5.TabIndex = 15;
     this.simpleButton5.ToolTipIconType = DevExpress.Utils.ToolTipIconType.None;
     this.simpleButton5.Click += new System.EventHandler(this.simpleButton5_Click);
     //
     // labelControl5
     //
     this.labelControl5.AllowHtmlTextInToolTip = DevExpress.Utils.DefaultBoolean.Default;
     this.labelControl5.Appearance.GradientMode = System.Drawing.Drawing2D.LinearGradientMode.Horizontal;
     this.labelControl5.Appearance.ImageAlign = System.Drawing.ContentAlignment.MiddleCenter;
     this.labelControl5.Appearance.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Default;
     this.labelControl5.Appearance.TextOptions.HotkeyPrefix = DevExpress.Utils.HKeyPrefix.Default;
     this.labelControl5.Appearance.TextOptions.Trimming = DevExpress.Utils.Trimming.Default;
     this.labelControl5.Appearance.TextOptions.VAlignment = DevExpress.Utils.VertAlignment.Default;
     this.labelControl5.Appearance.TextOptions.WordWrap = DevExpress.Utils.WordWrap.Default;
     this.labelControl5.AutoSizeMode = DevExpress.XtraEditors.LabelAutoSizeMode.Default;
     this.labelControl5.ImageAlignToText = DevExpress.XtraEditors.ImageAlignToText.None;
     this.labelControl5.LineLocation = DevExpress.XtraEditors.LineLocation.Default;
     this.labelControl5.LineOrientation = DevExpress.XtraEditors.LabelLineOrientation.Default;
     this.labelControl5.Location = new System.Drawing.Point(112, 150);
     this.labelControl5.LookAndFeel.Style = DevExpress.LookAndFeel.LookAndFeelStyle.Skin;
     this.labelControl5.Name = "labelControl5";
     this.labelControl5.Size = new System.Drawing.Size(12, 14);
     this.labelControl5.TabIndex = 14;
     this.labelControl5.Text = "米";
     this.labelControl5.ToolTipIconType = DevExpress.Utils.ToolTipIconType.None;
     //
     // simpleButton4
     //
     this.simpleButton4.AllowHtmlTextInToolTip = DevExpress.Utils.DefaultBoolean.Default;
     this.simpleButton4.Appearance.GradientMode = System.Drawing.Drawing2D.LinearGradientMode.Horizontal;
     this.simpleButton4.Appearance.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Default;
     this.simpleButton4.Appearance.TextOptions.HotkeyPrefix = DevExpress.Utils.HKeyPrefix.Default;
     this.simpleButton4.Appearance.TextOptions.Trimming = DevExpress.Utils.Trimming.Default;
     this.simpleButton4.Appearance.TextOptions.VAlignment = DevExpress.Utils.VertAlignment.Default;
     this.simpleButton4.Appearance.TextOptions.WordWrap = DevExpress.Utils.WordWrap.Default;
     this.simpleButton4.ButtonStyle = DevExpress.XtraEditors.Controls.BorderStyles.Default;
     this.simpleButton4.DialogResult = System.Windows.Forms.DialogResult.None;
     this.simpleButton4.Image = ((System.Drawing.Image)(resources.GetObject("simpleButton4.Image")));
     this.simpleButton4.ImageLocation = DevExpress.XtraEditors.ImageLocation.Default;
     this.simpleButton4.Location = new System.Drawing.Point(130, 170);
     this.simpleButton4.LookAndFeel.Style = DevExpress.LookAndFeel.LookAndFeelStyle.Skin;
     this.simpleButton4.Name = "simpleButton4";
     this.simpleButton4.Size = new System.Drawing.Size(24, 23);
     this.simpleButton4.TabIndex = 13;
     this.simpleButton4.ToolTipIconType = DevExpress.Utils.ToolTipIconType.None;
     this.simpleButton4.Click += new System.EventHandler(this.simpleButton4_Click);
     //
     // simpleButton3
     //
     this.simpleButton3.AllowHtmlTextInToolTip = DevExpress.Utils.DefaultBoolean.Default;
     this.simpleButton3.Appearance.GradientMode = System.Drawing.Drawing2D.LinearGradientMode.Horizontal;
     this.simpleButton3.Appearance.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Default;
     this.simpleButton3.Appearance.TextOptions.HotkeyPrefix = DevExpress.Utils.HKeyPrefix.Default;
     this.simpleButton3.Appearance.TextOptions.Trimming = DevExpress.Utils.Trimming.Default;
     this.simpleButton3.Appearance.TextOptions.VAlignment = DevExpress.Utils.VertAlignment.Default;
     this.simpleButton3.Appearance.TextOptions.WordWrap = DevExpress.Utils.WordWrap.Default;
     this.simpleButton3.ButtonStyle = DevExpress.XtraEditors.Controls.BorderStyles.Default;
     this.simpleButton3.DialogResult = System.Windows.Forms.DialogResult.None;
     this.simpleButton3.ImageLocation = DevExpress.XtraEditors.ImageLocation.Default;
     this.simpleButton3.Location = new System.Drawing.Point(13, 233);
     this.simpleButton3.LookAndFeel.Style = DevExpress.LookAndFeel.LookAndFeelStyle.Skin;
     this.simpleButton3.Name = "simpleButton3";
     this.simpleButton3.Size = new System.Drawing.Size(49, 23);
     this.simpleButton3.TabIndex = 12;
     this.simpleButton3.Text = "确定";
     this.simpleButton3.ToolTipIconType = DevExpress.Utils.ToolTipIconType.None;
     this.simpleButton3.Visible = false;
     this.simpleButton3.Click += new System.EventHandler(this.simpleButton3_Click);
     //
     // checkButton1
     //
     this.checkButton1.AllowHtmlTextInToolTip = DevExpress.Utils.DefaultBoolean.Default;
     this.checkButton1.Appearance.GradientMode = System.Drawing.Drawing2D.LinearGradientMode.Horizontal;
     this.checkButton1.Appearance.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Default;
     this.checkButton1.Appearance.TextOptions.HotkeyPrefix = DevExpress.Utils.HKeyPrefix.Default;
     this.checkButton1.Appearance.TextOptions.Trimming = DevExpress.Utils.Trimming.Default;
     this.checkButton1.Appearance.TextOptions.VAlignment = DevExpress.Utils.VertAlignment.Default;
     this.checkButton1.Appearance.TextOptions.WordWrap = DevExpress.Utils.WordWrap.Default;
     this.checkButton1.ButtonStyle = DevExpress.XtraEditors.Controls.BorderStyles.Default;
     this.checkButton1.DialogResult = System.Windows.Forms.DialogResult.None;
     this.checkButton1.ImageLocation = DevExpress.XtraEditors.ImageLocation.Default;
     this.checkButton1.Location = new System.Drawing.Point(201, 170);
     this.checkButton1.LookAndFeel.Style = DevExpress.LookAndFeel.LookAndFeelStyle.Skin;
     this.checkButton1.Name = "checkButton1";
     this.checkButton1.Size = new System.Drawing.Size(75, 23);
     this.checkButton1.TabIndex = 11;
     this.checkButton1.Text = "地下模式";
     this.checkButton1.ToolTipIconType = DevExpress.Utils.ToolTipIconType.None;
     this.checkButton1.CheckedChanged += new System.EventHandler(this.checkButton1_CheckedChanged);
     //
     // labelControl4
     //
     this.labelControl4.AllowHtmlTextInToolTip = DevExpress.Utils.DefaultBoolean.Default;
     this.labelControl4.Appearance.GradientMode = System.Drawing.Drawing2D.LinearGradientMode.Horizontal;
     this.labelControl4.Appearance.ImageAlign = System.Drawing.ContentAlignment.MiddleCenter;
     this.labelControl4.Appearance.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Default;
     this.labelControl4.Appearance.TextOptions.HotkeyPrefix = DevExpress.Utils.HKeyPrefix.Default;
     this.labelControl4.Appearance.TextOptions.Trimming = DevExpress.Utils.Trimming.Default;
     this.labelControl4.Appearance.TextOptions.VAlignment = DevExpress.Utils.VertAlignment.Default;
     this.labelControl4.Appearance.TextOptions.WordWrap = DevExpress.Utils.WordWrap.Default;
     this.labelControl4.AutoSizeMode = DevExpress.XtraEditors.LabelAutoSizeMode.Default;
     this.labelControl4.ImageAlignToText = DevExpress.XtraEditors.ImageAlignToText.None;
     this.labelControl4.LineLocation = DevExpress.XtraEditors.LineLocation.Default;
     this.labelControl4.LineOrientation = DevExpress.XtraEditors.LabelLineOrientation.Default;
     this.labelControl4.Location = new System.Drawing.Point(116, 213);
     this.labelControl4.LookAndFeel.Style = DevExpress.LookAndFeel.LookAndFeelStyle.Skin;
     this.labelControl4.Name = "labelControl4";
     this.labelControl4.Size = new System.Drawing.Size(12, 14);
     this.labelControl4.TabIndex = 10;
     this.labelControl4.Text = "度";
     this.labelControl4.ToolTipIconType = DevExpress.Utils.ToolTipIconType.None;
     this.labelControl4.Visible = false;
     //
     // textBox1
     //
     this.textBox1.Location = new System.Drawing.Point(78, 209);
     this.textBox1.Name = "textBox1";
     this.textBox1.Size = new System.Drawing.Size(32, 22);
     this.textBox1.TabIndex = 9;
     this.textBox1.Text = "-53";
     this.textBox1.Visible = false;
     //
     // labelControl3
     //
     this.labelControl3.AllowHtmlTextInToolTip = DevExpress.Utils.DefaultBoolean.Default;
     this.labelControl3.Appearance.GradientMode = System.Drawing.Drawing2D.LinearGradientMode.Horizontal;
     this.labelControl3.Appearance.ImageAlign = System.Drawing.ContentAlignment.MiddleCenter;
     this.labelControl3.Appearance.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Default;
     this.labelControl3.Appearance.TextOptions.HotkeyPrefix = DevExpress.Utils.HKeyPrefix.Default;
     this.labelControl3.Appearance.TextOptions.Trimming = DevExpress.Utils.Trimming.Default;
     this.labelControl3.Appearance.TextOptions.VAlignment = DevExpress.Utils.VertAlignment.Default;
     this.labelControl3.Appearance.TextOptions.WordWrap = DevExpress.Utils.WordWrap.Default;
     this.labelControl3.AutoSizeMode = DevExpress.XtraEditors.LabelAutoSizeMode.Default;
     this.labelControl3.ImageAlignToText = DevExpress.XtraEditors.ImageAlignToText.None;
     this.labelControl3.LineLocation = DevExpress.XtraEditors.LineLocation.Default;
     this.labelControl3.LineOrientation = DevExpress.XtraEditors.LabelLineOrientation.Default;
     this.labelControl3.Location = new System.Drawing.Point(12, 213);
     this.labelControl3.LookAndFeel.Style = DevExpress.LookAndFeel.LookAndFeelStyle.Skin;
     this.labelControl3.Name = "labelControl3";
     this.labelControl3.Size = new System.Drawing.Size(60, 14);
     this.labelControl3.TabIndex = 8;
     this.labelControl3.Text = "方向角度:";
     this.labelControl3.ToolTipIconType = DevExpress.Utils.ToolTipIconType.None;
     this.labelControl3.Visible = false;
     //
     // comboBoxEdit1
     //
     this.comboBoxEdit1.AllowHtmlTextInToolTip = DevExpress.Utils.DefaultBoolean.Default;
     this.comboBoxEdit1.EditValue = "米";
     this.comboBoxEdit1.Location = new System.Drawing.Point(231, 28);
     this.comboBoxEdit1.Name = "comboBoxEdit1";
     this.comboBoxEdit1.Properties.AccessibleRole = System.Windows.Forms.AccessibleRole.Default;
     this.comboBoxEdit1.Properties.AllowNullInput = DevExpress.Utils.DefaultBoolean.Default;
     this.comboBoxEdit1.Properties.Appearance.GradientMode = System.Drawing.Drawing2D.LinearGradientMode.Horizontal;
     this.comboBoxEdit1.Properties.Appearance.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Default;
     this.comboBoxEdit1.Properties.Appearance.TextOptions.HotkeyPrefix = DevExpress.Utils.HKeyPrefix.Default;
     this.comboBoxEdit1.Properties.Appearance.TextOptions.Trimming = DevExpress.Utils.Trimming.Default;
     this.comboBoxEdit1.Properties.Appearance.TextOptions.VAlignment = DevExpress.Utils.VertAlignment.Default;
     this.comboBoxEdit1.Properties.Appearance.TextOptions.WordWrap = DevExpress.Utils.WordWrap.Default;
     this.comboBoxEdit1.Properties.AppearanceDisabled.GradientMode = System.Drawing.Drawing2D.LinearGradientMode.Horizontal;
     this.comboBoxEdit1.Properties.AppearanceDisabled.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Default;
     this.comboBoxEdit1.Properties.AppearanceDisabled.TextOptions.HotkeyPrefix = DevExpress.Utils.HKeyPrefix.Default;
     this.comboBoxEdit1.Properties.AppearanceDisabled.TextOptions.Trimming = DevExpress.Utils.Trimming.Default;
     this.comboBoxEdit1.Properties.AppearanceDisabled.TextOptions.VAlignment = DevExpress.Utils.VertAlignment.Default;
     this.comboBoxEdit1.Properties.AppearanceDisabled.TextOptions.WordWrap = DevExpress.Utils.WordWrap.Default;
     this.comboBoxEdit1.Properties.AppearanceDropDown.GradientMode = System.Drawing.Drawing2D.LinearGradientMode.Horizontal;
     this.comboBoxEdit1.Properties.AppearanceDropDown.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Default;
     this.comboBoxEdit1.Properties.AppearanceDropDown.TextOptions.HotkeyPrefix = DevExpress.Utils.HKeyPrefix.Default;
     this.comboBoxEdit1.Properties.AppearanceDropDown.TextOptions.Trimming = DevExpress.Utils.Trimming.Default;
     this.comboBoxEdit1.Properties.AppearanceDropDown.TextOptions.VAlignment = DevExpress.Utils.VertAlignment.Default;
     this.comboBoxEdit1.Properties.AppearanceDropDown.TextOptions.WordWrap = DevExpress.Utils.WordWrap.Default;
     this.comboBoxEdit1.Properties.AppearanceFocused.GradientMode = System.Drawing.Drawing2D.LinearGradientMode.Horizontal;
     this.comboBoxEdit1.Properties.AppearanceFocused.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Default;
     this.comboBoxEdit1.Properties.AppearanceFocused.TextOptions.HotkeyPrefix = DevExpress.Utils.HKeyPrefix.Default;
     this.comboBoxEdit1.Properties.AppearanceFocused.TextOptions.Trimming = DevExpress.Utils.Trimming.Default;
     this.comboBoxEdit1.Properties.AppearanceFocused.TextOptions.VAlignment = DevExpress.Utils.VertAlignment.Default;
     this.comboBoxEdit1.Properties.AppearanceFocused.TextOptions.WordWrap = DevExpress.Utils.WordWrap.Default;
     this.comboBoxEdit1.Properties.AppearanceReadOnly.GradientMode = System.Drawing.Drawing2D.LinearGradientMode.Horizontal;
     this.comboBoxEdit1.Properties.AppearanceReadOnly.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Default;
     this.comboBoxEdit1.Properties.AppearanceReadOnly.TextOptions.HotkeyPrefix = DevExpress.Utils.HKeyPrefix.Default;
     this.comboBoxEdit1.Properties.AppearanceReadOnly.TextOptions.Trimming = DevExpress.Utils.Trimming.Default;
     this.comboBoxEdit1.Properties.AppearanceReadOnly.TextOptions.VAlignment = DevExpress.Utils.VertAlignment.Default;
     this.comboBoxEdit1.Properties.AppearanceReadOnly.TextOptions.WordWrap = DevExpress.Utils.WordWrap.Default;
     this.comboBoxEdit1.Properties.BorderStyle = DevExpress.XtraEditors.Controls.BorderStyles.Default;
     serializableAppearanceObject7.GradientMode = System.Drawing.Drawing2D.LinearGradientMode.Horizontal;
     serializableAppearanceObject7.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Default;
     serializableAppearanceObject7.TextOptions.HotkeyPrefix = DevExpress.Utils.HKeyPrefix.Default;
     serializableAppearanceObject7.TextOptions.Trimming = DevExpress.Utils.Trimming.Default;
     serializableAppearanceObject7.TextOptions.VAlignment = DevExpress.Utils.VertAlignment.Default;
     serializableAppearanceObject7.TextOptions.WordWrap = DevExpress.Utils.WordWrap.Default;
     this.comboBoxEdit1.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo, "", -1, true, true, false, DevExpress.XtraEditors.ImageLocation.MiddleCenter, null, new DevExpress.Utils.KeyShortcut(System.Windows.Forms.Keys.None), serializableAppearanceObject7, "", null, null, true)});
     this.comboBoxEdit1.Properties.CharacterCasing = System.Windows.Forms.CharacterCasing.Normal;
     this.comboBoxEdit1.Properties.EditValueChangedFiringMode = DevExpress.XtraEditors.Controls.EditValueChangedFiringMode.Default;
     this.comboBoxEdit1.Properties.ExportMode = DevExpress.XtraEditors.Repository.ExportMode.Default;
     this.comboBoxEdit1.Properties.HighlightedItemStyle = DevExpress.XtraEditors.HighlightStyle.Default;
     this.comboBoxEdit1.Properties.Items.AddRange(new object[] {
     "米",
     "英尺",
     "千米"});
     this.comboBoxEdit1.Properties.LookAndFeel.Style = DevExpress.LookAndFeel.LookAndFeelStyle.Skin;
     this.comboBoxEdit1.Properties.PopupResizeMode = DevExpress.XtraEditors.Controls.ResizeMode.Default;
     this.comboBoxEdit1.Properties.ShowDropDown = DevExpress.XtraEditors.Controls.ShowDropDown.SingleClick;
     this.comboBoxEdit1.Properties.TextEditStyle = DevExpress.XtraEditors.Controls.TextEditStyles.Standard;
     this.comboBoxEdit1.Size = new System.Drawing.Size(35, 21);
     this.comboBoxEdit1.TabIndex = 7;
     this.comboBoxEdit1.ToolTipIconType = DevExpress.Utils.ToolTipIconType.None;
     this.comboBoxEdit1.Visible = false;
     //
     // spinEdit1
     //
     this.spinEdit1.AllowHtmlTextInToolTip = DevExpress.Utils.DefaultBoolean.Default;
     this.spinEdit1.EditValue = new decimal(new int[] {
     50,
     0,
     0,
     0});
     this.spinEdit1.Location = new System.Drawing.Point(58, 28);
     this.spinEdit1.Name = "spinEdit1";
     this.spinEdit1.Properties.AccessibleRole = System.Windows.Forms.AccessibleRole.Default;
     this.spinEdit1.Properties.AllowNullInput = DevExpress.Utils.DefaultBoolean.Default;
     this.spinEdit1.Properties.Appearance.GradientMode = System.Drawing.Drawing2D.LinearGradientMode.Horizontal;
     this.spinEdit1.Properties.Appearance.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Default;
     this.spinEdit1.Properties.Appearance.TextOptions.HotkeyPrefix = DevExpress.Utils.HKeyPrefix.Default;
     this.spinEdit1.Properties.Appearance.TextOptions.Trimming = DevExpress.Utils.Trimming.Default;
     this.spinEdit1.Properties.Appearance.TextOptions.VAlignment = DevExpress.Utils.VertAlignment.Default;
     this.spinEdit1.Properties.Appearance.TextOptions.WordWrap = DevExpress.Utils.WordWrap.Default;
     this.spinEdit1.Properties.AppearanceDisabled.GradientMode = System.Drawing.Drawing2D.LinearGradientMode.Horizontal;
     this.spinEdit1.Properties.AppearanceDisabled.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Default;
     this.spinEdit1.Properties.AppearanceDisabled.TextOptions.HotkeyPrefix = DevExpress.Utils.HKeyPrefix.Default;
     this.spinEdit1.Properties.AppearanceDisabled.TextOptions.Trimming = DevExpress.Utils.Trimming.Default;
     this.spinEdit1.Properties.AppearanceDisabled.TextOptions.VAlignment = DevExpress.Utils.VertAlignment.Default;
     this.spinEdit1.Properties.AppearanceDisabled.TextOptions.WordWrap = DevExpress.Utils.WordWrap.Default;
     this.spinEdit1.Properties.AppearanceFocused.GradientMode = System.Drawing.Drawing2D.LinearGradientMode.Horizontal;
     this.spinEdit1.Properties.AppearanceFocused.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Default;
     this.spinEdit1.Properties.AppearanceFocused.TextOptions.HotkeyPrefix = DevExpress.Utils.HKeyPrefix.Default;
     this.spinEdit1.Properties.AppearanceFocused.TextOptions.Trimming = DevExpress.Utils.Trimming.Default;
     this.spinEdit1.Properties.AppearanceFocused.TextOptions.VAlignment = DevExpress.Utils.VertAlignment.Default;
     this.spinEdit1.Properties.AppearanceFocused.TextOptions.WordWrap = DevExpress.Utils.WordWrap.Default;
     this.spinEdit1.Properties.AppearanceReadOnly.GradientMode = System.Drawing.Drawing2D.LinearGradientMode.Horizontal;
     this.spinEdit1.Properties.AppearanceReadOnly.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Default;
     this.spinEdit1.Properties.AppearanceReadOnly.TextOptions.HotkeyPrefix = DevExpress.Utils.HKeyPrefix.Default;
     this.spinEdit1.Properties.AppearanceReadOnly.TextOptions.Trimming = DevExpress.Utils.Trimming.Default;
     this.spinEdit1.Properties.AppearanceReadOnly.TextOptions.VAlignment = DevExpress.Utils.VertAlignment.Default;
     this.spinEdit1.Properties.AppearanceReadOnly.TextOptions.WordWrap = DevExpress.Utils.WordWrap.Default;
     this.spinEdit1.Properties.BorderStyle = DevExpress.XtraEditors.Controls.BorderStyles.Default;
     serializableAppearanceObject8.GradientMode = System.Drawing.Drawing2D.LinearGradientMode.Horizontal;
     serializableAppearanceObject8.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Default;
     serializableAppearanceObject8.TextOptions.HotkeyPrefix = DevExpress.Utils.HKeyPrefix.Default;
     serializableAppearanceObject8.TextOptions.Trimming = DevExpress.Utils.Trimming.Default;
     serializableAppearanceObject8.TextOptions.VAlignment = DevExpress.Utils.VertAlignment.Default;
     serializableAppearanceObject8.TextOptions.WordWrap = DevExpress.Utils.WordWrap.Default;
     this.spinEdit1.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Ellipsis, "", -1, true, true, false, DevExpress.XtraEditors.ImageLocation.MiddleCenter, null, new DevExpress.Utils.KeyShortcut(System.Windows.Forms.Keys.None), serializableAppearanceObject8, "", null, null, true)});
     this.spinEdit1.Properties.CharacterCasing = System.Windows.Forms.CharacterCasing.Normal;
     this.spinEdit1.Properties.EditValueChangedFiringMode = DevExpress.XtraEditors.Controls.EditValueChangedFiringMode.Buffered;
     this.spinEdit1.Properties.ExportMode = DevExpress.XtraEditors.Repository.ExportMode.Default;
     this.spinEdit1.Properties.LookAndFeel.Style = DevExpress.LookAndFeel.LookAndFeelStyle.Skin;
     this.spinEdit1.Properties.Mask.AutoComplete = DevExpress.XtraEditors.Mask.AutoCompleteType.Default;
     this.spinEdit1.Properties.Mask.MaskType = DevExpress.XtraEditors.Mask.MaskType.Numeric;
     this.spinEdit1.Properties.SpinStyle = DevExpress.XtraEditors.Controls.SpinStyles.Vertical;
     this.spinEdit1.Properties.TextEditStyle = DevExpress.XtraEditors.Controls.TextEditStyles.Standard;
     this.spinEdit1.Size = new System.Drawing.Size(76, 21);
     this.spinEdit1.TabIndex = 6;
     this.spinEdit1.ToolTipIconType = DevExpress.Utils.ToolTipIconType.None;
     this.spinEdit1.EditValueChanged += new System.EventHandler(this.spinEdit1_EditValueChanged);
     //
     // textEdit2
     //
     this.textEdit2.AllowHtmlTextInToolTip = DevExpress.Utils.DefaultBoolean.Default;
     this.textEdit2.EditValue = "80";
     this.textEdit2.Location = new System.Drawing.Point(130, 147);
     this.textEdit2.Name = "textEdit2";
     this.textEdit2.Properties.AccessibleRole = System.Windows.Forms.AccessibleRole.Default;
     this.textEdit2.Properties.AllowNullInput = DevExpress.Utils.DefaultBoolean.Default;
     this.textEdit2.Properties.Appearance.GradientMode = System.Drawing.Drawing2D.LinearGradientMode.Horizontal;
     this.textEdit2.Properties.Appearance.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Default;
     this.textEdit2.Properties.Appearance.TextOptions.HotkeyPrefix = DevExpress.Utils.HKeyPrefix.Default;
     this.textEdit2.Properties.Appearance.TextOptions.Trimming = DevExpress.Utils.Trimming.Default;
     this.textEdit2.Properties.Appearance.TextOptions.VAlignment = DevExpress.Utils.VertAlignment.Default;
     this.textEdit2.Properties.Appearance.TextOptions.WordWrap = DevExpress.Utils.WordWrap.Default;
     this.textEdit2.Properties.AppearanceDisabled.GradientMode = System.Drawing.Drawing2D.LinearGradientMode.Horizontal;
     this.textEdit2.Properties.AppearanceDisabled.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Default;
     this.textEdit2.Properties.AppearanceDisabled.TextOptions.HotkeyPrefix = DevExpress.Utils.HKeyPrefix.Default;
     this.textEdit2.Properties.AppearanceDisabled.TextOptions.Trimming = DevExpress.Utils.Trimming.Default;
     this.textEdit2.Properties.AppearanceDisabled.TextOptions.VAlignment = DevExpress.Utils.VertAlignment.Default;
     this.textEdit2.Properties.AppearanceDisabled.TextOptions.WordWrap = DevExpress.Utils.WordWrap.Default;
     this.textEdit2.Properties.AppearanceFocused.GradientMode = System.Drawing.Drawing2D.LinearGradientMode.Horizontal;
     this.textEdit2.Properties.AppearanceFocused.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Default;
     this.textEdit2.Properties.AppearanceFocused.TextOptions.HotkeyPrefix = DevExpress.Utils.HKeyPrefix.Default;
     this.textEdit2.Properties.AppearanceFocused.TextOptions.Trimming = DevExpress.Utils.Trimming.Default;
     this.textEdit2.Properties.AppearanceFocused.TextOptions.VAlignment = DevExpress.Utils.VertAlignment.Default;
     this.textEdit2.Properties.AppearanceFocused.TextOptions.WordWrap = DevExpress.Utils.WordWrap.Default;
     this.textEdit2.Properties.AppearanceReadOnly.GradientMode = System.Drawing.Drawing2D.LinearGradientMode.Horizontal;
     this.textEdit2.Properties.AppearanceReadOnly.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Default;
     this.textEdit2.Properties.AppearanceReadOnly.TextOptions.HotkeyPrefix = DevExpress.Utils.HKeyPrefix.Default;
     this.textEdit2.Properties.AppearanceReadOnly.TextOptions.Trimming = DevExpress.Utils.Trimming.Default;
     this.textEdit2.Properties.AppearanceReadOnly.TextOptions.VAlignment = DevExpress.Utils.VertAlignment.Default;
     this.textEdit2.Properties.AppearanceReadOnly.TextOptions.WordWrap = DevExpress.Utils.WordWrap.Default;
     this.textEdit2.Properties.BorderStyle = DevExpress.XtraEditors.Controls.BorderStyles.Default;
     this.textEdit2.Properties.CharacterCasing = System.Windows.Forms.CharacterCasing.Normal;
     this.textEdit2.Properties.EditValueChangedFiringMode = DevExpress.XtraEditors.Controls.EditValueChangedFiringMode.Default;
     this.textEdit2.Properties.ExportMode = DevExpress.XtraEditors.Repository.ExportMode.Default;
     this.textEdit2.Properties.LookAndFeel.Style = DevExpress.LookAndFeel.LookAndFeelStyle.Skin;
     this.textEdit2.Properties.Mask.AutoComplete = DevExpress.XtraEditors.Mask.AutoCompleteType.Default;
     this.textEdit2.Properties.Mask.MaskType = DevExpress.XtraEditors.Mask.MaskType.None;
     this.textEdit2.Size = new System.Drawing.Size(40, 21);
     this.textEdit2.TabIndex = 5;
     this.textEdit2.ToolTipIconType = DevExpress.Utils.ToolTipIconType.None;
     this.textEdit2.Visible = false;
     //
     // labelControl2
     //
     this.labelControl2.AllowHtmlTextInToolTip = DevExpress.Utils.DefaultBoolean.Default;
     this.labelControl2.Appearance.GradientMode = System.Drawing.Drawing2D.LinearGradientMode.Horizontal;
     this.labelControl2.Appearance.ImageAlign = System.Drawing.ContentAlignment.MiddleCenter;
     this.labelControl2.Appearance.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Default;
     this.labelControl2.Appearance.TextOptions.HotkeyPrefix = DevExpress.Utils.HKeyPrefix.Default;
     this.labelControl2.Appearance.TextOptions.Trimming = DevExpress.Utils.Trimming.Default;
     this.labelControl2.Appearance.TextOptions.VAlignment = DevExpress.Utils.VertAlignment.Default;
     this.labelControl2.Appearance.TextOptions.WordWrap = DevExpress.Utils.WordWrap.Default;
     this.labelControl2.AutoSizeMode = DevExpress.XtraEditors.LabelAutoSizeMode.Default;
     this.labelControl2.ImageAlignToText = DevExpress.XtraEditors.ImageAlignToText.None;
     this.labelControl2.LineLocation = DevExpress.XtraEditors.LineLocation.Default;
     this.labelControl2.LineOrientation = DevExpress.XtraEditors.LabelLineOrientation.Default;
     this.labelControl2.Location = new System.Drawing.Point(4, 150);
     this.labelControl2.LookAndFeel.Style = DevExpress.LookAndFeel.LookAndFeelStyle.Skin;
     this.labelControl2.Name = "labelControl2";
     this.labelControl2.Size = new System.Drawing.Size(36, 14);
     this.labelControl2.TabIndex = 3;
     this.labelControl2.Text = "高程:";
     this.labelControl2.ToolTipIconType = DevExpress.Utils.ToolTipIconType.None;
     //
     // labelControl1
     //
     this.labelControl1.AllowHtmlTextInToolTip = DevExpress.Utils.DefaultBoolean.Default;
     this.labelControl1.Appearance.GradientMode = System.Drawing.Drawing2D.LinearGradientMode.Horizontal;
     this.labelControl1.Appearance.ImageAlign = System.Drawing.ContentAlignment.MiddleCenter;
     this.labelControl1.Appearance.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Default;
     this.labelControl1.Appearance.TextOptions.HotkeyPrefix = DevExpress.Utils.HKeyPrefix.Default;
     this.labelControl1.Appearance.TextOptions.Trimming = DevExpress.Utils.Trimming.Default;
     this.labelControl1.Appearance.TextOptions.VAlignment = DevExpress.Utils.VertAlignment.Default;
     this.labelControl1.Appearance.TextOptions.WordWrap = DevExpress.Utils.WordWrap.Default;
     this.labelControl1.AutoSizeMode = DevExpress.XtraEditors.LabelAutoSizeMode.Default;
     this.labelControl1.ImageAlignToText = DevExpress.XtraEditors.ImageAlignToText.None;
     this.labelControl1.LineLocation = DevExpress.XtraEditors.LineLocation.Default;
     this.labelControl1.LineOrientation = DevExpress.XtraEditors.LabelLineOrientation.Default;
     this.labelControl1.Location = new System.Drawing.Point(4, 31);
     this.labelControl1.LookAndFeel.Style = DevExpress.LookAndFeel.LookAndFeelStyle.Skin;
     this.labelControl1.Name = "labelControl1";
     this.labelControl1.Size = new System.Drawing.Size(60, 14);
     this.labelControl1.TabIndex = 2;
     this.labelControl1.Text = "转弯速度:";
     this.labelControl1.ToolTipIconType = DevExpress.Utils.ToolTipIconType.None;
     //
     // simpleButton2
     //
     this.simpleButton2.AllowHtmlTextInToolTip = DevExpress.Utils.DefaultBoolean.Default;
     this.simpleButton2.Appearance.GradientMode = System.Drawing.Drawing2D.LinearGradientMode.Horizontal;
     this.simpleButton2.Appearance.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Default;
     this.simpleButton2.Appearance.TextOptions.HotkeyPrefix = DevExpress.Utils.HKeyPrefix.Default;
     this.simpleButton2.Appearance.TextOptions.Trimming = DevExpress.Utils.Trimming.Default;
     this.simpleButton2.Appearance.TextOptions.VAlignment = DevExpress.Utils.VertAlignment.Default;
     this.simpleButton2.Appearance.TextOptions.WordWrap = DevExpress.Utils.WordWrap.Default;
     this.simpleButton2.ButtonStyle = DevExpress.XtraEditors.Controls.BorderStyles.Default;
     this.simpleButton2.DialogResult = System.Windows.Forms.DialogResult.None;
     this.simpleButton2.ImageLocation = DevExpress.XtraEditors.ImageLocation.Default;
     this.simpleButton2.Location = new System.Drawing.Point(217, 228);
     this.simpleButton2.LookAndFeel.Style = DevExpress.LookAndFeel.LookAndFeelStyle.Skin;
     this.simpleButton2.Name = "simpleButton2";
     this.simpleButton2.Size = new System.Drawing.Size(49, 23);
     this.simpleButton2.TabIndex = 1;
     this.simpleButton2.Text = "关闭";
     this.simpleButton2.ToolTipIconType = DevExpress.Utils.ToolTipIconType.None;
     this.simpleButton2.Click += new System.EventHandler(this.simpleButton2_Click);
     //
     // simpleButton1
     //
     this.simpleButton1.AllowHtmlTextInToolTip = DevExpress.Utils.DefaultBoolean.Default;
     this.simpleButton1.Appearance.GradientMode = System.Drawing.Drawing2D.LinearGradientMode.Horizontal;
     this.simpleButton1.Appearance.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Default;
     this.simpleButton1.Appearance.TextOptions.HotkeyPrefix = DevExpress.Utils.HKeyPrefix.Default;
     this.simpleButton1.Appearance.TextOptions.Trimming = DevExpress.Utils.Trimming.Default;
     this.simpleButton1.Appearance.TextOptions.VAlignment = DevExpress.Utils.VertAlignment.Default;
     this.simpleButton1.Appearance.TextOptions.WordWrap = DevExpress.Utils.WordWrap.Default;
     this.simpleButton1.ButtonStyle = DevExpress.XtraEditors.Controls.BorderStyles.Default;
     this.simpleButton1.DialogResult = System.Windows.Forms.DialogResult.None;
     this.simpleButton1.ImageLocation = DevExpress.XtraEditors.ImageLocation.Default;
     this.simpleButton1.Location = new System.Drawing.Point(162, 228);
     this.simpleButton1.LookAndFeel.Style = DevExpress.LookAndFeel.LookAndFeelStyle.Skin;
     this.simpleButton1.Name = "simpleButton1";
     this.simpleButton1.Size = new System.Drawing.Size(49, 23);
     this.simpleButton1.TabIndex = 0;
     this.simpleButton1.Text = "应用";
     this.simpleButton1.ToolTipIconType = DevExpress.Utils.ToolTipIconType.None;
     this.simpleButton1.Click += new System.EventHandler(this.simpleButton1_Click);
     //
     // openFileDialog1
     //
     this.openFileDialog1.FileName = "openFileDialog1";
     //
     // FrmSetPlaneParam
     //
     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(289, 266);
     this.Controls.Add(this.groupControl1);
     this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedToolWindow;
     this.LookAndFeel.Style = DevExpress.LookAndFeel.LookAndFeelStyle.Skin;
     this.Name = "FrmSetPlaneParam";
     this.Opacity = 0.8D;
     this.Text = "飞行参数设定";
     this.Load += new System.EventHandler(this.FrmSetPlaneParam_Load);
     ((System.ComponentModel.ISupportInitialize)(this.groupControl1)).EndInit();
     this.groupControl1.ResumeLayout(false);
     this.groupControl1.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(this.spinEdit4.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.spinEdit3.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.comboBoxEdit3.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.comboBoxEdit2.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.buttonEdit1.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.spinEdit2.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.comboBoxEdit1.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.spinEdit1.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.textEdit2.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()
 {
     System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(UsersFrm));
     this.groupControlInsert = new DevExpress.XtraEditors.GroupControl();
     this.CEAddActive = new DevExpress.XtraEditors.CheckEdit();
     this.BtnAdd = new DevExpress.XtraEditors.SimpleButton();
     this.TxtAddItem = new DevExpress.XtraEditors.TextEdit();
     this.TxtAddPass2 = new DevExpress.XtraEditors.TextEdit();
     this.labelControl3 = new DevExpress.XtraEditors.LabelControl();
     this.labelControl7 = new DevExpress.XtraEditors.LabelControl();
     this.labelControl6 = new DevExpress.XtraEditors.LabelControl();
     this.TxtAddPass1 = new DevExpress.XtraEditors.TextEdit();
     this.groupControlUpdate = new DevExpress.XtraEditors.GroupControl();
     this.CEEditActive = new DevExpress.XtraEditors.CheckEdit();
     this.BtnUpdate = new DevExpress.XtraEditors.SimpleButton();
     this.TxtEditPass2 = new DevExpress.XtraEditors.TextEdit();
     this.labelControl5 = new DevExpress.XtraEditors.LabelControl();
     this.TxtEditPass1 = new DevExpress.XtraEditors.TextEdit();
     this.labelControl4 = new DevExpress.XtraEditors.LabelControl();
     this.TxtEditItem = new DevExpress.XtraEditors.TextEdit();
     this.labelControl2 = new DevExpress.XtraEditors.LabelControl();
     this.groupControlSelect = new DevExpress.XtraEditors.GroupControl();
     this.BtnDelete = new DevExpress.XtraEditors.SimpleButton();
     this.LUEItems = new DevExpress.XtraEditors.LookUpEdit();
     this.labelControl1 = new DevExpress.XtraEditors.LabelControl();
     this.BtnRefresh = new DevExpress.XtraEditors.SimpleButton();
     ((System.ComponentModel.ISupportInitialize)(this.groupControlInsert)).BeginInit();
     this.groupControlInsert.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.CEAddActive.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.TxtAddItem.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.TxtAddPass2.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.TxtAddPass1.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.groupControlUpdate)).BeginInit();
     this.groupControlUpdate.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.CEEditActive.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.TxtEditPass2.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.TxtEditPass1.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.TxtEditItem.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.groupControlSelect)).BeginInit();
     this.groupControlSelect.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.LUEItems.Properties)).BeginInit();
     this.SuspendLayout();
     //
     // groupControlInsert
     //
     this.groupControlInsert.Anchor = System.Windows.Forms.AnchorStyles.None;
     this.groupControlInsert.AppearanceCaption.Options.UseTextOptions = true;
     this.groupControlInsert.AppearanceCaption.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.groupControlInsert.Controls.Add(this.CEAddActive);
     this.groupControlInsert.Controls.Add(this.BtnAdd);
     this.groupControlInsert.Controls.Add(this.TxtAddItem);
     this.groupControlInsert.Controls.Add(this.TxtAddPass2);
     this.groupControlInsert.Controls.Add(this.labelControl3);
     this.groupControlInsert.Controls.Add(this.labelControl7);
     this.groupControlInsert.Controls.Add(this.labelControl6);
     this.groupControlInsert.Controls.Add(this.TxtAddPass1);
     this.groupControlInsert.Location = new System.Drawing.Point(9, 239);
     this.groupControlInsert.Name = "groupControlInsert";
     this.groupControlInsert.RightToLeft = System.Windows.Forms.RightToLeft.Yes;
     this.groupControlInsert.Size = new System.Drawing.Size(341, 153);
     this.groupControlInsert.TabIndex = 7;
     this.groupControlInsert.Text = "اضافة مستخدم جديد";
     //
     // CEAddActive
     //
     this.CEAddActive.EditValue = true;
     this.CEAddActive.Location = new System.Drawing.Point(143, 99);
     this.CEAddActive.Name = "CEAddActive";
     this.CEAddActive.Properties.Caption = "متاح";
     this.CEAddActive.Size = new System.Drawing.Size(62, 19);
     this.CEAddActive.TabIndex = 10;
     //
     // BtnAdd
     //
     this.BtnAdd.Enabled = false;
     this.BtnAdd.Location = new System.Drawing.Point(95, 124);
     this.BtnAdd.Name = "BtnAdd";
     this.BtnAdd.Size = new System.Drawing.Size(110, 23);
     this.BtnAdd.TabIndex = 11;
     this.BtnAdd.Text = "اضافه";
     this.BtnAdd.Click += new System.EventHandler(this.BtnAdd_Click);
     //
     // TxtAddItem
     //
     this.TxtAddItem.Location = new System.Drawing.Point(32, 24);
     this.TxtAddItem.Name = "TxtAddItem";
     this.TxtAddItem.Properties.MaxLength = 25;
     this.TxtAddItem.Properties.NullValuePrompt = "ادخل اسم";
     this.TxtAddItem.Size = new System.Drawing.Size(173, 19);
     this.TxtAddItem.TabIndex = 7;
     this.TxtAddItem.EditValueChanged += new System.EventHandler(this.TxtNewItem_EditValueChanged);
     //
     // TxtAddPass2
     //
     this.TxtAddPass2.Location = new System.Drawing.Point(32, 74);
     this.TxtAddPass2.Name = "TxtAddPass2";
     this.TxtAddPass2.Properties.MaxLength = 25;
     this.TxtAddPass2.Properties.NullValuePrompt = "اعد كتابة كلمة المرور";
     this.TxtAddPass2.Properties.PasswordChar = '*';
     this.TxtAddPass2.Size = new System.Drawing.Size(173, 19);
     this.TxtAddPass2.TabIndex = 9;
     this.TxtAddPass2.EditValueChanged += new System.EventHandler(this.TxtEditItem_EditValueChanged);
     //
     // labelControl3
     //
     this.labelControl3.Location = new System.Drawing.Point(225, 24);
     this.labelControl3.Name = "labelControl3";
     this.labelControl3.Size = new System.Drawing.Size(74, 13);
     this.labelControl3.TabIndex = 0;
     this.labelControl3.Text = "اسم المستخدم";
     //
     // labelControl7
     //
     this.labelControl7.Location = new System.Drawing.Point(211, 77);
     this.labelControl7.Name = "labelControl7";
     this.labelControl7.Size = new System.Drawing.Size(76, 13);
     this.labelControl7.TabIndex = 0;
     this.labelControl7.Text = "تأكيد كلمة المرور";
     //
     // labelControl6
     //
     this.labelControl6.Location = new System.Drawing.Point(249, 52);
     this.labelControl6.Name = "labelControl6";
     this.labelControl6.Size = new System.Drawing.Size(52, 13);
     this.labelControl6.TabIndex = 0;
     this.labelControl6.Text = "كلمة المرور";
     //
     // TxtAddPass1
     //
     this.TxtAddPass1.Location = new System.Drawing.Point(32, 49);
     this.TxtAddPass1.Name = "TxtAddPass1";
     this.TxtAddPass1.Properties.MaxLength = 25;
     this.TxtAddPass1.Properties.NullValuePrompt = "ادخل كلمة المرور";
     this.TxtAddPass1.Properties.PasswordChar = '*';
     this.TxtAddPass1.Size = new System.Drawing.Size(173, 19);
     this.TxtAddPass1.TabIndex = 8;
     this.TxtAddPass1.EditValueChanged += new System.EventHandler(this.TxtEditItem_EditValueChanged);
     //
     // groupControlUpdate
     //
     this.groupControlUpdate.Anchor = System.Windows.Forms.AnchorStyles.None;
     this.groupControlUpdate.AppearanceCaption.Options.UseTextOptions = true;
     this.groupControlUpdate.AppearanceCaption.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.groupControlUpdate.Controls.Add(this.CEEditActive);
     this.groupControlUpdate.Controls.Add(this.BtnUpdate);
     this.groupControlUpdate.Controls.Add(this.TxtEditPass2);
     this.groupControlUpdate.Controls.Add(this.labelControl5);
     this.groupControlUpdate.Controls.Add(this.TxtEditPass1);
     this.groupControlUpdate.Controls.Add(this.labelControl4);
     this.groupControlUpdate.Controls.Add(this.TxtEditItem);
     this.groupControlUpdate.Controls.Add(this.labelControl2);
     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(341, 158);
     this.groupControlUpdate.TabIndex = 2;
     this.groupControlUpdate.Text = "تعديل مستخدم";
     //
     // CEEditActive
     //
     this.CEEditActive.EditValue = true;
     this.CEEditActive.Location = new System.Drawing.Point(141, 104);
     this.CEEditActive.Name = "CEEditActive";
     this.CEEditActive.Properties.Caption = "متاح";
     this.CEEditActive.RightToLeft = System.Windows.Forms.RightToLeft.Yes;
     this.CEEditActive.Size = new System.Drawing.Size(64, 19);
     this.CEEditActive.TabIndex = 5;
     //
     // BtnUpdate
     //
     this.BtnUpdate.Enabled = false;
     this.BtnUpdate.Location = new System.Drawing.Point(95, 129);
     this.BtnUpdate.Name = "BtnUpdate";
     this.BtnUpdate.Size = new System.Drawing.Size(110, 23);
     this.BtnUpdate.TabIndex = 6;
     this.BtnUpdate.Text = "تعديل";
     this.BtnUpdate.Click += new System.EventHandler(this.BtnUpdate_Click);
     //
     // TxtEditPass2
     //
     this.TxtEditPass2.Location = new System.Drawing.Point(32, 79);
     this.TxtEditPass2.Name = "TxtEditPass2";
     this.TxtEditPass2.Properties.MaxLength = 25;
     this.TxtEditPass2.Properties.NullValuePrompt = "اعد كتابة كلمة المرور";
     this.TxtEditPass2.Properties.PasswordChar = '*';
     this.TxtEditPass2.Size = new System.Drawing.Size(173, 19);
     this.TxtEditPass2.TabIndex = 4;
     this.TxtEditPass2.EditValueChanged += new System.EventHandler(this.TxtEditItem_EditValueChanged);
     //
     // labelControl5
     //
     this.labelControl5.Location = new System.Drawing.Point(211, 82);
     this.labelControl5.Name = "labelControl5";
     this.labelControl5.Size = new System.Drawing.Size(76, 13);
     this.labelControl5.TabIndex = 0;
     this.labelControl5.Text = "تأكيد كلمة المرور";
     //
     // TxtEditPass1
     //
     this.TxtEditPass1.Location = new System.Drawing.Point(32, 54);
     this.TxtEditPass1.Name = "TxtEditPass1";
     this.TxtEditPass1.Properties.MaxLength = 25;
     this.TxtEditPass1.Properties.NullValuePrompt = "ادخل كلمة المرور";
     this.TxtEditPass1.Properties.PasswordChar = '*';
     this.TxtEditPass1.Size = new System.Drawing.Size(173, 19);
     this.TxtEditPass1.TabIndex = 3;
     this.TxtEditPass1.EditValueChanged += new System.EventHandler(this.TxtEditItem_EditValueChanged);
     //
     // labelControl4
     //
     this.labelControl4.Location = new System.Drawing.Point(247, 57);
     this.labelControl4.Name = "labelControl4";
     this.labelControl4.Size = new System.Drawing.Size(52, 13);
     this.labelControl4.TabIndex = 0;
     this.labelControl4.Text = "كلمة المرور";
     //
     // TxtEditItem
     //
     this.TxtEditItem.Location = new System.Drawing.Point(32, 29);
     this.TxtEditItem.Name = "TxtEditItem";
     this.TxtEditItem.Properties.MaxLength = 25;
     this.TxtEditItem.Properties.NullValuePrompt = "ادخل اسم";
     this.TxtEditItem.Size = new System.Drawing.Size(173, 19);
     this.TxtEditItem.TabIndex = 2;
     this.TxtEditItem.EditValueChanged += new System.EventHandler(this.TxtEditItem_EditValueChanged);
     //
     // labelControl2
     //
     this.labelControl2.Location = new System.Drawing.Point(233, 32);
     this.labelControl2.Name = "labelControl2";
     this.labelControl2.Size = new System.Drawing.Size(58, 13);
     this.labelControl2.TabIndex = 0;
     this.labelControl2.Text = "تعديل الاسم";
     //
     // groupControlSelect
     //
     this.groupControlSelect.Anchor = System.Windows.Forms.AnchorStyles.None;
     this.groupControlSelect.AppearanceCaption.Options.UseTextOptions = true;
     this.groupControlSelect.AppearanceCaption.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.groupControlSelect.Controls.Add(this.BtnDelete);
     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(341, 59);
     this.groupControlSelect.TabIndex = 0;
     this.groupControlSelect.Text = "جميع المستخدمين";
     //
     // BtnDelete
     //
     this.BtnDelete.Enabled = false;
     this.BtnDelete.Image = ((System.Drawing.Image)(resources.GetObject("BtnDelete.Image")));
     this.BtnDelete.ImageLocation = DevExpress.XtraEditors.ImageLocation.MiddleCenter;
     this.BtnDelete.Location = new System.Drawing.Point(21, 26);
     this.BtnDelete.Name = "BtnDelete";
     this.BtnDelete.Size = new System.Drawing.Size(44, 22);
     this.BtnDelete.TabIndex = 1;
     this.BtnDelete.Click += new System.EventHandler(this.BtnDelete_Click);
     //
     // LUEItems
     //
     this.LUEItems.Location = new System.Drawing.Point(68, 29);
     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("UserName", "اسم المستخدم", 20, DevExpress.Utils.FormatType.None, "", true, DevExpress.Utils.HorzAlignment.Center)});
     this.LUEItems.Properties.NullText = "";
     this.LUEItems.Size = new System.Drawing.Size(173, 19);
     this.LUEItems.TabIndex = 0;
     this.LUEItems.EditValueChanged += new System.EventHandler(this.LUEItems_EditValueChanged);
     //
     // labelControl1
     //
     this.labelControl1.Location = new System.Drawing.Point(247, 32);
     this.labelControl1.Name = "labelControl1";
     this.labelControl1.Size = new System.Drawing.Size(66, 13);
     this.labelControl1.TabIndex = 0;
     this.labelControl1.Text = "اختار مستخدم";
     //
     // BtnRefresh
     //
     this.BtnRefresh.Anchor = System.Windows.Forms.AnchorStyles.None;
     this.BtnRefresh.Image = ((System.Drawing.Image)(resources.GetObject("BtnRefresh.Image")));
     this.BtnRefresh.ImageLocation = DevExpress.XtraEditors.ImageLocation.MiddleCenter;
     this.BtnRefresh.Location = new System.Drawing.Point(356, 79);
     this.BtnRefresh.Name = "BtnRefresh";
     this.BtnRefresh.Size = new System.Drawing.Size(31, 241);
     this.BtnRefresh.TabIndex = 12;
     this.BtnRefresh.Click += new System.EventHandler(this.BtnRefresh_Click);
     //
     // UsersFrm
     //
     this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
     this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
     this.ClientSize = new System.Drawing.Size(394, 398);
     this.Controls.Add(this.BtnRefresh);
     this.Controls.Add(this.groupControlInsert);
     this.Controls.Add(this.groupControlUpdate);
     this.Controls.Add(this.groupControlSelect);
     this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedSingle;
     this.MaximizeBox = false;
     this.Name = "UsersFrm";
     this.Text = "المستخدمين";
     this.Load += new System.EventHandler(this.EditorJobFrm_Load);
     ((System.ComponentModel.ISupportInitialize)(this.groupControlInsert)).EndInit();
     this.groupControlInsert.ResumeLayout(false);
     this.groupControlInsert.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(this.CEAddActive.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.TxtAddItem.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.TxtAddPass2.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.TxtAddPass1.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.groupControlUpdate)).EndInit();
     this.groupControlUpdate.ResumeLayout(false);
     this.groupControlUpdate.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(this.CEEditActive.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.TxtEditPass2.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.TxtEditPass1.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.TxtEditItem.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.groupControlSelect)).EndInit();
     this.groupControlSelect.ResumeLayout(false);
     this.groupControlSelect.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(this.LUEItems.Properties)).EndInit();
     this.ResumeLayout(false);
 }
Пример #56
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.panelSun = new System.Windows.Forms.Panel();
     this.panelMonday = new System.Windows.Forms.Panel();
     this.lblMon = new System.Windows.Forms.Label();
     this.txtMonday = new System.Windows.Forms.Label();
     this.panel4 = new System.Windows.Forms.Panel();
     this.lblTUE = new System.Windows.Forms.Label();
     this.txtTUE = new System.Windows.Forms.Label();
     this.panelFriday = new System.Windows.Forms.Panel();
     this.lblFRI = new System.Windows.Forms.Label();
     this.txtFriday = new System.Windows.Forms.Label();
     this.panelFri = new System.Windows.Forms.Panel();
     this.panelThu = new System.Windows.Forms.Panel();
     this.panelWed = new System.Windows.Forms.Panel();
     this.panelTue = new System.Windows.Forms.Panel();
     this.panelMon = new System.Windows.Forms.Panel();
     this.panelWednesday = new System.Windows.Forms.Panel();
     this.lblWED = new System.Windows.Forms.Label();
     this.txtWED = new System.Windows.Forms.Label();
     this.panelThursday = new System.Windows.Forms.Panel();
     this.lblThu = new System.Windows.Forms.Label();
     this.txtThur = new System.Windows.Forms.Label();
     this.panelSunday = new System.Windows.Forms.Panel();
     this.lblSUN = new System.Windows.Forms.Label();
     this.txtSunday = new System.Windows.Forms.Label();
     this.groupBox1 = new System.Windows.Forms.GroupBox();
     this.dtDate = new System.Windows.Forms.MonthCalendar();
     this.label2 = new System.Windows.Forms.Label();
     this.label1 = new System.Windows.Forms.Label();
     this.label3 = new System.Windows.Forms.Label();
     this.panel1 = new System.Windows.Forms.Panel();
     this.label4 = new System.Windows.Forms.Label();
     this.panelSat = new System.Windows.Forms.Panel();
     this.panel3 = new System.Windows.Forms.Panel();
     this.label6 = new System.Windows.Forms.Label();
     this.label7 = new System.Windows.Forms.Label();
     this.panel5 = new System.Windows.Forms.Panel();
     this.label8 = new System.Windows.Forms.Label();
     ((System.ComponentModel.ISupportInitialize)(this.groupControl1)).BeginInit();
     this.groupControl1.SuspendLayout();
     this.panelMonday.SuspendLayout();
     this.panel4.SuspendLayout();
     this.panelFriday.SuspendLayout();
     this.panelWednesday.SuspendLayout();
     this.panelThursday.SuspendLayout();
     this.panelSunday.SuspendLayout();
     this.groupBox1.SuspendLayout();
     this.panel3.SuspendLayout();
     this.SuspendLayout();
     //
     // groupControl1
     //
     this.groupControl1.Appearance.BackColor = System.Drawing.Color.Transparent;
     this.groupControl1.Appearance.Options.UseBackColor = true;
     this.groupControl1.AutoSizeMode = System.Windows.Forms.AutoSizeMode.GrowOnly;
     this.groupControl1.BorderStyle = DevExpress.XtraEditors.Controls.BorderStyles.NoBorder;
     this.groupControl1.Controls.Add(this.panel3);
     this.groupControl1.Controls.Add(this.panelSun);
     this.groupControl1.Controls.Add(this.panelMonday);
     this.groupControl1.Controls.Add(this.panel4);
     this.groupControl1.Controls.Add(this.panelFriday);
     this.groupControl1.Controls.Add(this.panelSat);
     this.groupControl1.Controls.Add(this.panelFri);
     this.groupControl1.Controls.Add(this.panelThu);
     this.groupControl1.Controls.Add(this.panelWed);
     this.groupControl1.Controls.Add(this.panelTue);
     this.groupControl1.Controls.Add(this.panelMon);
     this.groupControl1.Controls.Add(this.panelWednesday);
     this.groupControl1.Controls.Add(this.panelThursday);
     this.groupControl1.Controls.Add(this.panelSunday);
     this.groupControl1.Location = new System.Drawing.Point(0, 136);
     this.groupControl1.LookAndFeel.UseDefaultLookAndFeel = false;
     this.groupControl1.Name = "groupControl1";
     this.groupControl1.ShowCaption = false;
     this.groupControl1.Size = new System.Drawing.Size(917, 552);
     this.groupControl1.TabIndex = 32;
     //
     // panelSun
     //
     this.panelSun.BackColor = System.Drawing.Color.Transparent;
     this.panelSun.Location = new System.Drawing.Point(8, 56);
     this.panelSun.Name = "panelSun";
     this.panelSun.Size = new System.Drawing.Size(128, 480);
     this.panelSun.TabIndex = 55;
     //
     // panelMonday
     //
     this.panelMonday.BackColor = System.Drawing.Color.WhiteSmoke;
     this.panelMonday.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
     this.panelMonday.Controls.Add(this.lblMon);
     this.panelMonday.Controls.Add(this.txtMonday);
     this.panelMonday.Location = new System.Drawing.Point(136, 24);
     this.panelMonday.Name = "panelMonday";
     this.panelMonday.Size = new System.Drawing.Size(128, 32);
     this.panelMonday.TabIndex = 54;
     //
     // lblMon
     //
     this.lblMon.BackColor = System.Drawing.Color.PowderBlue;
     this.lblMon.Font = new System.Drawing.Font("Tahoma", 6.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.lblMon.Location = new System.Drawing.Point(0, 0);
     this.lblMon.Name = "lblMon";
     this.lblMon.Size = new System.Drawing.Size(128, 16);
     this.lblMon.TabIndex = 1;
     this.lblMon.Text = "PM";
     this.lblMon.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
     //
     // txtMonday
     //
     this.txtMonday.BackColor = System.Drawing.Color.PowderBlue;
     this.txtMonday.Font = new System.Drawing.Font("Tahoma", 6.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.txtMonday.Location = new System.Drawing.Point(0, 16);
     this.txtMonday.Name = "txtMonday";
     this.txtMonday.Size = new System.Drawing.Size(128, 16);
     this.txtMonday.TabIndex = 2;
     this.txtMonday.Text = "17/6/2005";
     this.txtMonday.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
     //
     // panel4
     //
     this.panel4.BackColor = System.Drawing.Color.WhiteSmoke;
     this.panel4.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
     this.panel4.Controls.Add(this.lblTUE);
     this.panel4.Controls.Add(this.txtTUE);
     this.panel4.Location = new System.Drawing.Point(264, 24);
     this.panel4.Name = "panel4";
     this.panel4.Size = new System.Drawing.Size(128, 32);
     this.panel4.TabIndex = 52;
     //
     // lblTUE
     //
     this.lblTUE.BackColor = System.Drawing.Color.PowderBlue;
     this.lblTUE.Font = new System.Drawing.Font("Tahoma", 6.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.lblTUE.Location = new System.Drawing.Point(0, 0);
     this.lblTUE.Name = "lblTUE";
     this.lblTUE.Size = new System.Drawing.Size(128, 16);
     this.lblTUE.TabIndex = 1;
     this.lblTUE.Text = "WL";
     this.lblTUE.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
     //
     // txtTUE
     //
     this.txtTUE.BackColor = System.Drawing.Color.PowderBlue;
     this.txtTUE.Font = new System.Drawing.Font("Tahoma", 6.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.txtTUE.Location = new System.Drawing.Point(0, 16);
     this.txtTUE.Name = "txtTUE";
     this.txtTUE.Size = new System.Drawing.Size(128, 16);
     this.txtTUE.TabIndex = 2;
     this.txtTUE.Text = "17/6/2005";
     this.txtTUE.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
     //
     // panelFriday
     //
     this.panelFriday.BackColor = System.Drawing.Color.WhiteSmoke;
     this.panelFriday.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
     this.panelFriday.Controls.Add(this.label1);
     this.panelFriday.Controls.Add(this.label3);
     this.panelFriday.Controls.Add(this.panel1);
     this.panelFriday.Controls.Add(this.lblFRI);
     this.panelFriday.Controls.Add(this.txtFriday);
     this.panelFriday.Location = new System.Drawing.Point(648, 24);
     this.panelFriday.Name = "panelFriday";
     this.panelFriday.Size = new System.Drawing.Size(128, 32);
     this.panelFriday.TabIndex = 48;
     //
     // lblFRI
     //
     this.lblFRI.BackColor = System.Drawing.Color.PowderBlue;
     this.lblFRI.Font = new System.Drawing.Font("Tahoma", 6.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.lblFRI.Location = new System.Drawing.Point(-1, 0);
     this.lblFRI.Name = "lblFRI";
     this.lblFRI.Size = new System.Drawing.Size(128, 16);
     this.lblFRI.TabIndex = 1;
     this.lblFRI.Text = "EP";
     this.lblFRI.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
     this.lblFRI.Click += new System.EventHandler(this.lblFRI_Click);
     //
     // txtFriday
     //
     this.txtFriday.BackColor = System.Drawing.Color.PowderBlue;
     this.txtFriday.Font = new System.Drawing.Font("Tahoma", 6.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.txtFriday.Location = new System.Drawing.Point(0, 16);
     this.txtFriday.Name = "txtFriday";
     this.txtFriday.Size = new System.Drawing.Size(128, 16);
     this.txtFriday.TabIndex = 2;
     this.txtFriday.Text = "17/6/2005";
     this.txtFriday.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
     //
     // panelFri
     //
     this.panelFri.BackColor = System.Drawing.Color.Transparent;
     this.panelFri.Location = new System.Drawing.Point(648, 56);
     this.panelFri.Name = "panelFri";
     this.panelFri.Size = new System.Drawing.Size(128, 480);
     this.panelFri.TabIndex = 37;
     //
     // panelThu
     //
     this.panelThu.BackColor = System.Drawing.Color.Transparent;
     this.panelThu.Location = new System.Drawing.Point(520, 56);
     this.panelThu.Name = "panelThu";
     this.panelThu.Size = new System.Drawing.Size(128, 480);
     this.panelThu.TabIndex = 36;
     //
     // panelWed
     //
     this.panelWed.BackColor = System.Drawing.Color.Transparent;
     this.panelWed.Location = new System.Drawing.Point(392, 56);
     this.panelWed.Name = "panelWed";
     this.panelWed.Size = new System.Drawing.Size(128, 480);
     this.panelWed.TabIndex = 35;
     //
     // panelTue
     //
     this.panelTue.BackColor = System.Drawing.Color.Transparent;
     this.panelTue.Location = new System.Drawing.Point(264, 56);
     this.panelTue.Name = "panelTue";
     this.panelTue.Size = new System.Drawing.Size(128, 480);
     this.panelTue.TabIndex = 34;
     //
     // panelMon
     //
     this.panelMon.BackColor = System.Drawing.Color.Transparent;
     this.panelMon.Location = new System.Drawing.Point(136, 56);
     this.panelMon.Name = "panelMon";
     this.panelMon.Size = new System.Drawing.Size(128, 480);
     this.panelMon.TabIndex = 33;
     //
     // panelWednesday
     //
     this.panelWednesday.BackColor = System.Drawing.Color.WhiteSmoke;
     this.panelWednesday.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
     this.panelWednesday.Controls.Add(this.lblWED);
     this.panelWednesday.Controls.Add(this.txtWED);
     this.panelWednesday.Location = new System.Drawing.Point(392, 24);
     this.panelWednesday.Name = "panelWednesday";
     this.panelWednesday.Size = new System.Drawing.Size(128, 32);
     this.panelWednesday.TabIndex = 51;
     //
     // lblWED
     //
     this.lblWED.BackColor = System.Drawing.Color.PowderBlue;
     this.lblWED.Font = new System.Drawing.Font("Tahoma", 6.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.lblWED.Location = new System.Drawing.Point(0, 0);
     this.lblWED.Name = "lblWED";
     this.lblWED.Size = new System.Drawing.Size(128, 16);
     this.lblWED.TabIndex = 1;
     this.lblWED.Text = "HM";
     this.lblWED.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
     //
     // txtWED
     //
     this.txtWED.BackColor = System.Drawing.Color.PowderBlue;
     this.txtWED.Font = new System.Drawing.Font("Tahoma", 6.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.txtWED.Location = new System.Drawing.Point(0, 16);
     this.txtWED.Name = "txtWED";
     this.txtWED.Size = new System.Drawing.Size(128, 16);
     this.txtWED.TabIndex = 2;
     this.txtWED.Text = "17/6/2005";
     this.txtWED.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
     //
     // panelThursday
     //
     this.panelThursday.BackColor = System.Drawing.Color.WhiteSmoke;
     this.panelThursday.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
     this.panelThursday.Controls.Add(this.lblThu);
     this.panelThursday.Controls.Add(this.txtThur);
     this.panelThursday.Location = new System.Drawing.Point(520, 24);
     this.panelThursday.Name = "panelThursday";
     this.panelThursday.Size = new System.Drawing.Size(128, 32);
     this.panelThursday.TabIndex = 51;
     //
     // lblThu
     //
     this.lblThu.BackColor = System.Drawing.Color.PowderBlue;
     this.lblThu.Font = new System.Drawing.Font("Tahoma", 6.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.lblThu.Location = new System.Drawing.Point(-1, 0);
     this.lblThu.Name = "lblThu";
     this.lblThu.Size = new System.Drawing.Size(128, 16);
     this.lblThu.TabIndex = 1;
     this.lblThu.Text = "JP";
     this.lblThu.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
     //
     // txtThur
     //
     this.txtThur.BackColor = System.Drawing.Color.PowderBlue;
     this.txtThur.Font = new System.Drawing.Font("Tahoma", 6.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.txtThur.Location = new System.Drawing.Point(0, 16);
     this.txtThur.Name = "txtThur";
     this.txtThur.Size = new System.Drawing.Size(128, 16);
     this.txtThur.TabIndex = 2;
     this.txtThur.Text = "17/6/2005";
     this.txtThur.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
     //
     // panelSunday
     //
     this.panelSunday.BackColor = System.Drawing.Color.WhiteSmoke;
     this.panelSunday.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
     this.panelSunday.Controls.Add(this.lblSUN);
     this.panelSunday.Controls.Add(this.txtSunday);
     this.panelSunday.Location = new System.Drawing.Point(8, 24);
     this.panelSunday.Name = "panelSunday";
     this.panelSunday.Size = new System.Drawing.Size(128, 32);
     this.panelSunday.TabIndex = 52;
     //
     // lblSUN
     //
     this.lblSUN.BackColor = System.Drawing.Color.PowderBlue;
     this.lblSUN.Font = new System.Drawing.Font("Tahoma", 6.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.lblSUN.Location = new System.Drawing.Point(0, 0);
     this.lblSUN.Name = "lblSUN";
     this.lblSUN.Size = new System.Drawing.Size(128, 16);
     this.lblSUN.TabIndex = 1;
     this.lblSUN.Text = "BJ";
     this.lblSUN.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
     //
     // txtSunday
     //
     this.txtSunday.BackColor = System.Drawing.Color.PowderBlue;
     this.txtSunday.Font = new System.Drawing.Font("Tahoma", 6.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.txtSunday.Location = new System.Drawing.Point(0, 16);
     this.txtSunday.Name = "txtSunday";
     this.txtSunday.Size = new System.Drawing.Size(128, 16);
     this.txtSunday.TabIndex = 2;
     this.txtSunday.Text = "17/6/2005";
     this.txtSunday.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
     //
     // groupBox1
     //
     this.groupBox1.Controls.Add(this.dtDate);
     this.groupBox1.Controls.Add(this.label2);
     this.groupBox1.Location = new System.Drawing.Point(0, 0);
     this.groupBox1.Name = "groupBox1";
     this.groupBox1.Size = new System.Drawing.Size(917, 136);
     this.groupBox1.TabIndex = 59;
     this.groupBox1.TabStop = false;
     //
     // dtDate
     //
     this.dtDate.Location = new System.Drawing.Point(72, 0);
     this.dtDate.Name = "dtDate";
     this.dtDate.TabIndex = 56;
     this.dtDate.DateChanged += new System.Windows.Forms.DateRangeEventHandler(this.monthCalendar1_DateChanged);
     //
     // label2
     //
     this.label2.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.5F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
     this.label2.Location = new System.Drawing.Point(8, 8);
     this.label2.Name = "label2";
     this.label2.Size = new System.Drawing.Size(56, 40);
     this.label2.TabIndex = 52;
     this.label2.Text = "Date";
     this.label2.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
     //
     // label1
     //
     this.label1.BackColor = System.Drawing.Color.PowderBlue;
     this.label1.Font = new System.Drawing.Font("Tahoma", 6.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label1.Location = new System.Drawing.Point(-325, -253);
     this.label1.Name = "label1";
     this.label1.Size = new System.Drawing.Size(128, 16);
     this.label1.TabIndex = 38;
     this.label1.Text = "EP";
     this.label1.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
     //
     // label3
     //
     this.label3.BackColor = System.Drawing.Color.PowderBlue;
     this.label3.Font = new System.Drawing.Font("Tahoma", 6.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label3.Location = new System.Drawing.Point(-325, -237);
     this.label3.Name = "label3";
     this.label3.Size = new System.Drawing.Size(128, 16);
     this.label3.TabIndex = 39;
     this.label3.Text = "17/6/2005";
     this.label3.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
     //
     // panel1
     //
     this.panel1.BackColor = System.Drawing.Color.Transparent;
     this.panel1.Location = new System.Drawing.Point(323, -197);
     this.panel1.Name = "panel1";
     this.panel1.Size = new System.Drawing.Size(128, 480);
     this.panel1.TabIndex = 40;
     //
     // label4
     //
     this.label4.BackColor = System.Drawing.Color.PowderBlue;
     this.label4.Font = new System.Drawing.Font("Tahoma", 6.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label4.Location = new System.Drawing.Point(0, 0);
     this.label4.Name = "label4";
     this.label4.Size = new System.Drawing.Size(128, 16);
     this.label4.TabIndex = 56;
     this.label4.Text = "TS";
     this.label4.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
     //
     // panelSat
     //
     this.panelSat.BackColor = System.Drawing.Color.Transparent;
     this.panelSat.Location = new System.Drawing.Point(776, 54);
     this.panelSat.Name = "panelSat";
     this.panelSat.Size = new System.Drawing.Size(128, 480);
     this.panelSat.TabIndex = 58;
     //
     // panel3
     //
     this.panel3.BackColor = System.Drawing.Color.WhiteSmoke;
     this.panel3.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
     this.panel3.Controls.Add(this.label6);
     this.panel3.Controls.Add(this.label4);
     this.panel3.Controls.Add(this.label7);
     this.panel3.Controls.Add(this.panel5);
     this.panel3.Controls.Add(this.label8);
     this.panel3.Location = new System.Drawing.Point(776, 24);
     this.panel3.Name = "panel3";
     this.panel3.Size = new System.Drawing.Size(128, 32);
     this.panel3.TabIndex = 59;
     //
     // label6
     //
     this.label6.BackColor = System.Drawing.Color.PowderBlue;
     this.label6.Font = new System.Drawing.Font("Tahoma", 6.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label6.Location = new System.Drawing.Point(-325, -253);
     this.label6.Name = "label6";
     this.label6.Size = new System.Drawing.Size(128, 16);
     this.label6.TabIndex = 38;
     this.label6.Text = "EP";
     this.label6.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
     //
     // label7
     //
     this.label7.BackColor = System.Drawing.Color.PowderBlue;
     this.label7.Font = new System.Drawing.Font("Tahoma", 6.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label7.Location = new System.Drawing.Point(-325, -237);
     this.label7.Name = "label7";
     this.label7.Size = new System.Drawing.Size(128, 16);
     this.label7.TabIndex = 39;
     this.label7.Text = "17/6/2005";
     this.label7.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
     //
     // panel5
     //
     this.panel5.BackColor = System.Drawing.Color.Transparent;
     this.panel5.Location = new System.Drawing.Point(323, -197);
     this.panel5.Name = "panel5";
     this.panel5.Size = new System.Drawing.Size(128, 480);
     this.panel5.TabIndex = 40;
     //
     // label8
     //
     this.label8.BackColor = System.Drawing.Color.PowderBlue;
     this.label8.Font = new System.Drawing.Font("Tahoma", 6.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label8.Location = new System.Drawing.Point(0, 16);
     this.label8.Name = "label8";
     this.label8.Size = new System.Drawing.Size(128, 16);
     this.label8.TabIndex = 2;
     this.label8.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
     //
     // RPDayClassAnalysis
     //
     this.AutoScroll = true;
     this.ClientSize = new System.Drawing.Size(945, 592);
     this.Controls.Add(this.groupBox1);
     this.Controls.Add(this.groupControl1);
     this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedToolWindow;
     this.Name = "RPDayClassAnalysis";
     this.Text = "Class Analysis";
     this.WindowState = System.Windows.Forms.FormWindowState.Maximized;
     this.Load += new System.EventHandler(this.RPDayClassAnalysis_Load);
     ((System.ComponentModel.ISupportInitialize)(this.groupControl1)).EndInit();
     this.groupControl1.ResumeLayout(false);
     this.panelMonday.ResumeLayout(false);
     this.panel4.ResumeLayout(false);
     this.panelFriday.ResumeLayout(false);
     this.panelWednesday.ResumeLayout(false);
     this.panelThursday.ResumeLayout(false);
     this.panelSunday.ResumeLayout(false);
     this.groupBox1.ResumeLayout(false);
     this.panel3.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.splitContainerControl2 = new DevExpress.XtraEditors.SplitContainerControl();
     this.groupControlBuildingList = new DevExpress.XtraEditors.GroupControl();
     this.gridControl1 = new DevExpress.XtraGrid.GridControl();
     this.gridView1 = new DevExpress.XtraGrid.Views.Grid.GridView();
     this.building_company_id_text = new DevExpress.XtraGrid.Columns.GridColumn();
     this.building_building_code = new DevExpress.XtraGrid.Columns.GridColumn();
     this.building_building_label = new DevExpress.XtraGrid.Columns.GridColumn();
     this.building_floor_no = new DevExpress.XtraGrid.Columns.GridColumn();
     this.building_building_id = new DevExpress.XtraGrid.Columns.GridColumn();
     this.building_company_id = new DevExpress.XtraGrid.Columns.GridColumn();
     this.panelControl3 = new DevExpress.XtraEditors.PanelControl();
     this.groupControlBuildingInfo = new DevExpress.XtraEditors.GroupControl();
     this.xtraScrollableControl1 = new DevExpress.XtraEditors.XtraScrollableControl();
     this.lookUpEditxxx = new DevExpress.XtraEditors.LookUpEdit();
     this.labelControlRequired = new DevExpress.XtraEditors.LabelControl();
     this.tableLayoutPanel1 = new System.Windows.Forms.TableLayoutPanel();
     this.labelControl3 = new DevExpress.XtraEditors.LabelControl();
     this.labelControlCompanyName = new DevExpress.XtraEditors.LabelControl();
     this.labelControlBuilding = new DevExpress.XtraEditors.LabelControl();
     this.labelControl12 = new DevExpress.XtraEditors.LabelControl();
     this.labelControl2 = new DevExpress.XtraEditors.LabelControl();
     this.labelControlBuildingLabel = new DevExpress.XtraEditors.LabelControl();
     this.labelControlFloorNo = new DevExpress.XtraEditors.LabelControl();
     this.labelControl5 = new DevExpress.XtraEditors.LabelControl();
     this.labelControl6 = new DevExpress.XtraEditors.LabelControl();
     this.labelControl7 = new DevExpress.XtraEditors.LabelControl();
     this.labelControl8 = new DevExpress.XtraEditors.LabelControl();
     this.bttDelete = new DevExpress.XtraEditors.SimpleButton();
     this.bttEdit = new DevExpress.XtraEditors.SimpleButton();
     this.bttAdd = new DevExpress.XtraEditors.SimpleButton();
     this.luEditFloorNo = new DevExpress.XtraEditors.LookUpEdit();
     this.luEditBuilding = new DevExpress.XtraEditors.LookUpEdit();
     this.bttSave = new DevExpress.XtraEditors.SimpleButton();
     this.bttCancel = new DevExpress.XtraEditors.SimpleButton();
     this.txtBuildingLabel = new DevExpress.XtraEditors.TextEdit();
     this.splitContainerControl1 = new DevExpress.XtraEditors.SplitContainerControl();
     this.panelControl2 = new DevExpress.XtraEditors.PanelControl();
     ((System.ComponentModel.ISupportInitialize)(this.splitContainerControl2)).BeginInit();
     this.splitContainerControl2.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.groupControlBuildingList)).BeginInit();
     this.groupControlBuildingList.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.gridControl1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridView1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.panelControl3)).BeginInit();
     this.panelControl3.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.groupControlBuildingInfo)).BeginInit();
     this.groupControlBuildingInfo.SuspendLayout();
     this.xtraScrollableControl1.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.lookUpEditxxx.Properties)).BeginInit();
     this.tableLayoutPanel1.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.luEditFloorNo.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.luEditBuilding.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtBuildingLabel.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.splitContainerControl1)).BeginInit();
     this.splitContainerControl1.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.panelControl2)).BeginInit();
     this.panelControl2.SuspendLayout();
     this.SuspendLayout();
     //
     // splitContainerControl2
     //
     this.splitContainerControl2.Dock = System.Windows.Forms.DockStyle.Fill;
     this.splitContainerControl2.Location = new System.Drawing.Point(7, 7);
     this.splitContainerControl2.Name = "splitContainerControl2";
     this.splitContainerControl2.Panel1.Controls.Add(this.groupControlBuildingList);
     this.splitContainerControl2.Panel1.Text = "Panel1";
     this.splitContainerControl2.Panel2.Controls.Add(this.panelControl3);
     this.splitContainerControl2.Panel2.Text = "Panel2";
     this.splitContainerControl2.Size = new System.Drawing.Size(1040, 474);
     this.splitContainerControl2.SplitterPosition = 500;
     this.splitContainerControl2.TabIndex = 11;
     this.splitContainerControl2.Text = "splitContainerControl2";
     //
     // groupControlBuildingList
     //
     this.groupControlBuildingList.AppearanceCaption.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold);
     this.groupControlBuildingList.AppearanceCaption.Options.UseFont = true;
     this.groupControlBuildingList.Controls.Add(this.gridControl1);
     this.groupControlBuildingList.Dock = System.Windows.Forms.DockStyle.Fill;
     this.groupControlBuildingList.Location = new System.Drawing.Point(0, 0);
     this.groupControlBuildingList.Name = "groupControlBuildingList";
     this.groupControlBuildingList.Size = new System.Drawing.Size(500, 474);
     this.groupControlBuildingList.TabIndex = 0;
     this.groupControlBuildingList.Text = "รายการอาคาร";
     //
     // gridControl1
     //
     this.gridControl1.Dock = System.Windows.Forms.DockStyle.Fill;
     this.gridControl1.EmbeddedNavigator.Buttons.EnabledAutoRepeat = false;
     this.gridControl1.EmbeddedNavigator.Buttons.EndEdit.Enabled = false;
     this.gridControl1.Location = new System.Drawing.Point(2, 22);
     this.gridControl1.MainView = this.gridView1;
     this.gridControl1.Name = "gridControl1";
     this.gridControl1.Size = new System.Drawing.Size(496, 450);
     this.gridControl1.TabIndex = 0;
     this.gridControl1.ViewCollection.AddRange(new DevExpress.XtraGrid.Views.Base.BaseView[] {
     this.gridView1});
     //
     // gridView1
     //
     this.gridView1.Columns.AddRange(new DevExpress.XtraGrid.Columns.GridColumn[] {
     this.building_company_id_text,
     this.building_building_code,
     this.building_building_label,
     this.building_floor_no,
     this.building_building_id,
     this.building_company_id});
     this.gridView1.GridControl = this.gridControl1;
     this.gridView1.Name = "gridView1";
     this.gridView1.OptionsBehavior.AllowAddRows = DevExpress.Utils.DefaultBoolean.False;
     this.gridView1.OptionsBehavior.AllowDeleteRows = DevExpress.Utils.DefaultBoolean.False;
     this.gridView1.OptionsFind.AlwaysVisible = true;
     this.gridView1.OptionsFind.ShowCloseButton = false;
     this.gridView1.OptionsView.EnableAppearanceEvenRow = true;
     this.gridView1.OptionsView.ShowGroupPanel = false;
     this.gridView1.FocusedRowChanged += new DevExpress.XtraGrid.Views.Base.FocusedRowChangedEventHandler(this.gridView1_FocusedRowChanged);
     //
     // building_company_id_text
     //
     this.building_company_id_text.AppearanceHeader.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold);
     this.building_company_id_text.AppearanceHeader.Options.UseFont = true;
     this.building_company_id_text.Caption = "ชื่อกิจการ";
     this.building_company_id_text.FieldName = "company_name";
     this.building_company_id_text.Name = "building_company_id_text";
     this.building_company_id_text.OptionsColumn.AllowEdit = false;
     this.building_company_id_text.OptionsColumn.AllowFocus = false;
     this.building_company_id_text.OptionsColumn.AllowMerge = DevExpress.Utils.DefaultBoolean.False;
     this.building_company_id_text.OptionsColumn.AllowMove = false;
     this.building_company_id_text.Visible = true;
     this.building_company_id_text.VisibleIndex = 0;
     //
     // building_building_code
     //
     this.building_building_code.AppearanceHeader.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold);
     this.building_building_code.AppearanceHeader.Options.UseFont = true;
     this.building_building_code.Caption = "รหัสอาคาร";
     this.building_building_code.FieldName = "building_code";
     this.building_building_code.Name = "building_building_code";
     this.building_building_code.OptionsColumn.AllowEdit = false;
     this.building_building_code.OptionsColumn.AllowFocus = false;
     this.building_building_code.OptionsColumn.AllowMerge = DevExpress.Utils.DefaultBoolean.False;
     this.building_building_code.OptionsColumn.AllowMove = false;
     this.building_building_code.Visible = true;
     this.building_building_code.VisibleIndex = 1;
     //
     // building_building_label
     //
     this.building_building_label.AppearanceHeader.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold);
     this.building_building_label.AppearanceHeader.Options.UseFont = true;
     this.building_building_label.Caption = "ชื่ออาคาร";
     this.building_building_label.FieldName = "building_label";
     this.building_building_label.Name = "building_building_label";
     this.building_building_label.OptionsColumn.AllowEdit = false;
     this.building_building_label.OptionsColumn.AllowFocus = false;
     this.building_building_label.OptionsColumn.AllowMerge = DevExpress.Utils.DefaultBoolean.False;
     this.building_building_label.OptionsColumn.AllowMove = false;
     this.building_building_label.Visible = true;
     this.building_building_label.VisibleIndex = 2;
     //
     // building_floor_no
     //
     this.building_floor_no.AppearanceHeader.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold);
     this.building_floor_no.AppearanceHeader.Options.UseFont = true;
     this.building_floor_no.Caption = "จำนวนชั้น";
     this.building_floor_no.FieldName = "floor_count";
     this.building_floor_no.Name = "building_floor_no";
     this.building_floor_no.OptionsColumn.AllowEdit = false;
     this.building_floor_no.OptionsColumn.AllowFocus = false;
     this.building_floor_no.OptionsColumn.AllowMerge = DevExpress.Utils.DefaultBoolean.False;
     this.building_floor_no.OptionsColumn.AllowMove = false;
     this.building_floor_no.Visible = true;
     this.building_floor_no.VisibleIndex = 3;
     //
     // building_building_id
     //
     this.building_building_id.Caption = "building_id";
     this.building_building_id.FieldName = "building_id";
     this.building_building_id.Name = "building_building_id";
     //
     // building_company_id
     //
     this.building_company_id.Caption = "gridColumn1";
     this.building_company_id.FieldName = "company_id";
     this.building_company_id.Name = "building_company_id";
     //
     // panelControl3
     //
     this.panelControl3.BorderStyle = DevExpress.XtraEditors.Controls.BorderStyles.NoBorder;
     this.panelControl3.Controls.Add(this.groupControlBuildingInfo);
     this.panelControl3.Dock = System.Windows.Forms.DockStyle.Fill;
     this.panelControl3.Location = new System.Drawing.Point(0, 0);
     this.panelControl3.Name = "panelControl3";
     this.panelControl3.Size = new System.Drawing.Size(535, 474);
     this.panelControl3.TabIndex = 12;
     //
     // groupControlBuildingInfo
     //
     this.groupControlBuildingInfo.AppearanceCaption.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold);
     this.groupControlBuildingInfo.AppearanceCaption.Options.UseFont = true;
     this.groupControlBuildingInfo.Controls.Add(this.xtraScrollableControl1);
     this.groupControlBuildingInfo.Dock = System.Windows.Forms.DockStyle.Fill;
     this.groupControlBuildingInfo.Location = new System.Drawing.Point(0, 0);
     this.groupControlBuildingInfo.Name = "groupControlBuildingInfo";
     this.groupControlBuildingInfo.Size = new System.Drawing.Size(535, 474);
     this.groupControlBuildingInfo.TabIndex = 0;
     this.groupControlBuildingInfo.Text = "ข้อมูลอาคาร";
     //
     // xtraScrollableControl1
     //
     this.xtraScrollableControl1.Controls.Add(this.lookUpEditxxx);
     this.xtraScrollableControl1.Controls.Add(this.labelControlRequired);
     this.xtraScrollableControl1.Controls.Add(this.tableLayoutPanel1);
     this.xtraScrollableControl1.Controls.Add(this.bttDelete);
     this.xtraScrollableControl1.Controls.Add(this.bttEdit);
     this.xtraScrollableControl1.Controls.Add(this.bttAdd);
     this.xtraScrollableControl1.Controls.Add(this.luEditFloorNo);
     this.xtraScrollableControl1.Controls.Add(this.luEditBuilding);
     this.xtraScrollableControl1.Controls.Add(this.bttSave);
     this.xtraScrollableControl1.Controls.Add(this.bttCancel);
     this.xtraScrollableControl1.Controls.Add(this.txtBuildingLabel);
     this.xtraScrollableControl1.Dock = System.Windows.Forms.DockStyle.Fill;
     this.xtraScrollableControl1.Location = new System.Drawing.Point(2, 22);
     this.xtraScrollableControl1.Name = "xtraScrollableControl1";
     this.xtraScrollableControl1.Size = new System.Drawing.Size(531, 450);
     this.xtraScrollableControl1.TabIndex = 0;
     //
     // lookUpEditxxx
     //
     this.lookUpEditxxx.Enabled = false;
     this.lookUpEditxxx.Location = new System.Drawing.Point(126, 11);
     this.lookUpEditxxx.Name = "lookUpEditxxx";
     this.lookUpEditxxx.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.lookUpEditxxx.Properties.Columns.AddRange(new DevExpress.XtraEditors.Controls.LookUpColumnInfo[] {
     new DevExpress.XtraEditors.Controls.LookUpColumnInfo("company_id", " ", 20, DevExpress.Utils.FormatType.None, "", false, DevExpress.Utils.HorzAlignment.Default),
     new DevExpress.XtraEditors.Controls.LookUpColumnInfo("company_name", " ")});
     this.lookUpEditxxx.Size = new System.Drawing.Size(399, 20);
     this.lookUpEditxxx.TabIndex = 360;
     //
     // labelControlRequired
     //
     this.labelControlRequired.Appearance.ForeColor = System.Drawing.Color.Red;
     this.labelControlRequired.Location = new System.Drawing.Point(9, 159);
     this.labelControlRequired.Name = "labelControlRequired";
     this.labelControlRequired.Size = new System.Drawing.Size(50, 13);
     this.labelControlRequired.TabIndex = 358;
     this.labelControlRequired.Text = "* โปรดระบุ";
     //
     // tableLayoutPanel1
     //
     this.tableLayoutPanel1.ColumnCount = 3;
     this.tableLayoutPanel1.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Absolute, 10F));
     this.tableLayoutPanel1.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Absolute, 92F));
     this.tableLayoutPanel1.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Absolute, 12F));
     this.tableLayoutPanel1.Controls.Add(this.labelControl3, 0, 0);
     this.tableLayoutPanel1.Controls.Add(this.labelControlCompanyName, 1, 0);
     this.tableLayoutPanel1.Controls.Add(this.labelControlBuilding, 1, 1);
     this.tableLayoutPanel1.Controls.Add(this.labelControl12, 0, 3);
     this.tableLayoutPanel1.Controls.Add(this.labelControl2, 0, 2);
     this.tableLayoutPanel1.Controls.Add(this.labelControlBuildingLabel, 1, 2);
     this.tableLayoutPanel1.Controls.Add(this.labelControlFloorNo, 1, 3);
     this.tableLayoutPanel1.Controls.Add(this.labelControl5, 2, 0);
     this.tableLayoutPanel1.Controls.Add(this.labelControl6, 2, 2);
     this.tableLayoutPanel1.Controls.Add(this.labelControl7, 2, 1);
     this.tableLayoutPanel1.Controls.Add(this.labelControl8, 2, 3);
     this.tableLayoutPanel1.Location = new System.Drawing.Point(6, 15);
     this.tableLayoutPanel1.Name = "tableLayoutPanel1";
     this.tableLayoutPanel1.RowCount = 5;
     this.tableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 50F));
     this.tableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 50F));
     this.tableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 25F));
     this.tableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 21F));
     this.tableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 20F));
     this.tableLayoutPanel1.Size = new System.Drawing.Size(114, 120);
     this.tableLayoutPanel1.TabIndex = 359;
     //
     // labelControl3
     //
     this.labelControl3.Appearance.ForeColor = System.Drawing.Color.Red;
     this.labelControl3.Location = new System.Drawing.Point(3, 3);
     this.labelControl3.Name = "labelControl3";
     this.labelControl3.Size = new System.Drawing.Size(6, 13);
     this.labelControl3.TabIndex = 350;
     this.labelControl3.Text = "*";
     //
     // labelControlCompanyName
     //
     this.labelControlCompanyName.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
     this.labelControlCompanyName.Location = new System.Drawing.Point(48, 3);
     this.labelControlCompanyName.Name = "labelControlCompanyName";
     this.labelControlCompanyName.Size = new System.Drawing.Size(51, 13);
     this.labelControlCompanyName.TabIndex = 349;
     this.labelControlCompanyName.Text = "ชื่อกิจการ :";
     //
     // labelControlBuilding
     //
     this.labelControlBuilding.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
     this.labelControlBuilding.Location = new System.Drawing.Point(44, 30);
     this.labelControlBuilding.Name = "labelControlBuilding";
     this.labelControlBuilding.Size = new System.Drawing.Size(55, 13);
     this.labelControlBuilding.TabIndex = 20;
     this.labelControlBuilding.Text = "รหัสอาคาร :";
     //
     // labelControl12
     //
     this.labelControl12.Appearance.ForeColor = System.Drawing.Color.Red;
     this.labelControl12.Location = new System.Drawing.Point(3, 82);
     this.labelControl12.Name = "labelControl12";
     this.labelControl12.Size = new System.Drawing.Size(6, 13);
     this.labelControl12.TabIndex = 346;
     this.labelControl12.Text = "*";
     //
     // labelControl2
     //
     this.labelControl2.Appearance.ForeColor = System.Drawing.Color.Red;
     this.labelControl2.Location = new System.Drawing.Point(3, 57);
     this.labelControl2.Name = "labelControl2";
     this.labelControl2.Size = new System.Drawing.Size(6, 13);
     this.labelControl2.TabIndex = 347;
     this.labelControl2.Text = "*";
     //
     // labelControlBuildingLabel
     //
     this.labelControlBuildingLabel.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
     this.labelControlBuildingLabel.Location = new System.Drawing.Point(49, 57);
     this.labelControlBuildingLabel.Name = "labelControlBuildingLabel";
     this.labelControlBuildingLabel.Size = new System.Drawing.Size(50, 13);
     this.labelControlBuildingLabel.TabIndex = 15;
     this.labelControlBuildingLabel.Text = "ชื่ออาคาร :";
     //
     // labelControlFloorNo
     //
     this.labelControlFloorNo.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
     this.labelControlFloorNo.Location = new System.Drawing.Point(48, 82);
     this.labelControlFloorNo.Name = "labelControlFloorNo";
     this.labelControlFloorNo.Size = new System.Drawing.Size(51, 13);
     this.labelControlFloorNo.TabIndex = 21;
     this.labelControlFloorNo.Text = "จำนวนชั้น :";
     //
     // labelControl5
     //
     this.labelControl5.Location = new System.Drawing.Point(105, 3);
     this.labelControl5.Name = "labelControl5";
     this.labelControl5.Size = new System.Drawing.Size(4, 13);
     this.labelControl5.TabIndex = 349;
     this.labelControl5.Text = ":";
     //
     // labelControl6
     //
     this.labelControl6.Location = new System.Drawing.Point(105, 57);
     this.labelControl6.Name = "labelControl6";
     this.labelControl6.Size = new System.Drawing.Size(4, 13);
     this.labelControl6.TabIndex = 349;
     this.labelControl6.Text = ":";
     //
     // labelControl7
     //
     this.labelControl7.Location = new System.Drawing.Point(105, 30);
     this.labelControl7.Name = "labelControl7";
     this.labelControl7.Size = new System.Drawing.Size(4, 13);
     this.labelControl7.TabIndex = 349;
     this.labelControl7.Text = ":";
     //
     // labelControl8
     //
     this.labelControl8.Location = new System.Drawing.Point(105, 82);
     this.labelControl8.Name = "labelControl8";
     this.labelControl8.Size = new System.Drawing.Size(4, 13);
     this.labelControl8.TabIndex = 349;
     this.labelControl8.Text = ":";
     //
     // bttDelete
     //
     this.bttDelete.Image = global::DXWindowsApplication2.Properties.Resources.delete;
     this.bttDelete.ImageLocation = DevExpress.XtraEditors.ImageLocation.TopCenter;
     this.bttDelete.Location = new System.Drawing.Point(293, 159);
     this.bttDelete.Name = "bttDelete";
     this.bttDelete.Size = new System.Drawing.Size(70, 55);
     this.bttDelete.TabIndex = 6;
     this.bttDelete.Text = "ลบข้อมูล";
     this.bttDelete.Click += new System.EventHandler(this.bttDelete_Click);
     //
     // bttEdit
     //
     this.bttEdit.Image = global::DXWindowsApplication2.Properties.Resources.edit;
     this.bttEdit.ImageLocation = DevExpress.XtraEditors.ImageLocation.TopCenter;
     this.bttEdit.Location = new System.Drawing.Point(212, 159);
     this.bttEdit.Name = "bttEdit";
     this.bttEdit.Size = new System.Drawing.Size(70, 55);
     this.bttEdit.TabIndex = 5;
     this.bttEdit.Text = "แก้ไขข้อมูล";
     this.bttEdit.Click += new System.EventHandler(this.bttEdit_Click);
     //
     // bttAdd
     //
     this.bttAdd.Image = global::DXWindowsApplication2.Properties.Resources.Add;
     this.bttAdd.ImageLocation = DevExpress.XtraEditors.ImageLocation.TopCenter;
     this.bttAdd.Location = new System.Drawing.Point(131, 159);
     this.bttAdd.Name = "bttAdd";
     this.bttAdd.Size = new System.Drawing.Size(70, 55);
     this.bttAdd.TabIndex = 4;
     this.bttAdd.Text = "เพิ่มข้อมูล";
     this.bttAdd.Click += new System.EventHandler(this.bttAdd_Click);
     //
     // luEditFloorNo
     //
     this.luEditFloorNo.Enabled = false;
     this.luEditFloorNo.Location = new System.Drawing.Point(126, 93);
     this.luEditFloorNo.Name = "luEditFloorNo";
     this.luEditFloorNo.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.luEditFloorNo.Properties.Columns.AddRange(new DevExpress.XtraEditors.Controls.LookUpColumnInfo[] {
     new DevExpress.XtraEditors.Controls.LookUpColumnInfo("floor_no", "floor_no")});
     this.luEditFloorNo.Size = new System.Drawing.Size(399, 20);
     this.luEditFloorNo.TabIndex = 3;
     //
     // luEditBuilding
     //
     this.luEditBuilding.Enabled = false;
     this.luEditBuilding.Location = new System.Drawing.Point(126, 41);
     this.luEditBuilding.Name = "luEditBuilding";
     this.luEditBuilding.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.luEditBuilding.Properties.Columns.AddRange(new DevExpress.XtraEditors.Controls.LookUpColumnInfo[] {
     new DevExpress.XtraEditors.Controls.LookUpColumnInfo("building_id", "id", 20, DevExpress.Utils.FormatType.None, "", false, DevExpress.Utils.HorzAlignment.Default),
     new DevExpress.XtraEditors.Controls.LookUpColumnInfo("building_code", "building_code")});
     this.luEditBuilding.Size = new System.Drawing.Size(399, 20);
     this.luEditBuilding.TabIndex = 1;
     //
     // bttSave
     //
     this.bttSave.Enabled = false;
     this.bttSave.Image = global::DXWindowsApplication2.Properties.Resources.savedisk;
     this.bttSave.ImageLocation = DevExpress.XtraEditors.ImageLocation.TopCenter;
     this.bttSave.Location = new System.Drawing.Point(374, 159);
     this.bttSave.Name = "bttSave";
     this.bttSave.Size = new System.Drawing.Size(70, 55);
     this.bttSave.TabIndex = 7;
     this.bttSave.Text = "บันทึก";
     this.bttSave.Click += new System.EventHandler(this.bttSave_Click);
     //
     // bttCancel
     //
     this.bttCancel.Enabled = false;
     this.bttCancel.Image = global::DXWindowsApplication2.Properties.Resources.Close;
     this.bttCancel.ImageLocation = DevExpress.XtraEditors.ImageLocation.TopCenter;
     this.bttCancel.Location = new System.Drawing.Point(455, 159);
     this.bttCancel.Name = "bttCancel";
     this.bttCancel.Size = new System.Drawing.Size(70, 55);
     this.bttCancel.TabIndex = 8;
     this.bttCancel.Text = "ยกเลิก";
     this.bttCancel.Click += new System.EventHandler(this.bttCancel_Click);
     //
     // txtBuildingLabel
     //
     this.txtBuildingLabel.Enabled = false;
     this.txtBuildingLabel.Location = new System.Drawing.Point(126, 67);
     this.txtBuildingLabel.Name = "txtBuildingLabel";
     this.txtBuildingLabel.Properties.Mask.BeepOnError = true;
     this.txtBuildingLabel.Properties.Mask.EditMask = "([a-zA-Z0-9|ก-๙|\\\' \']){0,50}";
     this.txtBuildingLabel.Properties.Mask.IgnoreMaskBlank = false;
     this.txtBuildingLabel.Properties.Mask.MaskType = DevExpress.XtraEditors.Mask.MaskType.RegEx;
     this.txtBuildingLabel.Properties.MaxLength = 50;
     this.txtBuildingLabel.Properties.ValidateOnEnterKey = true;
     this.txtBuildingLabel.Size = new System.Drawing.Size(399, 20);
     this.txtBuildingLabel.TabIndex = 2;
     //
     // splitContainerControl1
     //
     this.splitContainerControl1.Dock = System.Windows.Forms.DockStyle.Fill;
     this.splitContainerControl1.Location = new System.Drawing.Point(0, 0);
     this.splitContainerControl1.Name = "splitContainerControl1";
     this.splitContainerControl1.Panel1.Text = "Panel1";
     this.splitContainerControl1.Panel2.Text = "Panel2";
     this.splitContainerControl1.Size = new System.Drawing.Size(1040, 474);
     this.splitContainerControl1.SplitterPosition = 585;
     this.splitContainerControl1.TabIndex = 0;
     this.splitContainerControl1.Text = "splitContainerControl1";
     //
     // panelControl2
     //
     this.panelControl2.Appearance.BackColor = System.Drawing.Color.WhiteSmoke;
     this.panelControl2.Appearance.Options.UseBackColor = true;
     this.panelControl2.BorderStyle = DevExpress.XtraEditors.Controls.BorderStyles.NoBorder;
     this.panelControl2.Controls.Add(this.splitContainerControl1);
     this.panelControl2.Dock = System.Windows.Forms.DockStyle.Fill;
     this.panelControl2.Location = new System.Drawing.Point(7, 7);
     this.panelControl2.Name = "panelControl2";
     this.panelControl2.Size = new System.Drawing.Size(1040, 474);
     this.panelControl2.TabIndex = 10;
     //
     // BasicInfoBuilding
     //
     this.Appearance.BackColor = System.Drawing.Color.White;
     this.Appearance.Options.UseBackColor = true;
     this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
     this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
     this.Controls.Add(this.splitContainerControl2);
     this.Controls.Add(this.panelControl2);
     this.Name = "BasicInfoBuilding";
     this.Padding = new System.Windows.Forms.Padding(7);
     this.Size = new System.Drawing.Size(1054, 488);
     ((System.ComponentModel.ISupportInitialize)(this.splitContainerControl2)).EndInit();
     this.splitContainerControl2.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.groupControlBuildingList)).EndInit();
     this.groupControlBuildingList.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.gridControl1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridView1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.panelControl3)).EndInit();
     this.panelControl3.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.groupControlBuildingInfo)).EndInit();
     this.groupControlBuildingInfo.ResumeLayout(false);
     this.xtraScrollableControl1.ResumeLayout(false);
     this.xtraScrollableControl1.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(this.lookUpEditxxx.Properties)).EndInit();
     this.tableLayoutPanel1.ResumeLayout(false);
     this.tableLayoutPanel1.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(this.luEditFloorNo.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.luEditBuilding.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtBuildingLabel.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.splitContainerControl1)).EndInit();
     this.splitContainerControl1.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.panelControl2)).EndInit();
     this.panelControl2.ResumeLayout(false);
     this.ResumeLayout(false);
 }
 /// <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(ProgramPermission));
     this.panelControl3 = new DevExpress.XtraEditors.PanelControl();
     this.groupControlAuthorize = new DevExpress.XtraEditors.GroupControl();
     this.xtraScrollableControl1 = new DevExpress.XtraEditors.XtraScrollableControl();
     this.panelControl25 = new DevExpress.XtraEditors.PanelControl();
     this.gridControlMenuGroup8 = new DevExpress.XtraGrid.GridControl();
     this.gridViewMenu8 = new DevExpress.XtraGrid.Views.Grid.GridView();
     this.gridColumn22 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumnMenuName8 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn24 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.repositoryItemRadioGroup8 = new DevExpress.XtraEditors.Repository.RepositoryItemRadioGroup();
     this.gridColumn25 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.panelControl19 = new DevExpress.XtraEditors.PanelControl();
     this.checkEditHelp = new DevExpress.XtraEditors.CheckEdit();
     this.panelControl26 = new DevExpress.XtraEditors.PanelControl();
     this.gridControlMenuGroup9 = new DevExpress.XtraGrid.GridControl();
     this.gridViewMenu9 = new DevExpress.XtraGrid.Views.Grid.GridView();
     this.gridColumnBoxCheck = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumnMenuName9 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn10 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.repositoryItemRadioGroup9 = new DevExpress.XtraEditors.Repository.RepositoryItemRadioGroup();
     this.gridColumn11 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.panelControl27 = new DevExpress.XtraEditors.PanelControl();
     this.checkEditRegistration = new DevExpress.XtraEditors.CheckEdit();
     this.panelControl24 = new DevExpress.XtraEditors.PanelControl();
     this.gridControlMenuGroup7 = new DevExpress.XtraGrid.GridControl();
     this.gridViewMenu7 = new DevExpress.XtraGrid.Views.Grid.GridView();
     this.gridColumn18 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumnMenuName7 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn20 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.repositoryItemRadioGroup7 = new DevExpress.XtraEditors.Repository.RepositoryItemRadioGroup();
     this.gridColumn21 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.panelControl18 = new DevExpress.XtraEditors.PanelControl();
     this.checkEditDeviceSetting = new DevExpress.XtraEditors.CheckEdit();
     this.panelControl23 = new DevExpress.XtraEditors.PanelControl();
     this.gridControlMenuGroup6 = new DevExpress.XtraGrid.GridControl();
     this.gridViewMenu6 = new DevExpress.XtraGrid.Views.Grid.GridView();
     this.gridColumn14 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumnMenuName6 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn16 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.repositoryItemRadioGroup6 = new DevExpress.XtraEditors.Repository.RepositoryItemRadioGroup();
     this.gridColumn17 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.panelControl17 = new DevExpress.XtraEditors.PanelControl();
     this.checkEditDatabaseSetting = new DevExpress.XtraEditors.CheckEdit();
     this.panelControl22 = new DevExpress.XtraEditors.PanelControl();
     this.gridControlMenuGroup5 = new DevExpress.XtraGrid.GridControl();
     this.gridViewMenu5 = new DevExpress.XtraGrid.Views.Grid.GridView();
     this.gridColumn6 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumnMenuName5 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn8 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.repositoryItemRadioGroup5 = new DevExpress.XtraEditors.Repository.RepositoryItemRadioGroup();
     this.gridColumn13 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.panelControl15 = new DevExpress.XtraEditors.PanelControl();
     this.checkEditProgramSetting = new DevExpress.XtraEditors.CheckEdit();
     this.panelControl21 = new DevExpress.XtraEditors.PanelControl();
     this.gridControlMenuGroup4 = new DevExpress.XtraGrid.GridControl();
     this.gridViewMenu4 = new DevExpress.XtraGrid.Views.Grid.GridView();
     this.gridColumn2 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumnMenuName4 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn4 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.repositoryItemRadioGroup4 = new DevExpress.XtraEditors.Repository.RepositoryItemRadioGroup();
     this.gridColumn5 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.panelControl11 = new DevExpress.XtraEditors.PanelControl();
     this.panelControl12 = new DevExpress.XtraEditors.PanelControl();
     this.panelControl13 = new DevExpress.XtraEditors.PanelControl();
     this.panelControl14 = new DevExpress.XtraEditors.PanelControl();
     this.checkEdit8 = new DevExpress.XtraEditors.CheckEdit();
     this.checkEdit7 = new DevExpress.XtraEditors.CheckEdit();
     this.checkEdit6 = new DevExpress.XtraEditors.CheckEdit();
     this.panelControl10 = new DevExpress.XtraEditors.PanelControl();
     this.checkEditBasicSetting = new DevExpress.XtraEditors.CheckEdit();
     this.checkEdit4 = new DevExpress.XtraEditors.CheckEdit();
     this.panelControl7 = new DevExpress.XtraEditors.PanelControl();
     this.gridControlMenuGroup3 = new DevExpress.XtraGrid.GridControl();
     this.gridViewMenu3 = new DevExpress.XtraGrid.Views.Grid.GridView();
     this.gridColumnCheckBox3 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumnMenuName3 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumnReadOrWrite3 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.repositoryItemRadioGroup3 = new DevExpress.XtraEditors.Repository.RepositoryItemRadioGroup();
     this.gridColumn1 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.panelControl9 = new DevExpress.XtraEditors.PanelControl();
     this.checkEditReportManagement = new DevExpress.XtraEditors.CheckEdit();
     this.panelControl5 = new DevExpress.XtraEditors.PanelControl();
     this.gridControlMenuGroup2 = new DevExpress.XtraGrid.GridControl();
     this.gridViewMenu2 = new DevExpress.XtraGrid.Views.Grid.GridView();
     this.gridColumnCheckBox2 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumnMenuName2 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumnReadOrWrite2 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.repositoryItemRadioGroup2 = new DevExpress.XtraEditors.Repository.RepositoryItemRadioGroup();
     this.gridColumnParent2 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.panelControl6 = new DevExpress.XtraEditors.PanelControl();
     this.checkEditMeterManagement = new DevExpress.XtraEditors.CheckEdit();
     this.panelControl1 = new DevExpress.XtraEditors.PanelControl();
     this.gridControlMenuGroup1 = new DevExpress.XtraGrid.GridControl();
     this.gridViewMenu = new DevExpress.XtraGrid.Views.Grid.GridView();
     this.gridColumnCheckBox = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumnMenuName = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumnReadOrWrite = new DevExpress.XtraGrid.Columns.GridColumn();
     this.repositoryItemRadioGroup1 = new DevExpress.XtraEditors.Repository.RepositoryItemRadioGroup();
     this.gridColumnParent = new DevExpress.XtraGrid.Columns.GridColumn();
     this.panelControl4 = new DevExpress.XtraEditors.PanelControl();
     this.checkEditRoomManagement = new DevExpress.XtraEditors.CheckEdit();
     this.panelControl20 = new DevExpress.XtraEditors.PanelControl();
     this.gridControlPermissionBar = new DevExpress.XtraGrid.GridControl();
     this.gridView4 = new DevExpress.XtraGrid.Views.Grid.GridView();
     this.gridColumn9 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumnMenuNameBar = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumnReadWriteBar = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumnReadOnlyBar = new DevExpress.XtraGrid.Columns.GridColumn();
     this.panelControl16 = new DevExpress.XtraEditors.PanelControl();
     this.labelControl2 = new DevExpress.XtraEditors.LabelControl();
     this.labelControlRequired = new DevExpress.XtraEditors.LabelControl();
     this.textEditGroupID = new DevExpress.XtraEditors.TextEdit();
     this.textEditGroupName = new DevExpress.XtraEditors.TextEdit();
     this.labelGroupName = new DevExpress.XtraEditors.LabelControl();
     this.panelControl8 = new DevExpress.XtraEditors.PanelControl();
     this.bttDelete = new DevExpress.XtraEditors.SimpleButton();
     this.bttAdd = new DevExpress.XtraEditors.SimpleButton();
     this.bttEdit = new DevExpress.XtraEditors.SimpleButton();
     this.bttCancel = new DevExpress.XtraEditors.SimpleButton();
     this.bttSave = new DevExpress.XtraEditors.SimpleButton();
     this.splitContainerControl1 = new DevExpress.XtraEditors.SplitContainerControl();
     this.splitContainerControl2 = new DevExpress.XtraEditors.SplitContainerControl();
     this.groupControlAuthorizeList = new DevExpress.XtraEditors.GroupControl();
     this.gridControlGroupPermission = new DevExpress.XtraGrid.GridControl();
     this.gridViewGroup = new DevExpress.XtraGrid.Views.Grid.GridView();
     this.gridColumnGroupId = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumnGroupName = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumnAmountUser = new DevExpress.XtraGrid.Columns.GridColumn();
     this.panelControl2 = new DevExpress.XtraEditors.PanelControl();
     ((System.ComponentModel.ISupportInitialize)(this.panelControl3)).BeginInit();
     this.panelControl3.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.groupControlAuthorize)).BeginInit();
     this.groupControlAuthorize.SuspendLayout();
     this.xtraScrollableControl1.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.panelControl25)).BeginInit();
     this.panelControl25.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.gridControlMenuGroup8)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridViewMenu8)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemRadioGroup8)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.panelControl19)).BeginInit();
     this.panelControl19.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.checkEditHelp.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.panelControl26)).BeginInit();
     this.panelControl26.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.gridControlMenuGroup9)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridViewMenu9)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemRadioGroup9)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.panelControl27)).BeginInit();
     this.panelControl27.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.checkEditRegistration.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.panelControl24)).BeginInit();
     this.panelControl24.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.gridControlMenuGroup7)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridViewMenu7)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemRadioGroup7)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.panelControl18)).BeginInit();
     this.panelControl18.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.checkEditDeviceSetting.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.panelControl23)).BeginInit();
     this.panelControl23.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.gridControlMenuGroup6)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridViewMenu6)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemRadioGroup6)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.panelControl17)).BeginInit();
     this.panelControl17.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.checkEditDatabaseSetting.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.panelControl22)).BeginInit();
     this.panelControl22.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.gridControlMenuGroup5)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridViewMenu5)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemRadioGroup5)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.panelControl15)).BeginInit();
     this.panelControl15.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.checkEditProgramSetting.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.panelControl21)).BeginInit();
     this.panelControl21.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.gridControlMenuGroup4)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridViewMenu4)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemRadioGroup4)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.panelControl11)).BeginInit();
     this.panelControl11.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.panelControl12)).BeginInit();
     this.panelControl12.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.panelControl13)).BeginInit();
     this.panelControl13.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.panelControl14)).BeginInit();
     this.panelControl14.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.checkEdit8.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.checkEdit7.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.checkEdit6.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.panelControl10)).BeginInit();
     this.panelControl10.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.checkEditBasicSetting.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.checkEdit4.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.panelControl7)).BeginInit();
     this.panelControl7.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.gridControlMenuGroup3)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridViewMenu3)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemRadioGroup3)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.panelControl9)).BeginInit();
     this.panelControl9.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.checkEditReportManagement.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.panelControl5)).BeginInit();
     this.panelControl5.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.gridControlMenuGroup2)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridViewMenu2)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemRadioGroup2)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.panelControl6)).BeginInit();
     this.panelControl6.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.checkEditMeterManagement.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.panelControl1)).BeginInit();
     this.panelControl1.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.gridControlMenuGroup1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridViewMenu)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemRadioGroup1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.panelControl4)).BeginInit();
     this.panelControl4.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.checkEditRoomManagement.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.panelControl20)).BeginInit();
     this.panelControl20.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.gridControlPermissionBar)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridView4)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.panelControl16)).BeginInit();
     this.panelControl16.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.textEditGroupID.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.textEditGroupName.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.panelControl8)).BeginInit();
     this.panelControl8.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.splitContainerControl1)).BeginInit();
     this.splitContainerControl1.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.splitContainerControl2)).BeginInit();
     this.splitContainerControl2.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.groupControlAuthorizeList)).BeginInit();
     this.groupControlAuthorizeList.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.gridControlGroupPermission)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridViewGroup)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.panelControl2)).BeginInit();
     this.panelControl2.SuspendLayout();
     this.SuspendLayout();
     //
     // panelControl3
     //
     this.panelControl3.BorderStyle = DevExpress.XtraEditors.Controls.BorderStyles.NoBorder;
     this.panelControl3.Controls.Add(this.groupControlAuthorize);
     this.panelControl3.Controls.Add(this.panelControl8);
     this.panelControl3.Dock = System.Windows.Forms.DockStyle.Fill;
     this.panelControl3.Location = new System.Drawing.Point(0, 0);
     this.panelControl3.Name = "panelControl3";
     this.panelControl3.Size = new System.Drawing.Size(559, 609);
     this.panelControl3.TabIndex = 12;
     //
     // groupControlAuthorize
     //
     this.groupControlAuthorize.AppearanceCaption.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold);
     this.groupControlAuthorize.AppearanceCaption.Options.UseFont = true;
     this.groupControlAuthorize.Controls.Add(this.xtraScrollableControl1);
     this.groupControlAuthorize.Dock = System.Windows.Forms.DockStyle.Fill;
     this.groupControlAuthorize.Location = new System.Drawing.Point(0, 0);
     this.groupControlAuthorize.Name = "groupControlAuthorize";
     this.groupControlAuthorize.Size = new System.Drawing.Size(559, 543);
     this.groupControlAuthorize.TabIndex = 3;
     this.groupControlAuthorize.Text = "สิทธิ์การใช้งาน";
     //
     // xtraScrollableControl1
     //
     this.xtraScrollableControl1.Appearance.BackColor = System.Drawing.Color.White;
     this.xtraScrollableControl1.Appearance.Options.UseBackColor = true;
     this.xtraScrollableControl1.Controls.Add(this.panelControl25);
     this.xtraScrollableControl1.Controls.Add(this.panelControl19);
     this.xtraScrollableControl1.Controls.Add(this.panelControl26);
     this.xtraScrollableControl1.Controls.Add(this.panelControl27);
     this.xtraScrollableControl1.Controls.Add(this.panelControl24);
     this.xtraScrollableControl1.Controls.Add(this.panelControl18);
     this.xtraScrollableControl1.Controls.Add(this.panelControl23);
     this.xtraScrollableControl1.Controls.Add(this.panelControl17);
     this.xtraScrollableControl1.Controls.Add(this.panelControl22);
     this.xtraScrollableControl1.Controls.Add(this.panelControl15);
     this.xtraScrollableControl1.Controls.Add(this.panelControl21);
     this.xtraScrollableControl1.Controls.Add(this.panelControl11);
     this.xtraScrollableControl1.Controls.Add(this.panelControl7);
     this.xtraScrollableControl1.Controls.Add(this.panelControl9);
     this.xtraScrollableControl1.Controls.Add(this.panelControl5);
     this.xtraScrollableControl1.Controls.Add(this.panelControl6);
     this.xtraScrollableControl1.Controls.Add(this.panelControl1);
     this.xtraScrollableControl1.Controls.Add(this.panelControl4);
     this.xtraScrollableControl1.Controls.Add(this.panelControl20);
     this.xtraScrollableControl1.Controls.Add(this.panelControl16);
     this.xtraScrollableControl1.Dock = System.Windows.Forms.DockStyle.Fill;
     this.xtraScrollableControl1.Location = new System.Drawing.Point(2, 22);
     this.xtraScrollableControl1.Name = "xtraScrollableControl1";
     this.xtraScrollableControl1.Size = new System.Drawing.Size(555, 519);
     this.xtraScrollableControl1.TabIndex = 0;
     //
     // panelControl25
     //
     this.panelControl25.BorderStyle = DevExpress.XtraEditors.Controls.BorderStyles.NoBorder;
     this.panelControl25.Controls.Add(this.gridControlMenuGroup8);
     this.panelControl25.Dock = System.Windows.Forms.DockStyle.Top;
     this.panelControl25.Location = new System.Drawing.Point(0, 1519);
     this.panelControl25.Name = "panelControl25";
     this.panelControl25.Padding = new System.Windows.Forms.Padding(7);
     this.panelControl25.Size = new System.Drawing.Size(538, 104);
     this.panelControl25.TabIndex = 26;
     //
     // gridControlMenuGroup8
     //
     this.gridControlMenuGroup8.Dock = System.Windows.Forms.DockStyle.Fill;
     this.gridControlMenuGroup8.Location = new System.Drawing.Point(7, 7);
     this.gridControlMenuGroup8.MainView = this.gridViewMenu8;
     this.gridControlMenuGroup8.Name = "gridControlMenuGroup8";
     this.gridControlMenuGroup8.RepositoryItems.AddRange(new DevExpress.XtraEditors.Repository.RepositoryItem[] {
     this.repositoryItemRadioGroup8});
     this.gridControlMenuGroup8.Size = new System.Drawing.Size(524, 90);
     this.gridControlMenuGroup8.TabIndex = 7;
     this.gridControlMenuGroup8.ViewCollection.AddRange(new DevExpress.XtraGrid.Views.Base.BaseView[] {
     this.gridViewMenu8});
     //
     // gridViewMenu8
     //
     this.gridViewMenu8.BorderStyle = DevExpress.XtraEditors.Controls.BorderStyles.NoBorder;
     this.gridViewMenu8.Columns.AddRange(new DevExpress.XtraGrid.Columns.GridColumn[] {
     this.gridColumn22,
     this.gridColumnMenuName8,
     this.gridColumn24,
     this.gridColumn25});
     this.gridViewMenu8.GridControl = this.gridControlMenuGroup8;
     this.gridViewMenu8.Name = "gridViewMenu8";
     this.gridViewMenu8.OptionsLayout.Columns.AddNewColumns = false;
     this.gridViewMenu8.OptionsLayout.Columns.RemoveOldColumns = false;
     this.gridViewMenu8.OptionsView.ShowColumnHeaders = false;
     this.gridViewMenu8.OptionsView.ShowGroupPanel = false;
     this.gridViewMenu8.OptionsView.ShowVertLines = false;
     this.gridViewMenu8.PaintStyleName = "Skin";
     //
     // gridColumn22
     //
     this.gridColumn22.Caption = " ";
     this.gridColumn22.FieldName = "permission_flag_check";
     this.gridColumn22.Name = "gridColumn22";
     this.gridColumn22.OptionsColumn.AllowSize = false;
     this.gridColumn22.UnboundType = DevExpress.Data.UnboundColumnType.Boolean;
     this.gridColumn22.Visible = true;
     this.gridColumn22.VisibleIndex = 0;
     this.gridColumn22.Width = 20;
     //
     // gridColumnMenuName8
     //
     this.gridColumnMenuName8.Caption = " ";
     this.gridColumnMenuName8.Name = "gridColumnMenuName8";
     this.gridColumnMenuName8.OptionsColumn.AllowEdit = false;
     this.gridColumnMenuName8.OptionsColumn.AllowFocus = false;
     this.gridColumnMenuName8.OptionsColumn.AllowMove = false;
     this.gridColumnMenuName8.OptionsColumn.AllowShowHide = false;
     this.gridColumnMenuName8.OptionsColumn.ReadOnly = true;
     this.gridColumnMenuName8.Visible = true;
     this.gridColumnMenuName8.VisibleIndex = 1;
     this.gridColumnMenuName8.Width = 317;
     //
     // gridColumn24
     //
     this.gridColumn24.Caption = " ";
     this.gridColumn24.ColumnEdit = this.repositoryItemRadioGroup8;
     this.gridColumn24.FieldName = "permission_flag_access";
     this.gridColumn24.Name = "gridColumn24";
     this.gridColumn24.Visible = true;
     this.gridColumn24.VisibleIndex = 2;
     this.gridColumn24.Width = 151;
     //
     // repositoryItemRadioGroup8
     //
     this.repositoryItemRadioGroup8.Items.AddRange(new DevExpress.XtraEditors.Controls.RadioGroupItem[] {
     new DevExpress.XtraEditors.Controls.RadioGroupItem(1, ""),
     new DevExpress.XtraEditors.Controls.RadioGroupItem(2, "")});
     this.repositoryItemRadioGroup8.Name = "repositoryItemRadioGroup8";
     //
     // gridColumn25
     //
     this.gridColumn25.Caption = "gridColumn1";
     this.gridColumn25.FieldName = "menu_parent";
     this.gridColumn25.Name = "gridColumn25";
     //
     // panelControl19
     //
     this.panelControl19.BorderStyle = DevExpress.XtraEditors.Controls.BorderStyles.NoBorder;
     this.panelControl19.Controls.Add(this.checkEditHelp);
     this.panelControl19.Dock = System.Windows.Forms.DockStyle.Top;
     this.panelControl19.Location = new System.Drawing.Point(0, 1494);
     this.panelControl19.Name = "panelControl19";
     this.panelControl19.Size = new System.Drawing.Size(538, 25);
     this.panelControl19.TabIndex = 19;
     //
     // checkEditHelp
     //
     this.checkEditHelp.Location = new System.Drawing.Point(5, 2);
     this.checkEditHelp.Name = "checkEditHelp";
     this.checkEditHelp.Properties.Caption = "ช่วยเหลือ";
     this.checkEditHelp.Size = new System.Drawing.Size(231, 19);
     this.checkEditHelp.TabIndex = 1;
     this.checkEditHelp.CheckedChanged += new System.EventHandler(this.checkEditHelp_CheckedChanged);
     //
     // panelControl26
     //
     this.panelControl26.BorderStyle = DevExpress.XtraEditors.Controls.BorderStyles.NoBorder;
     this.panelControl26.Controls.Add(this.gridControlMenuGroup9);
     this.panelControl26.Dock = System.Windows.Forms.DockStyle.Top;
     this.panelControl26.Location = new System.Drawing.Point(0, 1390);
     this.panelControl26.Name = "panelControl26";
     this.panelControl26.Padding = new System.Windows.Forms.Padding(7);
     this.panelControl26.Size = new System.Drawing.Size(538, 104);
     this.panelControl26.TabIndex = 28;
     //
     // gridControlMenuGroup9
     //
     this.gridControlMenuGroup9.Dock = System.Windows.Forms.DockStyle.Fill;
     this.gridControlMenuGroup9.Location = new System.Drawing.Point(7, 7);
     this.gridControlMenuGroup9.MainView = this.gridViewMenu9;
     this.gridControlMenuGroup9.Name = "gridControlMenuGroup9";
     this.gridControlMenuGroup9.RepositoryItems.AddRange(new DevExpress.XtraEditors.Repository.RepositoryItem[] {
     this.repositoryItemRadioGroup9});
     this.gridControlMenuGroup9.Size = new System.Drawing.Size(524, 90);
     this.gridControlMenuGroup9.TabIndex = 7;
     this.gridControlMenuGroup9.ViewCollection.AddRange(new DevExpress.XtraGrid.Views.Base.BaseView[] {
     this.gridViewMenu9});
     //
     // gridViewMenu9
     //
     this.gridViewMenu9.BorderStyle = DevExpress.XtraEditors.Controls.BorderStyles.NoBorder;
     this.gridViewMenu9.Columns.AddRange(new DevExpress.XtraGrid.Columns.GridColumn[] {
     this.gridColumnBoxCheck,
     this.gridColumnMenuName9,
     this.gridColumn10,
     this.gridColumn11});
     this.gridViewMenu9.GridControl = this.gridControlMenuGroup9;
     this.gridViewMenu9.Name = "gridViewMenu9";
     this.gridViewMenu9.OptionsLayout.Columns.AddNewColumns = false;
     this.gridViewMenu9.OptionsLayout.Columns.RemoveOldColumns = false;
     this.gridViewMenu9.OptionsView.ShowColumnHeaders = false;
     this.gridViewMenu9.OptionsView.ShowGroupPanel = false;
     this.gridViewMenu9.OptionsView.ShowVertLines = false;
     this.gridViewMenu9.PaintStyleName = "Skin";
     //
     // gridColumnBoxCheck
     //
     this.gridColumnBoxCheck.Caption = " ";
     this.gridColumnBoxCheck.FieldName = "permission_flag_check";
     this.gridColumnBoxCheck.Name = "gridColumnBoxCheck";
     this.gridColumnBoxCheck.OptionsColumn.AllowSize = false;
     this.gridColumnBoxCheck.UnboundType = DevExpress.Data.UnboundColumnType.Boolean;
     this.gridColumnBoxCheck.Visible = true;
     this.gridColumnBoxCheck.VisibleIndex = 0;
     this.gridColumnBoxCheck.Width = 20;
     //
     // gridColumnMenuName9
     //
     this.gridColumnMenuName9.Caption = " ";
     this.gridColumnMenuName9.Name = "gridColumnMenuName9";
     this.gridColumnMenuName9.OptionsColumn.AllowEdit = false;
     this.gridColumnMenuName9.OptionsColumn.AllowFocus = false;
     this.gridColumnMenuName9.OptionsColumn.AllowMove = false;
     this.gridColumnMenuName9.OptionsColumn.AllowShowHide = false;
     this.gridColumnMenuName9.OptionsColumn.ReadOnly = true;
     this.gridColumnMenuName9.Visible = true;
     this.gridColumnMenuName9.VisibleIndex = 1;
     this.gridColumnMenuName9.Width = 317;
     //
     // gridColumn10
     //
     this.gridColumn10.Caption = " ";
     this.gridColumn10.ColumnEdit = this.repositoryItemRadioGroup9;
     this.gridColumn10.FieldName = "permission_flag_access";
     this.gridColumn10.Name = "gridColumn10";
     this.gridColumn10.Visible = true;
     this.gridColumn10.VisibleIndex = 2;
     this.gridColumn10.Width = 151;
     //
     // repositoryItemRadioGroup9
     //
     this.repositoryItemRadioGroup9.Items.AddRange(new DevExpress.XtraEditors.Controls.RadioGroupItem[] {
     new DevExpress.XtraEditors.Controls.RadioGroupItem(1, ""),
     new DevExpress.XtraEditors.Controls.RadioGroupItem(2, "")});
     this.repositoryItemRadioGroup9.Name = "repositoryItemRadioGroup9";
     //
     // gridColumn11
     //
     this.gridColumn11.Caption = "gridColumn1";
     this.gridColumn11.FieldName = "menu_parent";
     this.gridColumn11.Name = "gridColumn11";
     //
     // panelControl27
     //
     this.panelControl27.BorderStyle = DevExpress.XtraEditors.Controls.BorderStyles.NoBorder;
     this.panelControl27.Controls.Add(this.checkEditRegistration);
     this.panelControl27.Dock = System.Windows.Forms.DockStyle.Top;
     this.panelControl27.Location = new System.Drawing.Point(0, 1365);
     this.panelControl27.Name = "panelControl27";
     this.panelControl27.Size = new System.Drawing.Size(538, 25);
     this.panelControl27.TabIndex = 27;
     //
     // checkEditRegistration
     //
     this.checkEditRegistration.Location = new System.Drawing.Point(5, 2);
     this.checkEditRegistration.Name = "checkEditRegistration";
     this.checkEditRegistration.Properties.Caption = "ลงทะเบียน";
     this.checkEditRegistration.Size = new System.Drawing.Size(231, 19);
     this.checkEditRegistration.TabIndex = 1;
     //
     // panelControl24
     //
     this.panelControl24.BorderStyle = DevExpress.XtraEditors.Controls.BorderStyles.NoBorder;
     this.panelControl24.Controls.Add(this.gridControlMenuGroup7);
     this.panelControl24.Dock = System.Windows.Forms.DockStyle.Top;
     this.panelControl24.Location = new System.Drawing.Point(0, 1255);
     this.panelControl24.Name = "panelControl24";
     this.panelControl24.Padding = new System.Windows.Forms.Padding(7);
     this.panelControl24.Size = new System.Drawing.Size(538, 110);
     this.panelControl24.TabIndex = 25;
     //
     // gridControlMenuGroup7
     //
     this.gridControlMenuGroup7.Dock = System.Windows.Forms.DockStyle.Fill;
     this.gridControlMenuGroup7.Location = new System.Drawing.Point(7, 7);
     this.gridControlMenuGroup7.MainView = this.gridViewMenu7;
     this.gridControlMenuGroup7.Name = "gridControlMenuGroup7";
     this.gridControlMenuGroup7.RepositoryItems.AddRange(new DevExpress.XtraEditors.Repository.RepositoryItem[] {
     this.repositoryItemRadioGroup7});
     this.gridControlMenuGroup7.Size = new System.Drawing.Size(524, 96);
     this.gridControlMenuGroup7.TabIndex = 7;
     this.gridControlMenuGroup7.ViewCollection.AddRange(new DevExpress.XtraGrid.Views.Base.BaseView[] {
     this.gridViewMenu7});
     //
     // gridViewMenu7
     //
     this.gridViewMenu7.BorderStyle = DevExpress.XtraEditors.Controls.BorderStyles.NoBorder;
     this.gridViewMenu7.Columns.AddRange(new DevExpress.XtraGrid.Columns.GridColumn[] {
     this.gridColumn18,
     this.gridColumnMenuName7,
     this.gridColumn20,
     this.gridColumn21});
     this.gridViewMenu7.GridControl = this.gridControlMenuGroup7;
     this.gridViewMenu7.Name = "gridViewMenu7";
     this.gridViewMenu7.OptionsLayout.Columns.AddNewColumns = false;
     this.gridViewMenu7.OptionsLayout.Columns.RemoveOldColumns = false;
     this.gridViewMenu7.OptionsView.ShowColumnHeaders = false;
     this.gridViewMenu7.OptionsView.ShowGroupPanel = false;
     this.gridViewMenu7.OptionsView.ShowVertLines = false;
     this.gridViewMenu7.PaintStyleName = "Skin";
     //
     // gridColumn18
     //
     this.gridColumn18.Caption = " ";
     this.gridColumn18.FieldName = "permission_flag_check";
     this.gridColumn18.Name = "gridColumn18";
     this.gridColumn18.OptionsColumn.AllowSize = false;
     this.gridColumn18.UnboundType = DevExpress.Data.UnboundColumnType.Boolean;
     this.gridColumn18.Visible = true;
     this.gridColumn18.VisibleIndex = 0;
     this.gridColumn18.Width = 20;
     //
     // gridColumnMenuName7
     //
     this.gridColumnMenuName7.Caption = " ";
     this.gridColumnMenuName7.Name = "gridColumnMenuName7";
     this.gridColumnMenuName7.OptionsColumn.AllowEdit = false;
     this.gridColumnMenuName7.OptionsColumn.AllowFocus = false;
     this.gridColumnMenuName7.OptionsColumn.AllowMove = false;
     this.gridColumnMenuName7.OptionsColumn.AllowShowHide = false;
     this.gridColumnMenuName7.OptionsColumn.ReadOnly = true;
     this.gridColumnMenuName7.Visible = true;
     this.gridColumnMenuName7.VisibleIndex = 1;
     this.gridColumnMenuName7.Width = 317;
     //
     // gridColumn20
     //
     this.gridColumn20.Caption = " ";
     this.gridColumn20.ColumnEdit = this.repositoryItemRadioGroup7;
     this.gridColumn20.FieldName = "permission_flag_access";
     this.gridColumn20.Name = "gridColumn20";
     this.gridColumn20.Visible = true;
     this.gridColumn20.VisibleIndex = 2;
     this.gridColumn20.Width = 151;
     //
     // repositoryItemRadioGroup7
     //
     this.repositoryItemRadioGroup7.Items.AddRange(new DevExpress.XtraEditors.Controls.RadioGroupItem[] {
     new DevExpress.XtraEditors.Controls.RadioGroupItem(1, ""),
     new DevExpress.XtraEditors.Controls.RadioGroupItem(2, "")});
     this.repositoryItemRadioGroup7.Name = "repositoryItemRadioGroup7";
     //
     // gridColumn21
     //
     this.gridColumn21.Caption = "gridColumn1";
     this.gridColumn21.FieldName = "menu_parent";
     this.gridColumn21.Name = "gridColumn21";
     //
     // panelControl18
     //
     this.panelControl18.BorderStyle = DevExpress.XtraEditors.Controls.BorderStyles.NoBorder;
     this.panelControl18.Controls.Add(this.checkEditDeviceSetting);
     this.panelControl18.Dock = System.Windows.Forms.DockStyle.Top;
     this.panelControl18.Location = new System.Drawing.Point(0, 1230);
     this.panelControl18.Name = "panelControl18";
     this.panelControl18.Size = new System.Drawing.Size(538, 25);
     this.panelControl18.TabIndex = 18;
     //
     // checkEditDeviceSetting
     //
     this.checkEditDeviceSetting.Location = new System.Drawing.Point(5, 2);
     this.checkEditDeviceSetting.Name = "checkEditDeviceSetting";
     this.checkEditDeviceSetting.Properties.Caption = "ตั้งค่าอุปกรณ์";
     this.checkEditDeviceSetting.Size = new System.Drawing.Size(231, 19);
     this.checkEditDeviceSetting.TabIndex = 1;
     this.checkEditDeviceSetting.CheckedChanged += new System.EventHandler(this.checkEditDeviceSetting_CheckedChanged);
     //
     // panelControl23
     //
     this.panelControl23.BorderStyle = DevExpress.XtraEditors.Controls.BorderStyles.NoBorder;
     this.panelControl23.Controls.Add(this.gridControlMenuGroup6);
     this.panelControl23.Dock = System.Windows.Forms.DockStyle.Top;
     this.panelControl23.Location = new System.Drawing.Point(0, 1150);
     this.panelControl23.Name = "panelControl23";
     this.panelControl23.Padding = new System.Windows.Forms.Padding(7);
     this.panelControl23.Size = new System.Drawing.Size(538, 80);
     this.panelControl23.TabIndex = 24;
     //
     // gridControlMenuGroup6
     //
     this.gridControlMenuGroup6.Dock = System.Windows.Forms.DockStyle.Fill;
     this.gridControlMenuGroup6.Location = new System.Drawing.Point(7, 7);
     this.gridControlMenuGroup6.MainView = this.gridViewMenu6;
     this.gridControlMenuGroup6.Name = "gridControlMenuGroup6";
     this.gridControlMenuGroup6.RepositoryItems.AddRange(new DevExpress.XtraEditors.Repository.RepositoryItem[] {
     this.repositoryItemRadioGroup6});
     this.gridControlMenuGroup6.Size = new System.Drawing.Size(524, 66);
     this.gridControlMenuGroup6.TabIndex = 7;
     this.gridControlMenuGroup6.ViewCollection.AddRange(new DevExpress.XtraGrid.Views.Base.BaseView[] {
     this.gridViewMenu6});
     //
     // gridViewMenu6
     //
     this.gridViewMenu6.BorderStyle = DevExpress.XtraEditors.Controls.BorderStyles.NoBorder;
     this.gridViewMenu6.Columns.AddRange(new DevExpress.XtraGrid.Columns.GridColumn[] {
     this.gridColumn14,
     this.gridColumnMenuName6,
     this.gridColumn16,
     this.gridColumn17});
     this.gridViewMenu6.GridControl = this.gridControlMenuGroup6;
     this.gridViewMenu6.Name = "gridViewMenu6";
     this.gridViewMenu6.OptionsLayout.Columns.AddNewColumns = false;
     this.gridViewMenu6.OptionsLayout.Columns.RemoveOldColumns = false;
     this.gridViewMenu6.OptionsView.ShowColumnHeaders = false;
     this.gridViewMenu6.OptionsView.ShowGroupPanel = false;
     this.gridViewMenu6.OptionsView.ShowVertLines = false;
     this.gridViewMenu6.PaintStyleName = "Skin";
     //
     // gridColumn14
     //
     this.gridColumn14.Caption = " ";
     this.gridColumn14.FieldName = "permission_flag_check";
     this.gridColumn14.Name = "gridColumn14";
     this.gridColumn14.OptionsColumn.AllowSize = false;
     this.gridColumn14.UnboundType = DevExpress.Data.UnboundColumnType.Boolean;
     this.gridColumn14.Visible = true;
     this.gridColumn14.VisibleIndex = 0;
     this.gridColumn14.Width = 20;
     //
     // gridColumnMenuName6
     //
     this.gridColumnMenuName6.Caption = " ";
     this.gridColumnMenuName6.Name = "gridColumnMenuName6";
     this.gridColumnMenuName6.OptionsColumn.AllowEdit = false;
     this.gridColumnMenuName6.OptionsColumn.AllowFocus = false;
     this.gridColumnMenuName6.OptionsColumn.AllowMove = false;
     this.gridColumnMenuName6.OptionsColumn.AllowShowHide = false;
     this.gridColumnMenuName6.OptionsColumn.ReadOnly = true;
     this.gridColumnMenuName6.Visible = true;
     this.gridColumnMenuName6.VisibleIndex = 1;
     this.gridColumnMenuName6.Width = 317;
     //
     // gridColumn16
     //
     this.gridColumn16.Caption = " ";
     this.gridColumn16.ColumnEdit = this.repositoryItemRadioGroup6;
     this.gridColumn16.FieldName = "permission_flag_access";
     this.gridColumn16.Name = "gridColumn16";
     this.gridColumn16.Visible = true;
     this.gridColumn16.VisibleIndex = 2;
     this.gridColumn16.Width = 151;
     //
     // repositoryItemRadioGroup6
     //
     this.repositoryItemRadioGroup6.Items.AddRange(new DevExpress.XtraEditors.Controls.RadioGroupItem[] {
     new DevExpress.XtraEditors.Controls.RadioGroupItem(1, ""),
     new DevExpress.XtraEditors.Controls.RadioGroupItem(2, "")});
     this.repositoryItemRadioGroup6.Name = "repositoryItemRadioGroup6";
     //
     // gridColumn17
     //
     this.gridColumn17.Caption = "gridColumn1";
     this.gridColumn17.FieldName = "menu_parent";
     this.gridColumn17.Name = "gridColumn17";
     //
     // panelControl17
     //
     this.panelControl17.BorderStyle = DevExpress.XtraEditors.Controls.BorderStyles.NoBorder;
     this.panelControl17.Controls.Add(this.checkEditDatabaseSetting);
     this.panelControl17.Dock = System.Windows.Forms.DockStyle.Top;
     this.panelControl17.Location = new System.Drawing.Point(0, 1125);
     this.panelControl17.Name = "panelControl17";
     this.panelControl17.Size = new System.Drawing.Size(538, 25);
     this.panelControl17.TabIndex = 16;
     //
     // checkEditDatabaseSetting
     //
     this.checkEditDatabaseSetting.Location = new System.Drawing.Point(5, 3);
     this.checkEditDatabaseSetting.Name = "checkEditDatabaseSetting";
     this.checkEditDatabaseSetting.Properties.Caption = "ตั้งค่าฐานข้อมูล";
     this.checkEditDatabaseSetting.Size = new System.Drawing.Size(231, 19);
     this.checkEditDatabaseSetting.TabIndex = 1;
     this.checkEditDatabaseSetting.CheckedChanged += new System.EventHandler(this.checkEditDatabaseSetting_CheckedChanged);
     //
     // panelControl22
     //
     this.panelControl22.BorderStyle = DevExpress.XtraEditors.Controls.BorderStyles.NoBorder;
     this.panelControl22.Controls.Add(this.gridControlMenuGroup5);
     this.panelControl22.Dock = System.Windows.Forms.DockStyle.Top;
     this.panelControl22.Location = new System.Drawing.Point(0, 979);
     this.panelControl22.Name = "panelControl22";
     this.panelControl22.Padding = new System.Windows.Forms.Padding(7);
     this.panelControl22.Size = new System.Drawing.Size(538, 146);
     this.panelControl22.TabIndex = 23;
     //
     // gridControlMenuGroup5
     //
     this.gridControlMenuGroup5.Dock = System.Windows.Forms.DockStyle.Fill;
     this.gridControlMenuGroup5.Location = new System.Drawing.Point(7, 7);
     this.gridControlMenuGroup5.MainView = this.gridViewMenu5;
     this.gridControlMenuGroup5.Name = "gridControlMenuGroup5";
     this.gridControlMenuGroup5.RepositoryItems.AddRange(new DevExpress.XtraEditors.Repository.RepositoryItem[] {
     this.repositoryItemRadioGroup5});
     this.gridControlMenuGroup5.Size = new System.Drawing.Size(524, 132);
     this.gridControlMenuGroup5.TabIndex = 7;
     this.gridControlMenuGroup5.ViewCollection.AddRange(new DevExpress.XtraGrid.Views.Base.BaseView[] {
     this.gridViewMenu5});
     //
     // gridViewMenu5
     //
     this.gridViewMenu5.BorderStyle = DevExpress.XtraEditors.Controls.BorderStyles.NoBorder;
     this.gridViewMenu5.Columns.AddRange(new DevExpress.XtraGrid.Columns.GridColumn[] {
     this.gridColumn6,
     this.gridColumnMenuName5,
     this.gridColumn8,
     this.gridColumn13});
     this.gridViewMenu5.GridControl = this.gridControlMenuGroup5;
     this.gridViewMenu5.Name = "gridViewMenu5";
     this.gridViewMenu5.OptionsLayout.Columns.AddNewColumns = false;
     this.gridViewMenu5.OptionsLayout.Columns.RemoveOldColumns = false;
     this.gridViewMenu5.OptionsView.ShowColumnHeaders = false;
     this.gridViewMenu5.OptionsView.ShowGroupPanel = false;
     this.gridViewMenu5.OptionsView.ShowVertLines = false;
     this.gridViewMenu5.PaintStyleName = "Skin";
     //
     // gridColumn6
     //
     this.gridColumn6.Caption = " ";
     this.gridColumn6.FieldName = "permission_flag_check";
     this.gridColumn6.Name = "gridColumn6";
     this.gridColumn6.OptionsColumn.AllowSize = false;
     this.gridColumn6.UnboundType = DevExpress.Data.UnboundColumnType.Boolean;
     this.gridColumn6.Visible = true;
     this.gridColumn6.VisibleIndex = 0;
     this.gridColumn6.Width = 20;
     //
     // gridColumnMenuName5
     //
     this.gridColumnMenuName5.Caption = " ";
     this.gridColumnMenuName5.Name = "gridColumnMenuName5";
     this.gridColumnMenuName5.OptionsColumn.AllowEdit = false;
     this.gridColumnMenuName5.OptionsColumn.AllowFocus = false;
     this.gridColumnMenuName5.OptionsColumn.AllowMove = false;
     this.gridColumnMenuName5.OptionsColumn.AllowShowHide = false;
     this.gridColumnMenuName5.OptionsColumn.ReadOnly = true;
     this.gridColumnMenuName5.Visible = true;
     this.gridColumnMenuName5.VisibleIndex = 1;
     this.gridColumnMenuName5.Width = 317;
     //
     // gridColumn8
     //
     this.gridColumn8.Caption = " ";
     this.gridColumn8.ColumnEdit = this.repositoryItemRadioGroup5;
     this.gridColumn8.FieldName = "permission_flag_access";
     this.gridColumn8.Name = "gridColumn8";
     this.gridColumn8.Visible = true;
     this.gridColumn8.VisibleIndex = 2;
     this.gridColumn8.Width = 151;
     //
     // repositoryItemRadioGroup5
     //
     this.repositoryItemRadioGroup5.Items.AddRange(new DevExpress.XtraEditors.Controls.RadioGroupItem[] {
     new DevExpress.XtraEditors.Controls.RadioGroupItem(1, ""),
     new DevExpress.XtraEditors.Controls.RadioGroupItem(2, "")});
     this.repositoryItemRadioGroup5.Name = "repositoryItemRadioGroup5";
     //
     // gridColumn13
     //
     this.gridColumn13.Caption = "gridColumn1";
     this.gridColumn13.FieldName = "menu_parent";
     this.gridColumn13.Name = "gridColumn13";
     //
     // panelControl15
     //
     this.panelControl15.BorderStyle = DevExpress.XtraEditors.Controls.BorderStyles.NoBorder;
     this.panelControl15.Controls.Add(this.checkEditProgramSetting);
     this.panelControl15.Dock = System.Windows.Forms.DockStyle.Top;
     this.panelControl15.Location = new System.Drawing.Point(0, 954);
     this.panelControl15.Name = "panelControl15";
     this.panelControl15.Size = new System.Drawing.Size(538, 25);
     this.panelControl15.TabIndex = 12;
     //
     // checkEditProgramSetting
     //
     this.checkEditProgramSetting.Location = new System.Drawing.Point(5, 3);
     this.checkEditProgramSetting.Name = "checkEditProgramSetting";
     this.checkEditProgramSetting.Properties.Caption = "ตั้งค่าโปรแกรม";
     this.checkEditProgramSetting.Size = new System.Drawing.Size(231, 19);
     this.checkEditProgramSetting.TabIndex = 1;
     this.checkEditProgramSetting.CheckedChanged += new System.EventHandler(this.checkEditProgramSetting_CheckedChanged);
     //
     // panelControl21
     //
     this.panelControl21.BorderStyle = DevExpress.XtraEditors.Controls.BorderStyles.NoBorder;
     this.panelControl21.Controls.Add(this.gridControlMenuGroup4);
     this.panelControl21.Dock = System.Windows.Forms.DockStyle.Top;
     this.panelControl21.Location = new System.Drawing.Point(0, 728);
     this.panelControl21.Name = "panelControl21";
     this.panelControl21.Padding = new System.Windows.Forms.Padding(7);
     this.panelControl21.Size = new System.Drawing.Size(538, 226);
     this.panelControl21.TabIndex = 22;
     //
     // gridControlMenuGroup4
     //
     this.gridControlMenuGroup4.Dock = System.Windows.Forms.DockStyle.Fill;
     this.gridControlMenuGroup4.Location = new System.Drawing.Point(7, 7);
     this.gridControlMenuGroup4.MainView = this.gridViewMenu4;
     this.gridControlMenuGroup4.Name = "gridControlMenuGroup4";
     this.gridControlMenuGroup4.RepositoryItems.AddRange(new DevExpress.XtraEditors.Repository.RepositoryItem[] {
     this.repositoryItemRadioGroup4});
     this.gridControlMenuGroup4.Size = new System.Drawing.Size(524, 212);
     this.gridControlMenuGroup4.TabIndex = 7;
     this.gridControlMenuGroup4.ViewCollection.AddRange(new DevExpress.XtraGrid.Views.Base.BaseView[] {
     this.gridViewMenu4});
     //
     // gridViewMenu4
     //
     this.gridViewMenu4.BorderStyle = DevExpress.XtraEditors.Controls.BorderStyles.NoBorder;
     this.gridViewMenu4.Columns.AddRange(new DevExpress.XtraGrid.Columns.GridColumn[] {
     this.gridColumn2,
     this.gridColumnMenuName4,
     this.gridColumn4,
     this.gridColumn5});
     this.gridViewMenu4.GridControl = this.gridControlMenuGroup4;
     this.gridViewMenu4.Name = "gridViewMenu4";
     this.gridViewMenu4.OptionsLayout.Columns.AddNewColumns = false;
     this.gridViewMenu4.OptionsLayout.Columns.RemoveOldColumns = false;
     this.gridViewMenu4.OptionsView.ShowColumnHeaders = false;
     this.gridViewMenu4.OptionsView.ShowGroupPanel = false;
     this.gridViewMenu4.OptionsView.ShowVertLines = false;
     this.gridViewMenu4.PaintStyleName = "Skin";
     //
     // gridColumn2
     //
     this.gridColumn2.Caption = " ";
     this.gridColumn2.FieldName = "permission_flag_check";
     this.gridColumn2.Name = "gridColumn2";
     this.gridColumn2.OptionsColumn.AllowSize = false;
     this.gridColumn2.UnboundType = DevExpress.Data.UnboundColumnType.Boolean;
     this.gridColumn2.Visible = true;
     this.gridColumn2.VisibleIndex = 0;
     this.gridColumn2.Width = 20;
     //
     // gridColumnMenuName4
     //
     this.gridColumnMenuName4.Caption = " ";
     this.gridColumnMenuName4.Name = "gridColumnMenuName4";
     this.gridColumnMenuName4.OptionsColumn.AllowEdit = false;
     this.gridColumnMenuName4.OptionsColumn.AllowFocus = false;
     this.gridColumnMenuName4.OptionsColumn.AllowMove = false;
     this.gridColumnMenuName4.OptionsColumn.AllowShowHide = false;
     this.gridColumnMenuName4.OptionsColumn.ReadOnly = true;
     this.gridColumnMenuName4.Visible = true;
     this.gridColumnMenuName4.VisibleIndex = 1;
     this.gridColumnMenuName4.Width = 317;
     //
     // gridColumn4
     //
     this.gridColumn4.Caption = " ";
     this.gridColumn4.ColumnEdit = this.repositoryItemRadioGroup4;
     this.gridColumn4.FieldName = "permission_flag_access";
     this.gridColumn4.Name = "gridColumn4";
     this.gridColumn4.Visible = true;
     this.gridColumn4.VisibleIndex = 2;
     this.gridColumn4.Width = 151;
     //
     // repositoryItemRadioGroup4
     //
     this.repositoryItemRadioGroup4.Items.AddRange(new DevExpress.XtraEditors.Controls.RadioGroupItem[] {
     new DevExpress.XtraEditors.Controls.RadioGroupItem(1, ""),
     new DevExpress.XtraEditors.Controls.RadioGroupItem(2, "")});
     this.repositoryItemRadioGroup4.Name = "repositoryItemRadioGroup4";
     //
     // gridColumn5
     //
     this.gridColumn5.Caption = "gridColumn1";
     this.gridColumn5.FieldName = "menu_parent";
     this.gridColumn5.Name = "gridColumn5";
     //
     // panelControl11
     //
     this.panelControl11.BorderStyle = DevExpress.XtraEditors.Controls.BorderStyles.NoBorder;
     this.panelControl11.Controls.Add(this.panelControl12);
     this.panelControl11.Controls.Add(this.panelControl10);
     this.panelControl11.Controls.Add(this.checkEdit4);
     this.panelControl11.Dock = System.Windows.Forms.DockStyle.Top;
     this.panelControl11.Location = new System.Drawing.Point(0, 703);
     this.panelControl11.Name = "panelControl11";
     this.panelControl11.Size = new System.Drawing.Size(538, 25);
     this.panelControl11.TabIndex = 10;
     //
     // panelControl12
     //
     this.panelControl12.BorderStyle = DevExpress.XtraEditors.Controls.BorderStyles.NoBorder;
     this.panelControl12.Controls.Add(this.panelControl13);
     this.panelControl12.Controls.Add(this.checkEdit6);
     this.panelControl12.Dock = System.Windows.Forms.DockStyle.Top;
     this.panelControl12.Location = new System.Drawing.Point(0, 38);
     this.panelControl12.Name = "panelControl12";
     this.panelControl12.Size = new System.Drawing.Size(538, 38);
     this.panelControl12.TabIndex = 12;
     //
     // panelControl13
     //
     this.panelControl13.BorderStyle = DevExpress.XtraEditors.Controls.BorderStyles.NoBorder;
     this.panelControl13.Controls.Add(this.panelControl14);
     this.panelControl13.Controls.Add(this.checkEdit7);
     this.panelControl13.Dock = System.Windows.Forms.DockStyle.Top;
     this.panelControl13.Location = new System.Drawing.Point(0, 0);
     this.panelControl13.Name = "panelControl13";
     this.panelControl13.Size = new System.Drawing.Size(538, 38);
     this.panelControl13.TabIndex = 11;
     //
     // panelControl14
     //
     this.panelControl14.BorderStyle = DevExpress.XtraEditors.Controls.BorderStyles.NoBorder;
     this.panelControl14.Controls.Add(this.checkEdit8);
     this.panelControl14.Dock = System.Windows.Forms.DockStyle.Top;
     this.panelControl14.Location = new System.Drawing.Point(0, 0);
     this.panelControl14.Name = "panelControl14";
     this.panelControl14.Size = new System.Drawing.Size(538, 38);
     this.panelControl14.TabIndex = 11;
     //
     // checkEdit8
     //
     this.checkEdit8.Location = new System.Drawing.Point(4, 13);
     this.checkEdit8.Name = "checkEdit8";
     this.checkEdit8.Properties.Caption = "บริการห้องพัก";
     this.checkEdit8.Size = new System.Drawing.Size(100, 19);
     this.checkEdit8.TabIndex = 1;
     //
     // checkEdit7
     //
     this.checkEdit7.Location = new System.Drawing.Point(4, 13);
     this.checkEdit7.Name = "checkEdit7";
     this.checkEdit7.Properties.Caption = "บริการห้องพัก";
     this.checkEdit7.Size = new System.Drawing.Size(100, 19);
     this.checkEdit7.TabIndex = 1;
     //
     // checkEdit6
     //
     this.checkEdit6.Location = new System.Drawing.Point(4, 13);
     this.checkEdit6.Name = "checkEdit6";
     this.checkEdit6.Properties.Caption = "บริการห้องพัก";
     this.checkEdit6.Size = new System.Drawing.Size(100, 19);
     this.checkEdit6.TabIndex = 1;
     //
     // panelControl10
     //
     this.panelControl10.BorderStyle = DevExpress.XtraEditors.Controls.BorderStyles.NoBorder;
     this.panelControl10.Controls.Add(this.checkEditBasicSetting);
     this.panelControl10.Dock = System.Windows.Forms.DockStyle.Top;
     this.panelControl10.Location = new System.Drawing.Point(0, 0);
     this.panelControl10.Name = "panelControl10";
     this.panelControl10.Size = new System.Drawing.Size(538, 38);
     this.panelControl10.TabIndex = 11;
     //
     // checkEditBasicSetting
     //
     this.checkEditBasicSetting.Location = new System.Drawing.Point(5, 3);
     this.checkEditBasicSetting.Name = "checkEditBasicSetting";
     this.checkEditBasicSetting.Properties.Caption = "ตั้งค่าพื้นฐาน";
     this.checkEditBasicSetting.Size = new System.Drawing.Size(231, 19);
     this.checkEditBasicSetting.TabIndex = 1;
     this.checkEditBasicSetting.CheckedChanged += new System.EventHandler(this.checkEditBasicSetting_CheckedChanged);
     //
     // checkEdit4
     //
     this.checkEdit4.Location = new System.Drawing.Point(4, 13);
     this.checkEdit4.Name = "checkEdit4";
     this.checkEdit4.Properties.Caption = "บริการห้องพัก";
     this.checkEdit4.Size = new System.Drawing.Size(100, 19);
     this.checkEdit4.TabIndex = 1;
     //
     // panelControl7
     //
     this.panelControl7.BorderStyle = DevExpress.XtraEditors.Controls.BorderStyles.NoBorder;
     this.panelControl7.Controls.Add(this.gridControlMenuGroup3);
     this.panelControl7.Dock = System.Windows.Forms.DockStyle.Top;
     this.panelControl7.Location = new System.Drawing.Point(0, 531);
     this.panelControl7.Name = "panelControl7";
     this.panelControl7.Padding = new System.Windows.Forms.Padding(7);
     this.panelControl7.Size = new System.Drawing.Size(538, 172);
     this.panelControl7.TabIndex = 7;
     //
     // gridControlMenuGroup3
     //
     this.gridControlMenuGroup3.Dock = System.Windows.Forms.DockStyle.Fill;
     this.gridControlMenuGroup3.Location = new System.Drawing.Point(7, 7);
     this.gridControlMenuGroup3.MainView = this.gridViewMenu3;
     this.gridControlMenuGroup3.Name = "gridControlMenuGroup3";
     this.gridControlMenuGroup3.RepositoryItems.AddRange(new DevExpress.XtraEditors.Repository.RepositoryItem[] {
     this.repositoryItemRadioGroup3});
     this.gridControlMenuGroup3.Size = new System.Drawing.Size(524, 158);
     this.gridControlMenuGroup3.TabIndex = 7;
     this.gridControlMenuGroup3.ViewCollection.AddRange(new DevExpress.XtraGrid.Views.Base.BaseView[] {
     this.gridViewMenu3});
     //
     // gridViewMenu3
     //
     this.gridViewMenu3.BorderStyle = DevExpress.XtraEditors.Controls.BorderStyles.NoBorder;
     this.gridViewMenu3.Columns.AddRange(new DevExpress.XtraGrid.Columns.GridColumn[] {
     this.gridColumnCheckBox3,
     this.gridColumnMenuName3,
     this.gridColumnReadOrWrite3,
     this.gridColumn1});
     this.gridViewMenu3.GridControl = this.gridControlMenuGroup3;
     this.gridViewMenu3.Name = "gridViewMenu3";
     this.gridViewMenu3.OptionsLayout.Columns.AddNewColumns = false;
     this.gridViewMenu3.OptionsLayout.Columns.RemoveOldColumns = false;
     this.gridViewMenu3.OptionsView.ShowColumnHeaders = false;
     this.gridViewMenu3.OptionsView.ShowGroupPanel = false;
     this.gridViewMenu3.OptionsView.ShowVertLines = false;
     this.gridViewMenu3.PaintStyleName = "Skin";
     //
     // gridColumnCheckBox3
     //
     this.gridColumnCheckBox3.Caption = " ";
     this.gridColumnCheckBox3.FieldName = "permission_flag_check";
     this.gridColumnCheckBox3.Name = "gridColumnCheckBox3";
     this.gridColumnCheckBox3.OptionsColumn.AllowSize = false;
     this.gridColumnCheckBox3.UnboundType = DevExpress.Data.UnboundColumnType.Boolean;
     this.gridColumnCheckBox3.Visible = true;
     this.gridColumnCheckBox3.VisibleIndex = 0;
     this.gridColumnCheckBox3.Width = 20;
     //
     // gridColumnMenuName3
     //
     this.gridColumnMenuName3.Caption = " ";
     this.gridColumnMenuName3.Name = "gridColumnMenuName3";
     this.gridColumnMenuName3.OptionsColumn.AllowEdit = false;
     this.gridColumnMenuName3.OptionsColumn.AllowFocus = false;
     this.gridColumnMenuName3.OptionsColumn.AllowMove = false;
     this.gridColumnMenuName3.OptionsColumn.AllowShowHide = false;
     this.gridColumnMenuName3.OptionsColumn.ReadOnly = true;
     this.gridColumnMenuName3.Visible = true;
     this.gridColumnMenuName3.VisibleIndex = 1;
     this.gridColumnMenuName3.Width = 317;
     //
     // gridColumnReadOrWrite3
     //
     this.gridColumnReadOrWrite3.Caption = " ";
     this.gridColumnReadOrWrite3.ColumnEdit = this.repositoryItemRadioGroup3;
     this.gridColumnReadOrWrite3.FieldName = "permission_flag_access";
     this.gridColumnReadOrWrite3.Name = "gridColumnReadOrWrite3";
     this.gridColumnReadOrWrite3.Visible = true;
     this.gridColumnReadOrWrite3.VisibleIndex = 2;
     this.gridColumnReadOrWrite3.Width = 151;
     //
     // repositoryItemRadioGroup3
     //
     this.repositoryItemRadioGroup3.Items.AddRange(new DevExpress.XtraEditors.Controls.RadioGroupItem[] {
     new DevExpress.XtraEditors.Controls.RadioGroupItem(1, ""),
     new DevExpress.XtraEditors.Controls.RadioGroupItem(2, "")});
     this.repositoryItemRadioGroup3.Name = "repositoryItemRadioGroup3";
     //
     // gridColumn1
     //
     this.gridColumn1.Caption = "gridColumn1";
     this.gridColumn1.FieldName = "menu_parent";
     this.gridColumn1.Name = "gridColumn1";
     //
     // panelControl9
     //
     this.panelControl9.BorderStyle = DevExpress.XtraEditors.Controls.BorderStyles.NoBorder;
     this.panelControl9.Controls.Add(this.checkEditReportManagement);
     this.panelControl9.Dock = System.Windows.Forms.DockStyle.Top;
     this.panelControl9.Location = new System.Drawing.Point(0, 506);
     this.panelControl9.Name = "panelControl9";
     this.panelControl9.Size = new System.Drawing.Size(538, 25);
     this.panelControl9.TabIndex = 8;
     //
     // checkEditReportManagement
     //
     this.checkEditReportManagement.Location = new System.Drawing.Point(5, 3);
     this.checkEditReportManagement.Name = "checkEditReportManagement";
     this.checkEditReportManagement.Properties.Caption = "รายงาน";
     this.checkEditReportManagement.Size = new System.Drawing.Size(100, 19);
     this.checkEditReportManagement.TabIndex = 1;
     this.checkEditReportManagement.CheckedChanged += new System.EventHandler(this.checkEditReportManagement_CheckedChanged);
     //
     // panelControl5
     //
     this.panelControl5.BorderStyle = DevExpress.XtraEditors.Controls.BorderStyles.NoBorder;
     this.panelControl5.Controls.Add(this.gridControlMenuGroup2);
     this.panelControl5.Dock = System.Windows.Forms.DockStyle.Top;
     this.panelControl5.Location = new System.Drawing.Point(0, 421);
     this.panelControl5.Name = "panelControl5";
     this.panelControl5.Padding = new System.Windows.Forms.Padding(7);
     this.panelControl5.Size = new System.Drawing.Size(538, 85);
     this.panelControl5.TabIndex = 5;
     //
     // gridControlMenuGroup2
     //
     this.gridControlMenuGroup2.Dock = System.Windows.Forms.DockStyle.Fill;
     this.gridControlMenuGroup2.Location = new System.Drawing.Point(7, 7);
     this.gridControlMenuGroup2.MainView = this.gridViewMenu2;
     this.gridControlMenuGroup2.Name = "gridControlMenuGroup2";
     this.gridControlMenuGroup2.RepositoryItems.AddRange(new DevExpress.XtraEditors.Repository.RepositoryItem[] {
     this.repositoryItemRadioGroup2});
     this.gridControlMenuGroup2.Size = new System.Drawing.Size(524, 71);
     this.gridControlMenuGroup2.TabIndex = 6;
     this.gridControlMenuGroup2.ViewCollection.AddRange(new DevExpress.XtraGrid.Views.Base.BaseView[] {
     this.gridViewMenu2});
     //
     // gridViewMenu2
     //
     this.gridViewMenu2.BorderStyle = DevExpress.XtraEditors.Controls.BorderStyles.NoBorder;
     this.gridViewMenu2.Columns.AddRange(new DevExpress.XtraGrid.Columns.GridColumn[] {
     this.gridColumnCheckBox2,
     this.gridColumnMenuName2,
     this.gridColumnReadOrWrite2,
     this.gridColumnParent2});
     this.gridViewMenu2.GridControl = this.gridControlMenuGroup2;
     this.gridViewMenu2.Name = "gridViewMenu2";
     this.gridViewMenu2.OptionsLayout.Columns.AddNewColumns = false;
     this.gridViewMenu2.OptionsLayout.Columns.RemoveOldColumns = false;
     this.gridViewMenu2.OptionsView.ShowColumnHeaders = false;
     this.gridViewMenu2.OptionsView.ShowGroupPanel = false;
     this.gridViewMenu2.OptionsView.ShowVertLines = false;
     this.gridViewMenu2.PaintStyleName = "Skin";
     //
     // gridColumnCheckBox2
     //
     this.gridColumnCheckBox2.Caption = " ";
     this.gridColumnCheckBox2.FieldName = "permission_flag_check";
     this.gridColumnCheckBox2.Name = "gridColumnCheckBox2";
     this.gridColumnCheckBox2.OptionsColumn.AllowSize = false;
     this.gridColumnCheckBox2.UnboundType = DevExpress.Data.UnboundColumnType.Boolean;
     this.gridColumnCheckBox2.Visible = true;
     this.gridColumnCheckBox2.VisibleIndex = 0;
     this.gridColumnCheckBox2.Width = 20;
     //
     // gridColumnMenuName2
     //
     this.gridColumnMenuName2.Caption = " ";
     this.gridColumnMenuName2.Name = "gridColumnMenuName2";
     this.gridColumnMenuName2.OptionsColumn.AllowEdit = false;
     this.gridColumnMenuName2.OptionsColumn.AllowFocus = false;
     this.gridColumnMenuName2.OptionsColumn.AllowMove = false;
     this.gridColumnMenuName2.OptionsColumn.AllowShowHide = false;
     this.gridColumnMenuName2.OptionsColumn.ReadOnly = true;
     this.gridColumnMenuName2.Visible = true;
     this.gridColumnMenuName2.VisibleIndex = 1;
     this.gridColumnMenuName2.Width = 317;
     //
     // gridColumnReadOrWrite2
     //
     this.gridColumnReadOrWrite2.Caption = " ";
     this.gridColumnReadOrWrite2.ColumnEdit = this.repositoryItemRadioGroup2;
     this.gridColumnReadOrWrite2.FieldName = "permission_flag_access";
     this.gridColumnReadOrWrite2.Name = "gridColumnReadOrWrite2";
     this.gridColumnReadOrWrite2.Visible = true;
     this.gridColumnReadOrWrite2.VisibleIndex = 2;
     this.gridColumnReadOrWrite2.Width = 151;
     //
     // repositoryItemRadioGroup2
     //
     this.repositoryItemRadioGroup2.Items.AddRange(new DevExpress.XtraEditors.Controls.RadioGroupItem[] {
     new DevExpress.XtraEditors.Controls.RadioGroupItem(1, ""),
     new DevExpress.XtraEditors.Controls.RadioGroupItem(2, "")});
     this.repositoryItemRadioGroup2.Name = "repositoryItemRadioGroup2";
     //
     // gridColumnParent2
     //
     this.gridColumnParent2.Caption = "Parent";
     this.gridColumnParent2.FieldName = "menu_parent";
     this.gridColumnParent2.Name = "gridColumnParent2";
     //
     // panelControl6
     //
     this.panelControl6.Appearance.BackColor = System.Drawing.Color.White;
     this.panelControl6.Appearance.Options.UseBackColor = true;
     this.panelControl6.BorderStyle = DevExpress.XtraEditors.Controls.BorderStyles.NoBorder;
     this.panelControl6.Controls.Add(this.checkEditMeterManagement);
     this.panelControl6.Dock = System.Windows.Forms.DockStyle.Top;
     this.panelControl6.Location = new System.Drawing.Point(0, 396);
     this.panelControl6.Name = "panelControl6";
     this.panelControl6.Size = new System.Drawing.Size(538, 25);
     this.panelControl6.TabIndex = 6;
     //
     // checkEditMeterManagement
     //
     this.checkEditMeterManagement.Location = new System.Drawing.Point(5, 3);
     this.checkEditMeterManagement.Name = "checkEditMeterManagement";
     this.checkEditMeterManagement.Properties.Caption = "บันทึกค่ามิเตอร์";
     this.checkEditMeterManagement.Size = new System.Drawing.Size(206, 19);
     this.checkEditMeterManagement.TabIndex = 1;
     this.checkEditMeterManagement.CheckedChanged += new System.EventHandler(this.checkEditMeterManagement_CheckedChanged);
     //
     // panelControl1
     //
     this.panelControl1.BorderStyle = DevExpress.XtraEditors.Controls.BorderStyles.NoBorder;
     this.panelControl1.Controls.Add(this.gridControlMenuGroup1);
     this.panelControl1.Dock = System.Windows.Forms.DockStyle.Top;
     this.panelControl1.Location = new System.Drawing.Point(0, 147);
     this.panelControl1.Name = "panelControl1";
     this.panelControl1.Padding = new System.Windows.Forms.Padding(7);
     this.panelControl1.Size = new System.Drawing.Size(538, 249);
     this.panelControl1.TabIndex = 3;
     //
     // gridControlMenuGroup1
     //
     this.gridControlMenuGroup1.Dock = System.Windows.Forms.DockStyle.Fill;
     this.gridControlMenuGroup1.Location = new System.Drawing.Point(7, 7);
     this.gridControlMenuGroup1.MainView = this.gridViewMenu;
     this.gridControlMenuGroup1.Name = "gridControlMenuGroup1";
     this.gridControlMenuGroup1.RepositoryItems.AddRange(new DevExpress.XtraEditors.Repository.RepositoryItem[] {
     this.repositoryItemRadioGroup1});
     this.gridControlMenuGroup1.Size = new System.Drawing.Size(524, 235);
     this.gridControlMenuGroup1.TabIndex = 5;
     this.gridControlMenuGroup1.ViewCollection.AddRange(new DevExpress.XtraGrid.Views.Base.BaseView[] {
     this.gridViewMenu});
     //
     // gridViewMenu
     //
     this.gridViewMenu.BorderStyle = DevExpress.XtraEditors.Controls.BorderStyles.NoBorder;
     this.gridViewMenu.Columns.AddRange(new DevExpress.XtraGrid.Columns.GridColumn[] {
     this.gridColumnCheckBox,
     this.gridColumnMenuName,
     this.gridColumnReadOrWrite,
     this.gridColumnParent});
     this.gridViewMenu.GridControl = this.gridControlMenuGroup1;
     this.gridViewMenu.Name = "gridViewMenu";
     this.gridViewMenu.OptionsLayout.Columns.AddNewColumns = false;
     this.gridViewMenu.OptionsLayout.Columns.RemoveOldColumns = false;
     this.gridViewMenu.OptionsView.ShowColumnHeaders = false;
     this.gridViewMenu.OptionsView.ShowGroupPanel = false;
     this.gridViewMenu.OptionsView.ShowVertLines = false;
     this.gridViewMenu.PaintStyleName = "Skin";
     //
     // gridColumnCheckBox
     //
     this.gridColumnCheckBox.Caption = " ";
     this.gridColumnCheckBox.FieldName = "permission_flag_check";
     this.gridColumnCheckBox.Name = "gridColumnCheckBox";
     this.gridColumnCheckBox.OptionsColumn.AllowSize = false;
     this.gridColumnCheckBox.UnboundType = DevExpress.Data.UnboundColumnType.Boolean;
     this.gridColumnCheckBox.Visible = true;
     this.gridColumnCheckBox.VisibleIndex = 0;
     this.gridColumnCheckBox.Width = 20;
     //
     // gridColumnMenuName
     //
     this.gridColumnMenuName.Caption = " ";
     this.gridColumnMenuName.Name = "gridColumnMenuName";
     this.gridColumnMenuName.OptionsColumn.AllowEdit = false;
     this.gridColumnMenuName.OptionsColumn.AllowFocus = false;
     this.gridColumnMenuName.OptionsColumn.AllowMove = false;
     this.gridColumnMenuName.OptionsColumn.AllowShowHide = false;
     this.gridColumnMenuName.OptionsColumn.ReadOnly = true;
     this.gridColumnMenuName.Visible = true;
     this.gridColumnMenuName.VisibleIndex = 1;
     this.gridColumnMenuName.Width = 317;
     //
     // gridColumnReadOrWrite
     //
     this.gridColumnReadOrWrite.Caption = " ";
     this.gridColumnReadOrWrite.ColumnEdit = this.repositoryItemRadioGroup1;
     this.gridColumnReadOrWrite.FieldName = "permission_flag_access";
     this.gridColumnReadOrWrite.Name = "gridColumnReadOrWrite";
     this.gridColumnReadOrWrite.Visible = true;
     this.gridColumnReadOrWrite.VisibleIndex = 2;
     this.gridColumnReadOrWrite.Width = 151;
     //
     // repositoryItemRadioGroup1
     //
     this.repositoryItemRadioGroup1.Items.AddRange(new DevExpress.XtraEditors.Controls.RadioGroupItem[] {
     new DevExpress.XtraEditors.Controls.RadioGroupItem(1, ""),
     new DevExpress.XtraEditors.Controls.RadioGroupItem(2, "")});
     this.repositoryItemRadioGroup1.Name = "repositoryItemRadioGroup1";
     //
     // gridColumnParent
     //
     this.gridColumnParent.Caption = "parent";
     this.gridColumnParent.FieldName = "menu_parent";
     this.gridColumnParent.Name = "gridColumnParent";
     //
     // panelControl4
     //
     this.panelControl4.BorderStyle = DevExpress.XtraEditors.Controls.BorderStyles.NoBorder;
     this.panelControl4.Controls.Add(this.checkEditRoomManagement);
     this.panelControl4.Dock = System.Windows.Forms.DockStyle.Top;
     this.panelControl4.Location = new System.Drawing.Point(0, 122);
     this.panelControl4.Name = "panelControl4";
     this.panelControl4.Size = new System.Drawing.Size(538, 25);
     this.panelControl4.TabIndex = 4;
     //
     // checkEditRoomManagement
     //
     this.checkEditRoomManagement.Location = new System.Drawing.Point(5, 3);
     this.checkEditRoomManagement.Name = "checkEditRoomManagement";
     this.checkEditRoomManagement.Properties.Caption = "บริการห้องพัก";
     this.checkEditRoomManagement.Size = new System.Drawing.Size(243, 19);
     this.checkEditRoomManagement.TabIndex = 1;
     this.checkEditRoomManagement.CheckedChanged += new System.EventHandler(this.checkEditRoomManagement_CheckedChanged);
     //
     // panelControl20
     //
     this.panelControl20.BorderStyle = DevExpress.XtraEditors.Controls.BorderStyles.NoBorder;
     this.panelControl20.Controls.Add(this.gridControlPermissionBar);
     this.panelControl20.Dock = System.Windows.Forms.DockStyle.Top;
     this.panelControl20.Location = new System.Drawing.Point(0, 59);
     this.panelControl20.Name = "panelControl20";
     this.panelControl20.Padding = new System.Windows.Forms.Padding(7);
     this.panelControl20.Size = new System.Drawing.Size(538, 63);
     this.panelControl20.TabIndex = 21;
     //
     // gridControlPermissionBar
     //
     this.gridControlPermissionBar.Dock = System.Windows.Forms.DockStyle.Fill;
     this.gridControlPermissionBar.Location = new System.Drawing.Point(7, 7);
     this.gridControlPermissionBar.MainView = this.gridView4;
     this.gridControlPermissionBar.Name = "gridControlPermissionBar";
     this.gridControlPermissionBar.Size = new System.Drawing.Size(524, 49);
     this.gridControlPermissionBar.TabIndex = 4;
     this.gridControlPermissionBar.ViewCollection.AddRange(new DevExpress.XtraGrid.Views.Base.BaseView[] {
     this.gridView4});
     //
     // gridView4
     //
     this.gridView4.BorderStyle = DevExpress.XtraEditors.Controls.BorderStyles.NoBorder;
     this.gridView4.Columns.AddRange(new DevExpress.XtraGrid.Columns.GridColumn[] {
     this.gridColumn9,
     this.gridColumnMenuNameBar,
     this.gridColumnReadWriteBar,
     this.gridColumnReadOnlyBar});
     this.gridView4.GridControl = this.gridControlPermissionBar;
     this.gridView4.Name = "gridView4";
     this.gridView4.OptionsLayout.Columns.AddNewColumns = false;
     this.gridView4.OptionsLayout.Columns.RemoveOldColumns = false;
     this.gridView4.OptionsView.ShowGroupPanel = false;
     this.gridView4.OptionsView.ShowHorzLines = false;
     this.gridView4.OptionsView.ShowVertLines = false;
     this.gridView4.OptionsView.ShowViewCaption = true;
     this.gridView4.PaintStyleName = "Skin";
     this.gridView4.VertScrollVisibility = DevExpress.XtraGrid.Views.Base.ScrollVisibility.Never;
     this.gridView4.ViewCaption = "รายการเมนู";
     //
     // gridColumn9
     //
     this.gridColumn9.Caption = " ";
     this.gridColumn9.FieldName = "checkbox";
     this.gridColumn9.Name = "gridColumn9";
     this.gridColumn9.OptionsColumn.AllowSize = false;
     this.gridColumn9.UnboundType = DevExpress.Data.UnboundColumnType.Boolean;
     this.gridColumn9.Visible = true;
     this.gridColumn9.VisibleIndex = 0;
     this.gridColumn9.Width = 20;
     //
     // gridColumnMenuNameBar
     //
     this.gridColumnMenuNameBar.AppearanceHeader.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold);
     this.gridColumnMenuNameBar.AppearanceHeader.Options.UseFont = true;
     this.gridColumnMenuNameBar.AppearanceHeader.Options.UseTextOptions = true;
     this.gridColumnMenuNameBar.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.gridColumnMenuNameBar.Caption = " ชื่อเมนู";
     this.gridColumnMenuNameBar.Name = "gridColumnMenuNameBar";
     this.gridColumnMenuNameBar.OptionsColumn.AllowEdit = false;
     this.gridColumnMenuNameBar.OptionsColumn.AllowFocus = false;
     this.gridColumnMenuNameBar.OptionsColumn.AllowMove = false;
     this.gridColumnMenuNameBar.OptionsColumn.AllowShowHide = false;
     this.gridColumnMenuNameBar.OptionsColumn.ReadOnly = true;
     this.gridColumnMenuNameBar.Visible = true;
     this.gridColumnMenuNameBar.VisibleIndex = 1;
     this.gridColumnMenuNameBar.Width = 318;
     //
     // gridColumnReadWriteBar
     //
     this.gridColumnReadWriteBar.AppearanceHeader.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold);
     this.gridColumnReadWriteBar.AppearanceHeader.Options.UseFont = true;
     this.gridColumnReadWriteBar.AppearanceHeader.Options.UseTextOptions = true;
     this.gridColumnReadWriteBar.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.gridColumnReadWriteBar.Caption = "อ่านและเขียนได้";
     this.gridColumnReadWriteBar.Name = "gridColumnReadWriteBar";
     this.gridColumnReadWriteBar.UnboundType = DevExpress.Data.UnboundColumnType.Boolean;
     this.gridColumnReadWriteBar.Visible = true;
     this.gridColumnReadWriteBar.VisibleIndex = 2;
     this.gridColumnReadWriteBar.Width = 162;
     //
     // gridColumnReadOnlyBar
     //
     this.gridColumnReadOnlyBar.AppearanceHeader.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold);
     this.gridColumnReadOnlyBar.AppearanceHeader.Options.UseFont = true;
     this.gridColumnReadOnlyBar.AppearanceHeader.Options.UseTextOptions = true;
     this.gridColumnReadOnlyBar.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.gridColumnReadOnlyBar.Caption = "อ่านอย่างเดียว";
     this.gridColumnReadOnlyBar.Name = "gridColumnReadOnlyBar";
     this.gridColumnReadOnlyBar.UnboundType = DevExpress.Data.UnboundColumnType.Boolean;
     this.gridColumnReadOnlyBar.Visible = true;
     this.gridColumnReadOnlyBar.VisibleIndex = 3;
     this.gridColumnReadOnlyBar.Width = 200;
     //
     // panelControl16
     //
     this.panelControl16.BorderStyle = DevExpress.XtraEditors.Controls.BorderStyles.NoBorder;
     this.panelControl16.Controls.Add(this.labelControl2);
     this.panelControl16.Controls.Add(this.labelControlRequired);
     this.panelControl16.Controls.Add(this.textEditGroupID);
     this.panelControl16.Controls.Add(this.textEditGroupName);
     this.panelControl16.Controls.Add(this.labelGroupName);
     this.panelControl16.Dock = System.Windows.Forms.DockStyle.Top;
     this.panelControl16.Location = new System.Drawing.Point(0, 0);
     this.panelControl16.Name = "panelControl16";
     this.panelControl16.Size = new System.Drawing.Size(538, 59);
     this.panelControl16.TabIndex = 20;
     //
     // labelControl2
     //
     this.labelControl2.Appearance.ForeColor = System.Drawing.Color.Red;
     this.labelControl2.Location = new System.Drawing.Point(15, 15);
     this.labelControl2.Name = "labelControl2";
     this.labelControl2.Size = new System.Drawing.Size(6, 13);
     this.labelControl2.TabIndex = 372;
     this.labelControl2.Text = "*";
     //
     // labelControlRequired
     //
     this.labelControlRequired.Appearance.ForeColor = System.Drawing.Color.Red;
     this.labelControlRequired.Location = new System.Drawing.Point(103, 40);
     this.labelControlRequired.Name = "labelControlRequired";
     this.labelControlRequired.Size = new System.Drawing.Size(50, 13);
     this.labelControlRequired.TabIndex = 372;
     this.labelControlRequired.Text = "* โปรดระบุ";
     //
     // textEditGroupID
     //
     this.textEditGroupID.Location = new System.Drawing.Point(438, 12);
     this.textEditGroupID.Name = "textEditGroupID";
     this.textEditGroupID.Size = new System.Drawing.Size(70, 20);
     this.textEditGroupID.TabIndex = 1;
     this.textEditGroupID.Visible = false;
     //
     // textEditGroupName
     //
     this.textEditGroupName.Location = new System.Drawing.Point(103, 12);
     this.textEditGroupName.Name = "textEditGroupName";
     this.textEditGroupName.Properties.Mask.EditMask = "([a-zA-Z0-9|ก-๙|\\\' \']){0,300}";
     this.textEditGroupName.Properties.Mask.MaskType = DevExpress.XtraEditors.Mask.MaskType.RegEx;
     this.textEditGroupName.Properties.MaxLength = 300;
     this.textEditGroupName.Size = new System.Drawing.Size(329, 20);
     this.textEditGroupName.TabIndex = 1;
     //
     // labelGroupName
     //
     this.labelGroupName.Location = new System.Drawing.Point(27, 15);
     this.labelGroupName.Name = "labelGroupName";
     this.labelGroupName.Size = new System.Drawing.Size(35, 13);
     this.labelGroupName.TabIndex = 0;
     this.labelGroupName.Text = "ชื่อกลุ่ม";
     //
     // panelControl8
     //
     this.panelControl8.Appearance.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(235)))), ((int)(((byte)(236)))), ((int)(((byte)(239)))));
     this.panelControl8.Appearance.Options.UseBackColor = true;
     this.panelControl8.Controls.Add(this.bttDelete);
     this.panelControl8.Controls.Add(this.bttAdd);
     this.panelControl8.Controls.Add(this.bttEdit);
     this.panelControl8.Controls.Add(this.bttCancel);
     this.panelControl8.Controls.Add(this.bttSave);
     this.panelControl8.Dock = System.Windows.Forms.DockStyle.Bottom;
     this.panelControl8.Location = new System.Drawing.Point(0, 543);
     this.panelControl8.Name = "panelControl8";
     this.panelControl8.Size = new System.Drawing.Size(559, 66);
     this.panelControl8.TabIndex = 418;
     //
     // bttDelete
     //
     this.bttDelete.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
     this.bttDelete.Image = ((System.Drawing.Image)(resources.GetObject("bttDelete.Image")));
     this.bttDelete.ImageLocation = DevExpress.XtraEditors.ImageLocation.TopCenter;
     this.bttDelete.Location = new System.Drawing.Point(332, 5);
     this.bttDelete.Name = "bttDelete";
     this.bttDelete.Size = new System.Drawing.Size(70, 55);
     this.bttDelete.TabIndex = 20;
     this.bttDelete.Text = "ลบข้อมูล";
     this.bttDelete.Click += new System.EventHandler(this.bttDelete_Click);
     //
     // bttAdd
     //
     this.bttAdd.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
     this.bttAdd.Image = ((System.Drawing.Image)(resources.GetObject("bttAdd.Image")));
     this.bttAdd.ImageLocation = DevExpress.XtraEditors.ImageLocation.TopCenter;
     this.bttAdd.Location = new System.Drawing.Point(180, 5);
     this.bttAdd.Name = "bttAdd";
     this.bttAdd.Size = new System.Drawing.Size(70, 55);
     this.bttAdd.TabIndex = 18;
     this.bttAdd.Text = "เพิ่มข้อมูล";
     this.bttAdd.Click += new System.EventHandler(this.bttAdd_Click);
     //
     // bttEdit
     //
     this.bttEdit.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
     this.bttEdit.Image = ((System.Drawing.Image)(resources.GetObject("bttEdit.Image")));
     this.bttEdit.ImageLocation = DevExpress.XtraEditors.ImageLocation.TopCenter;
     this.bttEdit.Location = new System.Drawing.Point(256, 5);
     this.bttEdit.Name = "bttEdit";
     this.bttEdit.Size = new System.Drawing.Size(70, 55);
     this.bttEdit.TabIndex = 19;
     this.bttEdit.Text = "แก้ไขข้อมูล";
     this.bttEdit.Click += new System.EventHandler(this.bttEdit_Click);
     //
     // bttCancel
     //
     this.bttCancel.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
     this.bttCancel.Enabled = false;
     this.bttCancel.Image = ((System.Drawing.Image)(resources.GetObject("bttCancel.Image")));
     this.bttCancel.ImageLocation = DevExpress.XtraEditors.ImageLocation.TopCenter;
     this.bttCancel.Location = new System.Drawing.Point(484, 5);
     this.bttCancel.Name = "bttCancel";
     this.bttCancel.Size = new System.Drawing.Size(70, 55);
     this.bttCancel.TabIndex = 22;
     this.bttCancel.Text = "ยกเลิก";
     this.bttCancel.Click += new System.EventHandler(this.bttCancel_Click);
     //
     // bttSave
     //
     this.bttSave.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
     this.bttSave.Enabled = false;
     this.bttSave.Image = ((System.Drawing.Image)(resources.GetObject("bttSave.Image")));
     this.bttSave.ImageLocation = DevExpress.XtraEditors.ImageLocation.TopCenter;
     this.bttSave.Location = new System.Drawing.Point(408, 5);
     this.bttSave.Name = "bttSave";
     this.bttSave.Size = new System.Drawing.Size(70, 55);
     this.bttSave.TabIndex = 21;
     this.bttSave.Text = "บันทึก";
     this.bttSave.Click += new System.EventHandler(this.bttSave_Click);
     //
     // splitContainerControl1
     //
     this.splitContainerControl1.Dock = System.Windows.Forms.DockStyle.Fill;
     this.splitContainerControl1.Location = new System.Drawing.Point(0, 0);
     this.splitContainerControl1.Name = "splitContainerControl1";
     this.splitContainerControl1.Panel1.Text = "Panel1";
     this.splitContainerControl1.Panel2.Text = "Panel2";
     this.splitContainerControl1.Size = new System.Drawing.Size(1064, 609);
     this.splitContainerControl1.SplitterPosition = 585;
     this.splitContainerControl1.TabIndex = 0;
     this.splitContainerControl1.Text = "splitContainerControl1";
     //
     // splitContainerControl2
     //
     this.splitContainerControl2.Dock = System.Windows.Forms.DockStyle.Fill;
     this.splitContainerControl2.Location = new System.Drawing.Point(7, 7);
     this.splitContainerControl2.Name = "splitContainerControl2";
     this.splitContainerControl2.Panel1.Controls.Add(this.groupControlAuthorizeList);
     this.splitContainerControl2.Panel1.Text = "Panel1";
     this.splitContainerControl2.Panel2.Controls.Add(this.panelControl3);
     this.splitContainerControl2.Panel2.Text = "Panel2";
     this.splitContainerControl2.Size = new System.Drawing.Size(1064, 609);
     this.splitContainerControl2.SplitterPosition = 500;
     this.splitContainerControl2.TabIndex = 23;
     this.splitContainerControl2.Text = "splitContainerControl2";
     //
     // groupControlAuthorizeList
     //
     this.groupControlAuthorizeList.AppearanceCaption.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold);
     this.groupControlAuthorizeList.AppearanceCaption.Options.UseFont = true;
     this.groupControlAuthorizeList.Controls.Add(this.gridControlGroupPermission);
     this.groupControlAuthorizeList.Dock = System.Windows.Forms.DockStyle.Fill;
     this.groupControlAuthorizeList.Location = new System.Drawing.Point(0, 0);
     this.groupControlAuthorizeList.Name = "groupControlAuthorizeList";
     this.groupControlAuthorizeList.Size = new System.Drawing.Size(500, 609);
     this.groupControlAuthorizeList.TabIndex = 0;
     this.groupControlAuthorizeList.Text = "รายการกลุ่มผู้ใช้งาน";
     //
     // gridControlGroupPermission
     //
     this.gridControlGroupPermission.Dock = System.Windows.Forms.DockStyle.Fill;
     this.gridControlGroupPermission.Location = new System.Drawing.Point(2, 22);
     this.gridControlGroupPermission.MainView = this.gridViewGroup;
     this.gridControlGroupPermission.Name = "gridControlGroupPermission";
     this.gridControlGroupPermission.Size = new System.Drawing.Size(496, 585);
     this.gridControlGroupPermission.TabIndex = 1;
     this.gridControlGroupPermission.UseEmbeddedNavigator = true;
     this.gridControlGroupPermission.ViewCollection.AddRange(new DevExpress.XtraGrid.Views.Base.BaseView[] {
     this.gridViewGroup});
     //
     // gridViewGroup
     //
     this.gridViewGroup.Columns.AddRange(new DevExpress.XtraGrid.Columns.GridColumn[] {
     this.gridColumnGroupId,
     this.gridColumnGroupName,
     this.gridColumnAmountUser});
     this.gridViewGroup.GridControl = this.gridControlGroupPermission;
     this.gridViewGroup.Name = "gridViewGroup";
     this.gridViewGroup.OptionsFind.AlwaysVisible = true;
     this.gridViewGroup.OptionsView.EnableAppearanceEvenRow = true;
     this.gridViewGroup.OptionsView.ShowGroupPanel = false;
     //
     // gridColumnGroupId
     //
     this.gridColumnGroupId.AppearanceHeader.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold);
     this.gridColumnGroupId.AppearanceHeader.Options.UseFont = true;
     this.gridColumnGroupId.Caption = "รหัสกลุ่ม";
     this.gridColumnGroupId.FieldName = "group_id";
     this.gridColumnGroupId.Name = "gridColumnGroupId";
     this.gridColumnGroupId.OptionsColumn.AllowEdit = false;
     this.gridColumnGroupId.OptionsColumn.AllowFocus = false;
     this.gridColumnGroupId.OptionsColumn.AllowMerge = DevExpress.Utils.DefaultBoolean.False;
     this.gridColumnGroupId.OptionsColumn.AllowMove = false;
     //
     // gridColumnGroupName
     //
     this.gridColumnGroupName.AppearanceHeader.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold);
     this.gridColumnGroupName.AppearanceHeader.Options.UseFont = true;
     this.gridColumnGroupName.Caption = "ชื่อกลุ่ม";
     this.gridColumnGroupName.FieldName = "group_name";
     this.gridColumnGroupName.Name = "gridColumnGroupName";
     this.gridColumnGroupName.OptionsColumn.AllowEdit = false;
     this.gridColumnGroupName.OptionsColumn.AllowFocus = false;
     this.gridColumnGroupName.OptionsColumn.AllowMerge = DevExpress.Utils.DefaultBoolean.False;
     this.gridColumnGroupName.OptionsColumn.AllowMove = false;
     this.gridColumnGroupName.Visible = true;
     this.gridColumnGroupName.VisibleIndex = 0;
     //
     // gridColumnAmountUser
     //
     this.gridColumnAmountUser.AppearanceHeader.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold);
     this.gridColumnAmountUser.AppearanceHeader.Options.UseFont = true;
     this.gridColumnAmountUser.Caption = "จำนวนผู้ใช้";
     this.gridColumnAmountUser.FieldName = "amount_user";
     this.gridColumnAmountUser.Name = "gridColumnAmountUser";
     this.gridColumnAmountUser.OptionsColumn.AllowEdit = false;
     this.gridColumnAmountUser.OptionsColumn.AllowFocus = false;
     this.gridColumnAmountUser.OptionsColumn.AllowMove = false;
     this.gridColumnAmountUser.OptionsColumn.ReadOnly = true;
     this.gridColumnAmountUser.Visible = true;
     this.gridColumnAmountUser.VisibleIndex = 1;
     //
     // panelControl2
     //
     this.panelControl2.Appearance.BackColor = System.Drawing.Color.WhiteSmoke;
     this.panelControl2.Appearance.Options.UseBackColor = true;
     this.panelControl2.BorderStyle = DevExpress.XtraEditors.Controls.BorderStyles.NoBorder;
     this.panelControl2.Controls.Add(this.splitContainerControl1);
     this.panelControl2.Dock = System.Windows.Forms.DockStyle.Fill;
     this.panelControl2.Location = new System.Drawing.Point(7, 7);
     this.panelControl2.Name = "panelControl2";
     this.panelControl2.Size = new System.Drawing.Size(1064, 609);
     this.panelControl2.TabIndex = 22;
     //
     // ProgramPermission
     //
     this.AccessibleName = "ProgramPermission";
     this.Appearance.BackColor = System.Drawing.Color.White;
     this.Appearance.Options.UseBackColor = true;
     this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
     this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
     this.Controls.Add(this.splitContainerControl2);
     this.Controls.Add(this.panelControl2);
     this.Name = "ProgramPermission";
     this.Padding = new System.Windows.Forms.Padding(7);
     this.Size = new System.Drawing.Size(1078, 623);
     ((System.ComponentModel.ISupportInitialize)(this.panelControl3)).EndInit();
     this.panelControl3.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.groupControlAuthorize)).EndInit();
     this.groupControlAuthorize.ResumeLayout(false);
     this.xtraScrollableControl1.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.panelControl25)).EndInit();
     this.panelControl25.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.gridControlMenuGroup8)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridViewMenu8)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemRadioGroup8)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.panelControl19)).EndInit();
     this.panelControl19.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.checkEditHelp.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.panelControl26)).EndInit();
     this.panelControl26.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.gridControlMenuGroup9)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridViewMenu9)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemRadioGroup9)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.panelControl27)).EndInit();
     this.panelControl27.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.checkEditRegistration.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.panelControl24)).EndInit();
     this.panelControl24.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.gridControlMenuGroup7)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridViewMenu7)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemRadioGroup7)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.panelControl18)).EndInit();
     this.panelControl18.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.checkEditDeviceSetting.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.panelControl23)).EndInit();
     this.panelControl23.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.gridControlMenuGroup6)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridViewMenu6)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemRadioGroup6)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.panelControl17)).EndInit();
     this.panelControl17.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.checkEditDatabaseSetting.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.panelControl22)).EndInit();
     this.panelControl22.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.gridControlMenuGroup5)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridViewMenu5)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemRadioGroup5)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.panelControl15)).EndInit();
     this.panelControl15.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.checkEditProgramSetting.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.panelControl21)).EndInit();
     this.panelControl21.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.gridControlMenuGroup4)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridViewMenu4)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemRadioGroup4)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.panelControl11)).EndInit();
     this.panelControl11.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.panelControl12)).EndInit();
     this.panelControl12.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.panelControl13)).EndInit();
     this.panelControl13.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.panelControl14)).EndInit();
     this.panelControl14.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.checkEdit8.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.checkEdit7.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.checkEdit6.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.panelControl10)).EndInit();
     this.panelControl10.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.checkEditBasicSetting.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.checkEdit4.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.panelControl7)).EndInit();
     this.panelControl7.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.gridControlMenuGroup3)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridViewMenu3)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemRadioGroup3)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.panelControl9)).EndInit();
     this.panelControl9.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.checkEditReportManagement.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.panelControl5)).EndInit();
     this.panelControl5.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.gridControlMenuGroup2)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridViewMenu2)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemRadioGroup2)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.panelControl6)).EndInit();
     this.panelControl6.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.checkEditMeterManagement.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.panelControl1)).EndInit();
     this.panelControl1.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.gridControlMenuGroup1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridViewMenu)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemRadioGroup1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.panelControl4)).EndInit();
     this.panelControl4.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.checkEditRoomManagement.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.panelControl20)).EndInit();
     this.panelControl20.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.gridControlPermissionBar)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridView4)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.panelControl16)).EndInit();
     this.panelControl16.ResumeLayout(false);
     this.panelControl16.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(this.textEditGroupID.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.textEditGroupName.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.panelControl8)).EndInit();
     this.panelControl8.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.splitContainerControl1)).EndInit();
     this.splitContainerControl1.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.splitContainerControl2)).EndInit();
     this.splitContainerControl2.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.groupControlAuthorizeList)).EndInit();
     this.groupControlAuthorizeList.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.gridControlGroupPermission)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridViewGroup)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.panelControl2)).EndInit();
     this.panelControl2.ResumeLayout(false);
     this.ResumeLayout(false);
 }
Пример #59
0
 /// <summary>
 /// Required method for Designer support - do not modify
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     this.lblCashOpeningFloat = new System.Windows.Forms.Label();
     this.label1 = new System.Windows.Forms.Label();
     this.label2 = new System.Windows.Forms.Label();
     this.groupControl1 = new DevExpress.XtraEditors.GroupControl();
     this.strRemarks = new DevExpress.XtraEditors.MemoEdit();
     this.lblRemark = new System.Windows.Forms.Label();
     this.txtNumLockerBal = new DevExpress.XtraEditors.TextEdit();
     this.txtMineralWaterBalance = new DevExpress.XtraEditors.TextEdit();
     this.txtCashOpeningFLoat = new DevExpress.XtraEditors.TextEdit();
     this.Open = new DevExpress.XtraEditors.SimpleButton();
     this.Cancel = new DevExpress.XtraEditors.SimpleButton();
     ((System.ComponentModel.ISupportInitialize)(this.groupControl1)).BeginInit();
     this.groupControl1.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.strRemarks.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtNumLockerBal.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtMineralWaterBalance.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtCashOpeningFLoat.Properties)).BeginInit();
     this.SuspendLayout();
     //
     // lblCashOpeningFloat
     //
     this.lblCashOpeningFloat.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((System.Byte)(0)));
     this.lblCashOpeningFloat.Location = new System.Drawing.Point(16, 16);
     this.lblCashOpeningFloat.Name = "lblCashOpeningFloat";
     this.lblCashOpeningFloat.Size = new System.Drawing.Size(112, 23);
     this.lblCashOpeningFloat.TabIndex = 0;
     this.lblCashOpeningFloat.Text = "Cash Opening Point";
     //
     // label1
     //
     this.label1.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((System.Byte)(0)));
     this.label1.Location = new System.Drawing.Point(16, 48);
     this.label1.Name = "label1";
     this.label1.Size = new System.Drawing.Size(192, 16);
     this.label1.TabIndex = 1;
     this.label1.Text = "Mineral Water Balance";
     //
     // label2
     //
     this.label2.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((System.Byte)(0)));
     this.label2.Location = new System.Drawing.Point(16, 88);
     this.label2.Name = "label2";
     this.label2.Size = new System.Drawing.Size(216, 16);
     this.label2.TabIndex = 2;
     this.label2.Text = "Number of Lock Balance";
     //
     // groupControl1
     //
     this.groupControl1.Controls.Add(this.strRemarks);
     this.groupControl1.Controls.Add(this.lblRemark);
     this.groupControl1.Controls.Add(this.txtNumLockerBal);
     this.groupControl1.Controls.Add(this.txtMineralWaterBalance);
     this.groupControl1.Controls.Add(this.txtCashOpeningFLoat);
     this.groupControl1.Controls.Add(this.label1);
     this.groupControl1.Controls.Add(this.lblCashOpeningFloat);
     this.groupControl1.Controls.Add(this.label2);
     this.groupControl1.Controls.Add(this.Open);
     this.groupControl1.Controls.Add(this.Cancel);
     this.groupControl1.Dock = System.Windows.Forms.DockStyle.Fill;
     this.groupControl1.Location = new System.Drawing.Point(0, 0);
     this.groupControl1.LookAndFeel.Style = DevExpress.LookAndFeel.LookAndFeelStyle.Skin;
     this.groupControl1.LookAndFeel.UseDefaultLookAndFeel = false;
     this.groupControl1.Name = "groupControl1";
     this.groupControl1.ShowCaption = false;
     this.groupControl1.Size = new System.Drawing.Size(400, 237);
     this.groupControl1.TabIndex = 3;
     this.groupControl1.Text = "groupControl1";
     //
     // strRemarks
     //
     this.strRemarks.EditValue = "";
     this.strRemarks.Location = new System.Drawing.Point(176, 112);
     this.strRemarks.Name = "strRemarks";
     this.strRemarks.Size = new System.Drawing.Size(216, 80);
     this.strRemarks.TabIndex = 7;
     //
     // lblRemark
     //
     this.lblRemark.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((System.Byte)(0)));
     this.lblRemark.Location = new System.Drawing.Point(16, 120);
     this.lblRemark.Name = "lblRemark";
     this.lblRemark.Size = new System.Drawing.Size(152, 72);
     this.lblRemark.TabIndex = 6;
     this.lblRemark.Text = "Remarks";
     this.lblRemark.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
     //
     // txtNumLockerBal
     //
     this.txtNumLockerBal.EditValue = 0;
     this.txtNumLockerBal.Location = new System.Drawing.Point(176, 80);
     this.txtNumLockerBal.Name = "txtNumLockerBal";
     //
     // txtNumLockerBal.Properties
     //
     this.txtNumLockerBal.Properties.Mask.EditMask = "f0";
     this.txtNumLockerBal.Properties.Mask.MaskType = DevExpress.XtraEditors.Mask.MaskType.Numeric;
     this.txtNumLockerBal.Properties.ReadOnly = true;
     this.txtNumLockerBal.TabIndex = 5;
     //
     // txtMineralWaterBalance
     //
     this.txtMineralWaterBalance.EditValue = "0";
     this.txtMineralWaterBalance.Location = new System.Drawing.Point(176, 48);
     this.txtMineralWaterBalance.Name = "txtMineralWaterBalance";
     //
     // txtMineralWaterBalance.Properties
     //
     this.txtMineralWaterBalance.Properties.DisplayFormat.FormatType = DevExpress.Utils.FormatType.Numeric;
     this.txtMineralWaterBalance.Properties.EditFormat.FormatType = DevExpress.Utils.FormatType.Numeric;
     this.txtMineralWaterBalance.Properties.Mask.EditMask = "n0";
     this.txtMineralWaterBalance.Properties.Mask.MaskType = DevExpress.XtraEditors.Mask.MaskType.Numeric;
     this.txtMineralWaterBalance.Properties.ReadOnly = true;
     this.txtMineralWaterBalance.TabIndex = 4;
     //
     // txtCashOpeningFLoat
     //
     this.txtCashOpeningFLoat.EditValue = "0.00";
     this.txtCashOpeningFLoat.Location = new System.Drawing.Point(176, 16);
     this.txtCashOpeningFLoat.Name = "txtCashOpeningFLoat";
     //
     // txtCashOpeningFLoat.Properties
     //
     this.txtCashOpeningFLoat.Properties.DisplayFormat.FormatString = "f2";
     this.txtCashOpeningFLoat.Properties.DisplayFormat.FormatType = DevExpress.Utils.FormatType.Numeric;
     this.txtCashOpeningFLoat.Properties.EditFormat.FormatString = "f2";
     this.txtCashOpeningFLoat.Properties.EditFormat.FormatType = DevExpress.Utils.FormatType.Numeric;
     this.txtCashOpeningFLoat.Properties.Mask.BeepOnError = true;
     this.txtCashOpeningFLoat.Properties.Mask.EditMask = "[0-9]+\\.[0-9][0-9]";
     this.txtCashOpeningFLoat.Properties.Mask.MaskType = DevExpress.XtraEditors.Mask.MaskType.RegEx;
     this.txtCashOpeningFLoat.Properties.Mask.ShowPlaceHolders = false;
     this.txtCashOpeningFLoat.Properties.Mask.UseMaskAsDisplayFormat = true;
     this.txtCashOpeningFLoat.Properties.ReadOnly = true;
     this.txtCashOpeningFLoat.TabIndex = 3;
     //
     // Open
     //
     this.Open.Appearance.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold);
     this.Open.Appearance.Options.UseFont = true;
     this.Open.ButtonStyle = DevExpress.XtraEditors.Controls.BorderStyles.Simple;
     this.Open.Location = new System.Drawing.Point(240, 208);
     this.Open.Name = "Open";
     this.Open.Size = new System.Drawing.Size(72, 20);
     this.Open.TabIndex = 5;
     this.Open.Text = "Open";
     this.Open.Click += new System.EventHandler(this.Open_Click);
     //
     // Cancel
     //
     this.Cancel.Appearance.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold);
     this.Cancel.Appearance.Options.UseFont = true;
     this.Cancel.ButtonStyle = DevExpress.XtraEditors.Controls.BorderStyles.Simple;
     this.Cancel.Location = new System.Drawing.Point(320, 208);
     this.Cancel.Name = "Cancel";
     this.Cancel.Size = new System.Drawing.Size(72, 20);
     this.Cancel.TabIndex = 6;
     this.Cancel.Text = "Cancel";
     this.Cancel.Click += new System.EventHandler(this.Cancel_Click);
     //
     // frmOpenShift
     //
     this.AutoScaleBaseSize = new System.Drawing.Size(5, 13);
     this.ClientSize = new System.Drawing.Size(400, 237);
     this.Controls.Add(this.groupControl1);
     this.Name = "frmOpenShift";
     this.Text = "Open Shift .....";
     this.Load += new System.EventHandler(this.frmOpenShift_Load);
     ((System.ComponentModel.ISupportInitialize)(this.groupControl1)).EndInit();
     this.groupControl1.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.strRemarks.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtNumLockerBal.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtMineralWaterBalance.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtCashOpeningFLoat.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.groupControl1 = new DevExpress.XtraEditors.GroupControl();
     this.gridMonAn = new DevExpress.XtraGrid.GridControl();
     this.gridView_MonAn = new DevExpress.XtraGrid.Views.Grid.GridView();
     this.gridColumn3 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn4 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn5 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn6 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn8 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn1 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.groupLoaiMA = new DevExpress.XtraEditors.GroupControl();
     this.gridLoaiMonAn = new DevExpress.XtraGrid.GridControl();
     this.gridView_LoaiMonAn = new DevExpress.XtraGrid.Views.Grid.GridView();
     this.gridColumn_MaLoai = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn_TenLoai = new DevExpress.XtraGrid.Columns.GridColumn();
     this.btnXoaLoaiMA = new DevExpress.XtraEditors.SimpleButton();
     this.btnCapNhatLoaiMA = new DevExpress.XtraEditors.SimpleButton();
     this.btnThemLoaiMA = new DevExpress.XtraEditors.SimpleButton();
     this.btnXoaMonAn = new DevExpress.XtraEditors.SimpleButton();
     this.btnCapNhatMonAn = new DevExpress.XtraEditors.SimpleButton();
     this.btnThemMonAn = new DevExpress.XtraEditors.SimpleButton();
     this.btnInDSMA = new DevExpress.XtraEditors.SimpleButton();
     this.btnTim = new DevExpress.XtraEditors.SimpleButton();
     this.labelControl1 = new DevExpress.XtraEditors.LabelControl();
     this.cbbChiTietTK = new DevExpress.XtraEditors.ComboBoxEdit();
     this.btnRefresh = new DevExpress.XtraEditors.SimpleButton();
     ((System.ComponentModel.ISupportInitialize)(this.groupControl1)).BeginInit();
     this.groupControl1.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.gridMonAn)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridView_MonAn)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.groupLoaiMA)).BeginInit();
     this.groupLoaiMA.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.gridLoaiMonAn)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridView_LoaiMonAn)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.cbbChiTietTK.Properties)).BeginInit();
     this.SuspendLayout();
     //
     // groupControl1
     //
     this.groupControl1.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
                 | System.Windows.Forms.AnchorStyles.Left)
                 | System.Windows.Forms.AnchorStyles.Right)));
     this.groupControl1.Controls.Add(this.gridMonAn);
     this.groupControl1.Location = new System.Drawing.Point(334, 56);
     this.groupControl1.Name = "groupControl1";
     this.groupControl1.Size = new System.Drawing.Size(543, 380);
     this.groupControl1.TabIndex = 0;
     this.groupControl1.Text = "Danh Sách Món Ăn";
     //
     // gridMonAn
     //
     this.gridMonAn.Dock = System.Windows.Forms.DockStyle.Fill;
     this.gridMonAn.Location = new System.Drawing.Point(2, 22);
     this.gridMonAn.MainView = this.gridView_MonAn;
     this.gridMonAn.Name = "gridMonAn";
     this.gridMonAn.Size = new System.Drawing.Size(539, 356);
     this.gridMonAn.TabIndex = 0;
     this.gridMonAn.ViewCollection.AddRange(new DevExpress.XtraGrid.Views.Base.BaseView[] {
     this.gridView_MonAn});
     //
     // gridView_MonAn
     //
     this.gridView_MonAn.Columns.AddRange(new DevExpress.XtraGrid.Columns.GridColumn[] {
     this.gridColumn3,
     this.gridColumn4,
     this.gridColumn5,
     this.gridColumn6,
     this.gridColumn8,
     this.gridColumn1});
     this.gridView_MonAn.GridControl = this.gridMonAn;
     this.gridView_MonAn.GroupSummary.AddRange(new DevExpress.XtraGrid.GridSummaryItem[] {
     new DevExpress.XtraGrid.GridGroupSummaryItem(DevExpress.Data.SummaryItemType.None, "TenNhaHang", null, "")});
     this.gridView_MonAn.Name = "gridView_MonAn";
     this.gridView_MonAn.OptionsView.ShowGroupPanel = false;
     //
     // gridColumn3
     //
     this.gridColumn3.Caption = "Tên Món";
     this.gridColumn3.FieldName = "TenMon";
     this.gridColumn3.Name = "gridColumn3";
     this.gridColumn3.Visible = true;
     this.gridColumn3.VisibleIndex = 0;
     //
     // gridColumn4
     //
     this.gridColumn4.Caption = "Loại Món";
     this.gridColumn4.FieldName = "TenLoai";
     this.gridColumn4.Name = "gridColumn4";
     this.gridColumn4.Visible = true;
     this.gridColumn4.VisibleIndex = 1;
     //
     // gridColumn5
     //
     this.gridColumn5.Caption = "Giá";
     this.gridColumn5.FieldName = "Gia";
     this.gridColumn5.Name = "gridColumn5";
     this.gridColumn5.Visible = true;
     this.gridColumn5.VisibleIndex = 2;
     //
     // gridColumn6
     //
     this.gridColumn6.Caption = "Đơn Vị Tính";
     this.gridColumn6.FieldName = "DonViTinh";
     this.gridColumn6.Name = "gridColumn6";
     this.gridColumn6.Visible = true;
     this.gridColumn6.VisibleIndex = 3;
     //
     // gridColumn8
     //
     this.gridColumn8.Caption = "Tên Nhà Hàng";
     this.gridColumn8.FieldName = "TenNH";
     this.gridColumn8.Name = "gridColumn8";
     this.gridColumn8.Visible = true;
     this.gridColumn8.VisibleIndex = 4;
     //
     // gridColumn1
     //
     this.gridColumn1.Caption = "gridColumn1";
     this.gridColumn1.FieldName = "MaMon";
     this.gridColumn1.Name = "gridColumn1";
     //
     // groupLoaiMA
     //
     this.groupLoaiMA.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.groupLoaiMA.Controls.Add(this.gridLoaiMonAn);
     this.groupLoaiMA.Location = new System.Drawing.Point(3, 56);
     this.groupLoaiMA.Name = "groupLoaiMA";
     this.groupLoaiMA.Size = new System.Drawing.Size(325, 380);
     this.groupLoaiMA.TabIndex = 1;
     this.groupLoaiMA.Text = "Loại Món Ăn";
     //
     // gridLoaiMonAn
     //
     this.gridLoaiMonAn.Dock = System.Windows.Forms.DockStyle.Fill;
     this.gridLoaiMonAn.Location = new System.Drawing.Point(2, 22);
     this.gridLoaiMonAn.MainView = this.gridView_LoaiMonAn;
     this.gridLoaiMonAn.Name = "gridLoaiMonAn";
     this.gridLoaiMonAn.Size = new System.Drawing.Size(321, 356);
     this.gridLoaiMonAn.TabIndex = 0;
     this.gridLoaiMonAn.ViewCollection.AddRange(new DevExpress.XtraGrid.Views.Base.BaseView[] {
     this.gridView_LoaiMonAn});
     //
     // gridView_LoaiMonAn
     //
     this.gridView_LoaiMonAn.Columns.AddRange(new DevExpress.XtraGrid.Columns.GridColumn[] {
     this.gridColumn_MaLoai,
     this.gridColumn_TenLoai});
     this.gridView_LoaiMonAn.GridControl = this.gridLoaiMonAn;
     this.gridView_LoaiMonAn.Name = "gridView_LoaiMonAn";
     this.gridView_LoaiMonAn.OptionsView.ShowGroupPanel = false;
     //
     // gridColumn_MaLoai
     //
     this.gridColumn_MaLoai.Caption = "Mã Loại";
     this.gridColumn_MaLoai.FieldName = "MaLoai";
     this.gridColumn_MaLoai.Name = "gridColumn_MaLoai";
     this.gridColumn_MaLoai.OptionsColumn.ReadOnly = true;
     this.gridColumn_MaLoai.Visible = true;
     this.gridColumn_MaLoai.VisibleIndex = 0;
     //
     // gridColumn_TenLoai
     //
     this.gridColumn_TenLoai.Caption = "Tên Loại";
     this.gridColumn_TenLoai.FieldName = "TenLoai";
     this.gridColumn_TenLoai.Name = "gridColumn_TenLoai";
     this.gridColumn_TenLoai.Visible = true;
     this.gridColumn_TenLoai.VisibleIndex = 1;
     //
     // btnXoaLoaiMA
     //
     this.btnXoaLoaiMA.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
     this.btnXoaLoaiMA.Image = global::GUI.Properties.Resources.delete_16;
     this.btnXoaLoaiMA.Location = new System.Drawing.Point(233, 440);
     this.btnXoaLoaiMA.Name = "btnXoaLoaiMA";
     this.btnXoaLoaiMA.Size = new System.Drawing.Size(89, 26);
     this.btnXoaLoaiMA.TabIndex = 7;
     this.btnXoaLoaiMA.Text = "Xóa";
     this.btnXoaLoaiMA.Click += new System.EventHandler(this.btnXoaLoaiMA_Click);
     //
     // btnCapNhatLoaiMA
     //
     this.btnCapNhatLoaiMA.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
     this.btnCapNhatLoaiMA.Image = global::GUI.Properties.Resources.save_16;
     this.btnCapNhatLoaiMA.Location = new System.Drawing.Point(121, 440);
     this.btnCapNhatLoaiMA.Name = "btnCapNhatLoaiMA";
     this.btnCapNhatLoaiMA.Size = new System.Drawing.Size(89, 26);
     this.btnCapNhatLoaiMA.TabIndex = 6;
     this.btnCapNhatLoaiMA.Text = "Cập Nhật";
     this.btnCapNhatLoaiMA.Click += new System.EventHandler(this.btnCapNhatLoaiMA_Click);
     //
     // btnThemLoaiMA
     //
     this.btnThemLoaiMA.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
     this.btnThemLoaiMA.Image = global::GUI.Properties.Resources.add_16;
     this.btnThemLoaiMA.Location = new System.Drawing.Point(8, 440);
     this.btnThemLoaiMA.Name = "btnThemLoaiMA";
     this.btnThemLoaiMA.Size = new System.Drawing.Size(89, 26);
     this.btnThemLoaiMA.TabIndex = 5;
     this.btnThemLoaiMA.Text = "Thêm";
     this.btnThemLoaiMA.Click += new System.EventHandler(this.btnThemLoaiMA_Click);
     //
     // btnXoaMonAn
     //
     this.btnXoaMonAn.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
     this.btnXoaMonAn.Image = global::GUI.Properties.Resources.delete_16;
     this.btnXoaMonAn.Location = new System.Drawing.Point(702, 442);
     this.btnXoaMonAn.Name = "btnXoaMonAn";
     this.btnXoaMonAn.Size = new System.Drawing.Size(61, 26);
     this.btnXoaMonAn.TabIndex = 7;
     this.btnXoaMonAn.Text = "Xóa";
     this.btnXoaMonAn.Click += new System.EventHandler(this.btnXoaMonAn_Click);
     //
     // btnCapNhatMonAn
     //
     this.btnCapNhatMonAn.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
     this.btnCapNhatMonAn.Image = global::GUI.Properties.Resources.save_16;
     this.btnCapNhatMonAn.Location = new System.Drawing.Point(607, 442);
     this.btnCapNhatMonAn.Name = "btnCapNhatMonAn";
     this.btnCapNhatMonAn.Size = new System.Drawing.Size(89, 26);
     this.btnCapNhatMonAn.TabIndex = 6;
     this.btnCapNhatMonAn.Text = "Cập Nhật";
     this.btnCapNhatMonAn.Click += new System.EventHandler(this.btnCapNhatMonAn_Click);
     //
     // btnThemMonAn
     //
     this.btnThemMonAn.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
     this.btnThemMonAn.Image = global::GUI.Properties.Resources.add_16;
     this.btnThemMonAn.Location = new System.Drawing.Point(541, 442);
     this.btnThemMonAn.Name = "btnThemMonAn";
     this.btnThemMonAn.Size = new System.Drawing.Size(60, 26);
     this.btnThemMonAn.TabIndex = 5;
     this.btnThemMonAn.Text = "Thêm";
     this.btnThemMonAn.Click += new System.EventHandler(this.btnThemMonAn_Click);
     //
     // btnInDSMA
     //
     this.btnInDSMA.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
     this.btnInDSMA.Image = global::GUI.Properties.Resources.print_24;
     this.btnInDSMA.Location = new System.Drawing.Point(769, 442);
     this.btnInDSMA.Name = "btnInDSMA";
     this.btnInDSMA.Size = new System.Drawing.Size(106, 26);
     this.btnInDSMA.TabIndex = 7;
     this.btnInDSMA.Text = "In Danh Sách";
     //
     // btnTim
     //
     this.btnTim.Location = new System.Drawing.Point(769, 18);
     this.btnTim.Name = "btnTim";
     this.btnTim.Size = new System.Drawing.Size(75, 23);
     this.btnTim.TabIndex = 9;
     this.btnTim.Text = "Tìm";
     this.btnTim.Click += new System.EventHandler(this.btnTim_Click);
     //
     // labelControl1
     //
     this.labelControl1.Location = new System.Drawing.Point(530, 24);
     this.labelControl1.Name = "labelControl1";
     this.labelControl1.Size = new System.Drawing.Size(90, 13);
     this.labelControl1.TabIndex = 10;
     this.labelControl1.Text = "Tìm Kiếm Theo Loại";
     //
     // cbbChiTietTK
     //
     this.cbbChiTietTK.EditValue = "Chọn...";
     this.cbbChiTietTK.Location = new System.Drawing.Point(637, 21);
     this.cbbChiTietTK.Name = "cbbChiTietTK";
     this.cbbChiTietTK.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.cbbChiTietTK.Size = new System.Drawing.Size(100, 20);
     this.cbbChiTietTK.TabIndex = 11;
     //
     // btnRefresh
     //
     this.btnRefresh.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
     this.btnRefresh.Image = global::GUI.Properties.Resources.refresh16;
     this.btnRefresh.Location = new System.Drawing.Point(446, 442);
     this.btnRefresh.Name = "btnRefresh";
     this.btnRefresh.Size = new System.Drawing.Size(89, 26);
     this.btnRefresh.TabIndex = 13;
     this.btnRefresh.Text = "Refresh";
     this.btnRefresh.Click += new System.EventHandler(this.btnRefresh_Click);
     //
     // UCtrlQLThucDon
     //
     this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
     this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
     this.Controls.Add(this.btnRefresh);
     this.Controls.Add(this.cbbChiTietTK);
     this.Controls.Add(this.labelControl1);
     this.Controls.Add(this.btnTim);
     this.Controls.Add(this.btnThemMonAn);
     this.Controls.Add(this.btnThemLoaiMA);
     this.Controls.Add(this.btnCapNhatMonAn);
     this.Controls.Add(this.btnCapNhatLoaiMA);
     this.Controls.Add(this.btnInDSMA);
     this.Controls.Add(this.btnXoaLoaiMA);
     this.Controls.Add(this.btnXoaMonAn);
     this.Controls.Add(this.groupLoaiMA);
     this.Controls.Add(this.groupControl1);
     this.Name = "UCtrlQLThucDon";
     this.Size = new System.Drawing.Size(880, 480);
     this.Load += new System.EventHandler(this.UCtrl_QLNhaHang_QLThucDon_Load);
     ((System.ComponentModel.ISupportInitialize)(this.groupControl1)).EndInit();
     this.groupControl1.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.gridMonAn)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridView_MonAn)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.groupLoaiMA)).EndInit();
     this.groupLoaiMA.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.gridLoaiMonAn)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridView_LoaiMonAn)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.cbbChiTietTK.Properties)).EndInit();
     this.ResumeLayout(false);
     this.PerformLayout();
 }