Exemplo n.º 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);
 }
Exemplo n.º 2
0
Arquivo: Help.cs Projeto: whuacn/CJia
        /// <summary>
        /// 红色边框的form
        /// </summary>
        /// <param name="uc"></param>
        public static void NewRedBorderFrom(UserControl uc)
        {
            Form frm = new Form();

            frm.FormBorderStyle = FormBorderStyle.None;
            frm.StartPosition   = FormStartPosition.CenterScreen;
            frm.Size            = uc.Size;
            frm.MaximizeBox     = false;
            frm.MinimizeBox     = false;
            DevExpress.XtraEditors.PanelControl panel = new DevExpress.XtraEditors.PanelControl();
            panel.Appearance.BackColor              = System.Drawing.Color.Transparent;
            panel.Appearance.BorderColor            = System.Drawing.Color.FromArgb(((int)(((byte)(223)))), ((int)(((byte)(0)))), ((int)(((byte)(36)))));
            panel.Appearance.Options.UseBackColor   = true;
            panel.Appearance.Options.UseBorderColor = true;
            panel.BorderStyle       = DevExpress.XtraEditors.Controls.BorderStyles.Simple;
            panel.LookAndFeel.Style = DevExpress.LookAndFeel.LookAndFeelStyle.UltraFlat;
            panel.LookAndFeel.UseDefaultLookAndFeel = false;
            panel.Dock = DockStyle.Fill;
            panel.Controls.Add(uc);
            uc.Dock = DockStyle.Fill;
            frm.Controls.Add(panel);
            frm.ShowInTaskbar = false;
            frm.TopMost       = true;
            frm.ShowDialog();
            frm.Refresh();
        }
Exemplo n.º 3
0
Arquivo: Help.cs Projeto: whuacn/CJia
        /// <summary>
        /// 新建有边框颜色的窗体
        /// </summary>
        /// <param name="uc"></param>
        public static void NewBorderForm(UserControl uc)
        {
            Form frm = new Form();

            frm.FormBorderStyle = FormBorderStyle.None;
            frm.StartPosition   = FormStartPosition.CenterScreen;
            frm.Size            = uc.Size;
            frm.FormBorderStyle = FormBorderStyle.FixedDialog;
            frm.MaximizeBox     = false;
            frm.MinimizeBox     = false;
            frm.Size            = new System.Drawing.Size(uc.Width + 15, uc.Height + 30);
            frm.AutoSize        = true;
            DevExpress.XtraEditors.PanelControl panel = new DevExpress.XtraEditors.PanelControl();
            panel.Appearance.BackColor = System.Drawing.Color.Transparent;
            //panel.Appearance.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(223)))), ((int)(((byte)(0)))), ((int)(((byte)(36))))); // 边框颜色(红色)
            panel.Appearance.Options.UseBackColor   = true;
            panel.Appearance.Options.UseBorderColor = true;
            panel.BorderStyle       = DevExpress.XtraEditors.Controls.BorderStyles.Simple;
            panel.LookAndFeel.Style = DevExpress.LookAndFeel.LookAndFeelStyle.UltraFlat;
            panel.LookAndFeel.UseDefaultLookAndFeel = false;
            panel.Dock = DockStyle.Fill;
            panel.Controls.Add(uc);
            uc.Dock = DockStyle.Fill;
            frm.Controls.Add(panel);
            frm.ShowDialog();
        }
Exemplo n.º 4
0
        /// <summary>
        /// 等待窗体
        /// </summary>
        /// <param name="msg">提示信息</param>
        /// <param name="minProcess">最小值</param>
        /// <param name="maxProcess">最大值</param>
        public UCForWaitingForm(string msg, int minProcess, int maxProcess)
        {
            InitializeComponent();
            cJiaLoadingBar1.Properties.Minimum = minProcess;
            cJiaLoadingBar1.Properties.Maximum = maxProcess;
            cJiaLoadingBar1.Properties.Step    = 1;
            //cJiaLoadingBar1.PerformStep();
            cJiaLabel1.Text = msg;

            Form frm = new Form();

            frm.FormBorderStyle = FormBorderStyle.None;
            frm.StartPosition   = FormStartPosition.CenterScreen;
            frm.Size            = this.Size;
            frm.MaximizeBox     = false;
            frm.MinimizeBox     = false;
            DevExpress.XtraEditors.PanelControl panel = new DevExpress.XtraEditors.PanelControl();
            panel.Appearance.BackColor              = System.Drawing.Color.Transparent;
            panel.Appearance.BorderColor            = System.Drawing.Color.FromArgb(((int)(((byte)(223)))), ((int)(((byte)(0)))), ((int)(((byte)(36)))));
            panel.Appearance.Options.UseBackColor   = true;
            panel.Appearance.Options.UseBorderColor = true;
            panel.BorderStyle       = DevExpress.XtraEditors.Controls.BorderStyles.Simple;
            panel.LookAndFeel.Style = DevExpress.LookAndFeel.LookAndFeelStyle.UltraFlat;
            panel.LookAndFeel.UseDefaultLookAndFeel = false;
            panel.Dock = DockStyle.Fill;
            panel.Controls.Add(this);
            this.Dock = DockStyle.Fill;
            frm.Controls.Add(panel);
            frm.ShowInTaskbar = false;
            frm.TopMost       = true;
            frm.Show();
            frm.Refresh();
        }
Exemplo n.º 5
0
        public void TxtClear(Form frm, DevExpress.XtraEditors.PanelControl pnl)
        {
            foreach (Control item in frm.Controls)
            {
                if (item is DevExpress.XtraEditors.PanelControl)
                {
                    foreach (Control itemControl in pnl.Controls)
                    {
                        if (itemControl is DevExpress.XtraEditors.TextEdit)
                        {
                            itemControl.Text = "";
                        }
                        if (itemControl is TextBox)
                        {
                            itemControl.Text = "";
                        }
                    }


                    if (item is ComboBox)
                    {
                        item.Text = "";
                    }
                }
            }
        }
Exemplo n.º 6
0
        /// <summary>
        /// 增加分页容器
        /// </summary>
        /// <param name="p_ctl">需平均分布在容器内的控件</param>
        /// <param name="p_width">控件的宽度</param>
        /// <param name="p_height">控件的高度</param>
        /// <param name="p_left">顶边距</param>
        /// <param name="p_top">右边距</param>
        /// <returns>总页面数</returns>
        public int addControl(Control[] p_ctl, int p_width, int p_height, int p_top, int p_left)
        {
            List <DevExpress.XtraEditors.PanelControl> lstPan = new List <DevExpress.XtraEditors.PanelControl>();

            DevExpress.XtraEditors.PanelControl pan = new DevExpress.XtraEditors.PanelControl();
            int left = p_left, top = p_top;

            foreach (Control ctl in p_ctl)
            {
                ctl.Bounds = new Rectangle(left, top, p_width, p_height);
                pan.Controls.Add(ctl);
                left += p_width + p_width / 10;
                if ((left + p_width) > _width)
                {
                    left = p_left;
                    top += p_height + p_height / 10;

                    if ((top + p_height) > _height)
                    {
                        lstPan.Add(pan);
                        pan = new DevExpress.XtraEditors.PanelControl();
                        top = p_top;
                    }
                }
            }
            if (pan.Controls.Count > 0)
            {
                lstPan.Add(pan);
            }
            addControl(lstPan.ToArray());
            return(lstPan.Count());
        }
Exemplo n.º 7
0
        private void fnPanelInCode(DevExpress.XtraEditors.PanelControl panelControl)
        {
            try
            {
                //사용하는 영업장에 따른 탭 선택
                string    Filter = "HEAD = 'J0003' AND DETAIL <> ' ' AND USE_YN = 'Y' AND (ITEM4 <> 'Y' OR ISNULL(ITEM4, 'N') = 'N')";
                DataRow[] r      = BizCommon.Parm.mDataTable.dtZx010ms.Select(Filter, "");

                foreach (DevExpress.XtraEditors.GroupControl groupControl in panelControl.Controls)
                {
                    if (groupControl.Tag != null)
                    {
                        foreach (DataRow rTmp in r)
                        {
                            string detailName = rTmp["DETAIL_NAME"].ToString();

                            if (groupControl.Tag.ToString() == detailName)
                            {
                                groupControl.Visible = false;
                            }
                        }
                    }
                }
            }
            catch (Exception ex)
            {
                throw;
            }
        }
Exemplo n.º 8
0
 /// <summary>
 /// Required method for Designer support - do not modify
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     this.pnlCtrlTop    = new DevExpress.XtraEditors.PanelControl();
     this.pnlCtrlCenter = new DevExpress.XtraEditors.PanelControl();
     this.pnlCtrlBottom = new DevExpress.XtraEditors.PanelControl();
     ((System.ComponentModel.ISupportInitialize)(this.pnlCtrlTop)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.pnlCtrlCenter)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.pnlCtrlBottom)).BeginInit();
     this.SuspendLayout();
     //
     // pnlCtrlTop
     //
     this.pnlCtrlTop.BorderStyle = DevExpress.XtraEditors.Controls.BorderStyles.NoBorder;
     this.pnlCtrlTop.Dock        = System.Windows.Forms.DockStyle.Top;
     this.pnlCtrlTop.Location    = new System.Drawing.Point(0, 0);
     this.pnlCtrlTop.Name        = "pnlCtrlTop";
     this.pnlCtrlTop.Size        = new System.Drawing.Size(550, 46);
     this.pnlCtrlTop.TabIndex    = 0;
     this.pnlCtrlTop.Text        = "panelControl1";
     //
     // pnlCtrlCenter
     //
     this.pnlCtrlCenter.BorderStyle = DevExpress.XtraEditors.Controls.BorderStyles.NoBorder;
     this.pnlCtrlCenter.Dock        = System.Windows.Forms.DockStyle.Fill;
     this.pnlCtrlCenter.Location    = new System.Drawing.Point(0, 46);
     this.pnlCtrlCenter.Name        = "pnlCtrlCenter";
     this.pnlCtrlCenter.Size        = new System.Drawing.Size(550, 152);
     this.pnlCtrlCenter.TabIndex    = 1;
     this.pnlCtrlCenter.Text        = "panelControl2";
     //
     // pnlCtrlBottom
     //
     this.pnlCtrlBottom.BorderStyle = DevExpress.XtraEditors.Controls.BorderStyles.NoBorder;
     this.pnlCtrlBottom.Dock        = System.Windows.Forms.DockStyle.Bottom;
     this.pnlCtrlBottom.Location    = new System.Drawing.Point(0, 198);
     this.pnlCtrlBottom.Name        = "pnlCtrlBottom";
     this.pnlCtrlBottom.Size        = new System.Drawing.Size(550, 58);
     this.pnlCtrlBottom.TabIndex    = 2;
     this.pnlCtrlBottom.Text        = "panelControl3";
     //
     // FormNew_EditLocker
     //
     this.AutoScaleBaseSize = new System.Drawing.Size(5, 13);
     this.ClientSize        = new System.Drawing.Size(550, 256);
     this.Controls.Add(this.pnlCtrlCenter);
     this.Controls.Add(this.pnlCtrlTop);
     this.Controls.Add(this.pnlCtrlBottom);
     this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedDialog;
     this.MaximizeBox     = false;
     this.MinimizeBox     = false;
     this.Name            = "FormNew_EditLocker";
     this.ShowInTaskbar   = false;
     this.StartPosition   = System.Windows.Forms.FormStartPosition.CenterScreen;
     this.Text            = "FormNew_EditLocker";
     ((System.ComponentModel.ISupportInitialize)(this.pnlCtrlTop)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.pnlCtrlCenter)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.pnlCtrlBottom)).EndInit();
     this.ResumeLayout(false);
 }
Exemplo n.º 9
0
 /// <summary>
 /// Required method for Designer support - do not modify
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     this.pnlCtrlTop = new DevExpress.XtraEditors.PanelControl();
     this.pnlCtrlCenter = new DevExpress.XtraEditors.PanelControl();
     this.pnlCtrlBottom = new DevExpress.XtraEditors.PanelControl();
     ((System.ComponentModel.ISupportInitialize)(this.pnlCtrlTop)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.pnlCtrlCenter)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.pnlCtrlBottom)).BeginInit();
     this.SuspendLayout();
     //
     // pnlCtrlTop
     //
     this.pnlCtrlTop.BorderStyle = DevExpress.XtraEditors.Controls.BorderStyles.NoBorder;
     this.pnlCtrlTop.Dock = System.Windows.Forms.DockStyle.Top;
     this.pnlCtrlTop.Location = new System.Drawing.Point(0, 0);
     this.pnlCtrlTop.Name = "pnlCtrlTop";
     this.pnlCtrlTop.Size = new System.Drawing.Size(550, 46);
     this.pnlCtrlTop.TabIndex = 0;
     this.pnlCtrlTop.Text = "panelControl1";
     //
     // pnlCtrlCenter
     //
     this.pnlCtrlCenter.BorderStyle = DevExpress.XtraEditors.Controls.BorderStyles.NoBorder;
     this.pnlCtrlCenter.Dock = System.Windows.Forms.DockStyle.Fill;
     this.pnlCtrlCenter.Location = new System.Drawing.Point(0, 46);
     this.pnlCtrlCenter.Name = "pnlCtrlCenter";
     this.pnlCtrlCenter.Size = new System.Drawing.Size(550, 152);
     this.pnlCtrlCenter.TabIndex = 1;
     this.pnlCtrlCenter.Text = "panelControl2";
     //
     // pnlCtrlBottom
     //
     this.pnlCtrlBottom.BorderStyle = DevExpress.XtraEditors.Controls.BorderStyles.NoBorder;
     this.pnlCtrlBottom.Dock = System.Windows.Forms.DockStyle.Bottom;
     this.pnlCtrlBottom.Location = new System.Drawing.Point(0, 198);
     this.pnlCtrlBottom.Name = "pnlCtrlBottom";
     this.pnlCtrlBottom.Size = new System.Drawing.Size(550, 58);
     this.pnlCtrlBottom.TabIndex = 2;
     this.pnlCtrlBottom.Text = "panelControl3";
     //
     // FormNew_EditLocker
     //
     this.AutoScaleBaseSize = new System.Drawing.Size(5, 13);
     this.ClientSize = new System.Drawing.Size(550, 256);
     this.Controls.Add(this.pnlCtrlCenter);
     this.Controls.Add(this.pnlCtrlTop);
     this.Controls.Add(this.pnlCtrlBottom);
     this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedDialog;
     this.MaximizeBox = false;
     this.MinimizeBox = false;
     this.Name = "FormNew_EditLocker";
     this.ShowInTaskbar = false;
     this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen;
     this.Text = "FormNew_EditLocker";
     ((System.ComponentModel.ISupportInitialize)(this.pnlCtrlTop)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.pnlCtrlCenter)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.pnlCtrlBottom)).EndInit();
     this.ResumeLayout(false);
 }
Exemplo n.º 10
0
        private void EditVendor()
        {
            if (BsfGlobal.FindPermission("Vendor-Master-Edit") == false)
            {
                MessageBox.Show("No Rights to Vendor-Master-Edit");
                return;
            }

            if (VendorView.FocusedRowHandle < 0)
            {
                return;
            }
            int iVendorId = Convert.ToInt32(VendorView.GetRowCellValue(VendorView.FocusedRowHandle, "VendorId").ToString());

            VendorName = VendorView.GetFocusedRowCellValue("VendorName").ToString();
            int i = VendorView.RowCount - 1;

            if (BsfGlobal.g_bWorkFlow == true)
            {
                //try { this.Parent.Controls.Owner.Hide(); }
                //catch { }
                m_oGridMasterView = VendorView;
                m_oGridMasterView.FocusedRowHandle = VendorView.FocusedRowHandle;
                iRowId = VendorView.FocusedRowHandle;
                BsfGlobal.g_bWorkFlow = true;
                frmMain frm = new frmMain();
                frm.m_lVendorId   = iVendorId;
                frm.m_sVendorName = VendorName;
                m_oDW             = (Telerik.WinControls.UI.Docking.DocumentWindow)BsfGlobal.g_oDock.ActiveWindow;
                m_oDW.Hide();
                DevExpress.XtraEditors.PanelControl oPanel = new DevExpress.XtraEditors.PanelControl();
                oPanel = BsfGlobal.GetPanel(frm, "Vendor Details");
                if (oPanel != null)
                {
                    oPanel.Controls.Clear();
                    frm.TopLevel        = false;
                    frm.FormBorderStyle = FormBorderStyle.None;
                    frm.Dock            = DockStyle.Fill;
                    oPanel.Controls.Add(frm);
                    frm.Execute();

                    oPanel.Visible = true;
                    Cursor.Current = Cursors.Default;
                }
            }
            else
            {
                Cursor.Current = Cursors.WaitCursor;
                frmMain frm = new frmMain();
                frm.m_lVendorId   = iVendorId;
                frm.m_sVendorName = VendorName;
                frm.Execute();
                Cursor.Current = Cursors.Default;
            }
            m_bAdd   = true;
            m_iRowId = VendorView.FocusedRowHandle;
        }
Exemplo n.º 11
0
 public static void ClearDataPanel(DevExpress.XtraEditors.PanelControl ClearPanel)
 {
     foreach (Control a in ClearPanel.Controls)
     {
         if (a.GetType().ToString() == "DevExpress.XtraEditors.TextEdit" || a.GetType().ToString() == "DevExpress.XtraEditors.MemoEdit")
         {
             a.Text = "";
         }
     }
 }
        /// <summary> 
        /// Required method for Designer support - do not modify 
        /// the contents of this method with the code editor.
        /// </summary>
        private void InitializeComponent()
        {
            this.dateNavigator1 = new DevExpress.XtraScheduler.DateNavigator();
            this.treeListColumn1 = new DevExpress.XtraTreeList.Columns.TreeListColumn();
            this.panelControl1 = new DevExpress.XtraEditors.PanelControl();
            ((System.ComponentModel.ISupportInitialize)(this.dateNavigator1)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.panelControl1)).BeginInit();
            this.SuspendLayout();
            //
            // dateNavigator1
            //
            this.dateNavigator1.BorderStyle = DevExpress.XtraEditors.Controls.BorderStyles.NoBorder;

            this.dateNavigator1.DateTime = DateTime.Now;
            this.dateNavigator1.HotDate = null;
            this.dateNavigator1.Location = new System.Drawing.Point(0, 0);
            this.dateNavigator1.Name = "dateNavigator1";
            this.dateNavigator1.ShowWeekNumbers = false;
            this.dateNavigator1.Size = new System.Drawing.Size(167, 170);
            this.dateNavigator1.TabIndex = 1;
            //
            // treeListColumn1
            //
            this.treeListColumn1.FieldName = "Name";
            this.treeListColumn1.MinWidth = 68;
            this.treeListColumn1.Name = "treeListColumn1";
            this.treeListColumn1.OptionsColumn.AllowFocus = false;
            this.treeListColumn1.Visible = true;
            this.treeListColumn1.VisibleIndex = 0;
            //
            // panelControl1
            //
            this.panelControl1.BorderStyle = DevExpress.XtraEditors.Controls.BorderStyles.NoBorder;
            this.panelControl1.Dock = System.Windows.Forms.DockStyle.Top;
            this.panelControl1.Location = new System.Drawing.Point(0, 1);
            this.panelControl1.Name = "panelControl1";
            this.panelControl1.Size = new System.Drawing.Size(166, 1);
            this.panelControl1.TabIndex = 9;
            //
            // NavigateCalendar
            //
            this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
            this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
            this.Controls.Add(this.dateNavigator1);
            this.Controls.Add(this.panelControl1);
            this.Name = "NavigateCalendar";
            this.Padding = new System.Windows.Forms.Padding(0, 1, 1, 1);
            this.Size = new System.Drawing.Size(167, 171);
            ((System.ComponentModel.ISupportInitialize)(this.dateNavigator1)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.panelControl1)).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.panelControl1 = new DevExpress.XtraEditors.PanelControl();
     this.btnDongY = new System.Windows.Forms.Button();
     this.flowLayoutPanel1 = new System.Windows.Forms.FlowLayoutPanel();
     ((System.ComponentModel.ISupportInitialize)(this.panelControl1)).BeginInit();
     this.panelControl1.SuspendLayout();
     this.SuspendLayout();
     //
     // panelControl1
     //
     this.panelControl1.Controls.Add(this.btnDongY);
     this.panelControl1.Dock = System.Windows.Forms.DockStyle.Bottom;
     this.panelControl1.Location = new System.Drawing.Point(0, 415);
     this.panelControl1.Name = "panelControl1";
     this.panelControl1.Size = new System.Drawing.Size(634, 61);
     this.panelControl1.TabIndex = 0;
     //
     // btnDongY
     //
     this.btnDongY.Location = new System.Drawing.Point(493, 8);
     this.btnDongY.Name = "btnDongY";
     this.btnDongY.Size = new System.Drawing.Size(129, 41);
     this.btnDongY.TabIndex = 0;
     this.btnDongY.Text = "Đồng ý";
     this.btnDongY.UseVisualStyleBackColor = true;
     this.btnDongY.Click += new System.EventHandler(this.btnDongY_Click);
     //
     // flowLayoutPanel1
     //
     this.flowLayoutPanel1.AutoScroll = true;
     this.flowLayoutPanel1.Dock = System.Windows.Forms.DockStyle.Fill;
     this.flowLayoutPanel1.Location = new System.Drawing.Point(0, 0);
     this.flowLayoutPanel1.Name = "flowLayoutPanel1";
     this.flowLayoutPanel1.Size = new System.Drawing.Size(634, 415);
     this.flowLayoutPanel1.TabIndex = 1;
     //
     // frmChuyenTB
     //
     this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
     this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
     this.ClientSize = new System.Drawing.Size(634, 476);
     this.Controls.Add(this.flowLayoutPanel1);
     this.Controls.Add(this.panelControl1);
     this.Name = "frmChuyenTB";
     this.Text = "frmChuyenTB";
     this.Load += new System.EventHandler(this.frmChuyenTB_Load);
     ((System.ComponentModel.ISupportInitialize)(this.panelControl1)).EndInit();
     this.panelControl1.ResumeLayout(false);
     this.ResumeLayout(false);
 }
Exemplo n.º 14
0
        /// <summary>
        ///
        /// </summary>
        /// <param name="panelEnum"></param>
        /// <returns></returns>
        public DevExpress.XtraEditors.PanelControl Get_Panel(PanelEnum panelEnum)
        {
            DevExpress.XtraEditors.PanelControl panel = null;
            switch (panelEnum)
            {
            case PanelEnum.FootherPanel:
                panel = this.panelControl_FootherPanel;
                break;

            case PanelEnum.LeftPanel_1:
                panel = this.panelControl_LeftPanel_1;
                break;

            case PanelEnum.RightPanel:
                panel = this.panelControl_RightPanel;
                break;
            }
            return(panel);
        }
Exemplo n.º 15
0
        void ViewController2_HandleCreated(object sender, EventArgs e)
        {
            // Вставка Layout
            frame = Frame;
            //DetailView dv = View as DetailView;

            //DevExpress.XtraEditors.PanelControl filterPanel = new DevExpress.XtraEditors.PanelControl();
            filterPanel             = new DevExpress.XtraEditors.PanelControl();
            filterPanel.Height      = 80;
            filterPanel.MinimumSize = new System.Drawing.Size(0, 0);
            filterPanel.Dock        = System.Windows.Forms.DockStyle.Top;
            filterPanel.AutoSize    = false;
            //filterPanel.GetPreferredSize(
            filterPanel.AutoSizeMode = AutoSizeMode.GrowAndShrink;

            splitter          = new DevExpress.XtraEditors.SplitterControl();
            splitter.Height   = 50;
            splitter.Dock     = System.Windows.Forms.DockStyle.Top;
            splitter.AutoSize = false;

            //DevExpress.XtraEditors.PanelControl dataPanel = new DevExpress.XtraEditors.PanelControl();
            dataPanel              = new DevExpress.XtraEditors.PanelControl();
            dataPanel.Height       = 50;
            dataPanel.MinimumSize  = new System.Drawing.Size(0, 0);
            dataPanel.Dock         = System.Windows.Forms.DockStyle.Fill;
            dataPanel.AutoSize     = false;
            dataPanel.AutoSizeMode = AutoSizeMode.GrowAndShrink;

            if (((System.Windows.Forms.Control)sender).Parent == null)
            {
                return;
            }
            ((System.Windows.Forms.Control)sender).Parent.Controls.Add(dataPanel);
            ((System.Windows.Forms.Control)sender).Parent.Controls.Add(splitter);
            ((System.Windows.Forms.Control)sender).Parent.Controls.Add(filterPanel);


            // Находим контрол, показывающий ListView
            System.Windows.Forms.Control ctrl = ((System.Windows.Forms.Control)sender).Parent.Controls[0];
            ctrl.Parent = dataPanel;
            FilterPanelHide();
        }
        private void InitializeComponent()
        {
            this.panelControl1 = new DevExpress.XtraEditors.PanelControl();
            this.memoEdit1     = new DevExpress.XtraEditors.MemoEdit();
            ((System.ComponentModel.ISupportInitialize)(this.panelControl1)).BeginInit();
            this.panelControl1.SuspendLayout();
            ((System.ComponentModel.ISupportInitialize)(this.memoEdit1.Properties)).BeginInit();
            this.SuspendLayout();
            //
            // panelControl1
            //
            this.panelControl1.Controls.Add(this.memoEdit1);
            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(300, 100);
            this.panelControl1.TabIndex = 1;
            //
            // memoEdit1
            //
            this.memoEdit1.Dock     = System.Windows.Forms.DockStyle.Fill;
            this.memoEdit1.Location = new System.Drawing.Point(2, 2);
            this.memoEdit1.Name     = "memoEdit1";
            this.memoEdit1.Size     = new System.Drawing.Size(296, 96);
            this.memoEdit1.TabIndex = 0;
            this.memoEdit1.ReadOnly = true;
            //
            // MessageBoardControl01
            //
            this.Controls.Add(this.panelControl1);
            this.Font = new System.Drawing.Font("宋体", 14.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
            this.Name = "StateTipControl";
            this.Size = new System.Drawing.Size(300, 100);

            ((System.ComponentModel.ISupportInitialize)(this.panelControl1)).EndInit();
            this.panelControl1.ResumeLayout(false);
            ((System.ComponentModel.ISupportInitialize)(this.memoEdit1.Properties)).EndInit();
            this.ResumeLayout(false);
        }
Exemplo n.º 17
0
 /// <summary>
 /// 单独线程初始化第一次加载速度慢的窗体
 /// </summary>
 private void ThreadInitializeForm()
 {
     try
     {
         using (FrmRight_UserMenuButton userForm = new FrmRight_UserMenuButton())
         {
             userForm.FormBorderStyle = FormBorderStyle.None;
             userForm.TopLevel        = false;
             userForm.Dock            = DockStyle.Fill;
             DevExpress.XtraEditors.PanelControl pnl = new DevExpress.XtraEditors.PanelControl();
             pnl.Visible = false;
             pnl.Controls.Add(userForm);
             userForm.Show();
             userForm.FrmRight_UserMenuButton_Load(null, null);
             userForm.Dispose();
             pnl.Dispose();
         }
     }
     catch (Exception ex)
     {
         ExceptionHandler.HandleException_NoMessage("线程初始化窗体错误。", ex);
     }
 }
 /// <summary>
 /// Required method for Designer support - do not modify
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     this.components = new System.ComponentModel.Container();
     this.xpCollection1 = new DevExpress.Xpo.XPCollection();
     this.tmrReload = new System.Windows.Forms.Timer(this.components);
     this.popupMenu1 = new DevExpress.XtraBars.PopupMenu(this.components);
     this.ribbon = new DevExpress.XtraBars.Ribbon.RibbonControl();
     this.bbtnClose = new DevExpress.XtraBars.BarButtonItem();
     this.bbtnNewCard = new DevExpress.XtraBars.BarButtonItem();
     this.bbtnDeleteCard = new DevExpress.XtraBars.BarButtonItem();
     this.rpGeneral = new DevExpress.XtraBars.Ribbon.RibbonPage();
     this.ribbonPageGroup1 = new DevExpress.XtraBars.Ribbon.RibbonPageGroup();
     this.gridControl1 = new DevExpress.XtraGrid.GridControl();
     this.gridView1 = new DevExpress.XtraGrid.Views.Grid.GridView();
     this.colOid = new DevExpress.XtraGrid.Columns.GridColumn();
     this.colCardModel = new DevExpress.XtraGrid.Columns.GridColumn();
     this.colCardRevision = new DevExpress.XtraGrid.Columns.GridColumn();
     this.colCardSerialNumber = new DevExpress.XtraGrid.Columns.GridColumn();
     this.colCardName = new DevExpress.XtraGrid.Columns.GridColumn();
     this.colCardDescription = new DevExpress.XtraGrid.Columns.GridColumn();
     this.clientPanel = new DevExpress.XtraEditors.PanelControl();
     ((System.ComponentModel.ISupportInitialize)(this.xpCollection1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.popupMenu1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.ribbon)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridControl1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridView1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.clientPanel)).BeginInit();
     this.clientPanel.SuspendLayout();
     this.SuspendLayout();
     //
     // xpCollection1
     //
     this.xpCollection1.BindingBehavior = DevExpress.Xpo.CollectionBindingBehavior.AllowRemove;
     this.xpCollection1.ObjectType = typeof(SSTCP.Database.Cards);
     //
     // tmrReload
     //
     this.tmrReload.Enabled = true;
     this.tmrReload.Interval = 500;
     this.tmrReload.Tick += new System.EventHandler(this.tmrReload_Tick);
     //
     // popupMenu1
     //
     this.popupMenu1.ItemLinks.Add(this.bbtnDeleteCard);
     this.popupMenu1.Name = "popupMenu1";
     this.popupMenu1.Ribbon = this.ribbon;
     //
     // ribbon
     //
     this.ribbon.ApplicationButtonText = null;
     this.ribbon.Items.AddRange(new DevExpress.XtraBars.BarItem[] {
     this.bbtnClose,
     this.bbtnNewCard,
     this.bbtnDeleteCard});
     this.ribbon.Location = new System.Drawing.Point(0, 0);
     this.ribbon.MaxItemId = 4;
     this.ribbon.Name = "ribbon";
     this.ribbon.Pages.AddRange(new DevExpress.XtraBars.Ribbon.RibbonPage[] {
     this.rpGeneral});
     this.ribbon.SelectedPage = this.rpGeneral;
     this.ribbon.Size = new System.Drawing.Size(793, 143);
     //
     // bbtnClose
     //
     this.bbtnClose.Caption = "Close";
     this.bbtnClose.Id = 1;
     this.bbtnClose.Name = "bbtnClose";
     this.bbtnClose.ItemClick += new DevExpress.XtraBars.ItemClickEventHandler(this.bbtnClose_ItemClick);
     //
     // bbtnNewCard
     //
     this.bbtnNewCard.Caption = "New Card";
     this.bbtnNewCard.Id = 2;
     this.bbtnNewCard.Name = "bbtnNewCard";
     this.bbtnNewCard.ItemClick += new DevExpress.XtraBars.ItemClickEventHandler(this.bbtnNewCard_ItemClick);
     //
     // bbtnDeleteCard
     //
     this.bbtnDeleteCard.Caption = "Delete Card";
     this.bbtnDeleteCard.Id = 3;
     this.bbtnDeleteCard.Name = "bbtnDeleteCard";
     //
     // rpGeneral
     //
     this.rpGeneral.Groups.AddRange(new DevExpress.XtraBars.Ribbon.RibbonPageGroup[] {
     this.ribbonPageGroup1});
     this.rpGeneral.Name = "rpGeneral";
     this.rpGeneral.Text = "General";
     //
     // ribbonPageGroup1
     //
     this.ribbonPageGroup1.ItemLinks.Add(this.bbtnClose);
     this.ribbonPageGroup1.ItemLinks.Add(this.bbtnNewCard);
     this.ribbonPageGroup1.Name = "ribbonPageGroup1";
     this.ribbonPageGroup1.ShowCaptionButton = false;
     this.ribbonPageGroup1.Text = "File";
     //
     // gridControl1
     //
     this.gridControl1.DataSource = this.xpCollection1;
     this.gridControl1.Dock = System.Windows.Forms.DockStyle.Fill;
     this.gridControl1.Location = new System.Drawing.Point(0, 0);
     this.gridControl1.MainView = this.gridView1;
     this.gridControl1.MenuManager = this.ribbon;
     this.gridControl1.Name = "gridControl1";
     this.gridControl1.Size = new System.Drawing.Size(793, 380);
     this.gridControl1.TabIndex = 0;
     this.gridControl1.ViewCollection.AddRange(new DevExpress.XtraGrid.Views.Base.BaseView[] {
     this.gridView1});
     //
     // gridView1
     //
     this.gridView1.Columns.AddRange(new DevExpress.XtraGrid.Columns.GridColumn[] {
     this.colOid,
     this.colCardModel,
     this.colCardRevision,
     this.colCardSerialNumber,
     this.colCardName,
     this.colCardDescription});
     this.gridView1.FocusRectStyle = DevExpress.XtraGrid.Views.Grid.DrawFocusRectStyle.None;
     this.gridView1.GridControl = this.gridControl1;
     this.gridView1.Name = "gridView1";
     this.gridView1.OptionsBehavior.AllowAddRows = DevExpress.Utils.DefaultBoolean.False;
     this.gridView1.OptionsBehavior.AllowDeleteRows = DevExpress.Utils.DefaultBoolean.False;
     this.gridView1.OptionsBehavior.Editable = false;
     this.gridView1.OptionsBehavior.ReadOnly = true;
     this.gridView1.OptionsCustomization.AllowColumnMoving = false;
     this.gridView1.OptionsCustomization.AllowColumnResizing = false;
     this.gridView1.OptionsCustomization.AllowFilter = false;
     this.gridView1.OptionsCustomization.AllowGroup = false;
     this.gridView1.OptionsCustomization.AllowQuickHideColumns = false;
     this.gridView1.OptionsSelection.EnableAppearanceFocusedCell = false;
     this.gridView1.OptionsView.EnableAppearanceEvenRow = true;
     this.gridView1.OptionsView.EnableAppearanceOddRow = true;
     this.gridView1.OptionsView.RowAutoHeight = true;
     this.gridView1.OptionsView.ShowGroupExpandCollapseButtons = false;
     this.gridView1.OptionsView.ShowGroupPanel = false;
     this.gridView1.OptionsView.ShowIndicator = false;
     this.gridView1.SortInfo.AddRange(new DevExpress.XtraGrid.Columns.GridColumnSortInfo[] {
     new DevExpress.XtraGrid.Columns.GridColumnSortInfo(this.colCardModel, DevExpress.Data.ColumnSortOrder.Ascending)});
     this.gridView1.ShowGridMenu += new DevExpress.XtraGrid.Views.Grid.GridMenuEventHandler(this.gridView1_ShowGridMenu);
     //
     // colOid
     //
     this.colOid.FieldName = "Oid";
     this.colOid.Name = "colOid";
     //
     // colCardModel
     //
     this.colCardModel.FieldName = "CardModel";
     this.colCardModel.Name = "colCardModel";
     this.colCardModel.SortMode = DevExpress.XtraGrid.ColumnSortMode.DisplayText;
     this.colCardModel.Visible = true;
     this.colCardModel.VisibleIndex = 0;
     //
     // colCardRevision
     //
     this.colCardRevision.FieldName = "CardRevision";
     this.colCardRevision.Name = "colCardRevision";
     this.colCardRevision.Visible = true;
     this.colCardRevision.VisibleIndex = 1;
     //
     // colCardSerialNumber
     //
     this.colCardSerialNumber.FieldName = "CardSerialNumber";
     this.colCardSerialNumber.Name = "colCardSerialNumber";
     this.colCardSerialNumber.Visible = true;
     this.colCardSerialNumber.VisibleIndex = 2;
     //
     // colCardName
     //
     this.colCardName.FieldName = "CardName";
     this.colCardName.Name = "colCardName";
     this.colCardName.Visible = true;
     this.colCardName.VisibleIndex = 3;
     //
     // colCardDescription
     //
     this.colCardDescription.FieldName = "CardDescription";
     this.colCardDescription.Name = "colCardDescription";
     this.colCardDescription.Visible = true;
     this.colCardDescription.VisibleIndex = 4;
     //
     // clientPanel
     //
     this.clientPanel.BorderStyle = DevExpress.XtraEditors.Controls.BorderStyles.NoBorder;
     this.clientPanel.Controls.Add(this.gridControl1);
     this.clientPanel.Dock = System.Windows.Forms.DockStyle.Fill;
     this.clientPanel.Location = new System.Drawing.Point(0, 143);
     this.clientPanel.Name = "clientPanel";
     this.clientPanel.Size = new System.Drawing.Size(793, 380);
     this.clientPanel.TabIndex = 2;
     //
     // frmCards
     //
     this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
     this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
     this.ClientSize = new System.Drawing.Size(793, 523);
     this.Controls.Add(this.clientPanel);
     this.Controls.Add(this.ribbon);
     this.Name = "frmCards";
     this.Ribbon = this.ribbon;
     this.Text = "Card Manager";
     this.Load += new System.EventHandler(this.frmCards_Load);
     ((System.ComponentModel.ISupportInitialize)(this.xpCollection1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.popupMenu1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.ribbon)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridControl1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridView1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.clientPanel)).EndInit();
     this.clientPanel.ResumeLayout(false);
     this.ResumeLayout(false);
 }
Exemplo n.º 19
0
 /// <summary>
 /// 设计器支持所需的方法 - 不要使用代码编辑器修改
 /// 此方法的内容。
 /// </summary>
 private void InitializeComponent()
 {
     this.navBarControl1   = new DevExpress.XtraNavBar.NavBarControl();
     this.navBarGroup1     = new DevExpress.XtraNavBar.NavBarGroup();
     this.navBarItem1      = new DevExpress.XtraNavBar.NavBarItem();
     this.navBarItem2      = new DevExpress.XtraNavBar.NavBarItem();
     this.splitterControl1 = new DevExpress.XtraEditors.SplitterControl();
     this.panelControl1    = new DevExpress.XtraEditors.PanelControl();
     ((System.ComponentModel.ISupportInitialize)(this.navBarControl1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.panelControl1)).BeginInit();
     this.SuspendLayout();
     //
     // navBarControl1
     //
     this.navBarControl1.ActiveGroup = this.navBarGroup1;
     this.navBarControl1.Dock        = System.Windows.Forms.DockStyle.Left;
     this.navBarControl1.Groups.AddRange(new DevExpress.XtraNavBar.NavBarGroup[] {
         this.navBarGroup1
     });
     this.navBarControl1.Items.AddRange(new DevExpress.XtraNavBar.NavBarItem[] {
         this.navBarItem1,
         this.navBarItem2
     });
     this.navBarControl1.Location = new System.Drawing.Point(0, 0);
     this.navBarControl1.Name     = "navBarControl1";
     this.navBarControl1.OptionsNavPane.ExpandedWidth = 144;
     this.navBarControl1.Size         = new System.Drawing.Size(144, 341);
     this.navBarControl1.TabIndex     = 0;
     this.navBarControl1.Text         = "navBarControl1";
     this.navBarControl1.LinkClicked += new DevExpress.XtraNavBar.NavBarLinkEventHandler(this.navBarControl1_LinkClicked);
     //
     // navBarGroup1
     //
     this.navBarGroup1.Caption    = "用户界面";
     this.navBarGroup1.Expanded   = true;
     this.navBarGroup1.GroupStyle = DevExpress.XtraNavBar.NavBarGroupStyle.SmallIconsText;
     this.navBarGroup1.ItemLinks.AddRange(new DevExpress.XtraNavBar.NavBarItemLink[] {
         new DevExpress.XtraNavBar.NavBarItemLink(this.navBarItem1),
         new DevExpress.XtraNavBar.NavBarItemLink(this.navBarItem2)
     });
     this.navBarGroup1.Name = "navBarGroup1";
     //
     // navBarItem1
     //
     this.navBarItem1.Caption = "导航栏";
     this.navBarItem1.Name    = "navBarItem1";
     this.navBarItem1.Visible = false;
     //
     // navBarItem2
     //
     this.navBarItem2.Caption = "窗口样式";
     this.navBarItem2.Name    = "navBarItem2";
     //
     // splitterControl1
     //
     this.splitterControl1.Location = new System.Drawing.Point(144, 0);
     this.splitterControl1.Name     = "splitterControl1";
     this.splitterControl1.Size     = new System.Drawing.Size(6, 341);
     this.splitterControl1.TabIndex = 1;
     this.splitterControl1.TabStop  = false;
     //
     // panelControl1
     //
     this.panelControl1.Dock     = System.Windows.Forms.DockStyle.Fill;
     this.panelControl1.Location = new System.Drawing.Point(150, 0);
     this.panelControl1.Name     = "panelControl1";
     this.panelControl1.Size     = new System.Drawing.Size(402, 341);
     this.panelControl1.TabIndex = 3;
     //
     // frmOption
     //
     this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 12F);
     this.ClientSize          = new System.Drawing.Size(552, 341);
     this.Controls.Add(this.panelControl1);
     this.Controls.Add(this.splitterControl1);
     this.Controls.Add(this.navBarControl1);
     this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedSingle;
     this.MaximizeBox     = false;
     this.MinimizeBox     = false;
     this.Name            = "frmOption";
     this.ShowInTaskbar   = false;
     this.StartPosition   = System.Windows.Forms.FormStartPosition.CenterParent;
     this.Load           += new System.EventHandler(this.frmOption_Load);
     ((System.ComponentModel.ISupportInitialize)(this.navBarControl1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.panelControl1)).EndInit();
     this.ResumeLayout(false);
 }
Exemplo n.º 20
0
        private void toolStripVAdd_ItemClick(object sender, DevExpress.XtraBars.ItemClickEventArgs e)
        {
            if (BsfGlobal.FindPermission("Vendor-Master-Add") == false)
            {
                MessageBox.Show("No Rights to Vendor-Master-Add");
                return;
            }

            if (BsfGlobal.g_bWorkFlow == true)
            {
                try { this.Parent.Controls.Owner.Hide(); }
                catch { }

                BsfGlobal.g_bWorkFlow = true;
                frmMain frm = new frmMain();
                DevExpress.XtraEditors.PanelControl oPanel = new DevExpress.XtraEditors.PanelControl();
                oPanel = BsfGlobal.GetPanel(frm, "Vendor Details");
                if (oPanel != null)
                {
                    oPanel.Controls.Clear();
                    iRowId              = 0;
                    frm.TopLevel        = false;
                    frm.FormBorderStyle = FormBorderStyle.None;
                    frm.Dock            = DockStyle.Fill;
                    oPanel.Controls.Add(frm);
                    frm.m_lVendorId   = 0;
                    frm.m_sVendorName = "";
                    frm.Execute();
                    oPanel.Visible = true;
                    Cursor.Current = Cursors.Default;
                }


                //Cursor.Current = Cursors.WaitCursor;
                //BsfGlobal.g_bTrans = true;
                //BsfGlobal.g_oWindow.Hide();
                //frmMain frm = new frmMain();

                //BsfGlobal.g_oPanelTrans.Controls.Clear();
                //BsfGlobal.g_oWindowTrans.Text = "Vendor Details";
                //frm.TopLevel = false;
                //frm.FormBorderStyle = FormBorderStyle.None;
                //frm.Dock = DockStyle.Fill;
                //BsfGlobal.g_oPanelTrans.Controls.Add(frm);
                //frm.Execute(0);
                //BsfGlobal.g_oWindowTrans.Show();
                //Cursor.Current = Cursors.Default;
            }
            else
            {
                Cursor.Current = Cursors.WaitCursor;
                frmMain frm = new frmMain();
                frm.m_lVendorId   = 0;
                frm.m_sVendorName = "";
                frm.Execute();
                Cursor.Current = Cursors.Default;
                PopulateVendor();
            }
            m_bAdd   = true;
            m_iRowId = 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(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.components = new System.ComponentModel.Container();
     this.gridControlData = new DevExpress.XtraGrid.GridControl();
     this.dsQueries = new RetirementCenter.DataSources.dsQueries();
     this.gridViewData = new DevExpress.XtraGrid.Views.Grid.GridView();
     this.colAutoId = new DevExpress.XtraGrid.Columns.GridColumn();
     this.colMMashatId = new DevExpress.XtraGrid.Columns.GridColumn();
     this.colamanatmony = new DevExpress.XtraGrid.Columns.GridColumn();
     this.colamanatrem = new DevExpress.XtraGrid.Columns.GridColumn();
     this.coldatein = 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.colaccReview = new DevExpress.XtraGrid.Columns.GridColumn();
     this.coldateReview = new DevExpress.XtraGrid.Columns.GridColumn();
     this.colamantvisa = new DevExpress.XtraGrid.Columns.GridColumn();
     this.colsarfcheek = new DevExpress.XtraGrid.Columns.GridColumn();
     this.colcheekno = new DevExpress.XtraGrid.Columns.GridColumn();
     this.coltasleemdate = new DevExpress.XtraGrid.Columns.GridColumn();
     this.colmostlemsheek = new DevExpress.XtraGrid.Columns.GridColumn();
     this.coldatincheek = new DevExpress.XtraGrid.Columns.GridColumn();
     this.colDofatSarfA = new DevExpress.XtraGrid.Columns.GridColumn();
     this.colDofatSarf = new DevExpress.XtraGrid.Columns.GridColumn();
     this.colMMashatName = 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.coluserin_RealName = new DevExpress.XtraGrid.Columns.GridColumn();
     this.colaccuser_RealName = new DevExpress.XtraGrid.Columns.GridColumn();
     this.colusercheek_RealName = new DevExpress.XtraGrid.Columns.GridColumn();
     this.repositoryItemTextEditn2 = new DevExpress.XtraEditors.Repository.RepositoryItemTextEdit();
     this.panelControl1 = new DevExpress.XtraEditors.PanelControl();
     this.btnPrintExport = new DevExpress.XtraEditors.SimpleButton();
     this.vQry98BindingSource = new System.Windows.Forms.BindingSource(this.components);
     this.vQry98TableAdapter = new RetirementCenter.DataSources.dsQueriesTableAdapters.vQry98TableAdapter();
     this.colActivate = new DevExpress.XtraGrid.Columns.GridColumn();
     this.colvisa = new DevExpress.XtraGrid.Columns.GridColumn();
     this.colPersonId = new DevExpress.XtraGrid.Columns.GridColumn();
     this.colpersonName = new DevExpress.XtraGrid.Columns.GridColumn();
     ((System.ComponentModel.ISupportInitialize)(this.gridControlData)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.dsQueries)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridViewData)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemTextEditn2)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.panelControl1)).BeginInit();
     this.panelControl1.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.vQry98BindingSource)).BeginInit();
     this.SuspendLayout();
     //
     // gridControlData
     //
     this.gridControlData.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
     | System.Windows.Forms.AnchorStyles.Left)
     | System.Windows.Forms.AnchorStyles.Right)));
     this.gridControlData.DataSource = this.vQry98BindingSource;
     this.gridControlData.EmbeddedNavigator.Buttons.CancelEdit.Visible = false;
     this.gridControlData.EmbeddedNavigator.Buttons.Edit.Visible = false;
     this.gridControlData.EmbeddedNavigator.Buttons.EndEdit.Visible = false;
     this.gridControlData.EmbeddedNavigator.Buttons.Remove.Visible = false;
     this.gridControlData.EmbeddedNavigator.TextStringFormat = "صف {0} من {1}";
     this.gridControlData.Location = new System.Drawing.Point(0, 53);
     this.gridControlData.MainView = this.gridViewData;
     this.gridControlData.Name = "gridControlData";
     this.gridControlData.RepositoryItems.AddRange(new DevExpress.XtraEditors.Repository.RepositoryItem[] {
     this.repositoryItemTextEditn2});
     this.gridControlData.Size = new System.Drawing.Size(734, 404);
     this.gridControlData.TabIndex = 1;
     this.gridControlData.UseEmbeddedNavigator = true;
     this.gridControlData.ViewCollection.AddRange(new DevExpress.XtraGrid.Views.Base.BaseView[] {
     this.gridViewData});
     //
     // dsQueries
     //
     this.dsQueries.DataSetName = "dsQueries";
     this.dsQueries.SchemaSerializationMode = System.Data.SchemaSerializationMode.IncludeSchema;
     //
     // gridViewData
     //
     this.gridViewData.Appearance.ColumnFilterButton.BackColor = System.Drawing.Color.DarkGray;
     this.gridViewData.Appearance.ColumnFilterButton.BorderColor = System.Drawing.Color.DarkGray;
     this.gridViewData.Appearance.ColumnFilterButton.ForeColor = System.Drawing.Color.DimGray;
     this.gridViewData.Appearance.ColumnFilterButton.Options.UseBackColor = true;
     this.gridViewData.Appearance.ColumnFilterButton.Options.UseBorderColor = true;
     this.gridViewData.Appearance.ColumnFilterButton.Options.UseForeColor = true;
     this.gridViewData.Appearance.ColumnFilterButtonActive.BackColor = System.Drawing.Color.DarkGray;
     this.gridViewData.Appearance.ColumnFilterButtonActive.BorderColor = System.Drawing.Color.DarkGray;
     this.gridViewData.Appearance.ColumnFilterButtonActive.ForeColor = System.Drawing.Color.Gainsboro;
     this.gridViewData.Appearance.ColumnFilterButtonActive.Options.UseBackColor = true;
     this.gridViewData.Appearance.ColumnFilterButtonActive.Options.UseBorderColor = true;
     this.gridViewData.Appearance.ColumnFilterButtonActive.Options.UseForeColor = true;
     this.gridViewData.Appearance.Empty.BackColor = System.Drawing.Color.DimGray;
     this.gridViewData.Appearance.Empty.GradientMode = System.Drawing.Drawing2D.LinearGradientMode.BackwardDiagonal;
     this.gridViewData.Appearance.Empty.Options.UseBackColor = true;
     this.gridViewData.Appearance.EvenRow.BackColor = System.Drawing.Color.White;
     this.gridViewData.Appearance.EvenRow.Options.UseBackColor = true;
     this.gridViewData.Appearance.FilterCloseButton.BackColor = System.Drawing.Color.Gray;
     this.gridViewData.Appearance.FilterCloseButton.BorderColor = System.Drawing.Color.Gray;
     this.gridViewData.Appearance.FilterCloseButton.Options.UseBackColor = true;
     this.gridViewData.Appearance.FilterCloseButton.Options.UseBorderColor = true;
     this.gridViewData.Appearance.FilterPanel.BackColor = System.Drawing.Color.Gray;
     this.gridViewData.Appearance.FilterPanel.ForeColor = System.Drawing.Color.Black;
     this.gridViewData.Appearance.FilterPanel.Options.UseBackColor = true;
     this.gridViewData.Appearance.FilterPanel.Options.UseForeColor = true;
     this.gridViewData.Appearance.FocusedRow.BackColor = System.Drawing.Color.Black;
     this.gridViewData.Appearance.FocusedRow.ForeColor = System.Drawing.Color.White;
     this.gridViewData.Appearance.FocusedRow.Options.UseBackColor = true;
     this.gridViewData.Appearance.FocusedRow.Options.UseForeColor = true;
     this.gridViewData.Appearance.FooterPanel.BackColor = System.Drawing.Color.DarkGray;
     this.gridViewData.Appearance.FooterPanel.BorderColor = System.Drawing.Color.DarkGray;
     this.gridViewData.Appearance.FooterPanel.Options.UseBackColor = true;
     this.gridViewData.Appearance.FooterPanel.Options.UseBorderColor = true;
     this.gridViewData.Appearance.FooterPanel.Options.UseTextOptions = true;
     this.gridViewData.Appearance.FooterPanel.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.gridViewData.Appearance.GroupButton.BackColor = System.Drawing.Color.Silver;
     this.gridViewData.Appearance.GroupButton.BorderColor = System.Drawing.Color.Silver;
     this.gridViewData.Appearance.GroupButton.Options.UseBackColor = true;
     this.gridViewData.Appearance.GroupButton.Options.UseBorderColor = true;
     this.gridViewData.Appearance.GroupFooter.BackColor = System.Drawing.Color.Silver;
     this.gridViewData.Appearance.GroupFooter.BorderColor = System.Drawing.Color.Silver;
     this.gridViewData.Appearance.GroupFooter.Options.UseBackColor = true;
     this.gridViewData.Appearance.GroupFooter.Options.UseBorderColor = true;
     this.gridViewData.Appearance.GroupPanel.BackColor = System.Drawing.Color.DimGray;
     this.gridViewData.Appearance.GroupPanel.ForeColor = System.Drawing.Color.Gray;
     this.gridViewData.Appearance.GroupPanel.Options.UseBackColor = true;
     this.gridViewData.Appearance.GroupPanel.Options.UseForeColor = true;
     this.gridViewData.Appearance.GroupRow.BackColor = System.Drawing.Color.Silver;
     this.gridViewData.Appearance.GroupRow.Font = new System.Drawing.Font("Tahoma", 8F, System.Drawing.FontStyle.Bold);
     this.gridViewData.Appearance.GroupRow.Options.UseBackColor = true;
     this.gridViewData.Appearance.GroupRow.Options.UseFont = true;
     this.gridViewData.Appearance.HeaderPanel.BackColor = System.Drawing.Color.DarkGray;
     this.gridViewData.Appearance.HeaderPanel.BorderColor = System.Drawing.Color.DarkGray;
     this.gridViewData.Appearance.HeaderPanel.Options.UseBackColor = true;
     this.gridViewData.Appearance.HeaderPanel.Options.UseBorderColor = true;
     this.gridViewData.Appearance.HideSelectionRow.BackColor = System.Drawing.Color.LightSlateGray;
     this.gridViewData.Appearance.HideSelectionRow.Options.UseBackColor = true;
     this.gridViewData.Appearance.HorzLine.BackColor = System.Drawing.Color.LightGray;
     this.gridViewData.Appearance.HorzLine.Options.UseBackColor = true;
     this.gridViewData.Appearance.OddRow.BackColor = System.Drawing.Color.WhiteSmoke;
     this.gridViewData.Appearance.OddRow.Options.UseBackColor = true;
     this.gridViewData.Appearance.Preview.BackColor = System.Drawing.Color.Gainsboro;
     this.gridViewData.Appearance.Preview.ForeColor = System.Drawing.Color.DimGray;
     this.gridViewData.Appearance.Preview.Options.UseBackColor = true;
     this.gridViewData.Appearance.Preview.Options.UseForeColor = true;
     this.gridViewData.Appearance.Row.BackColor = System.Drawing.Color.White;
     this.gridViewData.Appearance.Row.Options.UseBackColor = true;
     this.gridViewData.Appearance.RowSeparator.BackColor = System.Drawing.Color.DimGray;
     this.gridViewData.Appearance.RowSeparator.Options.UseBackColor = true;
     this.gridViewData.Appearance.SelectedRow.BackColor = System.Drawing.Color.DimGray;
     this.gridViewData.Appearance.SelectedRow.Options.UseBackColor = true;
     this.gridViewData.Appearance.VertLine.BackColor = System.Drawing.Color.LightGray;
     this.gridViewData.Appearance.VertLine.Options.UseBackColor = true;
     this.gridViewData.Columns.AddRange(new DevExpress.XtraGrid.Columns.GridColumn[] {
     this.colAutoId,
     this.colPersonId,
     this.colpersonName,
     this.colMMashatId,
     this.colamanatmony,
     this.colamanatrem,
     this.coldatein,
     this.colestktaa,
     this.colmostahek,
     this.colsefa,
     this.colaccReview,
     this.coldateReview,
     this.colamantvisa,
     this.colsarfcheek,
     this.colcheekno,
     this.coltasleemdate,
     this.colmostlemsheek,
     this.coldatincheek,
     this.colDofatSarfA,
     this.colDofatSarf,
     this.colMMashatName,
     this.colsarfnumber,
     this.colSyndicate,
     this.colSubCommitte,
     this.coluserin_RealName,
     this.colaccuser_RealName,
     this.colusercheek_RealName,
     this.colActivate,
     this.colvisa});
     this.gridViewData.GridControl = this.gridControlData;
     this.gridViewData.Name = "gridViewData";
     this.gridViewData.OptionsBehavior.ReadOnly = true;
     this.gridViewData.OptionsCustomization.AllowRowSizing = true;
     this.gridViewData.OptionsFind.AlwaysVisible = true;
     this.gridViewData.OptionsPrint.EnableAppearanceEvenRow = true;
     this.gridViewData.OptionsPrint.EnableAppearanceOddRow = true;
     this.gridViewData.OptionsView.ColumnAutoWidth = false;
     this.gridViewData.OptionsView.EnableAppearanceEvenRow = true;
     this.gridViewData.OptionsView.EnableAppearanceOddRow = true;
     this.gridViewData.OptionsView.ShowAutoFilterRow = true;
     this.gridViewData.OptionsView.ShowDetailButtons = false;
     this.gridViewData.OptionsView.ShowFooter = true;
     //
     // colAutoId
     //
     this.colAutoId.AppearanceCell.Options.UseTextOptions = true;
     this.colAutoId.AppearanceCell.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.colAutoId.AppearanceHeader.Options.UseTextOptions = true;
     this.colAutoId.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.colAutoId.Caption = "تلقائي";
     this.colAutoId.FieldName = "AutoId";
     this.colAutoId.Name = "colAutoId";
     this.colAutoId.Visible = true;
     this.colAutoId.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.FieldName = "MMashatId";
     this.colMMashatId.Name = "colMMashatId";
     this.colMMashatId.Visible = true;
     this.colMMashatId.VisibleIndex = 3;
     //
     // 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.Visible = true;
     this.colamanatmony.VisibleIndex = 4;
     //
     // 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.FieldName = "amanatrem";
     this.colamanatrem.Name = "colamanatrem";
     this.colamanatrem.Visible = true;
     this.colamanatrem.VisibleIndex = 5;
     //
     // coldatein
     //
     this.coldatein.AppearanceCell.Options.UseTextOptions = true;
     this.coldatein.AppearanceCell.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.coldatein.AppearanceHeader.Options.UseTextOptions = true;
     this.coldatein.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.coldatein.Caption = "تاريخ الادخال";
     this.coldatein.FieldName = "datein";
     this.coldatein.Name = "coldatein";
     this.coldatein.Visible = true;
     this.coldatein.VisibleIndex = 6;
     //
     // 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.Visible = true;
     this.colestktaa.VisibleIndex = 7;
     //
     // 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.Visible = true;
     this.colmostahek.VisibleIndex = 8;
     //
     // 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.Visible = true;
     this.colsefa.VisibleIndex = 9;
     //
     // 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.Visible = true;
     this.colaccReview.VisibleIndex = 10;
     this.colaccReview.Width = 89;
     //
     // 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.FieldName = "dateReview";
     this.coldateReview.Name = "coldateReview";
     this.coldateReview.Visible = true;
     this.coldateReview.VisibleIndex = 11;
     this.coldateReview.Width = 83;
     //
     // 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 = 12;
     //
     // 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 = 13;
     //
     // colcheekno
     //
     this.colcheekno.AppearanceCell.Options.UseTextOptions = true;
     this.colcheekno.AppearanceCell.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.colcheekno.AppearanceHeader.Options.UseTextOptions = true;
     this.colcheekno.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.colcheekno.Caption = "رقم الشيك";
     this.colcheekno.FieldName = "cheekno";
     this.colcheekno.Name = "colcheekno";
     this.colcheekno.Visible = true;
     this.colcheekno.VisibleIndex = 14;
     //
     // coltasleemdate
     //
     this.coltasleemdate.AppearanceCell.Options.UseTextOptions = true;
     this.coltasleemdate.AppearanceCell.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.coltasleemdate.AppearanceHeader.Options.UseTextOptions = true;
     this.coltasleemdate.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.coltasleemdate.Caption = "تاريخ الستليم";
     this.coltasleemdate.FieldName = "tasleemdate";
     this.coltasleemdate.Name = "coltasleemdate";
     this.coltasleemdate.Visible = true;
     this.coltasleemdate.VisibleIndex = 15;
     this.coltasleemdate.Width = 81;
     //
     // colmostlemsheek
     //
     this.colmostlemsheek.AppearanceCell.Options.UseTextOptions = true;
     this.colmostlemsheek.AppearanceCell.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.colmostlemsheek.AppearanceHeader.Options.UseTextOptions = true;
     this.colmostlemsheek.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.colmostlemsheek.Caption = "مستلم الشيك";
     this.colmostlemsheek.FieldName = "mostlemsheek";
     this.colmostlemsheek.Name = "colmostlemsheek";
     this.colmostlemsheek.Visible = true;
     this.colmostlemsheek.VisibleIndex = 16;
     this.colmostlemsheek.Width = 87;
     //
     // coldatincheek
     //
     this.coldatincheek.AppearanceCell.Options.UseTextOptions = true;
     this.coldatincheek.AppearanceCell.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.coldatincheek.AppearanceHeader.Options.UseTextOptions = true;
     this.coldatincheek.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.coldatincheek.Caption = "تاريخ ادخال الشيك";
     this.coldatincheek.FieldName = "datincheek";
     this.coldatincheek.Name = "coldatincheek";
     this.coldatincheek.Visible = true;
     this.coldatincheek.VisibleIndex = 17;
     this.coldatincheek.Width = 102;
     //
     // 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 = 18;
     this.colDofatSarfA.Width = 78;
     //
     // colDofatSarf
     //
     this.colDofatSarf.AppearanceCell.Options.UseTextOptions = true;
     this.colDofatSarf.AppearanceCell.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.colDofatSarf.AppearanceHeader.Options.UseTextOptions = true;
     this.colDofatSarf.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.colDofatSarf.Caption = "دفعة الصرف";
     this.colDofatSarf.FieldName = "DofatSarf";
     this.colDofatSarf.Name = "colDofatSarf";
     this.colDofatSarf.Visible = true;
     this.colDofatSarf.VisibleIndex = 19;
     //
     // 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 = 20;
     //
     // 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 = 21;
     //
     // 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 = 22;
     //
     // 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 = 23;
     //
     // coluserin_RealName
     //
     this.coluserin_RealName.AppearanceCell.Options.UseTextOptions = true;
     this.coluserin_RealName.AppearanceCell.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.coluserin_RealName.AppearanceHeader.Options.UseTextOptions = true;
     this.coluserin_RealName.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.coluserin_RealName.Caption = "مسئول الادخال";
     this.coluserin_RealName.FieldName = "userin_RealName";
     this.coluserin_RealName.Name = "coluserin_RealName";
     this.coluserin_RealName.Visible = true;
     this.coluserin_RealName.VisibleIndex = 24;
     this.coluserin_RealName.Width = 88;
     //
     // colaccuser_RealName
     //
     this.colaccuser_RealName.AppearanceCell.Options.UseTextOptions = true;
     this.colaccuser_RealName.AppearanceCell.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.colaccuser_RealName.AppearanceHeader.Options.UseTextOptions = true;
     this.colaccuser_RealName.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.colaccuser_RealName.Caption = "مسئول الحسابات";
     this.colaccuser_RealName.FieldName = "useracc_RealName";
     this.colaccuser_RealName.Name = "colaccuser_RealName";
     this.colaccuser_RealName.Visible = true;
     this.colaccuser_RealName.VisibleIndex = 25;
     this.colaccuser_RealName.Width = 99;
     //
     // colusercheek_RealName
     //
     this.colusercheek_RealName.AppearanceCell.Options.UseTextOptions = true;
     this.colusercheek_RealName.AppearanceCell.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.colusercheek_RealName.AppearanceHeader.Options.UseTextOptions = true;
     this.colusercheek_RealName.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.colusercheek_RealName.Caption = "مسئول الشيك";
     this.colusercheek_RealName.FieldName = "usercheek_RealName";
     this.colusercheek_RealName.Name = "colusercheek_RealName";
     this.colusercheek_RealName.Visible = true;
     this.colusercheek_RealName.VisibleIndex = 26;
     this.colusercheek_RealName.Width = 87;
     //
     // repositoryItemTextEditn2
     //
     this.repositoryItemTextEditn2.AutoHeight = false;
     this.repositoryItemTextEditn2.DisplayFormat.FormatString = "n2";
     this.repositoryItemTextEditn2.DisplayFormat.FormatType = DevExpress.Utils.FormatType.Numeric;
     this.repositoryItemTextEditn2.EditFormat.FormatString = "n2";
     this.repositoryItemTextEditn2.EditFormat.FormatType = DevExpress.Utils.FormatType.Numeric;
     this.repositoryItemTextEditn2.Mask.EditMask = "n2";
     this.repositoryItemTextEditn2.Mask.MaskType = DevExpress.XtraEditors.Mask.MaskType.Numeric;
     this.repositoryItemTextEditn2.Name = "repositoryItemTextEditn2";
     //
     // panelControl1
     //
     this.panelControl1.Controls.Add(this.btnPrintExport);
     this.panelControl1.Dock = System.Windows.Forms.DockStyle.Top;
     this.panelControl1.Location = new System.Drawing.Point(0, 0);
     this.panelControl1.Name = "panelControl1";
     this.panelControl1.Size = new System.Drawing.Size(734, 47);
     this.panelControl1.TabIndex = 4;
     //
     // btnPrintExport
     //
     this.btnPrintExport.Location = new System.Drawing.Point(12, 12);
     this.btnPrintExport.Name = "btnPrintExport";
     this.btnPrintExport.Size = new System.Drawing.Size(134, 23);
     this.btnPrintExport.TabIndex = 0;
     this.btnPrintExport.Text = "طباعه و تصدير";
     this.btnPrintExport.Click += new System.EventHandler(this.btnPrintExport_Click);
     //
     // vQry98BindingSource
     //
     this.vQry98BindingSource.DataMember = "vQry98";
     this.vQry98BindingSource.DataSource = this.dsQueries;
     //
     // vQry98TableAdapter
     //
     this.vQry98TableAdapter.ClearBeforeFill = true;
     //
     // colActivate
     //
     this.colActivate.AppearanceCell.Options.UseTextOptions = true;
     this.colActivate.AppearanceCell.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.colActivate.AppearanceHeader.Options.UseTextOptions = true;
     this.colActivate.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.colActivate.Caption = "متاح (Activate)";
     this.colActivate.FieldName = "Activate";
     this.colActivate.Name = "colActivate";
     this.colActivate.Visible = true;
     this.colActivate.VisibleIndex = 27;
     this.colActivate.Width = 90;
     //
     // colvisa
     //
     this.colvisa.AppearanceCell.Options.UseTextOptions = true;
     this.colvisa.AppearanceCell.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.colvisa.AppearanceHeader.Options.UseTextOptions = true;
     this.colvisa.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.colvisa.Caption = "فيزا";
     this.colvisa.FieldName = "visa";
     this.colvisa.Name = "colvisa";
     this.colvisa.Visible = true;
     this.colvisa.VisibleIndex = 28;
     //
     // 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;
     //
     // 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;
     //
     // Qry98Frm
     //
     this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
     this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
     this.ClientSize = new System.Drawing.Size(734, 462);
     this.Controls.Add(this.panelControl1);
     this.Controls.Add(this.gridControlData);
     this.Name = "Qry98Frm";
     this.Text = "امانات لم ترحل - ورثة";
     this.WindowState = System.Windows.Forms.FormWindowState.Maximized;
     this.Load += new System.EventHandler(this.Qry06Frm_Load);
     ((System.ComponentModel.ISupportInitialize)(this.gridControlData)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.dsQueries)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridViewData)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemTextEditn2)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.panelControl1)).EndInit();
     this.panelControl1.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.vQry98BindingSource)).EndInit();
     this.ResumeLayout(false);
 }
Exemplo n.º 23
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);
 }
Exemplo n.º 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.panelControl1      = new DevExpress.XtraEditors.PanelControl();
     this.simpleButtonCancel = new DevExpress.XtraEditors.SimpleButton();
     this.simpleButtonOK     = new DevExpress.XtraEditors.SimpleButton();
     this.label3             = new System.Windows.Forms.Label();
     this.label2             = new System.Windows.Forms.Label();
     this.label1             = new System.Windows.Forms.Label();
     this.memoEdit1          = new DevExpress.XtraEditors.MemoEdit();
     this.lookUpEdit1        = new DevExpress.XtraEditors.LookUpEdit();
     ((System.ComponentModel.ISupportInitialize)(this.panelControl1)).BeginInit();
     this.panelControl1.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.memoEdit1.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.lookUpEdit1.Properties)).BeginInit();
     this.SuspendLayout();
     //
     // panelControl1
     //
     this.panelControl1.BorderStyle = DevExpress.XtraEditors.Controls.BorderStyles.NoBorder;
     this.panelControl1.Controls.Add(this.simpleButtonCancel);
     this.panelControl1.Controls.Add(this.simpleButtonOK);
     this.panelControl1.Controls.Add(this.label3);
     this.panelControl1.Controls.Add(this.label2);
     this.panelControl1.Controls.Add(this.label1);
     this.panelControl1.Controls.Add(this.memoEdit1);
     this.panelControl1.Controls.Add(this.lookUpEdit1);
     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(338, 220);
     this.panelControl1.TabIndex = 0;
     //
     // simpleButtonCancel
     //
     this.simpleButtonCancel.DialogResult = System.Windows.Forms.DialogResult.Cancel;
     this.simpleButtonCancel.Location     = new System.Drawing.Point(295, 215);
     this.simpleButtonCancel.Name         = "simpleButtonCancel";
     this.simpleButtonCancel.Size         = new System.Drawing.Size(90, 26);
     this.simpleButtonCancel.TabIndex     = 51;
     this.simpleButtonCancel.Text         = "Cancel";
     //
     // simpleButtonOK
     //
     this.simpleButtonOK.DialogResult = System.Windows.Forms.DialogResult.OK;
     this.simpleButtonOK.Location     = new System.Drawing.Point(187, 215);
     this.simpleButtonOK.Name         = "simpleButtonOK";
     this.simpleButtonOK.Size         = new System.Drawing.Size(90, 26);
     this.simpleButtonOK.TabIndex     = 50;
     this.simpleButtonOK.Text         = "OK";
     this.simpleButtonOK.Click       += new System.EventHandler(this.simpleButtonOK_Click);
     //
     // label3
     //
     this.label3.Location = new System.Drawing.Point(10, 88);
     this.label3.Name     = "label3";
     this.label3.Size     = new System.Drawing.Size(76, 27);
     this.label3.TabIndex = 4;
     this.label3.Text     = "Remark";
     //
     // label2
     //
     this.label2.Location = new System.Drawing.Point(10, 53);
     this.label2.Name     = "label2";
     this.label2.Size     = new System.Drawing.Size(81, 27);
     this.label2.TabIndex = 3;
     this.label2.Text     = "Member ID";
     //
     // label1
     //
     this.label1.Location = new System.Drawing.Point(2, 5);
     this.label1.Name     = "label1";
     this.label1.Size     = new System.Drawing.Size(312, 34);
     this.label1.TabIndex = 2;
     this.label1.Text     = "Please select the member you wish to transfer him/her the credit package.";
     //
     // memoEdit1
     //
     this.memoEdit1.EditValue = "";
     this.memoEdit1.Location  = new System.Drawing.Point(98, 85);
     this.memoEdit1.Name      = "memoEdit1";
     this.memoEdit1.Size      = new System.Drawing.Size(291, 111);
     this.memoEdit1.TabIndex  = 1;
     //
     // lookUpEdit1
     //
     this.lookUpEdit1.Location = new System.Drawing.Point(96, 53);
     this.lookUpEdit1.Name     = "lookUpEdit1";
     this.lookUpEdit1.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
         new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)
     });
     this.lookUpEdit1.Size     = new System.Drawing.Size(293, 22);
     this.lookUpEdit1.TabIndex = 0;
     //
     // FormTransferMemberCreditPackage
     //
     this.AcceptButton      = this.simpleButtonOK;
     this.AutoScaleBaseSize = new System.Drawing.Size(6, 15);
     this.CancelButton      = this.simpleButtonCancel;
     this.ClientSize        = new System.Drawing.Size(338, 220);
     this.Controls.Add(this.panelControl1);
     this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedDialog;
     this.MaximizeBox     = false;
     this.MinimizeBox     = false;
     this.Name            = "FormTransferMemberCreditPackage";
     this.ShowInTaskbar   = false;
     this.StartPosition   = System.Windows.Forms.FormStartPosition.CenterScreen;
     this.Text            = "FormTransferMemberCreditPackage";
     ((System.ComponentModel.ISupportInitialize)(this.panelControl1)).EndInit();
     this.panelControl1.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.memoEdit1.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.lookUpEdit1.Properties)).EndInit();
     this.ResumeLayout(false);
 }
Exemplo n.º 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.lkpEdtPromotionCode = new DevExpress.XtraEditors.LookUpEdit();
     this.label1                   = new System.Windows.Forms.Label();
     this.panelControl1            = new DevExpress.XtraEditors.PanelControl();
     this.panelControl2            = new DevExpress.XtraEditors.PanelControl();
     this.simpleButtonCancel       = new DevExpress.XtraEditors.SimpleButton();
     this.simpleButtonOK           = new DevExpress.XtraEditors.SimpleButton();
     this.panelControl3            = new DevExpress.XtraEditors.PanelControl();
     this.xtraTabControl1          = new DevExpress.XtraTab.XtraTabControl();
     this.xtraTabPage1             = new DevExpress.XtraTab.XtraTabPage();
     this.gridControl1             = new DevExpress.XtraGrid.GridControl();
     this.gridView1                = new DevExpress.XtraGrid.Views.Grid.GridView();
     this.gridColumn6              = new DevExpress.XtraGrid.Columns.GridColumn();
     this.repositoryItemCheckEdit2 = new DevExpress.XtraEditors.Repository.RepositoryItemCheckEdit();
     this.gridColumn1              = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn2              = new DevExpress.XtraGrid.Columns.GridColumn();
     this.xtraTabPage2             = new DevExpress.XtraTab.XtraTabPage();
     this.gridControl2             = new DevExpress.XtraGrid.GridControl();
     this.gridView2                = new DevExpress.XtraGrid.Views.Grid.GridView();
     this.gridColumn5              = new DevExpress.XtraGrid.Columns.GridColumn();
     this.repositoryItemCheckEdit1 = new DevExpress.XtraEditors.Repository.RepositoryItemCheckEdit();
     this.gridColumn3              = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn4              = new DevExpress.XtraGrid.Columns.GridColumn();
     ((System.ComponentModel.ISupportInitialize)(this.lkpEdtPromotionCode.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.panelControl1)).BeginInit();
     this.panelControl1.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.panelControl2)).BeginInit();
     this.panelControl2.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.panelControl3)).BeginInit();
     this.panelControl3.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.xtraTabControl1)).BeginInit();
     this.xtraTabControl1.SuspendLayout();
     this.xtraTabPage1.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.gridControl1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridView1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemCheckEdit2)).BeginInit();
     this.xtraTabPage2.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.gridControl2)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridView2)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemCheckEdit1)).BeginInit();
     this.SuspendLayout();
     //
     // lkpEdtPromotionCode
     //
     this.lkpEdtPromotionCode.EditValue = "";
     this.lkpEdtPromotionCode.Location  = new System.Drawing.Point(136, 10);
     this.lkpEdtPromotionCode.Name      = "lkpEdtPromotionCode";
     //
     // lkpEdtPromotionCode.Properties
     //
     this.lkpEdtPromotionCode.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
         new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)
     });
     this.lkpEdtPromotionCode.Size              = new System.Drawing.Size(274, 20);
     this.lkpEdtPromotionCode.TabIndex          = 0;
     this.lkpEdtPromotionCode.EditValueChanged += new System.EventHandler(this.lkpEdtPromotionCode_EditValueChanged);
     //
     // label1
     //
     this.label1.Font     = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((System.Byte)(0)));
     this.label1.Location = new System.Drawing.Point(10, 10);
     this.label1.Name     = "label1";
     this.label1.Size     = new System.Drawing.Size(106, 23);
     this.label1.TabIndex = 1;
     this.label1.Text     = "Promotion Code";
     //
     // panelControl1
     //
     this.panelControl1.BorderStyle = DevExpress.XtraEditors.Controls.BorderStyles.NoBorder;
     this.panelControl1.Controls.Add(this.label1);
     this.panelControl1.Controls.Add(this.lkpEdtPromotionCode);
     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(442, 46);
     this.panelControl1.TabIndex = 3;
     this.panelControl1.Text     = "panelControl1";
     //
     // panelControl2
     //
     this.panelControl2.BorderStyle = DevExpress.XtraEditors.Controls.BorderStyles.NoBorder;
     this.panelControl2.Controls.Add(this.simpleButtonCancel);
     this.panelControl2.Controls.Add(this.simpleButtonOK);
     this.panelControl2.Dock     = System.Windows.Forms.DockStyle.Bottom;
     this.panelControl2.Location = new System.Drawing.Point(0, 256);
     this.panelControl2.Name     = "panelControl2";
     this.panelControl2.Size     = new System.Drawing.Size(442, 42);
     this.panelControl2.TabIndex = 4;
     this.panelControl2.Text     = "panelControl2";
     //
     // simpleButtonCancel
     //
     this.simpleButtonCancel.DialogResult = System.Windows.Forms.DialogResult.Cancel;
     this.simpleButtonCancel.Location     = new System.Drawing.Point(360, 10);
     this.simpleButtonCancel.Name         = "simpleButtonCancel";
     this.simpleButtonCancel.TabIndex     = 12;
     this.simpleButtonCancel.Text         = "Cancel";
     //
     // simpleButtonOK
     //
     this.simpleButtonOK.DialogResult = System.Windows.Forms.DialogResult.OK;
     this.simpleButtonOK.Location     = new System.Drawing.Point(276, 10);
     this.simpleButtonOK.Name         = "simpleButtonOK";
     this.simpleButtonOK.TabIndex     = 11;
     this.simpleButtonOK.Text         = "OK";
     this.simpleButtonOK.Click       += new System.EventHandler(this.simpleButtonOK_Click);
     //
     // panelControl3
     //
     this.panelControl3.BorderStyle = DevExpress.XtraEditors.Controls.BorderStyles.NoBorder;
     this.panelControl3.Controls.Add(this.xtraTabControl1);
     this.panelControl3.Dock     = System.Windows.Forms.DockStyle.Fill;
     this.panelControl3.Location = new System.Drawing.Point(0, 46);
     this.panelControl3.Name     = "panelControl3";
     this.panelControl3.Size     = new System.Drawing.Size(442, 210);
     this.panelControl3.TabIndex = 5;
     this.panelControl3.Text     = "panelControl3";
     //
     // xtraTabControl1
     //
     this.xtraTabControl1.Dock            = System.Windows.Forms.DockStyle.Fill;
     this.xtraTabControl1.Font            = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((System.Byte)(134)));
     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(442, 210);
     this.xtraTabControl1.TabIndex        = 3;
     this.xtraTabControl1.TabPages.AddRange(new DevExpress.XtraTab.XtraTabPage[] {
         this.xtraTabPage1,
         this.xtraTabPage2
     });
     this.xtraTabControl1.Text = "xtraTabControl1";
     //
     // xtraTabPage1
     //
     this.xtraTabPage1.Controls.Add(this.gridControl1);
     this.xtraTabPage1.Font = new System.Drawing.Font("Microsoft Sans Serif", 10F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((System.Byte)(134)));
     this.xtraTabPage1.Name = "xtraTabPage1";
     this.xtraTabPage1.Size = new System.Drawing.Size(436, 184);
     this.xtraTabPage1.Text = "Freebie-Package";
     //
     // gridControl1
     //
     this.gridControl1.Dock = System.Windows.Forms.DockStyle.Fill;
     //
     // gridControl1.EmbeddedNavigator
     //
     this.gridControl1.EmbeddedNavigator.Name = "";
     this.gridControl1.Location = new System.Drawing.Point(0, 0);
     this.gridControl1.MainView = this.gridView1;
     this.gridControl1.Name     = "gridControl1";
     this.gridControl1.RepositoryItems.AddRange(new DevExpress.XtraEditors.Repository.RepositoryItem[] {
         this.repositoryItemCheckEdit2
     });
     this.gridControl1.Size     = new System.Drawing.Size(436, 184);
     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.gridColumn6,
         this.gridColumn1,
         this.gridColumn2
     });
     this.gridView1.GridControl = this.gridControl1;
     this.gridView1.Name        = "gridView1";
     //
     // gridColumn6
     //
     this.gridColumn6.ColumnEdit   = this.repositoryItemCheckEdit2;
     this.gridColumn6.FieldName    = "Checked";
     this.gridColumn6.Name         = "gridColumn6";
     this.gridColumn6.Visible      = true;
     this.gridColumn6.VisibleIndex = 0;
     this.gridColumn6.Width        = 36;
     //
     // repositoryItemCheckEdit2
     //
     this.repositoryItemCheckEdit2.AutoHeight = false;
     this.repositoryItemCheckEdit2.Name       = "repositoryItemCheckEdit2";
     this.repositoryItemCheckEdit2.NullStyle  = DevExpress.XtraEditors.Controls.StyleIndeterminate.Unchecked;
     //
     // gridColumn1
     //
     this.gridColumn1.Caption   = "Package Code";
     this.gridColumn1.FieldName = "strPackageCode";
     this.gridColumn1.Name      = "gridColumn1";
     this.gridColumn1.OptionsColumn.AllowEdit = false;
     this.gridColumn1.Visible      = true;
     this.gridColumn1.VisibleIndex = 1;
     this.gridColumn1.Width        = 126;
     //
     // gridColumn2
     //
     this.gridColumn2.Caption   = "Package Description";
     this.gridColumn2.FieldName = "strDescription";
     this.gridColumn2.Name      = "gridColumn2";
     this.gridColumn2.OptionsColumn.AllowEdit = false;
     this.gridColumn2.Visible      = true;
     this.gridColumn2.VisibleIndex = 2;
     this.gridColumn2.Width        = 260;
     //
     // xtraTabPage2
     //
     this.xtraTabPage2.Controls.Add(this.gridControl2);
     this.xtraTabPage2.Font = new System.Drawing.Font("Microsoft Sans Serif", 10F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((System.Byte)(134)));
     this.xtraTabPage2.Name = "xtraTabPage2";
     this.xtraTabPage2.Size = new System.Drawing.Size(436, 184);
     this.xtraTabPage2.Text = "Freebie-Product";
     //
     // gridControl2
     //
     this.gridControl2.Dock = System.Windows.Forms.DockStyle.Fill;
     //
     // gridControl2.EmbeddedNavigator
     //
     this.gridControl2.EmbeddedNavigator.Name = "";
     this.gridControl2.Location = new System.Drawing.Point(0, 0);
     this.gridControl2.MainView = this.gridView2;
     this.gridControl2.Name     = "gridControl2";
     this.gridControl2.RepositoryItems.AddRange(new DevExpress.XtraEditors.Repository.RepositoryItem[] {
         this.repositoryItemCheckEdit1
     });
     this.gridControl2.Size     = new System.Drawing.Size(436, 184);
     this.gridControl2.TabIndex = 0;
     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.gridColumn3,
         this.gridColumn4
     });
     this.gridView2.GridControl = this.gridControl2;
     this.gridView2.Name        = "gridView2";
     //
     // gridColumn5
     //
     this.gridColumn5.ColumnEdit   = this.repositoryItemCheckEdit1;
     this.gridColumn5.FieldName    = "Checked";
     this.gridColumn5.Name         = "gridColumn5";
     this.gridColumn5.Visible      = true;
     this.gridColumn5.VisibleIndex = 0;
     this.gridColumn5.Width        = 36;
     //
     // repositoryItemCheckEdit1
     //
     this.repositoryItemCheckEdit1.AutoHeight = false;
     this.repositoryItemCheckEdit1.Name       = "repositoryItemCheckEdit1";
     this.repositoryItemCheckEdit1.NullStyle  = DevExpress.XtraEditors.Controls.StyleIndeterminate.Unchecked;
     //
     // gridColumn3
     //
     this.gridColumn3.Caption   = "Product Code";
     this.gridColumn3.FieldName = "strProductCode";
     this.gridColumn3.Name      = "gridColumn3";
     this.gridColumn3.OptionsColumn.AllowEdit = false;
     this.gridColumn3.Visible      = true;
     this.gridColumn3.VisibleIndex = 1;
     this.gridColumn3.Width        = 115;
     //
     // gridColumn4
     //
     this.gridColumn4.Caption   = "Product Description";
     this.gridColumn4.FieldName = "strDescription";
     this.gridColumn4.Name      = "gridColumn4";
     this.gridColumn4.OptionsColumn.AllowEdit = false;
     this.gridColumn4.Visible      = true;
     this.gridColumn4.VisibleIndex = 2;
     this.gridColumn4.Width        = 271;
     //
     // FormAddBillFreebie
     //
     this.AcceptButton      = this.simpleButtonOK;
     this.AutoScaleBaseSize = new System.Drawing.Size(5, 13);
     this.CancelButton      = this.simpleButtonCancel;
     this.ClientSize        = new System.Drawing.Size(442, 298);
     this.Controls.Add(this.panelControl3);
     this.Controls.Add(this.panelControl2);
     this.Controls.Add(this.panelControl1);
     this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedDialog;
     this.MaximizeBox     = false;
     this.MinimizeBox     = false;
     this.Name            = "FormAddBillFreebie";
     this.ShowInTaskbar   = false;
     this.StartPosition   = System.Windows.Forms.FormStartPosition.CenterScreen;
     this.Text            = "Add Bill Freebies";
     ((System.ComponentModel.ISupportInitialize)(this.lkpEdtPromotionCode.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.panelControl1)).EndInit();
     this.panelControl1.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.panelControl2)).EndInit();
     this.panelControl2.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.panelControl3)).EndInit();
     this.panelControl3.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.xtraTabControl1)).EndInit();
     this.xtraTabControl1.ResumeLayout(false);
     this.xtraTabPage1.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.gridControl1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridView1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemCheckEdit2)).EndInit();
     this.xtraTabPage2.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.gridControl2)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridView2)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemCheckEdit1)).EndInit();
     this.ResumeLayout(false);
 }
Exemplo n.º 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.gridControl1 = new DevExpress.XtraGrid.GridControl();
			this.gridView1 = new DevExpress.XtraGrid.Views.Grid.GridView();
			this.colstrMembershipID = new DevExpress.XtraGrid.Columns.GridColumn();
			this.colstrBranchCode = new DevExpress.XtraGrid.Columns.GridColumn();
			this.colnMembershipNo = new DevExpress.XtraGrid.Columns.GridColumn();
			this.colstrMemberName = new DevExpress.XtraGrid.Columns.GridColumn();
			this.colstrCardName = new DevExpress.XtraGrid.Columns.GridColumn();
			this.colstrNRICFIN = new DevExpress.XtraGrid.Columns.GridColumn();
			this.colfSingaporean = new DevExpress.XtraGrid.Columns.GridColumn();
			this.repositoryItemCheckEdit1 = new DevExpress.XtraEditors.Repository.RepositoryItemCheckEdit();
			this.colfMember = new DevExpress.XtraGrid.Columns.GridColumn();
			this.repositoryItemCheckEdit2 = new DevExpress.XtraEditors.Repository.RepositoryItemCheckEdit();
			this.colfAirCrew = new DevExpress.XtraGrid.Columns.GridColumn();
			this.repositoryItemCheckEdit3 = new DevExpress.XtraEditors.Repository.RepositoryItemCheckEdit();
			this.coldtDOB = new DevExpress.XtraGrid.Columns.GridColumn();
			this.colstrAddress1 = new DevExpress.XtraGrid.Columns.GridColumn();
			this.colstrAddress2 = new DevExpress.XtraGrid.Columns.GridColumn();
			this.colstrPostalCode = new DevExpress.XtraGrid.Columns.GridColumn();
			this.colstrHomeNo = new DevExpress.XtraGrid.Columns.GridColumn();
			this.colstrOfficeNo = new DevExpress.XtraGrid.Columns.GridColumn();
			this.colstrMobileNo = new DevExpress.XtraGrid.Columns.GridColumn();
			this.colstrPagerNo = new DevExpress.XtraGrid.Columns.GridColumn();
			this.colfSMS = new DevExpress.XtraGrid.Columns.GridColumn();
			this.repositoryItemCheckEdit4 = new DevExpress.XtraEditors.Repository.RepositoryItemCheckEdit();
			this.colfEmail = new DevExpress.XtraGrid.Columns.GridColumn();
			this.repositoryItemCheckEdit5 = new DevExpress.XtraEditors.Repository.RepositoryItemCheckEdit();
			this.colfPostalMail = new DevExpress.XtraGrid.Columns.GridColumn();
			this.repositoryItemCheckEdit6 = new DevExpress.XtraEditors.Repository.RepositoryItemCheckEdit();
			this.colstrEmail = new DevExpress.XtraGrid.Columns.GridColumn();
			this.colstrAltEmail = new DevExpress.XtraGrid.Columns.GridColumn();
			this.colnMediaSourceID = new DevExpress.XtraGrid.Columns.GridColumn();
			this.colstrMediaSource = new DevExpress.XtraGrid.Columns.GridColumn();
			this.colstrCompany = new DevExpress.XtraGrid.Columns.GridColumn();
			this.colstrOccupation = new DevExpress.XtraGrid.Columns.GridColumn();
			this.colnLoyaltyStatusID = new DevExpress.XtraGrid.Columns.GridColumn();
			this.colstrRemarks = new DevExpress.XtraGrid.Columns.GridColumn();
			this.coldtSignupDate = new DevExpress.XtraGrid.Columns.GridColumn();
			this.colstrCreditCardNo = new DevExpress.XtraGrid.Columns.GridColumn();
			this.colstrIntroducerMembershipID = new DevExpress.XtraGrid.Columns.GridColumn();
			this.colfLockerDeposit = new DevExpress.XtraGrid.Columns.GridColumn();
			this.repositoryItemCheckEdit7 = new DevExpress.XtraEditors.Repository.RepositoryItemCheckEdit();
			this.colnSignupID = new DevExpress.XtraGrid.Columns.GridColumn();
			this.colnCardStatusID = new DevExpress.XtraGrid.Columns.GridColumn();
			this.colstrCardBranchCode = new DevExpress.XtraGrid.Columns.GridColumn();
			this.sbtnCancel = new DevExpress.XtraEditors.SimpleButton();
			this.sbtnOK = new DevExpress.XtraEditors.SimpleButton();
			this.panelControl1 = new DevExpress.XtraEditors.PanelControl();
			this.label2 = new System.Windows.Forms.Label();
			this.luedtBranchCode = new DevExpress.XtraEditors.LookUpEdit();
			this.label1 = new System.Windows.Forms.Label();
			this.sbtnSearch = new DevExpress.XtraEditors.SimpleButton();
			this.txtSearchKey = new DevExpress.XtraEditors.TextEdit();
			this.panelControl2 = new DevExpress.XtraEditors.PanelControl();
			((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.luedtBranchCode.Properties)).BeginInit();
			((System.ComponentModel.ISupportInitialize)(this.txtSearchKey.Properties)).BeginInit();
			((System.ComponentModel.ISupportInitialize)(this.panelControl2)).BeginInit();
			this.panelControl2.SuspendLayout();
			this.SuspendLayout();
			// 
			// gridControl1
			// 
			this.gridControl1.Dock = System.Windows.Forms.DockStyle.Fill;
			// 
			// gridControl1.EmbeddedNavigator
			// 
			this.gridControl1.EmbeddedNavigator.Name = "";
			this.gridControl1.Location = new System.Drawing.Point(0, 46);
			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(938, 460);
			this.gridControl1.TabIndex = 1;
			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.colstrMembershipID,
																							 this.colstrBranchCode,
																							 this.colnMembershipNo,
																							 this.colstrMemberName,
																							 this.colstrCardName,
																							 this.colstrNRICFIN,
																							 this.colfSingaporean,
																							 this.colfMember,
																							 this.colfAirCrew,
																							 this.coldtDOB,
																							 this.colstrAddress1,
																							 this.colstrAddress2,
																							 this.colstrPostalCode,
																							 this.colstrHomeNo,
																							 this.colstrOfficeNo,
																							 this.colstrMobileNo,
																							 this.colstrPagerNo,
																							 this.colfSMS,
																							 this.colfEmail,
																							 this.colfPostalMail,
																							 this.colstrEmail,
																							 this.colstrAltEmail,
																							 this.colnMediaSourceID,
																							 this.colstrMediaSource,
																							 this.colstrCompany,
																							 this.colstrOccupation,
																							 this.colnLoyaltyStatusID,
																							 this.colstrRemarks,
																							 this.coldtSignupDate,
																							 this.colstrCreditCardNo,
																							 this.colstrIntroducerMembershipID,
																							 this.colfLockerDeposit,
																							 this.colnSignupID,
																							 this.colnCardStatusID,
																							 this.colstrCardBranchCode});
			this.gridView1.GridControl = this.gridControl1;
			this.gridView1.Name = "gridView1";
			this.gridView1.OptionsBehavior.AllowIncrementalSearch = true;
			this.gridView1.OptionsBehavior.Editable = 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);
			// 
			// colstrMembershipID
			// 
			this.colstrMembershipID.Caption = "Membership ID";
			this.colstrMembershipID.FieldName = "strMembershipID";
			this.colstrMembershipID.Name = "colstrMembershipID";
			this.colstrMembershipID.Visible = true;
			this.colstrMembershipID.VisibleIndex = 0;
			this.colstrMembershipID.Width = 83;
			// 
			// colstrBranchCode
			// 
			this.colstrBranchCode.Caption = "Branch Code";
			this.colstrBranchCode.FieldName = "strBranchCode";
			this.colstrBranchCode.Name = "colstrBranchCode";
			this.colstrBranchCode.Visible = true;
			this.colstrBranchCode.VisibleIndex = 1;
			this.colstrBranchCode.Width = 73;
			// 
			// colnMembershipNo
			// 
			this.colnMembershipNo.Caption = "Membership No";
			this.colnMembershipNo.FieldName = "nMembershipNo";
			this.colnMembershipNo.Name = "colnMembershipNo";
			// 
			// colstrMemberName
			// 
			this.colstrMemberName.Caption = "Member Name";
			this.colstrMemberName.FieldName = "strMemberName";
			this.colstrMemberName.Name = "colstrMemberName";
			this.colstrMemberName.Visible = true;
			this.colstrMemberName.VisibleIndex = 2;
			this.colstrMemberName.Width = 89;
			// 
			// colstrCardName
			// 
			this.colstrCardName.Caption = "Card Name";
			this.colstrCardName.FieldName = "strCardName";
			this.colstrCardName.Name = "colstrCardName";
			this.colstrCardName.Visible = true;
			this.colstrCardName.VisibleIndex = 3;
			// 
			// colstrNRICFIN
			// 
			this.colstrNRICFIN.Caption = "NRIC/FIN";
			this.colstrNRICFIN.FieldName = "strNRICFIN";
			this.colstrNRICFIN.Name = "colstrNRICFIN";
			this.colstrNRICFIN.Visible = true;
			this.colstrNRICFIN.VisibleIndex = 4;
			this.colstrNRICFIN.Width = 69;
			// 
			// colfSingaporean
			// 
			this.colfSingaporean.Caption = "Singaporean?";
			this.colfSingaporean.ColumnEdit = this.repositoryItemCheckEdit1;
			this.colfSingaporean.FieldName = "fSingaporean";
			this.colfSingaporean.Name = "colfSingaporean";
			// 
			// repositoryItemCheckEdit1
			// 
			this.repositoryItemCheckEdit1.AutoHeight = false;
			this.repositoryItemCheckEdit1.Name = "repositoryItemCheckEdit1";
			this.repositoryItemCheckEdit1.NullStyle = DevExpress.XtraEditors.Controls.StyleIndeterminate.Unchecked;
			// 
			// colfMember
			// 
			this.colfMember.Caption = "Member?";
			this.colfMember.ColumnEdit = this.repositoryItemCheckEdit2;
			this.colfMember.FieldName = "fMember";
			this.colfMember.Name = "colfMember";
			this.colfMember.Visible = true;
			this.colfMember.VisibleIndex = 5;
			this.colfMember.Width = 53;
			// 
			// repositoryItemCheckEdit2
			// 
			this.repositoryItemCheckEdit2.AutoHeight = false;
			this.repositoryItemCheckEdit2.Name = "repositoryItemCheckEdit2";
			this.repositoryItemCheckEdit2.NullStyle = DevExpress.XtraEditors.Controls.StyleIndeterminate.Unchecked;
			// 
			// colfAirCrew
			// 
			this.colfAirCrew.Caption = "Air Crew?";
			this.colfAirCrew.ColumnEdit = this.repositoryItemCheckEdit3;
			this.colfAirCrew.FieldName = "fAirCrew";
			this.colfAirCrew.Name = "colfAirCrew";
			this.colfAirCrew.Visible = true;
			this.colfAirCrew.VisibleIndex = 6;
			this.colfAirCrew.Width = 56;
			// 
			// repositoryItemCheckEdit3
			// 
			this.repositoryItemCheckEdit3.AutoHeight = false;
			this.repositoryItemCheckEdit3.Name = "repositoryItemCheckEdit3";
			this.repositoryItemCheckEdit3.NullStyle = DevExpress.XtraEditors.Controls.StyleIndeterminate.Unchecked;
			// 
			// coldtDOB
			// 
			this.coldtDOB.Caption = "DOB";
			this.coldtDOB.FieldName = "dtDOB";
			this.coldtDOB.Name = "coldtDOB";
			this.coldtDOB.Visible = true;
			this.coldtDOB.VisibleIndex = 7;
			this.coldtDOB.Width = 74;
			// 
			// colstrAddress1
			// 
			this.colstrAddress1.Caption = "Address1";
			this.colstrAddress1.FieldName = "strAddress1";
			this.colstrAddress1.Name = "colstrAddress1";
			// 
			// colstrAddress2
			// 
			this.colstrAddress2.Caption = "Address2";
			this.colstrAddress2.FieldName = "strAddress2";
			this.colstrAddress2.Name = "colstrAddress2";
			// 
			// colstrPostalCode
			// 
			this.colstrPostalCode.Caption = "Postal Code";
			this.colstrPostalCode.FieldName = "strPostalCode";
			this.colstrPostalCode.Name = "colstrPostalCode";
			// 
			// colstrHomeNo
			// 
			this.colstrHomeNo.Caption = "Home No";
			this.colstrHomeNo.FieldName = "strHomeNo";
			this.colstrHomeNo.Name = "colstrHomeNo";
			this.colstrHomeNo.Visible = true;
			this.colstrHomeNo.VisibleIndex = 8;
			this.colstrHomeNo.Width = 74;
			// 
			// colstrOfficeNo
			// 
			this.colstrOfficeNo.Caption = "Office No";
			this.colstrOfficeNo.FieldName = "strOfficeNo";
			this.colstrOfficeNo.Name = "colstrOfficeNo";
			// 
			// colstrMobileNo
			// 
			this.colstrMobileNo.Caption = "Mobile No";
			this.colstrMobileNo.FieldName = "strMobileNo";
			this.colstrMobileNo.Name = "colstrMobileNo";
			this.colstrMobileNo.Visible = true;
			this.colstrMobileNo.VisibleIndex = 9;
			this.colstrMobileNo.Width = 74;
			// 
			// colstrPagerNo
			// 
			this.colstrPagerNo.Caption = "Pager No";
			this.colstrPagerNo.FieldName = "strPagerNo";
			this.colstrPagerNo.Name = "colstrPagerNo";
			// 
			// colfSMS
			// 
			this.colfSMS.Caption = "SMS?";
			this.colfSMS.ColumnEdit = this.repositoryItemCheckEdit4;
			this.colfSMS.FieldName = "fSMS";
			this.colfSMS.Name = "colfSMS";
			// 
			// repositoryItemCheckEdit4
			// 
			this.repositoryItemCheckEdit4.AutoHeight = false;
			this.repositoryItemCheckEdit4.Name = "repositoryItemCheckEdit4";
			this.repositoryItemCheckEdit4.NullStyle = DevExpress.XtraEditors.Controls.StyleIndeterminate.Unchecked;
			// 
			// colfEmail
			// 
			this.colfEmail.Caption = "Email?";
			this.colfEmail.ColumnEdit = this.repositoryItemCheckEdit5;
			this.colfEmail.FieldName = "fEmail";
			this.colfEmail.Name = "colfEmail";
			// 
			// repositoryItemCheckEdit5
			// 
			this.repositoryItemCheckEdit5.AutoHeight = false;
			this.repositoryItemCheckEdit5.Name = "repositoryItemCheckEdit5";
			this.repositoryItemCheckEdit5.NullStyle = DevExpress.XtraEditors.Controls.StyleIndeterminate.Unchecked;
			// 
			// colfPostalMail
			// 
			this.colfPostalMail.Caption = "DNC?";
			this.colfPostalMail.ColumnEdit = this.repositoryItemCheckEdit6;
			this.colfPostalMail.FieldName = "fPostalMail";
			this.colfPostalMail.Name = "colfPostalMail";
			// 
			// repositoryItemCheckEdit6
			// 
			this.repositoryItemCheckEdit6.AutoHeight = false;
			this.repositoryItemCheckEdit6.Name = "repositoryItemCheckEdit6";
			this.repositoryItemCheckEdit6.NullStyle = DevExpress.XtraEditors.Controls.StyleIndeterminate.Unchecked;
			// 
			// colstrEmail
			// 
			this.colstrEmail.Caption = "Email";
			this.colstrEmail.FieldName = "strEmail";
			this.colstrEmail.Name = "colstrEmail";
			this.colstrEmail.Visible = true;
			this.colstrEmail.VisibleIndex = 10;
			this.colstrEmail.Width = 109;
			// 
			// colstrAltEmail
			// 
			this.colstrAltEmail.Caption = "Alt Email";
			this.colstrAltEmail.FieldName = "strAltEmail";
			this.colstrAltEmail.Name = "colstrAltEmail";
			// 
			// colnMediaSourceID
			// 
			this.colnMediaSourceID.Caption = "Media Source ID";
			this.colnMediaSourceID.FieldName = "nMediaSourceID";
			this.colnMediaSourceID.Name = "colnMediaSourceID";
			// 
			// colstrMediaSource
			// 
			this.colstrMediaSource.Caption = "Media Source";
			this.colstrMediaSource.FieldName = "strMediaSource";
			this.colstrMediaSource.Name = "colstrMediaSource";
			// 
			// colstrCompany
			// 
			this.colstrCompany.Caption = "Company";
			this.colstrCompany.FieldName = "strCompany";
			this.colstrCompany.Name = "colstrCompany";
			// 
			// colstrOccupation
			// 
			this.colstrOccupation.Caption = "Occupation";
			this.colstrOccupation.FieldName = "strOccupation";
			this.colstrOccupation.Name = "colstrOccupation";
			// 
			// colnLoyaltyStatusID
			// 
			this.colnLoyaltyStatusID.Caption = "Loyalty Status ID";
			this.colnLoyaltyStatusID.FieldName = "nLoyaltyStatusID";
			this.colnLoyaltyStatusID.Name = "colnLoyaltyStatusID";
			// 
			// colstrRemarks
			// 
			this.colstrRemarks.Caption = "Remarks";
			this.colstrRemarks.FieldName = "strRemarks";
			this.colstrRemarks.Name = "colstrRemarks";
			// 
			// coldtSignupDate
			// 
			this.coldtSignupDate.Caption = "Signup Date";
			this.coldtSignupDate.FieldName = "dtSignupDate";
			this.coldtSignupDate.Name = "coldtSignupDate";
			// 
			// colstrCreditCardNo
			// 
			this.colstrCreditCardNo.Caption = "Credit Card No";
			this.colstrCreditCardNo.FieldName = "strCreditCardNo";
			this.colstrCreditCardNo.Name = "colstrCreditCardNo";
			// 
			// colstrIntroducerMembershipID
			// 
			this.colstrIntroducerMembershipID.Caption = "Introducer Membership ID";
			this.colstrIntroducerMembershipID.FieldName = "strIntroducerMembershipID";
			this.colstrIntroducerMembershipID.Name = "colstrIntroducerMembershipID";
			// 
			// colfLockerDeposit
			// 
			this.colfLockerDeposit.Caption = "Locker Deposit";
			this.colfLockerDeposit.ColumnEdit = this.repositoryItemCheckEdit7;
			this.colfLockerDeposit.FieldName = "fLockerDeposit";
			this.colfLockerDeposit.Name = "colfLockerDeposit";
			// 
			// repositoryItemCheckEdit7
			// 
			this.repositoryItemCheckEdit7.AutoHeight = false;
			this.repositoryItemCheckEdit7.Name = "repositoryItemCheckEdit7";
			this.repositoryItemCheckEdit7.NullStyle = DevExpress.XtraEditors.Controls.StyleIndeterminate.Unchecked;
			// 
			// colnSignupID
			// 
			this.colnSignupID.Caption = "Signup ID";
			this.colnSignupID.FieldName = "nSignupID";
			this.colnSignupID.Name = "colnSignupID";
			// 
			// colnCardStatusID
			// 
			this.colnCardStatusID.Caption = "Card Status ID";
			this.colnCardStatusID.FieldName = "nCardStatusID";
			this.colnCardStatusID.Name = "colnCardStatusID";
			// 
			// colstrCardBranchCode
			// 
			this.colstrCardBranchCode.Caption = "Card Branch Code";
			this.colstrCardBranchCode.FieldName = "strCardBranchCode";
			this.colstrCardBranchCode.Name = "colstrCardBranchCode";
			// 
			// 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(856, 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(772, 8);
			this.sbtnOK.Name = "sbtnOK";
			this.sbtnOK.TabIndex = 0;
			this.sbtnOK.Text = "OK";
			this.sbtnOK.Click += new System.EventHandler(this.sbtnOK_Click);
			// 
			// panelControl1
			// 
			this.panelControl1.Controls.Add(this.label2);
			this.panelControl1.Controls.Add(this.luedtBranchCode);
			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(938, 46);
			this.panelControl1.TabIndex = 0;
			this.panelControl1.Text = "panelControl1";
			// 
			// 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(26, 18);
			this.label2.Name = "label2";
			this.label2.Size = new System.Drawing.Size(48, 18);
			this.label2.TabIndex = 26;
			this.label2.Text = "Name";
			// 
			// luedtBranchCode
			// 
			this.luedtBranchCode.Location = new System.Drawing.Point(296, 16);
			this.luedtBranchCode.Name = "luedtBranchCode";
			// 
			// luedtBranchCode.Properties
			// 
			this.luedtBranchCode.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
																													new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
			this.luedtBranchCode.Size = new System.Drawing.Size(126, 20);
			this.luedtBranchCode.TabIndex = 24;
			// 
			// 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(238, 18);
			this.label1.Name = "label1";
			this.label1.Size = new System.Drawing.Size(48, 18);
			this.label1.TabIndex = 25;
			this.label1.Text = "Branch:";
			// 
			// sbtnSearch
			// 
			this.sbtnSearch.Location = new System.Drawing.Point(438, 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(82, 18);
			this.txtSearchKey.Name = "txtSearchKey";
			this.txtSearchKey.Size = new System.Drawing.Size(146, 20);
			this.txtSearchKey.TabIndex = 0;
			// 
			// 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, 506);
			this.panelControl2.Name = "panelControl2";
			this.panelControl2.Size = new System.Drawing.Size(938, 38);
			this.panelControl2.TabIndex = 0;
			this.panelControl2.Text = "panelControl2";
			// 
			// frmSearchMember
			// 
			this.AcceptButton = this.sbtnSearch;
			this.AutoScaleBaseSize = new System.Drawing.Size(5, 13);
			this.CancelButton = this.sbtnCancel;
			this.ClientSize = new System.Drawing.Size(938, 544);
			this.Controls.Add(this.gridControl1);
			this.Controls.Add(this.panelControl2);
			this.Controls.Add(this.panelControl1);
			this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedSingle;
			this.MaximizeBox = false;
			this.Name = "frmSearchMember";
			this.ShowInTaskbar = false;
			this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen;
			this.Text = "Search Member";
			((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.luedtBranchCode.Properties)).EndInit();
			((System.ComponentModel.ISupportInitialize)(this.txtSearchKey.Properties)).EndInit();
			((System.ComponentModel.ISupportInitialize)(this.panelControl2)).EndInit();
			this.panelControl2.ResumeLayout(false);
			this.ResumeLayout(false);

		}
Exemplo n.º 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.pnlCtrlTop               = new DevExpress.XtraEditors.PanelControl();
     this.pnlCtrlCenter            = new DevExpress.XtraEditors.PanelControl();
     this.GridControl6             = new DevExpress.XtraGrid.GridControl();
     this.GridView7                = new DevExpress.XtraGrid.Views.Grid.GridView();
     this.GridColumn28             = new DevExpress.XtraGrid.Columns.GridColumn();
     this.GridColumn30             = new DevExpress.XtraGrid.Columns.GridColumn();
     this.GridColumn31             = new DevExpress.XtraGrid.Columns.GridColumn();
     this.GridColumn34             = new DevExpress.XtraGrid.Columns.GridColumn();
     this.GridColumn45             = new DevExpress.XtraGrid.Columns.GridColumn();
     this.repositoryItemCheckEdit1 = new DevExpress.XtraEditors.Repository.RepositoryItemCheckEdit();
     this.GridColumn46             = new DevExpress.XtraGrid.Columns.GridColumn();
     this.GridColumn49             = new DevExpress.XtraGrid.Columns.GridColumn();
     this.pnlCtrlBottom            = new DevExpress.XtraEditors.PanelControl();
     this.simpleButtonCancel       = new DevExpress.XtraEditors.SimpleButton();
     this.simpleButtonOK           = new DevExpress.XtraEditors.SimpleButton();
     ((System.ComponentModel.ISupportInitialize)(this.pnlCtrlTop)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.pnlCtrlCenter)).BeginInit();
     this.pnlCtrlCenter.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.GridControl6)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.GridView7)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemCheckEdit1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.pnlCtrlBottom)).BeginInit();
     this.pnlCtrlBottom.SuspendLayout();
     this.SuspendLayout();
     //
     // pnlCtrlTop
     //
     this.pnlCtrlTop.BorderStyle = DevExpress.XtraEditors.Controls.BorderStyles.NoBorder;
     this.pnlCtrlTop.Dock        = System.Windows.Forms.DockStyle.Top;
     this.pnlCtrlTop.Location    = new System.Drawing.Point(0, 0);
     this.pnlCtrlTop.Name        = "pnlCtrlTop";
     this.pnlCtrlTop.Size        = new System.Drawing.Size(612, 22);
     this.pnlCtrlTop.TabIndex    = 0;
     this.pnlCtrlTop.Text        = "panelControl1";
     //
     // pnlCtrlCenter
     //
     this.pnlCtrlCenter.BorderStyle = DevExpress.XtraEditors.Controls.BorderStyles.NoBorder;
     this.pnlCtrlCenter.Controls.Add(this.GridControl6);
     this.pnlCtrlCenter.Dock     = System.Windows.Forms.DockStyle.Fill;
     this.pnlCtrlCenter.Location = new System.Drawing.Point(0, 22);
     this.pnlCtrlCenter.Name     = "pnlCtrlCenter";
     this.pnlCtrlCenter.Size     = new System.Drawing.Size(612, 176);
     this.pnlCtrlCenter.TabIndex = 1;
     this.pnlCtrlCenter.Text     = "panelControl2";
     //
     // GridControl6
     //
     this.GridControl6.Dock = System.Windows.Forms.DockStyle.Fill;
     //
     // GridControl6.EmbeddedNavigator
     //
     this.GridControl6.EmbeddedNavigator.Name = "";
     this.GridControl6.Location          = new System.Drawing.Point(0, 0);
     this.GridControl6.LookAndFeel.Style = DevExpress.LookAndFeel.LookAndFeelStyle.Skin;
     this.GridControl6.LookAndFeel.UseDefaultLookAndFeel = false;
     this.GridControl6.LookAndFeel.UseWindowsXPTheme     = false;
     this.GridControl6.MainView = this.GridView7;
     this.GridControl6.Name     = "GridControl6";
     this.GridControl6.RepositoryItems.AddRange(new DevExpress.XtraEditors.Repository.RepositoryItem[] {
         this.repositoryItemCheckEdit1
     });
     this.GridControl6.Size     = new System.Drawing.Size(612, 176);
     this.GridControl6.TabIndex = 8;
     this.GridControl6.ViewCollection.AddRange(new DevExpress.XtraGrid.Views.Base.BaseView[] {
         this.GridView7
     });
     //
     // GridView7
     //
     this.GridView7.Columns.AddRange(new DevExpress.XtraGrid.Columns.GridColumn[] {
         this.GridColumn28,
         this.GridColumn30,
         this.GridColumn31,
         this.GridColumn34,
         this.GridColumn45,
         this.GridColumn46,
         this.GridColumn49
     });
     this.GridView7.GridControl = this.GridControl6;
     this.GridView7.Name        = "GridView7";
     this.GridView7.OptionsView.ColumnAutoWidth = false;
     this.GridView7.OptionsView.ShowGroupPanel  = false;
     this.GridView7.CustomColumnDisplayText    += new DevExpress.XtraGrid.Views.Base.CustomColumnDisplayTextEventHandler(this.GridView7_CustomColumnDisplayText);
     this.GridView7.DoubleClick += new System.EventHandler(this.GridView7_DoubleClick);
     //
     // GridColumn28
     //
     this.GridColumn28.Caption   = "Package ID";
     this.GridColumn28.FieldName = "nPackageID";
     this.GridColumn28.Name      = "GridColumn28";
     this.GridColumn28.OptionsColumn.AllowEdit   = false;
     this.GridColumn28.OptionsColumn.AllowFocus  = false;
     this.GridColumn28.OptionsFilter.AllowFilter = false;
     this.GridColumn28.Visible      = true;
     this.GridColumn28.VisibleIndex = 0;
     this.GridColumn28.Width        = 69;
     //
     // GridColumn30
     //
     this.GridColumn30.Caption   = "Package Code";
     this.GridColumn30.FieldName = "strPackageCode";
     this.GridColumn30.Name      = "GridColumn30";
     this.GridColumn30.OptionsColumn.AllowEdit   = false;
     this.GridColumn30.OptionsColumn.AllowFocus  = false;
     this.GridColumn30.OptionsFilter.AllowFilter = false;
     this.GridColumn30.Visible      = true;
     this.GridColumn30.VisibleIndex = 1;
     this.GridColumn30.Width        = 90;
     //
     // GridColumn31
     //
     this.GridColumn31.Caption   = "Package Description";
     this.GridColumn31.FieldName = "strDescription";
     this.GridColumn31.Name      = "GridColumn31";
     this.GridColumn31.OptionsColumn.AllowEdit   = false;
     this.GridColumn31.OptionsColumn.AllowFocus  = false;
     this.GridColumn31.OptionsFilter.AllowFilter = false;
     this.GridColumn31.Visible      = true;
     this.GridColumn31.VisibleIndex = 2;
     this.GridColumn31.Width        = 108;
     //
     // GridColumn34
     //
     this.GridColumn34.Caption   = "Balance";
     this.GridColumn34.FieldName = "Balance";
     this.GridColumn34.Name      = "GridColumn34";
     this.GridColumn34.OptionsColumn.AllowEdit   = false;
     this.GridColumn34.OptionsColumn.AllowFocus  = false;
     this.GridColumn34.OptionsFilter.AllowFilter = false;
     this.GridColumn34.Visible      = true;
     this.GridColumn34.VisibleIndex = 3;
     this.GridColumn34.Width        = 74;
     //
     // GridColumn45
     //
     this.GridColumn45.Caption    = "Free Indicator";
     this.GridColumn45.ColumnEdit = this.repositoryItemCheckEdit1;
     this.GridColumn45.FieldName  = "fFree";
     this.GridColumn45.Name       = "GridColumn45";
     this.GridColumn45.OptionsColumn.AllowEdit   = false;
     this.GridColumn45.OptionsColumn.AllowFocus  = false;
     this.GridColumn45.OptionsFilter.AllowFilter = false;
     this.GridColumn45.Visible      = true;
     this.GridColumn45.VisibleIndex = 4;
     this.GridColumn45.Width        = 84;
     //
     // repositoryItemCheckEdit1
     //
     this.repositoryItemCheckEdit1.AutoHeight = false;
     this.repositoryItemCheckEdit1.Name       = "repositoryItemCheckEdit1";
     this.repositoryItemCheckEdit1.NullStyle  = DevExpress.XtraEditors.Controls.StyleIndeterminate.Unchecked;
     //
     // GridColumn46
     //
     this.GridColumn46.Caption   = "Status";
     this.GridColumn46.FieldName = "nStatusID";
     this.GridColumn46.Name      = "GridColumn46";
     this.GridColumn46.OptionsColumn.AllowEdit   = false;
     this.GridColumn46.OptionsColumn.AllowFocus  = false;
     this.GridColumn46.OptionsFilter.AllowFilter = false;
     this.GridColumn46.Visible      = true;
     this.GridColumn46.VisibleIndex = 5;
     this.GridColumn46.Width        = 100;
     //
     // GridColumn49
     //
     this.GridColumn49.Caption   = "Remark";
     this.GridColumn49.FieldName = "strRemarks";
     this.GridColumn49.Name      = "GridColumn49";
     this.GridColumn49.OptionsColumn.AllowEdit   = false;
     this.GridColumn49.OptionsColumn.AllowFocus  = false;
     this.GridColumn49.OptionsFilter.AllowFilter = false;
     this.GridColumn49.Visible      = true;
     this.GridColumn49.VisibleIndex = 6;
     this.GridColumn49.Width        = 64;
     //
     // pnlCtrlBottom
     //
     this.pnlCtrlBottom.BorderStyle = DevExpress.XtraEditors.Controls.BorderStyles.NoBorder;
     this.pnlCtrlBottom.Controls.Add(this.simpleButtonCancel);
     this.pnlCtrlBottom.Controls.Add(this.simpleButtonOK);
     this.pnlCtrlBottom.Dock     = System.Windows.Forms.DockStyle.Bottom;
     this.pnlCtrlBottom.Location = new System.Drawing.Point(0, 198);
     this.pnlCtrlBottom.Name     = "pnlCtrlBottom";
     this.pnlCtrlBottom.Size     = new System.Drawing.Size(612, 58);
     this.pnlCtrlBottom.TabIndex = 2;
     this.pnlCtrlBottom.Text     = "panelControl3";
     //
     // simpleButtonCancel
     //
     this.simpleButtonCancel.Anchor       = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
     this.simpleButtonCancel.DialogResult = System.Windows.Forms.DialogResult.Cancel;
     this.simpleButtonCancel.Location     = new System.Drawing.Point(520, 20);
     this.simpleButtonCancel.Name         = "simpleButtonCancel";
     this.simpleButtonCancel.TabIndex     = 16;
     this.simpleButtonCancel.Text         = "Cancel";
     //
     // simpleButtonOK
     //
     this.simpleButtonOK.Anchor       = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
     this.simpleButtonOK.DialogResult = System.Windows.Forms.DialogResult.OK;
     this.simpleButtonOK.Location     = new System.Drawing.Point(434, 20);
     this.simpleButtonOK.Name         = "simpleButtonOK";
     this.simpleButtonOK.TabIndex     = 15;
     this.simpleButtonOK.Text         = "OK";
     this.simpleButtonOK.Click       += new System.EventHandler(this.simpleButtonOK_Click);
     //
     // FormTopUpSingleTreatment
     //
     this.AcceptButton      = this.simpleButtonOK;
     this.AutoScaleBaseSize = new System.Drawing.Size(5, 13);
     this.CancelButton      = this.simpleButtonCancel;
     this.ClientSize        = new System.Drawing.Size(612, 256);
     this.Controls.Add(this.pnlCtrlCenter);
     this.Controls.Add(this.pnlCtrlTop);
     this.Controls.Add(this.pnlCtrlBottom);
     this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedDialog;
     this.MaximizeBox     = false;
     this.MinimizeBox     = false;
     this.Name            = "FormTopUpSingleTreatment";
     this.ShowInTaskbar   = false;
     this.StartPosition   = System.Windows.Forms.FormStartPosition.CenterScreen;
     this.Text            = "Top Up Single Treatment";
     ((System.ComponentModel.ISupportInitialize)(this.pnlCtrlTop)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.pnlCtrlCenter)).EndInit();
     this.pnlCtrlCenter.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.GridControl6)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.GridView7)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemCheckEdit1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.pnlCtrlBottom)).EndInit();
     this.pnlCtrlBottom.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(Form_help_gridproducto_cm));
     this.cbo_criterios = new System.Windows.Forms.ComboBox();
     this.txt_busqueda = new System.Windows.Forms.TextBox();
     this.gridgeneral = new System.Windows.Forms.DataGridView();
     this.label8 = new System.Windows.Forms.Label();
     this.panelControl1 = new DevExpress.XtraEditors.PanelControl();
     this.btnSeleccion = new DevExpress.XtraEditors.SimpleButton();
     this.btnbuscar = new DevExpress.XtraEditors.SimpleButton();
     ((System.ComponentModel.ISupportInitialize)(this.gridgeneral)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.panelControl1)).BeginInit();
     this.panelControl1.SuspendLayout();
     this.SuspendLayout();
     //
     // cbo_criterios
     //
     this.cbo_criterios.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
     this.cbo_criterios.FormattingEnabled = true;
     this.cbo_criterios.Location = new System.Drawing.Point(97, 9);
     this.cbo_criterios.Name = "cbo_criterios";
     this.cbo_criterios.Size = new System.Drawing.Size(136, 21);
     this.cbo_criterios.TabIndex = 13;
     //
     // txt_busqueda
     //
     this.txt_busqueda.CharacterCasing = System.Windows.Forms.CharacterCasing.Upper;
     this.txt_busqueda.Location = new System.Drawing.Point(237, 9);
     this.txt_busqueda.Name = "txt_busqueda";
     this.txt_busqueda.Size = new System.Drawing.Size(309, 20);
     this.txt_busqueda.TabIndex = 1;
     this.txt_busqueda.KeyUp += new System.Windows.Forms.KeyEventHandler(this.txt_busqueda_KeyUp);
     //
     // gridgeneral
     //
     this.gridgeneral.AllowUserToAddRows = false;
     this.gridgeneral.AllowUserToDeleteRows = false;
     this.gridgeneral.AutoSizeColumnsMode = System.Windows.Forms.DataGridViewAutoSizeColumnsMode.DisplayedCells;
     this.gridgeneral.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.AutoSize;
     this.gridgeneral.Location = new System.Drawing.Point(0, 45);
     this.gridgeneral.MultiSelect = false;
     this.gridgeneral.Name = "gridgeneral";
     this.gridgeneral.Size = new System.Drawing.Size(781, 278);
     this.gridgeneral.TabIndex = 42;
     this.gridgeneral.RowHeaderMouseClick += new System.Windows.Forms.DataGridViewCellMouseEventHandler(this.gridgeneral_RowHeaderMouseClick);
     this.gridgeneral.DoubleClick += new System.EventHandler(this.gridgeneral_DoubleClick);
     this.gridgeneral.KeyDown += new System.Windows.Forms.KeyEventHandler(this.gridgeneral_KeyDown);
     //
     // label8
     //
     this.label8.AutoSize = true;
     this.label8.BackColor = System.Drawing.Color.Transparent;
     this.label8.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label8.ForeColor = System.Drawing.Color.White;
     this.label8.Location = new System.Drawing.Point(15, 13);
     this.label8.Name = "label8";
     this.label8.Size = new System.Drawing.Size(72, 13);
     this.label8.TabIndex = 28;
     this.label8.Text = "Buscar por:";
     //
     // panelControl1
     //
     this.panelControl1.Appearance.BackColor = System.Drawing.Color.Teal;
     this.panelControl1.Appearance.BackColor2 = System.Drawing.Color.White;
     this.panelControl1.Appearance.Options.UseBackColor = true;
     this.panelControl1.BorderStyle = DevExpress.XtraEditors.Controls.BorderStyles.NoBorder;
     this.panelControl1.Controls.Add(this.cbo_criterios);
     this.panelControl1.Controls.Add(this.txt_busqueda);
     this.panelControl1.Controls.Add(this.label8);
     this.panelControl1.Location = new System.Drawing.Point(0, 4);
     this.panelControl1.Name = "panelControl1";
     this.panelControl1.Size = new System.Drawing.Size(578, 38);
     this.panelControl1.TabIndex = 45;
     //
     // btnSeleccion
     //
     this.btnSeleccion.Cursor = System.Windows.Forms.Cursors.Hand;
     this.btnSeleccion.Image = ((System.Drawing.Image)(resources.GetObject("btnSeleccion.Image")));
     this.btnSeleccion.Location = new System.Drawing.Point(667, 4);
     this.btnSeleccion.Name = "btnSeleccion";
     this.btnSeleccion.Size = new System.Drawing.Size(113, 38);
     this.btnSeleccion.TabIndex = 52;
     this.btnSeleccion.Text = "&Seleccionar";
     this.btnSeleccion.Click += new System.EventHandler(this.btnSeleccion_Click);
     //
     // btnbuscar
     //
     this.btnbuscar.Cursor = System.Windows.Forms.Cursors.Hand;
     this.btnbuscar.Image = ((System.Drawing.Image)(resources.GetObject("btnbuscar.Image")));
     this.btnbuscar.Location = new System.Drawing.Point(582, 4);
     this.btnbuscar.Name = "btnbuscar";
     this.btnbuscar.Size = new System.Drawing.Size(81, 38);
     this.btnbuscar.TabIndex = 51;
     this.btnbuscar.Text = "&Buscar";
     this.btnbuscar.Click += new System.EventHandler(this.btnbuscar_Click);
     //
     // Form_help_gridproducto_cm
     //
     this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
     this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
     this.AutoSize = true;
     this.AutoSizeMode = System.Windows.Forms.AutoSizeMode.GrowAndShrink;
     this.ClientSize = new System.Drawing.Size(785, 323);
     this.Controls.Add(this.btnSeleccion);
     this.Controls.Add(this.btnbuscar);
     this.Controls.Add(this.panelControl1);
     this.Controls.Add(this.gridgeneral);
     this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedSingle;
     this.Icon = ((System.Drawing.Icon)(resources.GetObject("$this.Icon")));
     this.KeyPreview = true;
     this.MaximizeBox = false;
     this.MinimizeBox = false;
     this.Name = "Form_help_gridproducto_cm";
     this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen;
     this.Activated += new System.EventHandler(this.Frm_help_general_Activated);
     this.Load += new System.EventHandler(this.Frm_help_general_Load);
     this.KeyDown += new System.Windows.Forms.KeyEventHandler(this.Frm_help_general_KeyDown);
     ((System.ComponentModel.ISupportInitialize)(this.gridgeneral)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.panelControl1)).EndInit();
     this.panelControl1.ResumeLayout(false);
     this.panelControl1.PerformLayout();
     this.ResumeLayout(false);
 }
Exemplo n.º 29
0
 /// <summary>
 /// 设计器支持所需的方法 - 不要修改
 /// 使用代码编辑器修改此方法的内容。
 /// </summary>
 private void InitializeComponent()
 {
     this.ucDevices     = new wayeal.os.exhaust.UserControls.ucDebuggingDevices();
     this.panelControl2 = new DevExpress.XtraEditors.PanelControl();
     this.pcClient      = new DevExpress.XtraEditors.PanelControl();
     ((System.ComponentModel.ISupportInitialize)(this.mvvmContext1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.panelControl2)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.pcClient)).BeginInit();
     this.SuspendLayout();
     //
     // ucDevices
     //
     this.ucDevices.Dock            = System.Windows.Forms.DockStyle.Left;
     this.ucDevices.ExecMergeRibbon = false;
     this.ucDevices.Location        = new System.Drawing.Point(5, 5);
     this.ucDevices.Margin          = new System.Windows.Forms.Padding(0);
     this.ucDevices.Name            = "ucDevices";
     this.ucDevices.Padding         = new System.Windows.Forms.Padding(8);
     this.ucDevices.Size            = new System.Drawing.Size(261, 563);
     this.ucDevices.TabIndex        = 1;
     this.ucDevices.ZoomFactor      = 1F;
     this.ucDevices.DeviceClick    += new wayeal.os.exhaust.UserControls.ucDebuggingDevices.DeviceClickEventHandler(this.ucDevices_DeviceClick);
     //
     // panelControl2
     //
     this.panelControl2.Appearance.BackColor            = System.Drawing.Color.Gray;
     this.panelControl2.Appearance.Options.UseBackColor = true;
     this.panelControl2.BorderStyle = DevExpress.XtraEditors.Controls.BorderStyles.NoBorder;
     this.panelControl2.Dock        = System.Windows.Forms.DockStyle.Left;
     this.panelControl2.Location    = new System.Drawing.Point(266, 5);
     this.panelControl2.Name        = "panelControl2";
     this.panelControl2.Size        = new System.Drawing.Size(1, 563);
     this.panelControl2.TabIndex    = 3;
     //
     // pcClient
     //
     this.pcClient.BorderStyle = DevExpress.XtraEditors.Controls.BorderStyles.NoBorder;
     this.pcClient.Dock        = System.Windows.Forms.DockStyle.Fill;
     this.pcClient.Location    = new System.Drawing.Point(267, 5);
     this.pcClient.Name        = "pcClient";
     this.pcClient.Padding     = new System.Windows.Forms.Padding(5, 0, 0, 0);
     this.pcClient.Size        = new System.Drawing.Size(871, 563);
     this.pcClient.TabIndex    = 4;
     //
     // ucDebugger
     //
     this.Appearance.BackColor            = System.Drawing.Color.WhiteSmoke;
     this.Appearance.Options.UseBackColor = true;
     this.AutoScaleDimensions             = new System.Drawing.SizeF(7F, 14F);
     this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
     this.Controls.Add(this.pcClient);
     this.Controls.Add(this.panelControl2);
     this.Controls.Add(this.ucDevices);
     this.Name    = "ucDebugger";
     this.Padding = new System.Windows.Forms.Padding(5);
     this.Size    = new System.Drawing.Size(1143, 573);
     ((System.ComponentModel.ISupportInitialize)(this.mvvmContext1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.panelControl2)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.pcClient)).EndInit();
     this.ResumeLayout(false);
 }
Exemplo n.º 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.pnlCtrlTop              = new DevExpress.XtraEditors.PanelControl();
     this.calcEdit1               = new DevExpress.XtraEditors.CalcEdit();
     this.label1                  = new System.Windows.Forms.Label();
     this.pnlCtrlCenter           = new DevExpress.XtraEditors.PanelControl();
     this.gridControl1            = new DevExpress.XtraGrid.GridControl();
     this.gridView1               = new DevExpress.XtraGrid.Views.Grid.GridView();
     this.gridColumn1             = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn2             = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn3             = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn4             = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn5             = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn6             = new DevExpress.XtraGrid.Columns.GridColumn();
     this.repositoryItemDateEdit1 = new DevExpress.XtraEditors.Repository.RepositoryItemDateEdit();
     this.gridColumn7             = new DevExpress.XtraGrid.Columns.GridColumn();
     this.pnlCtrlBottom           = new DevExpress.XtraEditors.PanelControl();
     this.simpleButtonCancel      = new DevExpress.XtraEditors.SimpleButton();
     this.simpleButtonOK          = new DevExpress.XtraEditors.SimpleButton();
     ((System.ComponentModel.ISupportInitialize)(this.pnlCtrlTop)).BeginInit();
     this.pnlCtrlTop.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.calcEdit1.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.pnlCtrlCenter)).BeginInit();
     this.pnlCtrlCenter.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.gridControl1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridView1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemDateEdit1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.pnlCtrlBottom)).BeginInit();
     this.pnlCtrlBottom.SuspendLayout();
     this.SuspendLayout();
     //
     // pnlCtrlTop
     //
     this.pnlCtrlTop.BorderStyle = DevExpress.XtraEditors.Controls.BorderStyles.NoBorder;
     this.pnlCtrlTop.Controls.Add(this.calcEdit1);
     this.pnlCtrlTop.Controls.Add(this.label1);
     this.pnlCtrlTop.Dock     = System.Windows.Forms.DockStyle.Top;
     this.pnlCtrlTop.Location = new System.Drawing.Point(0, 0);
     this.pnlCtrlTop.Name     = "pnlCtrlTop";
     this.pnlCtrlTop.Size     = new System.Drawing.Size(590, 36);
     this.pnlCtrlTop.TabIndex = 0;
     this.pnlCtrlTop.Text     = "panelControl1";
     //
     // calcEdit1
     //
     this.calcEdit1.Location = new System.Drawing.Point(234, 8);
     this.calcEdit1.Name     = "calcEdit1";
     //
     // calcEdit1.Properties
     //
     this.calcEdit1.Properties.Mask.EditMask = "d2";
     this.calcEdit1.Properties.Mask.UseMaskAsDisplayFormat = true;
     this.calcEdit1.Properties.MaxLength = 3;
     this.calcEdit1.Properties.Precision = 0;
     this.calcEdit1.Size     = new System.Drawing.Size(106, 20);
     this.calcEdit1.TabIndex = 1;
     //
     // label1
     //
     this.label1.Font     = new System.Drawing.Font("Tahoma", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((System.Byte)(0)));
     this.label1.Location = new System.Drawing.Point(18, 6);
     this.label1.Name     = "label1";
     this.label1.Size     = new System.Drawing.Size(208, 23);
     this.label1.TabIndex = 0;
     this.label1.Text     = "Month(s) To Rent:";
     //
     // pnlCtrlCenter
     //
     this.pnlCtrlCenter.BorderStyle = DevExpress.XtraEditors.Controls.BorderStyles.NoBorder;
     this.pnlCtrlCenter.Controls.Add(this.gridControl1);
     this.pnlCtrlCenter.Dock     = System.Windows.Forms.DockStyle.Fill;
     this.pnlCtrlCenter.Location = new System.Drawing.Point(0, 36);
     this.pnlCtrlCenter.Name     = "pnlCtrlCenter";
     this.pnlCtrlCenter.Size     = new System.Drawing.Size(590, 216);
     this.pnlCtrlCenter.TabIndex = 1;
     this.pnlCtrlCenter.Text     = "panelControl2";
     //
     // gridControl1
     //
     this.gridControl1.Dock = System.Windows.Forms.DockStyle.Fill;
     //
     // gridControl1.EmbeddedNavigator
     //
     this.gridControl1.EmbeddedNavigator.Name = "";
     this.gridControl1.Location = new System.Drawing.Point(0, 0);
     this.gridControl1.MainView = this.gridView1;
     this.gridControl1.Name     = "gridControl1";
     this.gridControl1.RepositoryItems.AddRange(new DevExpress.XtraEditors.Repository.RepositoryItem[] {
         this.repositoryItemDateEdit1
     });
     this.gridControl1.Size     = new System.Drawing.Size(590, 216);
     this.gridControl1.TabIndex = 0;
     this.gridControl1.ViewCollection.AddRange(new DevExpress.XtraGrid.Views.Base.BaseView[] {
         this.gridView1
     });
     //
     // gridView1
     //
     this.gridView1.Columns.AddRange(new DevExpress.XtraGrid.Columns.GridColumn[] {
         this.gridColumn1,
         this.gridColumn2,
         this.gridColumn3,
         this.gridColumn4,
         this.gridColumn5,
         this.gridColumn6,
         this.gridColumn7
     });
     this.gridView1.GridControl = this.gridControl1;
     this.gridView1.Name        = "gridView1";
     //
     // gridColumn1
     //
     this.gridColumn1.Caption   = "Branch Code";
     this.gridColumn1.FieldName = "strBranchCode";
     this.gridColumn1.Name      = "gridColumn1";
     this.gridColumn1.OptionsColumn.AllowEdit   = false;
     this.gridColumn1.OptionsFilter.AllowFilter = false;
     this.gridColumn1.Visible      = true;
     this.gridColumn1.VisibleIndex = 0;
     this.gridColumn1.Width        = 93;
     //
     // gridColumn2
     //
     this.gridColumn2.Caption   = "Locker No";
     this.gridColumn2.FieldName = "nLockerNo";
     this.gridColumn2.Name      = "gridColumn2";
     this.gridColumn2.OptionsColumn.AllowEdit   = false;
     this.gridColumn2.OptionsFilter.AllowFilter = false;
     this.gridColumn2.Visible      = true;
     this.gridColumn2.VisibleIndex = 1;
     this.gridColumn2.Width        = 74;
     //
     // gridColumn3
     //
     this.gridColumn3.Caption   = "Membership ID";
     this.gridColumn3.FieldName = "strMembershipID";
     this.gridColumn3.Name      = "gridColumn3";
     this.gridColumn3.OptionsColumn.AllowEdit = false;
     this.gridColumn3.OptionsColumn.ShowInCustomizationForm = false;
     this.gridColumn3.OptionsFilter.AllowFilter             = false;
     //
     // gridColumn4
     //
     this.gridColumn4.Caption   = "Receipt No";
     this.gridColumn4.FieldName = "strReceiptNo";
     this.gridColumn4.Name      = "gridColumn4";
     this.gridColumn4.OptionsColumn.AllowEdit   = false;
     this.gridColumn4.OptionsFilter.AllowFilter = false;
     this.gridColumn4.Visible      = true;
     this.gridColumn4.VisibleIndex = 2;
     this.gridColumn4.Width        = 113;
     //
     // gridColumn5
     //
     this.gridColumn5.Caption   = "Status ID";
     this.gridColumn5.FieldName = "nStatusID";
     this.gridColumn5.Name      = "gridColumn5";
     this.gridColumn5.OptionsColumn.AllowEdit = false;
     this.gridColumn5.OptionsColumn.ShowInCustomizationForm = false;
     this.gridColumn5.OptionsFilter.AllowFilter             = false;
     this.gridColumn5.Width = 112;
     //
     // gridColumn6
     //
     this.gridColumn6.Caption    = "Expiry Date";
     this.gridColumn6.ColumnEdit = this.repositoryItemDateEdit1;
     this.gridColumn6.FieldName  = "dtExpiry";
     this.gridColumn6.Name       = "gridColumn6";
     this.gridColumn6.OptionsColumn.AllowEdit   = false;
     this.gridColumn6.OptionsFilter.AllowFilter = false;
     this.gridColumn6.Visible      = true;
     this.gridColumn6.VisibleIndex = 3;
     this.gridColumn6.Width        = 114;
     //
     // repositoryItemDateEdit1
     //
     this.repositoryItemDateEdit1.AutoHeight = false;
     this.repositoryItemDateEdit1.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
         new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)
     });
     this.repositoryItemDateEdit1.DisplayFormat.FormatString = "dd/MM/yyyy";
     this.repositoryItemDateEdit1.DisplayFormat.FormatType   = DevExpress.Utils.FormatType.DateTime;
     this.repositoryItemDateEdit1.Mask.EditMask = "dd/MM/yyyy";
     this.repositoryItemDateEdit1.Name          = "repositoryItemDateEdit1";
     //
     // gridColumn7
     //
     this.gridColumn7.Caption   = "Remark";
     this.gridColumn7.FieldName = "strRemarks";
     this.gridColumn7.Name      = "gridColumn7";
     this.gridColumn7.OptionsColumn.AllowEdit   = false;
     this.gridColumn7.OptionsFilter.AllowFilter = false;
     this.gridColumn7.Visible      = true;
     this.gridColumn7.VisibleIndex = 4;
     this.gridColumn7.Width        = 182;
     //
     // pnlCtrlBottom
     //
     this.pnlCtrlBottom.BorderStyle = DevExpress.XtraEditors.Controls.BorderStyles.NoBorder;
     this.pnlCtrlBottom.Controls.Add(this.simpleButtonCancel);
     this.pnlCtrlBottom.Controls.Add(this.simpleButtonOK);
     this.pnlCtrlBottom.Dock     = System.Windows.Forms.DockStyle.Bottom;
     this.pnlCtrlBottom.Location = new System.Drawing.Point(0, 252);
     this.pnlCtrlBottom.Name     = "pnlCtrlBottom";
     this.pnlCtrlBottom.Size     = new System.Drawing.Size(590, 44);
     this.pnlCtrlBottom.TabIndex = 2;
     this.pnlCtrlBottom.Text     = "panelControl3";
     //
     // simpleButtonCancel
     //
     this.simpleButtonCancel.DialogResult = System.Windows.Forms.DialogResult.Cancel;
     this.simpleButtonCancel.Location     = new System.Drawing.Point(504, 12);
     this.simpleButtonCancel.Name         = "simpleButtonCancel";
     this.simpleButtonCancel.TabIndex     = 8;
     this.simpleButtonCancel.Text         = "Cancel";
     this.simpleButtonCancel.Click       += new System.EventHandler(this.simpleButtonCancel_Click);
     //
     // simpleButtonOK
     //
     this.simpleButtonOK.DialogResult = System.Windows.Forms.DialogResult.OK;
     this.simpleButtonOK.Location     = new System.Drawing.Point(418, 12);
     this.simpleButtonOK.Name         = "simpleButtonOK";
     this.simpleButtonOK.TabIndex     = 7;
     this.simpleButtonOK.Text         = "OK";
     this.simpleButtonOK.Click       += new System.EventHandler(this.simpleButtonOK_Click);
     //
     // FormNewLocker
     //
     this.AutoScaleBaseSize = new System.Drawing.Size(5, 13);
     this.ClientSize        = new System.Drawing.Size(590, 296);
     this.Controls.Add(this.pnlCtrlCenter);
     this.Controls.Add(this.pnlCtrlTop);
     this.Controls.Add(this.pnlCtrlBottom);
     this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedDialog;
     this.MaximizeBox     = false;
     this.MinimizeBox     = false;
     this.Name            = "FormNewLocker";
     this.ShowInTaskbar   = false;
     this.StartPosition   = System.Windows.Forms.FormStartPosition.CenterScreen;
     this.Text            = "New Locker";
     this.Load           += new System.EventHandler(this.FormNew_ExtendLocker_Load);
     ((System.ComponentModel.ISupportInitialize)(this.pnlCtrlTop)).EndInit();
     this.pnlCtrlTop.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.calcEdit1.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.pnlCtrlCenter)).EndInit();
     this.pnlCtrlCenter.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.gridControl1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridView1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemDateEdit1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.pnlCtrlBottom)).EndInit();
     this.pnlCtrlBottom.ResumeLayout(false);
     this.ResumeLayout(false);
 }
 /// <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);
 }
Exemplo n.º 32
0
 /// <summary>
 /// 设计器支持所需的方法 - 不要
 /// 使用代码编辑器修改此方法的内容。
 /// </summary>
 private void InitializeComponent()
 {
     this.panelControl1 = new DevExpress.XtraEditors.PanelControl();
     this.treeList1 = new DevExpress.XtraTreeList.TreeList();
     this.treeListColumn2 = new DevExpress.XtraTreeList.Columns.TreeListColumn();
     this.treeListColumn3 = new DevExpress.XtraTreeList.Columns.TreeListColumn();
     this.repositoryItemCheckEdit1 = new DevExpress.XtraEditors.Repository.RepositoryItemCheckEdit();
     this.checkEdit1 = new DevExpress.XtraEditors.CheckEdit();
     this.simpleButton2 = new DevExpress.XtraEditors.SimpleButton();
     this.simpleButton1 = new DevExpress.XtraEditors.SimpleButton();
     ((System.ComponentModel.ISupportInitialize)(this.panelControl1)).BeginInit();
     this.panelControl1.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.treeList1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemCheckEdit1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.checkEdit1.Properties)).BeginInit();
     this.SuspendLayout();
     //
     // panelControl1
     //
     this.panelControl1.Controls.Add(this.treeList1);
     this.panelControl1.Controls.Add(this.checkEdit1);
     this.panelControl1.Controls.Add(this.simpleButton2);
     this.panelControl1.Controls.Add(this.simpleButton1);
     this.panelControl1.Dock = System.Windows.Forms.DockStyle.Fill;
     this.panelControl1.Location = new System.Drawing.Point(0, 0);
     this.panelControl1.Name = "panelControl1";
     this.panelControl1.Size = new System.Drawing.Size(462, 344);
     this.panelControl1.TabIndex = 0;
     this.panelControl1.Text = "panelControl1";
     //
     // treeList1
     //
     this.treeList1.Columns.AddRange(new DevExpress.XtraTreeList.Columns.TreeListColumn[] {
     this.treeListColumn2,
     this.treeListColumn3});
     this.treeList1.Dock = System.Windows.Forms.DockStyle.Top;
     this.treeList1.KeyFieldName = "A";
     this.treeList1.Location = new System.Drawing.Point(3, 3);
     this.treeList1.Name = "treeList1";
     this.treeList1.ParentFieldName = "D";
     this.treeList1.RepositoryItems.AddRange(new DevExpress.XtraEditors.Repository.RepositoryItem[] {
     this.repositoryItemCheckEdit1});
     this.treeList1.Size = new System.Drawing.Size(456, 300);
     this.treeList1.TabIndex = 3;
     //
     // treeListColumn2
     //
     this.treeListColumn2.Caption = "名称";
     this.treeListColumn2.FieldName = "B";
     this.treeListColumn2.Name = "treeListColumn2";
     this.treeListColumn2.OptionsColumn.AllowEdit = false;
     this.treeListColumn2.VisibleIndex = 0;
     this.treeListColumn2.Width = 96;
     //
     // treeListColumn3
     //
     this.treeListColumn3.Caption = "是否选择";
     this.treeListColumn3.ColumnEdit = this.repositoryItemCheckEdit1;
     this.treeListColumn3.FieldName = "C";
     this.treeListColumn3.Name = "treeListColumn3";
     this.treeListColumn3.VisibleIndex = 1;
     this.treeListColumn3.Width = 96;
     //
     // repositoryItemCheckEdit1
     //
     this.repositoryItemCheckEdit1.AutoHeight = false;
     this.repositoryItemCheckEdit1.Name = "repositoryItemCheckEdit1";
     //
     // checkEdit1
     //
     this.checkEdit1.Location = new System.Drawing.Point(12, 309);
     this.checkEdit1.Name = "checkEdit1";
     this.checkEdit1.Properties.Caption = "全选";
     this.checkEdit1.Size = new System.Drawing.Size(75, 19);
     this.checkEdit1.TabIndex = 2;
     this.checkEdit1.Visible = false;
     this.checkEdit1.CheckedChanged += new System.EventHandler(this.checkEdit1_CheckedChanged);
     //
     // simpleButton2
     //
     this.simpleButton2.Location = new System.Drawing.Point(358, 309);
     this.simpleButton2.Name = "simpleButton2";
     this.simpleButton2.Size = new System.Drawing.Size(66, 23);
     this.simpleButton2.TabIndex = 1;
     this.simpleButton2.Text = "取消";
     this.simpleButton2.Click += new System.EventHandler(this.simpleButton2_Click);
     //
     // simpleButton1
     //
     this.simpleButton1.Location = new System.Drawing.Point(277, 309);
     this.simpleButton1.Name = "simpleButton1";
     this.simpleButton1.Size = new System.Drawing.Size(66, 23);
     this.simpleButton1.TabIndex = 1;
     this.simpleButton1.Text = "确定";
     this.simpleButton1.Click += new System.EventHandler(this.simpleButton1_Click);
     //
     // FrmPicTreeSelect
     //
     this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 12F);
     this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
     this.ClientSize = new System.Drawing.Size(462, 344);
     this.Controls.Add(this.panelControl1);
     this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedDialog;
     this.MaximizeBox = false;
     this.MinimizeBox = false;
     this.Name = "FrmPicTreeSelect";
     this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen;
     this.Text = "选择图层";
     this.Load += new System.EventHandler(this.FrmPicTypeSelect_Load);
     ((System.ComponentModel.ISupportInitialize)(this.panelControl1)).EndInit();
     this.panelControl1.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.treeList1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemCheckEdit1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.checkEdit1.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.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);
 }
Exemplo n.º 34
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);
 }
Exemplo n.º 35
0
 /// <summary> 
 /// 设计器支持所需的方法 - 不要
 /// 使用代码编辑器修改此方法的内容。
 /// </summary>
 private void InitializeComponent()
 {
     this.components = new System.ComponentModel.Container();
     System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(Grid));
     this.btn_simpleCancelSum = new DevExpress.XtraEditors.SimpleButton();
     this.btn_显示隐藏分组面板 = new DevExpress.XtraEditors.SimpleButton();
     this.btn_显示隐藏过滤面板 = new DevExpress.XtraEditors.SimpleButton();
     this.btn_Export = new DevExpress.XtraEditors.SimpleButton();
     this.btnshow = new DevExpress.XtraEditors.PictureEdit();
     this.btn_合并取消合并表格 = new DevExpress.XtraEditors.SimpleButton();
     this._panelControl = new DevExpress.XtraEditors.PanelControl();
     this.flowLayoutPanel1 = new System.Windows.Forms.FlowLayoutPanel();
     this.btn_ReduceRow = new DevExpress.XtraEditors.SimpleButton();
     this.btn_AddRow = new DevExpress.XtraEditors.SimpleButton();
     this.btn_执行命令1 = new DevExpress.XtraEditors.SimpleButton();
     this.采集模块 = new System.Windows.Forms.Panel();
     this.分钟 = new System.Windows.Forms.Label();
     this.采集频率 = new System.Windows.Forms.Label();
     this.采集频率1 = new System.Windows.Forms.ComboBox();
     this.panel1 = new System.Windows.Forms.Panel();
     this._gridControl = new DevExpress.XtraGrid.GridControl();
     this.bandedGridView1 = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridView();
     this.gridBand3 = new DevExpress.XtraGrid.Views.BandedGrid.GridBand();
     this.bandedGridColumn4 = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
     this.bandedGridColumn3 = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
     this.bandedGridColumn14 = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
     this.bandedGridColumn15 = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
     this.bandedGridColumn21 = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
     this.bandedGridColumn16 = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
     this.bandedGridColumn17 = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
     this.bandedGridColumn1 = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
     this.bandedGridColumn2 = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
     this.bandedGridColumn18 = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
     this.gridBand4 = new DevExpress.XtraGrid.Views.BandedGrid.GridBand();
     this.bandedGridColumn22 = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
     this.bandedGridColumn23 = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
     this.bandedGridColumn24 = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
     this.bandedGridColumn25 = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
     this.bandedGridColumn26 = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
     this._gridView = new DevExpress.XtraGrid.Views.Grid.GridView();
     this.gridColumn1 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn2 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn3 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn4 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn5 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn6 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn7 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn8 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn9 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn10 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn11 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn12 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn13 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridBand1 = new DevExpress.XtraGrid.Views.BandedGrid.GridBand();
     this._saveFileDialog = new System.Windows.Forms.SaveFileDialog();
     this._contextMenuStrip = new System.Windows.Forms.ContextMenuStrip(this.components);
     this.复制当前列ToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
     this.复制当前字段ToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
     this.报表导出ToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
     this.打印预览ToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
     this.gridBand2 = new DevExpress.XtraGrid.Views.BandedGrid.GridBand();
     ((System.ComponentModel.ISupportInitialize)(this.btnshow.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this._panelControl)).BeginInit();
     this._panelControl.SuspendLayout();
     this.flowLayoutPanel1.SuspendLayout();
     this.采集模块.SuspendLayout();
     this.panel1.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this._gridControl)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.bandedGridView1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this._gridView)).BeginInit();
     this._contextMenuStrip.SuspendLayout();
     this.SuspendLayout();
     //
     // btn_simpleCancelSum
     //
     this.btn_simpleCancelSum.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
     this.btn_simpleCancelSum.Image = ((System.Drawing.Image)(resources.GetObject("btn_simpleCancelSum.Image")));
     this.btn_simpleCancelSum.ImageLocation = DevExpress.XtraEditors.ImageLocation.MiddleLeft;
     this.btn_simpleCancelSum.Location = new System.Drawing.Point(501, 3);
     this.btn_simpleCancelSum.Name = "btn_simpleCancelSum";
     this.btn_simpleCancelSum.Size = new System.Drawing.Size(80, 27);
     this.btn_simpleCancelSum.TabIndex = 4;
     this.btn_simpleCancelSum.Text = "合计底栏";
     this.btn_simpleCancelSum.Visible = false;
     this.btn_simpleCancelSum.Click += new System.EventHandler(this.btn_simpleCancelSum_Click);
     //
     // btn_显示隐藏分组面板
     //
     this.btn_显示隐藏分组面板.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
     this.btn_显示隐藏分组面板.Image = ((System.Drawing.Image)(resources.GetObject("btn_显示隐藏分组面板.Image")));
     this.btn_显示隐藏分组面板.ImageLocation = DevExpress.XtraEditors.ImageLocation.MiddleLeft;
     this.btn_显示隐藏分组面板.Location = new System.Drawing.Point(587, 3);
     this.btn_显示隐藏分组面板.Name = "btn_显示隐藏分组面板";
     this.btn_显示隐藏分组面板.Size = new System.Drawing.Size(80, 27);
     this.btn_显示隐藏分组面板.TabIndex = 2;
     this.btn_显示隐藏分组面板.Text = "分组面板";
     this.btn_显示隐藏分组面板.Visible = false;
     this.btn_显示隐藏分组面板.Click += new System.EventHandler(this.btn_显示隐藏分组面板_Click);
     //
     // btn_显示隐藏过滤面板
     //
     this.btn_显示隐藏过滤面板.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
     this.btn_显示隐藏过滤面板.Image = ((System.Drawing.Image)(resources.GetObject("btn_显示隐藏过滤面板.Image")));
     this.btn_显示隐藏过滤面板.ImageLocation = DevExpress.XtraEditors.ImageLocation.MiddleLeft;
     this.btn_显示隐藏过滤面板.Location = new System.Drawing.Point(673, 3);
     this.btn_显示隐藏过滤面板.Name = "btn_显示隐藏过滤面板";
     this.btn_显示隐藏过滤面板.Size = new System.Drawing.Size(80, 27);
     this.btn_显示隐藏过滤面板.TabIndex = 0;
     this.btn_显示隐藏过滤面板.Text = "查找记录";
     this.btn_显示隐藏过滤面板.Visible = false;
     this.btn_显示隐藏过滤面板.Click += new System.EventHandler(this.btn_TotleLocation_Click);
     //
     // btn_Export
     //
     this.btn_Export.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
     this.btn_Export.Image = ((System.Drawing.Image)(resources.GetObject("btn_Export.Image")));
     this.btn_Export.ImageLocation = DevExpress.XtraEditors.ImageLocation.MiddleLeft;
     this.btn_Export.Location = new System.Drawing.Point(845, 3);
     this.btn_Export.Name = "btn_Export";
     this.btn_Export.Size = new System.Drawing.Size(80, 27);
     this.btn_Export.TabIndex = 1;
     this.btn_Export.Text = "导出表格";
     this.btn_Export.Visible = false;
     this.btn_Export.Click += new System.EventHandler(this.btn_Export_Click);
     //
     // btnshow
     //
     this.btnshow.Cursor = System.Windows.Forms.Cursors.Hand;
     this.btnshow.EditValue = ((object)(resources.GetObject("btnshow.EditValue")));
     this.btnshow.Location = new System.Drawing.Point(2, 2);
     this.btnshow.Name = "btnshow";
     this.btnshow.Properties.Appearance.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(230)))), ((int)(((byte)(230)))), ((int)(((byte)(230)))));
     this.btnshow.Properties.Appearance.Options.UseBackColor = true;
     this.btnshow.Properties.BorderStyle = DevExpress.XtraEditors.Controls.BorderStyles.NoBorder;
     this.btnshow.Size = new System.Drawing.Size(22, 18);
     this.btnshow.TabIndex = 10;
     this.btnshow.Visible = false;
     this.btnshow.Click += new System.EventHandler(this.btnshow_Click);
     //
     // btn_合并取消合并表格
     //
     this.btn_合并取消合并表格.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
     this.btn_合并取消合并表格.Image = ((System.Drawing.Image)(resources.GetObject("btn_合并取消合并表格.Image")));
     this.btn_合并取消合并表格.ImageLocation = DevExpress.XtraEditors.ImageLocation.MiddleLeft;
     this.btn_合并取消合并表格.Location = new System.Drawing.Point(759, 3);
     this.btn_合并取消合并表格.Name = "btn_合并取消合并表格";
     this.btn_合并取消合并表格.Size = new System.Drawing.Size(80, 27);
     this.btn_合并取消合并表格.TabIndex = 10;
     this.btn_合并取消合并表格.Text = "合并列值";
     this.btn_合并取消合并表格.Visible = false;
     this.btn_合并取消合并表格.Click += new System.EventHandler(this.btn_合并取消合并表格_Click);
     //
     // _panelControl
     //
     this._panelControl.BorderStyle = DevExpress.XtraEditors.Controls.BorderStyles.NoBorder;
     this._panelControl.Controls.Add(this.flowLayoutPanel1);
     this._panelControl.Dock = System.Windows.Forms.DockStyle.Top;
     this._panelControl.Location = new System.Drawing.Point(0, 0);
     this._panelControl.Name = "_panelControl";
     this._panelControl.Size = new System.Drawing.Size(928, 33);
     this._panelControl.TabIndex = 2;
     //
     // flowLayoutPanel1
     //
     this.flowLayoutPanel1.Controls.Add(this.btn_Export);
     this.flowLayoutPanel1.Controls.Add(this.btn_合并取消合并表格);
     this.flowLayoutPanel1.Controls.Add(this.btn_显示隐藏过滤面板);
     this.flowLayoutPanel1.Controls.Add(this.btn_显示隐藏分组面板);
     this.flowLayoutPanel1.Controls.Add(this.btn_simpleCancelSum);
     this.flowLayoutPanel1.Controls.Add(this.btn_ReduceRow);
     this.flowLayoutPanel1.Controls.Add(this.btn_AddRow);
     this.flowLayoutPanel1.Controls.Add(this.btn_执行命令1);
     this.flowLayoutPanel1.Controls.Add(this.采集模块);
     this.flowLayoutPanel1.Dock = System.Windows.Forms.DockStyle.Fill;
     this.flowLayoutPanel1.Location = new System.Drawing.Point(0, 0);
     this.flowLayoutPanel1.Name = "flowLayoutPanel1";
     this.flowLayoutPanel1.RightToLeft = System.Windows.Forms.RightToLeft.Yes;
     this.flowLayoutPanel1.Size = new System.Drawing.Size(928, 33);
     this.flowLayoutPanel1.TabIndex = 15;
     //
     // btn_ReduceRow
     //
     this.btn_ReduceRow.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
     this.btn_ReduceRow.Image = global::控件库.Properties.Resources.suoxiao;
     this.btn_ReduceRow.ImageLocation = DevExpress.XtraEditors.ImageLocation.MiddleLeft;
     this.btn_ReduceRow.Location = new System.Drawing.Point(415, 3);
     this.btn_ReduceRow.Name = "btn_ReduceRow";
     this.btn_ReduceRow.Size = new System.Drawing.Size(80, 27);
     this.btn_ReduceRow.TabIndex = 13;
     this.btn_ReduceRow.Text = "删除记录";
     this.btn_ReduceRow.Click += new System.EventHandler(this.btn_ReduceRow_Click);
     this.btn_ReduceRow.MouseDown += new System.Windows.Forms.MouseEventHandler(this.btn_ReduceRow_MouseDown);
     //
     // btn_AddRow
     //
     this.btn_AddRow.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
     this.btn_AddRow.Image = global::控件库.Properties.Resources.kuoda;
     this.btn_AddRow.ImageLocation = DevExpress.XtraEditors.ImageLocation.MiddleLeft;
     this.btn_AddRow.Location = new System.Drawing.Point(329, 3);
     this.btn_AddRow.Name = "btn_AddRow";
     this.btn_AddRow.Size = new System.Drawing.Size(80, 27);
     this.btn_AddRow.TabIndex = 14;
     this.btn_AddRow.Text = "新增记录";
     this.btn_AddRow.Click += new System.EventHandler(this.btn_AddRow_Click);
     this.btn_AddRow.MouseDown += new System.Windows.Forms.MouseEventHandler(this.btn_AddRow_MouseDown);
     //
     // btn_执行命令1
     //
     this.btn_执行命令1.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
     this.btn_执行命令1.Image = global::控件库.Properties.Resources.Action_SaveScript;
     this.btn_执行命令1.ImageLocation = DevExpress.XtraEditors.ImageLocation.MiddleLeft;
     this.btn_执行命令1.Location = new System.Drawing.Point(243, 3);
     this.btn_执行命令1.Name = "btn_执行命令1";
     this.btn_执行命令1.Size = new System.Drawing.Size(80, 27);
     this.btn_执行命令1.TabIndex = 14;
     this.btn_执行命令1.Text = "保存";
     this.btn_执行命令1.Visible = false;
     this.btn_执行命令1.Click += new System.EventHandler(this.btn_执行命令1_Click);
     this.btn_执行命令1.MouseDown += new System.Windows.Forms.MouseEventHandler(this.btn_执行命令1_MouseDown);
     //
     // 采集模块
     //
     this.采集模块.Controls.Add(this.分钟);
     this.采集模块.Controls.Add(this.采集频率);
     this.采集模块.Controls.Add(this.采集频率1);
     this.采集模块.Location = new System.Drawing.Point(86, 2);
     this.采集模块.Margin = new System.Windows.Forms.Padding(2);
     this.采集模块.Name = "采集模块";
     this.采集模块.Size = new System.Drawing.Size(152, 29);
     this.采集模块.TabIndex = 15;
     this.采集模块.Visible = false;
     //
     // 分钟
     //
     this.分钟.AutoSize = true;
     this.分钟.Location = new System.Drawing.Point(131, 7);
     this.分钟.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0);
     this.分钟.Name = "分钟";
     this.分钟.Size = new System.Drawing.Size(19, 14);
     this.分钟.TabIndex = 2;
     this.分钟.Text = "秒";
     //
     // 采集频率
     //
     this.采集频率.AutoSize = true;
     this.采集频率.Location = new System.Drawing.Point(3, 7);
     this.采集频率.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0);
     this.采集频率.Name = "采集频率";
     this.采集频率.Size = new System.Drawing.Size(55, 14);
     this.采集频率.TabIndex = 1;
     this.采集频率.Text = "采集频率";
     //
     // 采集频率1
     //
     this.采集频率1.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
     this.采集频率1.FormattingEnabled = true;
     this.采集频率1.Items.AddRange(new object[] {
     "60",
     "300",
     "600",
     "900",
     "1200"});
     this.采集频率1.Location = new System.Drawing.Point(58, 4);
     this.采集频率1.Margin = new System.Windows.Forms.Padding(2);
     this.采集频率1.Name = "采集频率1";
     this.采集频率1.Size = new System.Drawing.Size(73, 22);
     this.采集频率1.TabIndex = 0;
     //
     // panel1
     //
     this.panel1.Controls.Add(this.btnshow);
     this.panel1.Controls.Add(this._gridControl);
     this.panel1.Dock = System.Windows.Forms.DockStyle.Fill;
     this.panel1.Location = new System.Drawing.Point(0, 33);
     this.panel1.Name = "panel1";
     this.panel1.Size = new System.Drawing.Size(928, 485);
     this.panel1.TabIndex = 3;
     //
     // _gridControl
     //
     this._gridControl.Dock = System.Windows.Forms.DockStyle.Fill;
     this._gridControl.Location = new System.Drawing.Point(0, 0);
     this._gridControl.MainView = this.bandedGridView1;
     this._gridControl.Name = "_gridControl";
     this._gridControl.Size = new System.Drawing.Size(928, 485);
     this._gridControl.TabIndex = 6;
     this._gridControl.ViewCollection.AddRange(new DevExpress.XtraGrid.Views.Base.BaseView[] {
     this.bandedGridView1,
     this._gridView});
     this._gridControl.MouseLeave += new System.EventHandler(this._gridControl_MouseLeave);
     //
     // bandedGridView1
     //
     this.bandedGridView1.Bands.AddRange(new DevExpress.XtraGrid.Views.BandedGrid.GridBand[] {
     this.gridBand3,
     this.gridBand4});
     this.bandedGridView1.Columns.AddRange(new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn[] {
     this.bandedGridColumn14,
     this.bandedGridColumn15,
     this.bandedGridColumn21,
     this.bandedGridColumn16,
     this.bandedGridColumn17,
     this.bandedGridColumn18,
     this.bandedGridColumn22,
     this.bandedGridColumn23,
     this.bandedGridColumn24,
     this.bandedGridColumn25,
     this.bandedGridColumn26,
     this.bandedGridColumn1,
     this.bandedGridColumn2,
     this.bandedGridColumn3,
     this.bandedGridColumn4});
     this.bandedGridView1.GridControl = this._gridControl;
     this.bandedGridView1.Name = "bandedGridView1";
     this.bandedGridView1.OptionsCustomization.AllowChangeColumnParent = true;
     this.bandedGridView1.OptionsSelection.EnableAppearanceFocusedCell = false;
     this.bandedGridView1.OptionsView.EnableAppearanceEvenRow = true;
     this.bandedGridView1.OptionsView.EnableAppearanceOddRow = true;
     this.bandedGridView1.OptionsView.ShowGroupPanel = false;
     //
     // gridBand3
     //
     this.gridBand3.Caption = "实测转速下数据";
     this.gridBand3.Columns.Add(this.bandedGridColumn4);
     this.gridBand3.Columns.Add(this.bandedGridColumn3);
     this.gridBand3.Columns.Add(this.bandedGridColumn14);
     this.gridBand3.Columns.Add(this.bandedGridColumn15);
     this.gridBand3.Columns.Add(this.bandedGridColumn21);
     this.gridBand3.Columns.Add(this.bandedGridColumn16);
     this.gridBand3.Columns.Add(this.bandedGridColumn17);
     this.gridBand3.Columns.Add(this.bandedGridColumn1);
     this.gridBand3.Columns.Add(this.bandedGridColumn2);
     this.gridBand3.Columns.Add(this.bandedGridColumn18);
     this.gridBand3.Name = "gridBand3";
     this.gridBand3.OptionsBand.AllowMove = false;
     this.gridBand3.Width = 675;
     //
     // bandedGridColumn4
     //
     this.bandedGridColumn4.Caption = "ID";
     this.bandedGridColumn4.FieldName = "id";
     this.bandedGridColumn4.Name = "bandedGridColumn4";
     //
     // bandedGridColumn3
     //
     this.bandedGridColumn3.Caption = "时间";
     this.bandedGridColumn3.FieldName = "时间值";
     this.bandedGridColumn3.Name = "bandedGridColumn3";
     this.bandedGridColumn3.OptionsColumn.AllowMove = false;
     this.bandedGridColumn3.OptionsColumn.AllowSort = DevExpress.Utils.DefaultBoolean.False;
     this.bandedGridColumn3.Visible = true;
     //
     // bandedGridColumn14
     //
     this.bandedGridColumn14.Caption = "序号";
     this.bandedGridColumn14.FieldName = "序列2";
     this.bandedGridColumn14.Name = "bandedGridColumn14";
     this.bandedGridColumn14.OptionsColumn.AllowMove = false;
     this.bandedGridColumn14.Visible = true;
     //
     // bandedGridColumn15
     //
     this.bandedGridColumn15.Caption = "流量(m3/h)";
     this.bandedGridColumn15.FieldName = "流量";
     this.bandedGridColumn15.Name = "bandedGridColumn15";
     this.bandedGridColumn15.OptionsColumn.AllowMove = false;
     this.bandedGridColumn15.OptionsColumn.AllowSort = DevExpress.Utils.DefaultBoolean.False;
     this.bandedGridColumn15.Visible = true;
     //
     // bandedGridColumn21
     //
     this.bandedGridColumn21.Caption = "扬程(m)";
     this.bandedGridColumn21.FieldName = "扬程";
     this.bandedGridColumn21.Name = "bandedGridColumn21";
     this.bandedGridColumn21.OptionsColumn.AllowMove = false;
     this.bandedGridColumn21.OptionsColumn.AllowSort = DevExpress.Utils.DefaultBoolean.False;
     this.bandedGridColumn21.Visible = true;
     //
     // bandedGridColumn16
     //
     this.bandedGridColumn16.Caption = "输入功率(kW)";
     this.bandedGridColumn16.FieldName = "输入功率";
     this.bandedGridColumn16.Name = "bandedGridColumn16";
     this.bandedGridColumn16.OptionsColumn.AllowMove = false;
     this.bandedGridColumn16.OptionsColumn.AllowSort = DevExpress.Utils.DefaultBoolean.False;
     this.bandedGridColumn16.Visible = true;
     //
     // bandedGridColumn17
     //
     this.bandedGridColumn17.Caption = "转速(r/min)";
     this.bandedGridColumn17.FieldName = "转速";
     this.bandedGridColumn17.Name = "bandedGridColumn17";
     this.bandedGridColumn17.OptionsColumn.AllowMove = false;
     this.bandedGridColumn17.OptionsColumn.AllowSort = DevExpress.Utils.DefaultBoolean.False;
     this.bandedGridColumn17.Visible = true;
     //
     // bandedGridColumn1
     //
     this.bandedGridColumn1.Caption = "电压(V)";
     this.bandedGridColumn1.FieldName = "电压";
     this.bandedGridColumn1.Name = "bandedGridColumn1";
     this.bandedGridColumn1.OptionsColumn.AllowMove = false;
     this.bandedGridColumn1.OptionsColumn.AllowSort = DevExpress.Utils.DefaultBoolean.False;
     this.bandedGridColumn1.Visible = true;
     //
     // bandedGridColumn2
     //
     this.bandedGridColumn2.Caption = "电流(A)";
     this.bandedGridColumn2.FieldName = "电流";
     this.bandedGridColumn2.Name = "bandedGridColumn2";
     this.bandedGridColumn2.OptionsColumn.AllowMove = false;
     this.bandedGridColumn2.OptionsColumn.AllowSort = DevExpress.Utils.DefaultBoolean.False;
     this.bandedGridColumn2.Visible = true;
     //
     // bandedGridColumn18
     //
     this.bandedGridColumn18.Caption = "轴功率(kW)";
     this.bandedGridColumn18.FieldName = "轴功率";
     this.bandedGridColumn18.Name = "bandedGridColumn18";
     this.bandedGridColumn18.OptionsColumn.AllowMove = false;
     this.bandedGridColumn18.OptionsColumn.AllowSort = DevExpress.Utils.DefaultBoolean.False;
     this.bandedGridColumn18.Visible = true;
     //
     // gridBand4
     //
     this.gridBand4.Caption = "额定转速下数据";
     this.gridBand4.Columns.Add(this.bandedGridColumn22);
     this.gridBand4.Columns.Add(this.bandedGridColumn23);
     this.gridBand4.Columns.Add(this.bandedGridColumn24);
     this.gridBand4.Columns.Add(this.bandedGridColumn25);
     this.gridBand4.Columns.Add(this.bandedGridColumn26);
     this.gridBand4.Name = "gridBand4";
     this.gridBand4.Width = 375;
     //
     // bandedGridColumn22
     //
     this.bandedGridColumn22.Caption = "流量(m3/h)";
     this.bandedGridColumn22.FieldName = "额定转速下_流量";
     this.bandedGridColumn22.Name = "bandedGridColumn22";
     this.bandedGridColumn22.OptionsColumn.AllowMove = false;
     this.bandedGridColumn22.OptionsColumn.AllowSort = DevExpress.Utils.DefaultBoolean.False;
     this.bandedGridColumn22.Visible = true;
     //
     // bandedGridColumn23
     //
     this.bandedGridColumn23.Caption = "扬程(m)";
     this.bandedGridColumn23.FieldName = "额定转速下_扬程";
     this.bandedGridColumn23.Name = "bandedGridColumn23";
     this.bandedGridColumn23.OptionsColumn.AllowMove = false;
     this.bandedGridColumn23.OptionsColumn.AllowSort = DevExpress.Utils.DefaultBoolean.False;
     this.bandedGridColumn23.Visible = true;
     //
     // bandedGridColumn24
     //
     this.bandedGridColumn24.Caption = "轴功率(kW)";
     this.bandedGridColumn24.FieldName = "额定转速下_轴功率";
     this.bandedGridColumn24.Name = "bandedGridColumn24";
     this.bandedGridColumn24.OptionsColumn.AllowMove = false;
     this.bandedGridColumn24.OptionsColumn.AllowSort = DevExpress.Utils.DefaultBoolean.False;
     this.bandedGridColumn24.Visible = true;
     //
     // bandedGridColumn25
     //
     this.bandedGridColumn25.Caption = "泵效率(%)";
     this.bandedGridColumn25.FieldName = "额定转速下_泵效率";
     this.bandedGridColumn25.Name = "bandedGridColumn25";
     this.bandedGridColumn25.OptionsColumn.AllowMove = false;
     this.bandedGridColumn25.OptionsColumn.AllowSort = DevExpress.Utils.DefaultBoolean.False;
     this.bandedGridColumn25.Visible = true;
     //
     // bandedGridColumn26
     //
     this.bandedGridColumn26.Caption = "机组效率(%)";
     this.bandedGridColumn26.FieldName = "额定转速下_机组效率";
     this.bandedGridColumn26.Name = "bandedGridColumn26";
     this.bandedGridColumn26.OptionsColumn.AllowMove = false;
     this.bandedGridColumn26.OptionsColumn.AllowSort = DevExpress.Utils.DefaultBoolean.False;
     this.bandedGridColumn26.Visible = true;
     //
     // _gridView
     //
     this._gridView.Columns.AddRange(new DevExpress.XtraGrid.Columns.GridColumn[] {
     this.gridColumn1,
     this.gridColumn2,
     this.gridColumn3,
     this.gridColumn4,
     this.gridColumn5,
     this.gridColumn6,
     this.gridColumn7,
     this.gridColumn8,
     this.gridColumn9,
     this.gridColumn10,
     this.gridColumn11,
     this.gridColumn12,
     this.gridColumn13});
     this._gridView.GridControl = this._gridControl;
     this._gridView.Name = "_gridView";
     this._gridView.OptionsBehavior.Editable = false;
     this._gridView.OptionsSelection.EnableAppearanceFocusedCell = false;
     this._gridView.OptionsView.EnableAppearanceEvenRow = true;
     this._gridView.OptionsView.EnableAppearanceOddRow = true;
     this._gridView.OptionsView.ShowGroupPanel = false;
     this._gridView.FocusedRowChanged += new DevExpress.XtraGrid.Views.Base.FocusedRowChangedEventHandler(this._gridView_FocusedRowChanged);
     this._gridView.DoubleClick += new System.EventHandler(this._gridView_DoubleClick);
     //
     // gridColumn1
     //
     this.gridColumn1.Caption = "序号";
     this.gridColumn1.FieldName = "序列3";
     this.gridColumn1.Name = "gridColumn1";
     this.gridColumn1.OptionsColumn.AllowMove = false;
     this.gridColumn1.Visible = true;
     this.gridColumn1.VisibleIndex = 0;
     //
     // gridColumn2
     //
     this.gridColumn2.Caption = "流量(m3/h)";
     this.gridColumn2.FieldName = "流量";
     this.gridColumn2.Name = "gridColumn2";
     this.gridColumn2.OptionsColumn.AllowMove = false;
     this.gridColumn2.OptionsColumn.AllowSort = DevExpress.Utils.DefaultBoolean.False;
     this.gridColumn2.Visible = true;
     this.gridColumn2.VisibleIndex = 1;
     //
     // gridColumn3
     //
     this.gridColumn3.Caption = "输入功率(kW)";
     this.gridColumn3.FieldName = "输入功率";
     this.gridColumn3.Name = "gridColumn3";
     this.gridColumn3.OptionsColumn.AllowMove = false;
     this.gridColumn3.OptionsColumn.AllowSort = DevExpress.Utils.DefaultBoolean.False;
     this.gridColumn3.Visible = true;
     this.gridColumn3.VisibleIndex = 2;
     //
     // gridColumn4
     //
     this.gridColumn4.Caption = "转速(r/min)";
     this.gridColumn4.FieldName = "转速";
     this.gridColumn4.Name = "gridColumn4";
     this.gridColumn4.OptionsColumn.AllowMove = false;
     this.gridColumn4.OptionsColumn.AllowSort = DevExpress.Utils.DefaultBoolean.False;
     this.gridColumn4.Visible = true;
     this.gridColumn4.VisibleIndex = 3;
     //
     // gridColumn5
     //
     this.gridColumn5.Caption = "轴功率(kW)";
     this.gridColumn5.FieldName = "轴功率";
     this.gridColumn5.Name = "gridColumn5";
     this.gridColumn5.OptionsColumn.AllowMove = false;
     this.gridColumn5.OptionsColumn.AllowSort = DevExpress.Utils.DefaultBoolean.False;
     this.gridColumn5.Visible = true;
     this.gridColumn5.VisibleIndex = 4;
     //
     // gridColumn6
     //
     this.gridColumn6.Caption = "进口压力(KPa)";
     this.gridColumn6.FieldName = "进口压力";
     this.gridColumn6.Name = "gridColumn6";
     this.gridColumn6.OptionsColumn.AllowMove = false;
     this.gridColumn6.OptionsColumn.AllowSort = DevExpress.Utils.DefaultBoolean.False;
     this.gridColumn6.Visible = true;
     this.gridColumn6.VisibleIndex = 5;
     //
     // gridColumn7
     //
     this.gridColumn7.Caption = "出口压力(KPa)";
     this.gridColumn7.FieldName = "出口压力";
     this.gridColumn7.Name = "gridColumn7";
     this.gridColumn7.OptionsColumn.AllowMove = false;
     this.gridColumn7.OptionsColumn.AllowSort = DevExpress.Utils.DefaultBoolean.False;
     this.gridColumn7.Visible = true;
     this.gridColumn7.VisibleIndex = 6;
     //
     // gridColumn8
     //
     this.gridColumn8.Caption = "扬程(m)";
     this.gridColumn8.FieldName = "扬程";
     this.gridColumn8.Name = "gridColumn8";
     this.gridColumn8.OptionsColumn.AllowMove = false;
     this.gridColumn8.OptionsColumn.AllowSort = DevExpress.Utils.DefaultBoolean.False;
     this.gridColumn8.Visible = true;
     this.gridColumn8.VisibleIndex = 7;
     //
     // gridColumn9
     //
     this.gridColumn9.Caption = "流量(m3/h)";
     this.gridColumn9.FieldName = "额定流量";
     this.gridColumn9.Name = "gridColumn9";
     this.gridColumn9.OptionsColumn.AllowMove = false;
     this.gridColumn9.OptionsColumn.AllowSort = DevExpress.Utils.DefaultBoolean.False;
     this.gridColumn9.Visible = true;
     this.gridColumn9.VisibleIndex = 8;
     //
     // gridColumn10
     //
     this.gridColumn10.Caption = "扬程(m)";
     this.gridColumn10.FieldName = "额定扬程";
     this.gridColumn10.Name = "gridColumn10";
     this.gridColumn10.OptionsColumn.AllowMove = false;
     this.gridColumn10.OptionsColumn.AllowSort = DevExpress.Utils.DefaultBoolean.False;
     this.gridColumn10.Visible = true;
     this.gridColumn10.VisibleIndex = 9;
     //
     // gridColumn11
     //
     this.gridColumn11.Caption = "轴功率(kW)";
     this.gridColumn11.FieldName = "额定轴功率";
     this.gridColumn11.Name = "gridColumn11";
     this.gridColumn11.OptionsColumn.AllowMove = false;
     this.gridColumn11.OptionsColumn.AllowSort = DevExpress.Utils.DefaultBoolean.False;
     this.gridColumn11.Visible = true;
     this.gridColumn11.VisibleIndex = 10;
     //
     // gridColumn12
     //
     this.gridColumn12.Caption = "泵效率(%)";
     this.gridColumn12.FieldName = "泵效率";
     this.gridColumn12.Name = "gridColumn12";
     this.gridColumn12.OptionsColumn.AllowMove = false;
     this.gridColumn12.OptionsColumn.AllowSort = DevExpress.Utils.DefaultBoolean.False;
     this.gridColumn12.Visible = true;
     this.gridColumn12.VisibleIndex = 11;
     //
     // gridColumn13
     //
     this.gridColumn13.Caption = "机组效率(%)";
     this.gridColumn13.FieldName = "机组效率";
     this.gridColumn13.Name = "gridColumn13";
     this.gridColumn13.OptionsColumn.AllowMove = false;
     this.gridColumn13.OptionsColumn.AllowSort = DevExpress.Utils.DefaultBoolean.False;
     this.gridColumn13.Visible = true;
     this.gridColumn13.VisibleIndex = 12;
     //
     // gridBand1
     //
     this.gridBand1.Caption = "gridBand1";
     this.gridBand1.Name = "gridBand1";
     //
     // _contextMenuStrip
     //
     this._contextMenuStrip.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
     this.复制当前列ToolStripMenuItem,
     this.报表导出ToolStripMenuItem,
     this.打印预览ToolStripMenuItem});
     this._contextMenuStrip.Name = "contextMenuStrip1";
     this._contextMenuStrip.Size = new System.Drawing.Size(189, 88);
     //
     // 复制当前列ToolStripMenuItem
     //
     this.复制当前列ToolStripMenuItem.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] {
     this.复制当前字段ToolStripMenuItem});
     this.复制当前列ToolStripMenuItem.Name = "复制当前列ToolStripMenuItem";
     this.复制当前列ToolStripMenuItem.Size = new System.Drawing.Size(188, 28);
     this.复制当前列ToolStripMenuItem.Text = "复制到剪贴板";
     //
     // 复制当前字段ToolStripMenuItem
     //
     this.复制当前字段ToolStripMenuItem.Name = "复制当前字段ToolStripMenuItem";
     this.复制当前字段ToolStripMenuItem.Size = new System.Drawing.Size(148, 22);
     this.复制当前字段ToolStripMenuItem.Text = "复制当前字段";
     //
     // 报表导出ToolStripMenuItem
     //
     this.报表导出ToolStripMenuItem.Name = "报表导出ToolStripMenuItem";
     this.报表导出ToolStripMenuItem.Size = new System.Drawing.Size(188, 28);
     this.报表导出ToolStripMenuItem.Text = "数据导出";
     //
     // 打印预览ToolStripMenuItem
     //
     this.打印预览ToolStripMenuItem.Name = "打印预览ToolStripMenuItem";
     this.打印预览ToolStripMenuItem.Size = new System.Drawing.Size(188, 28);
     this.打印预览ToolStripMenuItem.Text = "打印预览";
     //
     // gridBand2
     //
     this.gridBand2.Caption = "gridBand2";
     this.gridBand2.Name = "gridBand2";
     //
     // Grid
     //
     this.AutoScaleDimensions = new System.Drawing.SizeF(7F, 14F);
     this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
     this.Controls.Add(this.panel1);
     this.Controls.Add(this._panelControl);
     this.Name = "Grid";
     this.Size = new System.Drawing.Size(928, 518);
     ((System.ComponentModel.ISupportInitialize)(this.btnshow.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this._panelControl)).EndInit();
     this._panelControl.ResumeLayout(false);
     this.flowLayoutPanel1.ResumeLayout(false);
     this.采集模块.ResumeLayout(false);
     this.采集模块.PerformLayout();
     this.panel1.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this._gridControl)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.bandedGridView1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this._gridView)).EndInit();
     this._contextMenuStrip.ResumeLayout(false);
     this.ResumeLayout(false);
 }
 /// <summary> 
 /// Required method for Designer support - do not modify 
 /// the contents of this method with the code editor.
 /// </summary>
 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);
 }
Exemplo n.º 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.pnlBorder      = new DevExpress.XtraEditors.PanelControl();
     this.hScroll        = new DevExpress.XtraEditors.HScrollBar();
     this.vScroll        = new DevExpress.XtraEditors.VScrollBar();
     this.lblCornerCover = new System.Windows.Forms.Label();
     ((System.ComponentModel.ISupportInitialize)(this.pnlBorder)).BeginInit();
     this.pnlBorder.SuspendLayout();
     this.SuspendLayout();
     //
     // pnlBorder
     //
     this.pnlBorder.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.pnlBorder.Controls.Add(this.lblCornerCover);
     this.pnlBorder.Controls.Add(this.hScroll);
     this.pnlBorder.Controls.Add(this.vScroll);
     this.pnlBorder.Location = new System.Drawing.Point(0, 0);
     this.pnlBorder.Name     = "pnlBorder";
     this.pnlBorder.Size     = new System.Drawing.Size(728, 104);
     this.pnlBorder.TabIndex = 0;
     //
     // hScroll
     //
     this.hScroll.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)
                                                                 | System.Windows.Forms.AnchorStyles.Right)));
     this.hScroll.Location = new System.Drawing.Point(2, 86);
     this.hScroll.Name     = "hScroll";
     this.hScroll.Size     = new System.Drawing.Size(724, 16);
     this.hScroll.TabIndex = 3;
     this.hScroll.Visible  = false;
     this.hScroll.Scroll  += new System.Windows.Forms.ScrollEventHandler(this.hScroll_Scroll);
     //
     // vScroll
     //
     this.vScroll.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
                                                                 | System.Windows.Forms.AnchorStyles.Right)));
     this.vScroll.Location = new System.Drawing.Point(710, 2);
     this.vScroll.Name     = "vScroll";
     this.vScroll.Size     = new System.Drawing.Size(16, 100);
     this.vScroll.TabIndex = 2;
     this.vScroll.Visible  = false;
     this.vScroll.Scroll  += new System.Windows.Forms.ScrollEventHandler(this.vScroll_Scroll);
     //
     // lblCornerCover
     //
     this.lblCornerCover.Anchor    = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
     this.lblCornerCover.BackColor = System.Drawing.Color.Transparent;
     this.lblCornerCover.Location  = new System.Drawing.Point(710, 86);
     this.lblCornerCover.Name      = "lblCornerCover";
     this.lblCornerCover.Size      = new System.Drawing.Size(16, 16);
     this.lblCornerCover.TabIndex  = 4;
     this.lblCornerCover.Visible   = false;
     //
     // LnFListViewControl
     //
     this.Controls.Add(this.pnlBorder);
     this.Name = "LnFListViewControl";
     this.Size = new System.Drawing.Size(728, 104);
     ((System.ComponentModel.ISupportInitialize)(this.pnlBorder)).EndInit();
     this.pnlBorder.ResumeLayout(false);
     this.ResumeLayout(false);
 }
 /// <summary>
 /// Required method for Designer support - do not modify
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     this.components = new System.ComponentModel.Container();
     this.gridControlData = new DevExpress.XtraGrid.GridControl();
     this.dsQueries = new RetirementCenter.DataSources.dsQueries();
     this.gridViewData = new DevExpress.XtraGrid.Views.Grid.GridView();
     this.colSyndicate = new DevExpress.XtraGrid.Columns.GridColumn();
     this.colNum = new DevExpress.XtraGrid.Columns.GridColumn();
     this.repositoryItemDateEditDMY = new DevExpress.XtraEditors.Repository.RepositoryItemDateEdit();
     this.repositoryItemMemoExEdit1 = new DevExpress.XtraEditors.Repository.RepositoryItemMemoExEdit();
     this.repositoryItemLookUpEdituserin = new DevExpress.XtraEditors.Repository.RepositoryItemLookUpEdit();
     this.panelControl1 = new DevExpress.XtraEditors.PanelControl();
     this.btnPrintExport = new DevExpress.XtraEditors.SimpleButton();
     this.vQry46BindingSource = new System.Windows.Forms.BindingSource(this.components);
     this.vQry46TableAdapter = new RetirementCenter.DataSources.dsQueriesTableAdapters.vQry46TableAdapter();
     ((System.ComponentModel.ISupportInitialize)(this.gridControlData)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.dsQueries)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridViewData)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemDateEditDMY)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemDateEditDMY.VistaTimeProperties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemMemoExEdit1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemLookUpEdituserin)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.panelControl1)).BeginInit();
     this.panelControl1.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.vQry46BindingSource)).BeginInit();
     this.SuspendLayout();
     //
     // gridControlData
     //
     this.gridControlData.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
     | System.Windows.Forms.AnchorStyles.Left)
     | System.Windows.Forms.AnchorStyles.Right)));
     this.gridControlData.DataSource = this.vQry46BindingSource;
     this.gridControlData.EmbeddedNavigator.Buttons.Append.Visible = false;
     this.gridControlData.EmbeddedNavigator.Buttons.CancelEdit.Visible = false;
     this.gridControlData.EmbeddedNavigator.Buttons.Edit.Visible = false;
     this.gridControlData.EmbeddedNavigator.Buttons.EndEdit.Visible = false;
     this.gridControlData.EmbeddedNavigator.Buttons.Remove.Visible = false;
     this.gridControlData.EmbeddedNavigator.TextStringFormat = "صف {0} من {1}";
     this.gridControlData.Location = new System.Drawing.Point(0, 53);
     this.gridControlData.MainView = this.gridViewData;
     this.gridControlData.Name = "gridControlData";
     this.gridControlData.RepositoryItems.AddRange(new DevExpress.XtraEditors.Repository.RepositoryItem[] {
     this.repositoryItemDateEditDMY,
     this.repositoryItemMemoExEdit1,
     this.repositoryItemLookUpEdituserin});
     this.gridControlData.Size = new System.Drawing.Size(734, 404);
     this.gridControlData.TabIndex = 1;
     this.gridControlData.UseEmbeddedNavigator = true;
     this.gridControlData.ViewCollection.AddRange(new DevExpress.XtraGrid.Views.Base.BaseView[] {
     this.gridViewData});
     //
     // dsQueries
     //
     this.dsQueries.DataSetName = "dsQueries";
     this.dsQueries.SchemaSerializationMode = System.Data.SchemaSerializationMode.IncludeSchema;
     //
     // gridViewData
     //
     this.gridViewData.Appearance.ColumnFilterButton.BackColor = System.Drawing.Color.DarkGray;
     this.gridViewData.Appearance.ColumnFilterButton.BorderColor = System.Drawing.Color.DarkGray;
     this.gridViewData.Appearance.ColumnFilterButton.ForeColor = System.Drawing.Color.DimGray;
     this.gridViewData.Appearance.ColumnFilterButton.Options.UseBackColor = true;
     this.gridViewData.Appearance.ColumnFilterButton.Options.UseBorderColor = true;
     this.gridViewData.Appearance.ColumnFilterButton.Options.UseForeColor = true;
     this.gridViewData.Appearance.ColumnFilterButtonActive.BackColor = System.Drawing.Color.DarkGray;
     this.gridViewData.Appearance.ColumnFilterButtonActive.BorderColor = System.Drawing.Color.DarkGray;
     this.gridViewData.Appearance.ColumnFilterButtonActive.ForeColor = System.Drawing.Color.Gainsboro;
     this.gridViewData.Appearance.ColumnFilterButtonActive.Options.UseBackColor = true;
     this.gridViewData.Appearance.ColumnFilterButtonActive.Options.UseBorderColor = true;
     this.gridViewData.Appearance.ColumnFilterButtonActive.Options.UseForeColor = true;
     this.gridViewData.Appearance.Empty.BackColor = System.Drawing.Color.DimGray;
     this.gridViewData.Appearance.Empty.GradientMode = System.Drawing.Drawing2D.LinearGradientMode.BackwardDiagonal;
     this.gridViewData.Appearance.Empty.Options.UseBackColor = true;
     this.gridViewData.Appearance.EvenRow.BackColor = System.Drawing.Color.White;
     this.gridViewData.Appearance.EvenRow.Options.UseBackColor = true;
     this.gridViewData.Appearance.FilterCloseButton.BackColor = System.Drawing.Color.Gray;
     this.gridViewData.Appearance.FilterCloseButton.BorderColor = System.Drawing.Color.Gray;
     this.gridViewData.Appearance.FilterCloseButton.Options.UseBackColor = true;
     this.gridViewData.Appearance.FilterCloseButton.Options.UseBorderColor = true;
     this.gridViewData.Appearance.FilterPanel.BackColor = System.Drawing.Color.Gray;
     this.gridViewData.Appearance.FilterPanel.ForeColor = System.Drawing.Color.Black;
     this.gridViewData.Appearance.FilterPanel.Options.UseBackColor = true;
     this.gridViewData.Appearance.FilterPanel.Options.UseForeColor = true;
     this.gridViewData.Appearance.FocusedRow.BackColor = System.Drawing.Color.Black;
     this.gridViewData.Appearance.FocusedRow.ForeColor = System.Drawing.Color.White;
     this.gridViewData.Appearance.FocusedRow.Options.UseBackColor = true;
     this.gridViewData.Appearance.FocusedRow.Options.UseForeColor = true;
     this.gridViewData.Appearance.FooterPanel.BackColor = System.Drawing.Color.DarkGray;
     this.gridViewData.Appearance.FooterPanel.BorderColor = System.Drawing.Color.DarkGray;
     this.gridViewData.Appearance.FooterPanel.Options.UseBackColor = true;
     this.gridViewData.Appearance.FooterPanel.Options.UseBorderColor = true;
     this.gridViewData.Appearance.FooterPanel.Options.UseTextOptions = true;
     this.gridViewData.Appearance.FooterPanel.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.gridViewData.Appearance.GroupButton.BackColor = System.Drawing.Color.Silver;
     this.gridViewData.Appearance.GroupButton.BorderColor = System.Drawing.Color.Silver;
     this.gridViewData.Appearance.GroupButton.Options.UseBackColor = true;
     this.gridViewData.Appearance.GroupButton.Options.UseBorderColor = true;
     this.gridViewData.Appearance.GroupFooter.BackColor = System.Drawing.Color.Silver;
     this.gridViewData.Appearance.GroupFooter.BorderColor = System.Drawing.Color.Silver;
     this.gridViewData.Appearance.GroupFooter.Options.UseBackColor = true;
     this.gridViewData.Appearance.GroupFooter.Options.UseBorderColor = true;
     this.gridViewData.Appearance.GroupPanel.BackColor = System.Drawing.Color.DimGray;
     this.gridViewData.Appearance.GroupPanel.ForeColor = System.Drawing.Color.Gray;
     this.gridViewData.Appearance.GroupPanel.Options.UseBackColor = true;
     this.gridViewData.Appearance.GroupPanel.Options.UseForeColor = true;
     this.gridViewData.Appearance.GroupRow.BackColor = System.Drawing.Color.Silver;
     this.gridViewData.Appearance.GroupRow.Font = new System.Drawing.Font("Tahoma", 8F, System.Drawing.FontStyle.Bold);
     this.gridViewData.Appearance.GroupRow.Options.UseBackColor = true;
     this.gridViewData.Appearance.GroupRow.Options.UseFont = true;
     this.gridViewData.Appearance.HeaderPanel.BackColor = System.Drawing.Color.DarkGray;
     this.gridViewData.Appearance.HeaderPanel.BorderColor = System.Drawing.Color.DarkGray;
     this.gridViewData.Appearance.HeaderPanel.Options.UseBackColor = true;
     this.gridViewData.Appearance.HeaderPanel.Options.UseBorderColor = true;
     this.gridViewData.Appearance.HideSelectionRow.BackColor = System.Drawing.Color.LightSlateGray;
     this.gridViewData.Appearance.HideSelectionRow.Options.UseBackColor = true;
     this.gridViewData.Appearance.HorzLine.BackColor = System.Drawing.Color.LightGray;
     this.gridViewData.Appearance.HorzLine.Options.UseBackColor = true;
     this.gridViewData.Appearance.OddRow.BackColor = System.Drawing.Color.WhiteSmoke;
     this.gridViewData.Appearance.OddRow.Options.UseBackColor = true;
     this.gridViewData.Appearance.Preview.BackColor = System.Drawing.Color.Gainsboro;
     this.gridViewData.Appearance.Preview.ForeColor = System.Drawing.Color.DimGray;
     this.gridViewData.Appearance.Preview.Options.UseBackColor = true;
     this.gridViewData.Appearance.Preview.Options.UseForeColor = true;
     this.gridViewData.Appearance.Row.BackColor = System.Drawing.Color.White;
     this.gridViewData.Appearance.Row.Options.UseBackColor = true;
     this.gridViewData.Appearance.RowSeparator.BackColor = System.Drawing.Color.DimGray;
     this.gridViewData.Appearance.RowSeparator.Options.UseBackColor = true;
     this.gridViewData.Appearance.SelectedRow.BackColor = System.Drawing.Color.DimGray;
     this.gridViewData.Appearance.SelectedRow.Options.UseBackColor = true;
     this.gridViewData.Appearance.VertLine.BackColor = System.Drawing.Color.LightGray;
     this.gridViewData.Appearance.VertLine.Options.UseBackColor = true;
     this.gridViewData.Columns.AddRange(new DevExpress.XtraGrid.Columns.GridColumn[] {
     this.colSyndicate,
     this.colNum});
     this.gridViewData.GridControl = this.gridControlData;
     this.gridViewData.Name = "gridViewData";
     this.gridViewData.OptionsBehavior.ReadOnly = true;
     this.gridViewData.OptionsCustomization.AllowRowSizing = true;
     this.gridViewData.OptionsFind.AlwaysVisible = true;
     this.gridViewData.OptionsPrint.EnableAppearanceEvenRow = true;
     this.gridViewData.OptionsPrint.EnableAppearanceOddRow = true;
     this.gridViewData.OptionsView.ColumnAutoWidth = false;
     this.gridViewData.OptionsView.EnableAppearanceEvenRow = true;
     this.gridViewData.OptionsView.EnableAppearanceOddRow = true;
     this.gridViewData.OptionsView.ShowAutoFilterRow = true;
     this.gridViewData.OptionsView.ShowFooter = true;
     //
     // colSyndicate
     //
     this.colSyndicate.AppearanceCell.Options.UseTextOptions = true;
     this.colSyndicate.AppearanceCell.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.colSyndicate.AppearanceHeader.Options.UseTextOptions = true;
     this.colSyndicate.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.colSyndicate.Caption = "الفرعية";
     this.colSyndicate.FieldName = "Syndicate";
     this.colSyndicate.Name = "colSyndicate";
     this.colSyndicate.Visible = true;
     this.colSyndicate.VisibleIndex = 1;
     //
     // colNum
     //
     this.colNum.AppearanceCell.Options.UseTextOptions = true;
     this.colNum.AppearanceCell.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.colNum.AppearanceHeader.Options.UseTextOptions = true;
     this.colNum.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.colNum.Caption = "العدد";
     this.colNum.FieldName = "Num";
     this.colNum.Name = "colNum";
     this.colNum.OptionsColumn.ReadOnly = true;
     this.colNum.Visible = true;
     this.colNum.VisibleIndex = 3;
     //
     // repositoryItemDateEditDMY
     //
     this.repositoryItemDateEditDMY.AutoHeight = false;
     this.repositoryItemDateEditDMY.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.repositoryItemDateEditDMY.DisplayFormat.FormatString = "dd/MM/yyyy";
     this.repositoryItemDateEditDMY.DisplayFormat.FormatType = DevExpress.Utils.FormatType.DateTime;
     this.repositoryItemDateEditDMY.EditFormat.FormatString = "dd/MM/yyyy";
     this.repositoryItemDateEditDMY.EditFormat.FormatType = DevExpress.Utils.FormatType.DateTime;
     this.repositoryItemDateEditDMY.Mask.EditMask = "dd/MM/yyyy";
     this.repositoryItemDateEditDMY.Name = "repositoryItemDateEditDMY";
     this.repositoryItemDateEditDMY.VistaTimeProperties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton()});
     //
     // repositoryItemMemoExEdit1
     //
     this.repositoryItemMemoExEdit1.AutoHeight = false;
     this.repositoryItemMemoExEdit1.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.repositoryItemMemoExEdit1.Name = "repositoryItemMemoExEdit1";
     //
     // repositoryItemLookUpEdituserin
     //
     this.repositoryItemLookUpEdituserin.AutoHeight = false;
     this.repositoryItemLookUpEdituserin.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.repositoryItemLookUpEdituserin.DisplayMember = "RealName";
     this.repositoryItemLookUpEdituserin.Name = "repositoryItemLookUpEdituserin";
     this.repositoryItemLookUpEdituserin.NullText = "";
     this.repositoryItemLookUpEdituserin.TextEditStyle = DevExpress.XtraEditors.Controls.TextEditStyles.Standard;
     this.repositoryItemLookUpEdituserin.ValueMember = "UserID";
     //
     // panelControl1
     //
     this.panelControl1.Controls.Add(this.btnPrintExport);
     this.panelControl1.Dock = System.Windows.Forms.DockStyle.Top;
     this.panelControl1.Location = new System.Drawing.Point(0, 0);
     this.panelControl1.Name = "panelControl1";
     this.panelControl1.Size = new System.Drawing.Size(734, 47);
     this.panelControl1.TabIndex = 3;
     //
     // btnPrintExport
     //
     this.btnPrintExport.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
     this.btnPrintExport.Location = new System.Drawing.Point(588, 12);
     this.btnPrintExport.Name = "btnPrintExport";
     this.btnPrintExport.Size = new System.Drawing.Size(134, 23);
     this.btnPrintExport.TabIndex = 0;
     this.btnPrintExport.Text = "طباعه و تصدير";
     this.btnPrintExport.Click += new System.EventHandler(this.btnPrintExport_Click);
     //
     // vQry46BindingSource
     //
     this.vQry46BindingSource.DataMember = "vQry46";
     this.vQry46BindingSource.DataSource = this.dsQueries;
     //
     // vQry46TableAdapter
     //
     this.vQry46TableAdapter.ClearBeforeFill = true;
     //
     // Qry46Frm
     //
     this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
     this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
     this.ClientSize = new System.Drawing.Size(734, 462);
     this.Controls.Add(this.panelControl1);
     this.Controls.Add(this.gridControlData);
     this.Name = "Qry46Frm";
     this.Text = "البيانات المصدرة للبنك - احصاء 2";
     this.WindowState = System.Windows.Forms.FormWindowState.Maximized;
     this.Load += new System.EventHandler(this.Qry06Frm_Load);
     ((System.ComponentModel.ISupportInitialize)(this.gridControlData)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.dsQueries)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridViewData)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemDateEditDMY.VistaTimeProperties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemDateEditDMY)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemMemoExEdit1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemLookUpEdituserin)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.panelControl1)).EndInit();
     this.panelControl1.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.vQry46BindingSource)).EndInit();
     this.ResumeLayout(false);
 }
Exemplo n.º 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.panelControl1      = new DevExpress.XtraEditors.PanelControl();
     this.label2             = new System.Windows.Forms.Label();
     this.label1             = new System.Windows.Forms.Label();
     this.textEditPW         = new DevExpress.XtraEditors.TextEdit();
     this.textEditUserID     = new DevExpress.XtraEditors.TextEdit();
     this.simpleButtonCancel = new DevExpress.XtraEditors.SimpleButton();
     this.simpleButtonOK     = new DevExpress.XtraEditors.SimpleButton();
     ((System.ComponentModel.ISupportInitialize)(this.panelControl1)).BeginInit();
     this.panelControl1.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.textEditPW.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.textEditUserID.Properties)).BeginInit();
     this.SuspendLayout();
     //
     // panelControl1
     //
     this.panelControl1.BorderStyle = DevExpress.XtraEditors.Controls.BorderStyles.NoBorder;
     this.panelControl1.Controls.Add(this.label2);
     this.panelControl1.Controls.Add(this.label1);
     this.panelControl1.Controls.Add(this.textEditPW);
     this.panelControl1.Controls.Add(this.textEditUserID);
     this.panelControl1.Controls.Add(this.simpleButtonCancel);
     this.panelControl1.Controls.Add(this.simpleButtonOK);
     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(264, 142);
     this.panelControl1.TabIndex = 0;
     this.panelControl1.Text     = "panelControl1";
     //
     // label2
     //
     this.label2.Location = new System.Drawing.Point(8, 56);
     this.label2.Name     = "label2";
     this.label2.Size     = new System.Drawing.Size(80, 23);
     this.label2.TabIndex = 36;
     this.label2.Text     = "Password";
     //
     // label1
     //
     this.label1.Location = new System.Drawing.Point(8, 24);
     this.label1.Name     = "label1";
     this.label1.Size     = new System.Drawing.Size(80, 23);
     this.label1.TabIndex = 35;
     this.label1.Text     = "Instructor ID";
     //
     // textEditPW
     //
     this.textEditPW.EditValue = "";
     this.textEditPW.Location  = new System.Drawing.Point(112, 56);
     this.textEditPW.Name      = "textEditPW";
     //
     // textEditPW.Properties
     //
     this.textEditPW.Properties.PasswordChar = '*';
     this.textEditPW.Size     = new System.Drawing.Size(136, 20);
     this.textEditPW.TabIndex = 0;
     //
     // textEditUserID
     //
     this.textEditUserID.EditValue = "";
     this.textEditUserID.Location  = new System.Drawing.Point(112, 24);
     this.textEditUserID.Name      = "textEditUserID";
     this.textEditUserID.Size      = new System.Drawing.Size(136, 20);
     this.textEditUserID.TabIndex  = 1;
     //
     // simpleButtonCancel
     //
     this.simpleButtonCancel.DialogResult = System.Windows.Forms.DialogResult.Cancel;
     this.simpleButtonCancel.Location     = new System.Drawing.Point(152, 96);
     this.simpleButtonCancel.Name         = "simpleButtonCancel";
     this.simpleButtonCancel.TabIndex     = 32;
     this.simpleButtonCancel.Text         = "Cancel";
     //
     // simpleButtonOK
     //
     this.simpleButtonOK.DialogResult = System.Windows.Forms.DialogResult.OK;
     this.simpleButtonOK.Location     = new System.Drawing.Point(48, 96);
     this.simpleButtonOK.Name         = "simpleButtonOK";
     this.simpleButtonOK.TabIndex     = 31;
     this.simpleButtonOK.Text         = "OK";
     this.simpleButtonOK.Click       += new System.EventHandler(this.simpleButtonOK_Click);
     //
     // InstructorLogin
     //
     this.AcceptButton      = this.simpleButtonOK;
     this.AutoScaleBaseSize = new System.Drawing.Size(5, 13);
     this.CancelButton      = this.simpleButtonCancel;
     this.ClientSize        = new System.Drawing.Size(264, 142);
     this.Controls.Add(this.panelControl1);
     this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedDialog;
     this.MaximizeBox     = false;
     this.MinimizeBox     = false;
     this.Name            = "InstructorLogin";
     this.ShowInTaskbar   = false;
     this.StartPosition   = System.Windows.Forms.FormStartPosition.CenterScreen;
     this.Text            = "InstructorLogin";
     ((System.ComponentModel.ISupportInitialize)(this.panelControl1)).EndInit();
     this.panelControl1.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.textEditPW.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.textEditUserID.Properties)).EndInit();
     this.ResumeLayout(false);
 }
Exemplo n.º 40
0
 /// <summary>
 /// Método necesario para admitir el Diseñador. No se puede modificar
 /// el contenido del método con el editor de código.
 /// </summary>
 private void InitializeComponent()
 {
     System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(Login));
     this.panelControl1 = new DevExpress.XtraEditors.PanelControl();
     this.simpleButton2 = new DevExpress.XtraEditors.SimpleButton();
     this.simpleButton1 = new DevExpress.XtraEditors.SimpleButton();
     this.groupBox      = new System.Windows.Forms.GroupBox();
     this.edUsuario     = new DevExpress.XtraEditors.TextEdit();
     this.edPassword    = new DevExpress.XtraEditors.TextEdit();
     this.label2        = new System.Windows.Forms.Label();
     this.label1        = new System.Windows.Forms.Label();
     this.txPrompt      = new System.Windows.Forms.Label();
     this.pictureBox    = new System.Windows.Forms.PictureBox();
     ((System.ComponentModel.ISupportInitialize)(this.panelControl1)).BeginInit();
     this.panelControl1.SuspendLayout();
     this.groupBox.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.edUsuario.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.edPassword.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.pictureBox)).BeginInit();
     this.SuspendLayout();
     //
     // panelControl1
     //
     this.panelControl1.Appearance.BackColor            = System.Drawing.Color.SkyBlue;
     this.panelControl1.Appearance.Options.UseBackColor = true;
     this.panelControl1.BorderStyle = DevExpress.XtraEditors.Controls.BorderStyles.Office2003;
     this.panelControl1.Controls.Add(this.simpleButton2);
     this.panelControl1.Controls.Add(this.simpleButton1);
     this.panelControl1.Controls.Add(this.groupBox);
     this.panelControl1.Controls.Add(this.txPrompt);
     this.panelControl1.Controls.Add(this.pictureBox);
     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(360, 184);
     this.panelControl1.TabIndex = 0;
     //
     // simpleButton2
     //
     this.simpleButton2.ButtonStyle = DevExpress.XtraEditors.Controls.BorderStyles.Office2003;
     this.simpleButton2.Location    = new System.Drawing.Point(264, 144);
     this.simpleButton2.Name        = "simpleButton2";
     this.simpleButton2.Size        = new System.Drawing.Size(75, 23);
     this.simpleButton2.TabIndex    = 2;
     this.simpleButton2.Text        = "Cancelar";
     this.simpleButton2.Click      += new System.EventHandler(this.simpleButton2_Click);
     //
     // simpleButton1
     //
     this.simpleButton1.ButtonStyle = DevExpress.XtraEditors.Controls.BorderStyles.Office2003;
     this.simpleButton1.Location    = new System.Drawing.Point(168, 144);
     this.simpleButton1.Name        = "simpleButton1";
     this.simpleButton1.Size        = new System.Drawing.Size(75, 23);
     this.simpleButton1.TabIndex    = 1;
     this.simpleButton1.Text        = "Aceptar";
     this.simpleButton1.Click      += new System.EventHandler(this.simpleButton1_Click);
     //
     // groupBox
     //
     this.groupBox.BackColor = System.Drawing.Color.Transparent;
     this.groupBox.Controls.Add(this.edUsuario);
     this.groupBox.Controls.Add(this.edPassword);
     this.groupBox.Controls.Add(this.label2);
     this.groupBox.Controls.Add(this.label1);
     this.groupBox.Location = new System.Drawing.Point(24, 48);
     this.groupBox.Name     = "groupBox";
     this.groupBox.Size     = new System.Drawing.Size(316, 76);
     this.groupBox.TabIndex = 0;
     this.groupBox.TabStop  = false;
     //
     // edUsuario
     //
     this.edUsuario.EditValue = "";
     this.edUsuario.Location  = new System.Drawing.Point(104, 16);
     this.edUsuario.Name      = "edUsuario";
     this.edUsuario.Properties.Appearance.Font                 = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold);
     this.edUsuario.Properties.Appearance.ForeColor            = System.Drawing.Color.Navy;
     this.edUsuario.Properties.Appearance.Options.UseFont      = true;
     this.edUsuario.Properties.Appearance.Options.UseForeColor = true;
     this.edUsuario.Size     = new System.Drawing.Size(184, 20);
     this.edUsuario.TabIndex = 1;
     //
     // edPassword
     //
     this.edPassword.EditValue = "";
     this.edPassword.Location  = new System.Drawing.Point(104, 40);
     this.edPassword.Name      = "edPassword";
     this.edPassword.Properties.Appearance.Font                 = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold);
     this.edPassword.Properties.Appearance.ForeColor            = System.Drawing.Color.Navy;
     this.edPassword.Properties.Appearance.Options.UseFont      = true;
     this.edPassword.Properties.Appearance.Options.UseForeColor = true;
     this.edPassword.Properties.PasswordChar = '*';
     this.edPassword.Size     = new System.Drawing.Size(184, 20);
     this.edPassword.TabIndex = 3;
     //
     // label2
     //
     this.label2.Font      = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label2.ForeColor = System.Drawing.Color.Navy;
     this.label2.Location  = new System.Drawing.Point(16, 40);
     this.label2.Name      = "label2";
     this.label2.Size      = new System.Drawing.Size(80, 20);
     this.label2.TabIndex  = 2;
     this.label2.Text      = "Contraseña :";
     this.label2.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
     //
     // label1
     //
     this.label1.Font      = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label1.ForeColor = System.Drawing.Color.Navy;
     this.label1.Location  = new System.Drawing.Point(16, 16);
     this.label1.Name      = "label1";
     this.label1.Size      = new System.Drawing.Size(80, 20);
     this.label1.TabIndex  = 0;
     this.label1.Text      = "Usuario :";
     this.label1.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
     //
     // txPrompt
     //
     this.txPrompt.BackColor = System.Drawing.Color.Transparent;
     this.txPrompt.Font      = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.txPrompt.ForeColor = System.Drawing.Color.Navy;
     this.txPrompt.Location  = new System.Drawing.Point(88, 8);
     this.txPrompt.Name      = "txPrompt";
     this.txPrompt.Size      = new System.Drawing.Size(224, 40);
     this.txPrompt.TabIndex  = 3;
     this.txPrompt.Text      = "Introduzca el usuario y contraseña, por favor:";
     //
     // pictureBox
     //
     this.pictureBox.BackColor = System.Drawing.Color.Transparent;
     this.pictureBox.Image     = ((System.Drawing.Image)(resources.GetObject("pictureBox.Image")));
     this.pictureBox.Location  = new System.Drawing.Point(48, 8);
     this.pictureBox.Name      = "pictureBox";
     this.pictureBox.Size      = new System.Drawing.Size(32, 32);
     this.pictureBox.SizeMode  = System.Windows.Forms.PictureBoxSizeMode.AutoSize;
     this.pictureBox.TabIndex  = 18;
     this.pictureBox.TabStop   = false;
     //
     // Login
     //
     this.AutoScaleBaseSize = new System.Drawing.Size(5, 13);
     this.ClientSize        = new System.Drawing.Size(360, 184);
     this.Controls.Add(this.panelControl1);
     this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.None;
     this.Name            = "Login";
     this.StartPosition   = System.Windows.Forms.FormStartPosition.CenterScreen;
     this.Text            = "Identificación";
     this.Activated      += new System.EventHandler(this.LoginForm_Activated);
     this.Load           += new System.EventHandler(this.LoginForm_Load);
     ((System.ComponentModel.ISupportInitialize)(this.panelControl1)).EndInit();
     this.panelControl1.ResumeLayout(false);
     this.panelControl1.PerformLayout();
     this.groupBox.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.edUsuario.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.edPassword.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.pictureBox)).EndInit();
     this.ResumeLayout(false);
 }
Exemplo n.º 41
0
 /// <summary>
 /// Required method for Designer support - do not modify
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     this.panelControl1      = new DevExpress.XtraEditors.PanelControl();
     this.label1             = new System.Windows.Forms.Label();
     this.panelControl2      = new DevExpress.XtraEditors.PanelControl();
     this.GridControl11      = new DevExpress.XtraGrid.GridControl();
     this.GridView12         = new DevExpress.XtraGrid.Views.Grid.GridView();
     this.GridColumn75       = new DevExpress.XtraGrid.Columns.GridColumn();
     this.GridColumn78       = new DevExpress.XtraGrid.Columns.GridColumn();
     this.GridColumn79       = new DevExpress.XtraGrid.Columns.GridColumn();
     this.GridColumn80       = new DevExpress.XtraGrid.Columns.GridColumn();
     this.GridColumn81       = new DevExpress.XtraGrid.Columns.GridColumn();
     this.GridColumn82       = new DevExpress.XtraGrid.Columns.GridColumn();
     this.GridColumn83       = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn1        = new DevExpress.XtraGrid.Columns.GridColumn();
     this.GridColumn99       = new DevExpress.XtraGrid.Columns.GridColumn();
     this.GridColumn100      = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn265      = new DevExpress.XtraGrid.Columns.GridColumn();
     this.panelControl3      = new DevExpress.XtraEditors.PanelControl();
     this.simpleButtonCancel = new DevExpress.XtraEditors.SimpleButton();
     this.simpleButtonOK     = new DevExpress.XtraEditors.SimpleButton();
     this._mainConnection    = new System.Data.SqlClient.SqlConnection();
     ((System.ComponentModel.ISupportInitialize)(this.panelControl1)).BeginInit();
     this.panelControl1.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.panelControl2)).BeginInit();
     this.panelControl2.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.GridControl11)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.GridView12)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.panelControl3)).BeginInit();
     this.panelControl3.SuspendLayout();
     this.SuspendLayout();
     //
     // panelControl1
     //
     this.panelControl1.BorderStyle = DevExpress.XtraEditors.Controls.BorderStyles.NoBorder;
     this.panelControl1.Controls.Add(this.label1);
     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(888, 40);
     this.panelControl1.TabIndex = 0;
     //
     // label1
     //
     this.label1.Location = new System.Drawing.Point(18, 5);
     this.label1.Name     = "label1";
     this.label1.Size     = new System.Drawing.Size(634, 23);
     this.label1.TabIndex = 1;
     this.label1.Text     = "Please select the outstanding receipt that you want to pay.";
     //
     // panelControl2
     //
     this.panelControl2.BorderStyle = DevExpress.XtraEditors.Controls.BorderStyles.NoBorder;
     this.panelControl2.Controls.Add(this.GridControl11);
     this.panelControl2.Dock     = System.Windows.Forms.DockStyle.Fill;
     this.panelControl2.Location = new System.Drawing.Point(0, 40);
     this.panelControl2.Name     = "panelControl2";
     this.panelControl2.Size     = new System.Drawing.Size(888, 316);
     this.panelControl2.TabIndex = 1;
     //
     // GridControl11
     //
     this.GridControl11.Dock     = System.Windows.Forms.DockStyle.Fill;
     this.GridControl11.Location = new System.Drawing.Point(0, 0);
     this.GridControl11.LookAndFeel.UseDefaultLookAndFeel = false;
     this.GridControl11.MainView = this.GridView12;
     this.GridControl11.Name     = "GridControl11";
     this.GridControl11.Size     = new System.Drawing.Size(888, 316);
     this.GridControl11.TabIndex = 8;
     this.GridControl11.ViewCollection.AddRange(new DevExpress.XtraGrid.Views.Base.BaseView[] {
         this.GridView12
     });
     //
     // GridView12
     //
     this.GridView12.Columns.AddRange(new DevExpress.XtraGrid.Columns.GridColumn[] {
         this.GridColumn75,
         this.GridColumn78,
         this.GridColumn79,
         this.GridColumn80,
         this.GridColumn81,
         this.GridColumn82,
         this.GridColumn83,
         this.gridColumn1,
         this.GridColumn99,
         this.GridColumn100,
         this.gridColumn265
     });
     this.GridView12.GridControl = this.GridControl11;
     this.GridView12.Name        = "GridView12";
     this.GridView12.OptionsView.ShowGroupPanel = false;
     this.GridView12.SortInfo.AddRange(new DevExpress.XtraGrid.Columns.GridColumnSortInfo[] {
         new DevExpress.XtraGrid.Columns.GridColumnSortInfo(this.GridColumn75, DevExpress.Data.ColumnSortOrder.Descending)
     });
     //
     // GridColumn75
     //
     this.GridColumn75.Caption = "Date";
     this.GridColumn75.DisplayFormat.FormatString = "dd/MM/yyyy";
     this.GridColumn75.DisplayFormat.FormatType   = DevExpress.Utils.FormatType.DateTime;
     this.GridColumn75.FieldName = "dtDate";
     this.GridColumn75.Name      = "GridColumn75";
     this.GridColumn75.OptionsColumn.AllowEdit   = false;
     this.GridColumn75.OptionsFilter.AllowFilter = false;
     this.GridColumn75.Visible      = true;
     this.GridColumn75.VisibleIndex = 0;
     this.GridColumn75.Width        = 157;
     //
     // GridColumn78
     //
     this.GridColumn78.Caption   = "Receipt No";
     this.GridColumn78.FieldName = "strReceiptNo";
     this.GridColumn78.Name      = "GridColumn78";
     this.GridColumn78.OptionsColumn.AllowEdit   = false;
     this.GridColumn78.OptionsFilter.AllowFilter = false;
     this.GridColumn78.Visible      = true;
     this.GridColumn78.VisibleIndex = 1;
     this.GridColumn78.Width        = 157;
     //
     // GridColumn79
     //
     this.GridColumn79.Caption   = "Category";
     this.GridColumn79.FieldName = "CategoryDescription";
     this.GridColumn79.Name      = "GridColumn79";
     this.GridColumn79.OptionsColumn.AllowEdit   = false;
     this.GridColumn79.OptionsFilter.AllowFilter = false;
     this.GridColumn79.Visible      = true;
     this.GridColumn79.VisibleIndex = 2;
     this.GridColumn79.Width        = 157;
     //
     // GridColumn80
     //
     this.GridColumn80.Caption = "Nett";
     this.GridColumn80.DisplayFormat.FormatString = "n2";
     this.GridColumn80.DisplayFormat.FormatType   = DevExpress.Utils.FormatType.Numeric;
     this.GridColumn80.FieldName = "mNettAmount";
     this.GridColumn80.Name      = "GridColumn80";
     this.GridColumn80.OptionsColumn.AllowEdit   = false;
     this.GridColumn80.OptionsFilter.AllowFilter = false;
     this.GridColumn80.Visible      = true;
     this.GridColumn80.VisibleIndex = 3;
     this.GridColumn80.Width        = 157;
     //
     // GridColumn81
     //
     this.GridColumn81.Caption = "GST";
     this.GridColumn81.DisplayFormat.FormatString = "n2";
     this.GridColumn81.DisplayFormat.FormatType   = DevExpress.Utils.FormatType.Numeric;
     this.GridColumn81.FieldName = "mGSTAmount";
     this.GridColumn81.Name      = "GridColumn81";
     this.GridColumn81.OptionsColumn.AllowEdit   = false;
     this.GridColumn81.OptionsFilter.AllowFilter = false;
     this.GridColumn81.Visible      = true;
     this.GridColumn81.VisibleIndex = 4;
     this.GridColumn81.Width        = 157;
     //
     // GridColumn82
     //
     this.GridColumn82.Caption = "Total";
     this.GridColumn82.DisplayFormat.FormatString = "n2";
     this.GridColumn82.DisplayFormat.FormatType   = DevExpress.Utils.FormatType.Numeric;
     this.GridColumn82.FieldName = "mTotalAmount";
     this.GridColumn82.Name      = "GridColumn82";
     this.GridColumn82.OptionsColumn.AllowEdit   = false;
     this.GridColumn82.OptionsFilter.AllowFilter = false;
     this.GridColumn82.Visible      = true;
     this.GridColumn82.VisibleIndex = 5;
     this.GridColumn82.Width        = 157;
     //
     // GridColumn83
     //
     this.GridColumn83.Caption = "O/S Amount";
     this.GridColumn83.DisplayFormat.FormatString = "n2";
     this.GridColumn83.DisplayFormat.FormatType   = DevExpress.Utils.FormatType.Numeric;
     this.GridColumn83.FieldName = "mOutstandingAmount";
     this.GridColumn83.Name      = "GridColumn83";
     this.GridColumn83.OptionsColumn.AllowEdit   = false;
     this.GridColumn83.OptionsFilter.AllowFilter = false;
     this.GridColumn83.Visible      = true;
     this.GridColumn83.VisibleIndex = 7;
     this.GridColumn83.Width        = 231;
     //
     // gridColumn1
     //
     this.gridColumn1.Caption   = "IHP";
     this.gridColumn1.FieldName = "NextInstalmentAmt";
     this.gridColumn1.Name      = "gridColumn1";
     this.gridColumn1.OptionsColumn.AllowEdit   = false;
     this.gridColumn1.OptionsFilter.AllowFilter = false;
     this.gridColumn1.Visible      = true;
     this.gridColumn1.VisibleIndex = 8;
     this.gridColumn1.Width        = 127;
     //
     // GridColumn99
     //
     this.GridColumn99.Caption   = "Salesperson";
     this.GridColumn99.FieldName = "SalesPersonName";
     this.GridColumn99.Name      = "GridColumn99";
     this.GridColumn99.OptionsColumn.AllowEdit   = false;
     this.GridColumn99.OptionsFilter.AllowFilter = false;
     this.GridColumn99.Visible      = true;
     this.GridColumn99.VisibleIndex = 9;
     this.GridColumn99.Width        = 137;
     //
     // GridColumn100
     //
     this.GridColumn100.Caption   = "Void Flag";
     this.GridColumn100.FieldName = "fVoid";
     this.GridColumn100.Name      = "GridColumn100";
     this.GridColumn100.OptionsColumn.AllowEdit   = false;
     this.GridColumn100.OptionsFilter.AllowFilter = false;
     this.GridColumn100.Visible      = true;
     this.GridColumn100.VisibleIndex = 10;
     this.GridColumn100.Width        = 110;
     //
     // gridColumn265
     //
     this.gridColumn265.Caption = "Total Amount";
     this.gridColumn265.DisplayFormat.FormatString = "n2";
     this.gridColumn265.DisplayFormat.FormatType   = DevExpress.Utils.FormatType.Numeric;
     this.gridColumn265.FieldName = "mTotalAmount";
     this.gridColumn265.Name      = "gridColumn265";
     this.gridColumn265.OptionsColumn.AllowEdit   = false;
     this.gridColumn265.OptionsFilter.AllowFilter = false;
     this.gridColumn265.Visible      = true;
     this.gridColumn265.VisibleIndex = 6;
     this.gridColumn265.Width        = 181;
     //
     // panelControl3
     //
     this.panelControl3.BorderStyle = DevExpress.XtraEditors.Controls.BorderStyles.NoBorder;
     this.panelControl3.Controls.Add(this.simpleButtonCancel);
     this.panelControl3.Controls.Add(this.simpleButtonOK);
     this.panelControl3.Dock     = System.Windows.Forms.DockStyle.Bottom;
     this.panelControl3.Location = new System.Drawing.Point(0, 356);
     this.panelControl3.Name     = "panelControl3";
     this.panelControl3.Size     = new System.Drawing.Size(888, 38);
     this.panelControl3.TabIndex = 2;
     //
     // simpleButtonCancel
     //
     this.simpleButtonCancel.Anchor       = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
     this.simpleButtonCancel.DialogResult = System.Windows.Forms.DialogResult.Cancel;
     this.simpleButtonCancel.Location     = new System.Drawing.Point(802, 6);
     this.simpleButtonCancel.Name         = "simpleButtonCancel";
     this.simpleButtonCancel.Size         = new System.Drawing.Size(75, 23);
     this.simpleButtonCancel.TabIndex     = 14;
     this.simpleButtonCancel.Text         = "Cancel";
     //
     // simpleButtonOK
     //
     this.simpleButtonOK.Anchor       = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
     this.simpleButtonOK.DialogResult = System.Windows.Forms.DialogResult.OK;
     this.simpleButtonOK.Location     = new System.Drawing.Point(716, 6);
     this.simpleButtonOK.Name         = "simpleButtonOK";
     this.simpleButtonOK.Size         = new System.Drawing.Size(75, 23);
     this.simpleButtonOK.TabIndex     = 13;
     this.simpleButtonOK.Text         = "OK";
     this.simpleButtonOK.Click       += new System.EventHandler(this.simpleButtonOK_Click);
     //
     // _mainConnection
     //
     this._mainConnection.FireInfoMessageEventOnUserErrors = false;
     //
     // FormPayOutstanding
     //
     this.AcceptButton      = this.simpleButtonOK;
     this.AutoScaleBaseSize = new System.Drawing.Size(5, 13);
     this.CancelButton      = this.simpleButtonCancel;
     this.ClientSize        = new System.Drawing.Size(888, 394);
     this.Controls.Add(this.panelControl2);
     this.Controls.Add(this.panelControl3);
     this.Controls.Add(this.panelControl1);
     this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedDialog;
     this.MaximizeBox     = false;
     this.MinimizeBox     = false;
     this.Name            = "FormPayOutstanding";
     this.ShowInTaskbar   = false;
     this.StartPosition   = System.Windows.Forms.FormStartPosition.CenterScreen;
     this.Text            = "Pay Outstanding Receipt";
     ((System.ComponentModel.ISupportInitialize)(this.panelControl1)).EndInit();
     this.panelControl1.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.panelControl2)).EndInit();
     this.panelControl2.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.GridControl11)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.GridView12)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.panelControl3)).EndInit();
     this.panelControl3.ResumeLayout(false);
     this.ResumeLayout(false);
 }
Exemplo n.º 42
0
        /// <summary>
        /// 显示窗体
        /// </summary>
        /// <param name="panel"></param>
        /// <param name="frm"></param>
        public void ShowForm(DevExpress.XtraEditors.PanelControl panel, System.Windows.Forms.Form frm)
        {
            try
            {
                watch10.Start();

                watch11.Start();
                if (this.currentForm != null)
                {
                    if (this.currentForm == frm)
                    {
                        return;
                    }
                }

                if (this.ActiveMdiChild != null)
                {
                    this.ActiveMdiChild.Hide();
                }

                this.currentForm = frm;
                watch11.Stop();


                watch12.Start();
                frm.TopLevel = false;
                //frm.MdiParent = this;
                watch12.Stop();

                watch13.Start();
                panel.BeginInit();
                panel.Controls.Clear();
                watch13.Stop();

                watch14.Start();
                panel.Controls.Add(frm);
                frm.Dock = System.Windows.Forms.DockStyle.Fill;
                //panel.EndInit();
                watch14.Stop();

                watch10.Stop();
                Console.WriteLine("2.1.1、隐藏子页面耗时:" + watch11.Elapsed.TotalMilliseconds);
                Console.WriteLine("2.1.2、子页面设置panel为父容器耗时:" + watch12.Elapsed.TotalMilliseconds);
                Console.WriteLine("2.1.3、panel清除子控件耗时:" + watch13.Elapsed.TotalMilliseconds);
                Console.WriteLine("2.1.4、panel添加子页面和子页面布局耗时:" + watch14.Elapsed.TotalMilliseconds);

                //Console.WriteLine("2.1主窗体切换子页面耗时:" + watch10.Elapsed.TotalMilliseconds);
                watch10.Reset();
                watch11.Reset();
                watch12.Reset();
                watch13.Reset();
                watch14.Reset();
            }
            catch (System.Exception ex)
            {
                Log4netHelper.Error(ex);
            }
            ThreadPool.QueueUserWorkItem((obj) =>
            {
                if (InvokeRequired && IsHandleCreated)
                {
                    this.BeginInvoke(new Action <object>(delegate(object arg)
                    {
                        frm.Show();
                        //frm.Focus();
                    }), new object[] { null });
                }
                else
                {
                    frm.Show();
                    //frm.Focus();
                }
            });
        }
 /// <summary>
 /// Required method for Designer support - do not modify
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     this.gridControlData = new DevExpress.XtraGrid.GridControl();
     this.LSMS = new DevExpress.Data.Linq.LinqServerModeSource();
     this.gridViewData = new DevExpress.XtraGrid.Views.Grid.GridView();
     this.colMMashatNId = new DevExpress.XtraGrid.Columns.GridColumn();
     this.colMMashatName = new DevExpress.XtraGrid.Columns.GridColumn();
     this.colsarfnumber = new DevExpress.XtraGrid.Columns.GridColumn();
     this.coldatein = new DevExpress.XtraGrid.Columns.GridColumn();
     this.colyasref = new DevExpress.XtraGrid.Columns.GridColumn();
     this.colRealName = new DevExpress.XtraGrid.Columns.GridColumn();
     this.colSubCommitte = new DevExpress.XtraGrid.Columns.GridColumn();
     this.colSyndicate = new DevExpress.XtraGrid.Columns.GridColumn();
     this.colEndworkReson = new DevExpress.XtraGrid.Columns.GridColumn();
     this.colfiledate = new DevExpress.XtraGrid.Columns.GridColumn();
     this.colMashHala = new DevExpress.XtraGrid.Columns.GridColumn();
     this.colMMashataddres = new DevExpress.XtraGrid.Columns.GridColumn();
     this.colMMashatMobil = new DevExpress.XtraGrid.Columns.GridColumn();
     this.colWorkeEndDate = new DevExpress.XtraGrid.Columns.GridColumn();
     this.colKideNumber = new DevExpress.XtraGrid.Columns.GridColumn();
     this.colSyndicateId = new DevExpress.XtraGrid.Columns.GridColumn();
     this.colSubCommitteId = new DevExpress.XtraGrid.Columns.GridColumn();
     this.colMMashatId = new DevExpress.XtraGrid.Columns.GridColumn();
     this.colvisa = new DevExpress.XtraGrid.Columns.GridColumn();
     this.repositoryItemDateEditDate = new DevExpress.XtraEditors.Repository.RepositoryItemDateEdit();
     this.repositoryItemPictureEditImg = new DevExpress.XtraEditors.Repository.RepositoryItemPictureEdit();
     this.repositoryItemCheckEdit1 = new DevExpress.XtraEditors.Repository.RepositoryItemCheckEdit();
     this.repositoryItemDateEditDMY = new DevExpress.XtraEditors.Repository.RepositoryItemDateEdit();
     this.panelControl1 = new DevExpress.XtraEditors.PanelControl();
     this.btnPrintExport = new DevExpress.XtraEditors.SimpleButton();
     ((System.ComponentModel.ISupportInitialize)(this.gridControlData)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.LSMS)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridViewData)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemDateEditDate)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemDateEditDate.VistaTimeProperties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemPictureEditImg)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemCheckEdit1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemDateEditDMY)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemDateEditDMY.VistaTimeProperties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.panelControl1)).BeginInit();
     this.panelControl1.SuspendLayout();
     this.SuspendLayout();
     //
     // gridControlData
     //
     this.gridControlData.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
     | System.Windows.Forms.AnchorStyles.Left)
     | System.Windows.Forms.AnchorStyles.Right)));
     this.gridControlData.DataSource = this.LSMS;
     this.gridControlData.EmbeddedNavigator.Buttons.CancelEdit.Visible = false;
     this.gridControlData.EmbeddedNavigator.Buttons.Edit.Visible = false;
     this.gridControlData.EmbeddedNavigator.Buttons.EndEdit.Visible = false;
     this.gridControlData.EmbeddedNavigator.Buttons.Remove.Visible = false;
     this.gridControlData.EmbeddedNavigator.TextStringFormat = "صف {0} من {1}";
     this.gridControlData.Location = new System.Drawing.Point(0, 53);
     this.gridControlData.MainView = this.gridViewData;
     this.gridControlData.Name = "gridControlData";
     this.gridControlData.RepositoryItems.AddRange(new DevExpress.XtraEditors.Repository.RepositoryItem[] {
     this.repositoryItemDateEditDate,
     this.repositoryItemPictureEditImg,
     this.repositoryItemCheckEdit1,
     this.repositoryItemDateEditDMY});
     this.gridControlData.Size = new System.Drawing.Size(734, 406);
     this.gridControlData.TabIndex = 1;
     this.gridControlData.UseEmbeddedNavigator = true;
     this.gridControlData.ViewCollection.AddRange(new DevExpress.XtraGrid.Views.Base.BaseView[] {
     this.gridViewData});
     //
     // LSMS
     //
     this.LSMS.ElementType = typeof(RetirementCenter.DataSources.Linq.vTBLMashat);
     this.LSMS.KeyExpression = "MMashatId";
     //
     // gridViewData
     //
     this.gridViewData.Appearance.ColumnFilterButton.BackColor = System.Drawing.Color.DarkGray;
     this.gridViewData.Appearance.ColumnFilterButton.BorderColor = System.Drawing.Color.DarkGray;
     this.gridViewData.Appearance.ColumnFilterButton.ForeColor = System.Drawing.Color.DimGray;
     this.gridViewData.Appearance.ColumnFilterButton.Options.UseBackColor = true;
     this.gridViewData.Appearance.ColumnFilterButton.Options.UseBorderColor = true;
     this.gridViewData.Appearance.ColumnFilterButton.Options.UseForeColor = true;
     this.gridViewData.Appearance.ColumnFilterButtonActive.BackColor = System.Drawing.Color.DarkGray;
     this.gridViewData.Appearance.ColumnFilterButtonActive.BorderColor = System.Drawing.Color.DarkGray;
     this.gridViewData.Appearance.ColumnFilterButtonActive.ForeColor = System.Drawing.Color.Gainsboro;
     this.gridViewData.Appearance.ColumnFilterButtonActive.Options.UseBackColor = true;
     this.gridViewData.Appearance.ColumnFilterButtonActive.Options.UseBorderColor = true;
     this.gridViewData.Appearance.ColumnFilterButtonActive.Options.UseForeColor = true;
     this.gridViewData.Appearance.Empty.BackColor = System.Drawing.Color.DimGray;
     this.gridViewData.Appearance.Empty.GradientMode = System.Drawing.Drawing2D.LinearGradientMode.BackwardDiagonal;
     this.gridViewData.Appearance.Empty.Options.UseBackColor = true;
     this.gridViewData.Appearance.EvenRow.BackColor = System.Drawing.Color.White;
     this.gridViewData.Appearance.EvenRow.Options.UseBackColor = true;
     this.gridViewData.Appearance.FilterCloseButton.BackColor = System.Drawing.Color.Gray;
     this.gridViewData.Appearance.FilterCloseButton.BorderColor = System.Drawing.Color.Gray;
     this.gridViewData.Appearance.FilterCloseButton.Options.UseBackColor = true;
     this.gridViewData.Appearance.FilterCloseButton.Options.UseBorderColor = true;
     this.gridViewData.Appearance.FilterPanel.BackColor = System.Drawing.Color.Gray;
     this.gridViewData.Appearance.FilterPanel.ForeColor = System.Drawing.Color.Black;
     this.gridViewData.Appearance.FilterPanel.Options.UseBackColor = true;
     this.gridViewData.Appearance.FilterPanel.Options.UseForeColor = true;
     this.gridViewData.Appearance.FocusedRow.BackColor = System.Drawing.Color.Black;
     this.gridViewData.Appearance.FocusedRow.ForeColor = System.Drawing.Color.White;
     this.gridViewData.Appearance.FocusedRow.Options.UseBackColor = true;
     this.gridViewData.Appearance.FocusedRow.Options.UseForeColor = true;
     this.gridViewData.Appearance.FooterPanel.BackColor = System.Drawing.Color.DarkGray;
     this.gridViewData.Appearance.FooterPanel.BorderColor = System.Drawing.Color.DarkGray;
     this.gridViewData.Appearance.FooterPanel.Options.UseBackColor = true;
     this.gridViewData.Appearance.FooterPanel.Options.UseBorderColor = true;
     this.gridViewData.Appearance.FooterPanel.Options.UseTextOptions = true;
     this.gridViewData.Appearance.FooterPanel.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.gridViewData.Appearance.GroupButton.BackColor = System.Drawing.Color.Silver;
     this.gridViewData.Appearance.GroupButton.BorderColor = System.Drawing.Color.Silver;
     this.gridViewData.Appearance.GroupButton.Options.UseBackColor = true;
     this.gridViewData.Appearance.GroupButton.Options.UseBorderColor = true;
     this.gridViewData.Appearance.GroupFooter.BackColor = System.Drawing.Color.Silver;
     this.gridViewData.Appearance.GroupFooter.BorderColor = System.Drawing.Color.Silver;
     this.gridViewData.Appearance.GroupFooter.Options.UseBackColor = true;
     this.gridViewData.Appearance.GroupFooter.Options.UseBorderColor = true;
     this.gridViewData.Appearance.GroupPanel.BackColor = System.Drawing.Color.DimGray;
     this.gridViewData.Appearance.GroupPanel.ForeColor = System.Drawing.Color.Gray;
     this.gridViewData.Appearance.GroupPanel.Options.UseBackColor = true;
     this.gridViewData.Appearance.GroupPanel.Options.UseForeColor = true;
     this.gridViewData.Appearance.GroupRow.BackColor = System.Drawing.Color.Silver;
     this.gridViewData.Appearance.GroupRow.Font = new System.Drawing.Font("Tahoma", 8F, System.Drawing.FontStyle.Bold);
     this.gridViewData.Appearance.GroupRow.Options.UseBackColor = true;
     this.gridViewData.Appearance.GroupRow.Options.UseFont = true;
     this.gridViewData.Appearance.HeaderPanel.BackColor = System.Drawing.Color.DarkGray;
     this.gridViewData.Appearance.HeaderPanel.BorderColor = System.Drawing.Color.DarkGray;
     this.gridViewData.Appearance.HeaderPanel.Options.UseBackColor = true;
     this.gridViewData.Appearance.HeaderPanel.Options.UseBorderColor = true;
     this.gridViewData.Appearance.HideSelectionRow.BackColor = System.Drawing.Color.LightSlateGray;
     this.gridViewData.Appearance.HideSelectionRow.Options.UseBackColor = true;
     this.gridViewData.Appearance.HorzLine.BackColor = System.Drawing.Color.LightGray;
     this.gridViewData.Appearance.HorzLine.Options.UseBackColor = true;
     this.gridViewData.Appearance.OddRow.BackColor = System.Drawing.Color.WhiteSmoke;
     this.gridViewData.Appearance.OddRow.Options.UseBackColor = true;
     this.gridViewData.Appearance.Preview.BackColor = System.Drawing.Color.Gainsboro;
     this.gridViewData.Appearance.Preview.ForeColor = System.Drawing.Color.DimGray;
     this.gridViewData.Appearance.Preview.Options.UseBackColor = true;
     this.gridViewData.Appearance.Preview.Options.UseForeColor = true;
     this.gridViewData.Appearance.Row.BackColor = System.Drawing.Color.White;
     this.gridViewData.Appearance.Row.Options.UseBackColor = true;
     this.gridViewData.Appearance.RowSeparator.BackColor = System.Drawing.Color.DimGray;
     this.gridViewData.Appearance.RowSeparator.Options.UseBackColor = true;
     this.gridViewData.Appearance.SelectedRow.BackColor = System.Drawing.Color.DimGray;
     this.gridViewData.Appearance.SelectedRow.Options.UseBackColor = true;
     this.gridViewData.Appearance.VertLine.BackColor = System.Drawing.Color.LightGray;
     this.gridViewData.Appearance.VertLine.Options.UseBackColor = true;
     this.gridViewData.Columns.AddRange(new DevExpress.XtraGrid.Columns.GridColumn[] {
     this.colMMashatNId,
     this.colMMashatName,
     this.colsarfnumber,
     this.coldatein,
     this.colyasref,
     this.colRealName,
     this.colSubCommitte,
     this.colSyndicate,
     this.colEndworkReson,
     this.colfiledate,
     this.colMashHala,
     this.colMMashataddres,
     this.colMMashatMobil,
     this.colWorkeEndDate,
     this.colKideNumber,
     this.colSyndicateId,
     this.colSubCommitteId,
     this.colMMashatId,
     this.colvisa});
     this.gridViewData.GridControl = this.gridControlData;
     this.gridViewData.Name = "gridViewData";
     this.gridViewData.OptionsCustomization.AllowRowSizing = true;
     this.gridViewData.OptionsFind.AlwaysVisible = true;
     this.gridViewData.OptionsPrint.EnableAppearanceEvenRow = true;
     this.gridViewData.OptionsPrint.EnableAppearanceOddRow = true;
     this.gridViewData.OptionsView.ColumnAutoWidth = false;
     this.gridViewData.OptionsView.EnableAppearanceEvenRow = true;
     this.gridViewData.OptionsView.EnableAppearanceOddRow = true;
     this.gridViewData.OptionsView.ShowAutoFilterRow = true;
     this.gridViewData.OptionsView.ShowFooter = true;
     //
     // colMMashatNId
     //
     this.colMMashatNId.AppearanceCell.Options.UseTextOptions = true;
     this.colMMashatNId.AppearanceCell.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.colMMashatNId.AppearanceHeader.Options.UseTextOptions = true;
     this.colMMashatNId.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.colMMashatNId.Caption = "الرقم القومي";
     this.colMMashatNId.FieldName = "MMashatNId";
     this.colMMashatNId.Name = "colMMashatNId";
     this.colMMashatNId.Visible = true;
     this.colMMashatNId.VisibleIndex = 2;
     this.colMMashatNId.Width = 80;
     //
     // colMMashatName
     //
     this.colMMashatName.AppearanceCell.Options.UseTextOptions = true;
     this.colMMashatName.AppearanceCell.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.colMMashatName.AppearanceHeader.Options.UseTextOptions = true;
     this.colMMashatName.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.colMMashatName.Caption = "الاسم";
     this.colMMashatName.FieldName = "MMashatName";
     this.colMMashatName.Name = "colMMashatName";
     this.colMMashatName.Visible = true;
     this.colMMashatName.VisibleIndex = 1;
     //
     // colsarfnumber
     //
     this.colsarfnumber.AppearanceCell.Options.UseTextOptions = true;
     this.colsarfnumber.AppearanceCell.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.colsarfnumber.AppearanceHeader.Options.UseTextOptions = true;
     this.colsarfnumber.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.colsarfnumber.Caption = "رقم الصرف";
     this.colsarfnumber.FieldName = "sarfnumber";
     this.colsarfnumber.Name = "colsarfnumber";
     this.colsarfnumber.Visible = true;
     this.colsarfnumber.VisibleIndex = 3;
     //
     // coldatein
     //
     this.coldatein.AppearanceCell.Options.UseTextOptions = true;
     this.coldatein.AppearanceCell.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.coldatein.AppearanceHeader.Options.UseTextOptions = true;
     this.coldatein.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.coldatein.Caption = "تاريخ الادخال";
     this.coldatein.FieldName = "datein";
     this.coldatein.Name = "coldatein";
     this.coldatein.Visible = true;
     this.coldatein.VisibleIndex = 4;
     //
     // colyasref
     //
     this.colyasref.AppearanceCell.Options.UseTextOptions = true;
     this.colyasref.AppearanceCell.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.colyasref.AppearanceHeader.Options.UseTextOptions = true;
     this.colyasref.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.colyasref.Caption = "يصرف";
     this.colyasref.FieldName = "yasref";
     this.colyasref.Name = "colyasref";
     this.colyasref.Visible = true;
     this.colyasref.VisibleIndex = 5;
     this.colyasref.Width = 42;
     //
     // colRealName
     //
     this.colRealName.AppearanceCell.Options.UseTextOptions = true;
     this.colRealName.AppearanceCell.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.colRealName.AppearanceHeader.Options.UseTextOptions = true;
     this.colRealName.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.colRealName.Caption = "مدخل البيان";
     this.colRealName.FieldName = "RealName";
     this.colRealName.Name = "colRealName";
     this.colRealName.Visible = true;
     this.colRealName.VisibleIndex = 6;
     //
     // colSubCommitte
     //
     this.colSubCommitte.AppearanceCell.Options.UseTextOptions = true;
     this.colSubCommitte.AppearanceCell.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.colSubCommitte.AppearanceHeader.Options.UseTextOptions = true;
     this.colSubCommitte.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.colSubCommitte.Caption = "الجنة";
     this.colSubCommitte.FieldName = "SubCommitte";
     this.colSubCommitte.Name = "colSubCommitte";
     this.colSubCommitte.Visible = true;
     this.colSubCommitte.VisibleIndex = 7;
     //
     // colSyndicate
     //
     this.colSyndicate.AppearanceCell.Options.UseTextOptions = true;
     this.colSyndicate.AppearanceCell.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.colSyndicate.AppearanceHeader.Options.UseTextOptions = true;
     this.colSyndicate.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.colSyndicate.Caption = "الفرعية";
     this.colSyndicate.FieldName = "Syndicate";
     this.colSyndicate.Name = "colSyndicate";
     this.colSyndicate.Visible = true;
     this.colSyndicate.VisibleIndex = 8;
     //
     // colEndworkReson
     //
     this.colEndworkReson.AppearanceCell.Options.UseTextOptions = true;
     this.colEndworkReson.AppearanceCell.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.colEndworkReson.AppearanceHeader.Options.UseTextOptions = true;
     this.colEndworkReson.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.colEndworkReson.Caption = "سبب نهاية العمل";
     this.colEndworkReson.FieldName = "EndworkReson";
     this.colEndworkReson.Name = "colEndworkReson";
     this.colEndworkReson.Visible = true;
     this.colEndworkReson.VisibleIndex = 9;
     this.colEndworkReson.Width = 98;
     //
     // colfiledate
     //
     this.colfiledate.AppearanceCell.Options.UseTextOptions = true;
     this.colfiledate.AppearanceCell.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.colfiledate.AppearanceHeader.Options.UseTextOptions = true;
     this.colfiledate.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.colfiledate.Caption = "تاريخ ورود الملف";
     this.colfiledate.FieldName = "filedate";
     this.colfiledate.Name = "colfiledate";
     this.colfiledate.Visible = true;
     this.colfiledate.VisibleIndex = 10;
     this.colfiledate.Width = 92;
     //
     // colMashHala
     //
     this.colMashHala.AppearanceCell.Options.UseTextOptions = true;
     this.colMashHala.AppearanceCell.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.colMashHala.AppearanceHeader.Options.UseTextOptions = true;
     this.colMashHala.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.colMashHala.Caption = "الحالة";
     this.colMashHala.FieldName = "MashHala";
     this.colMashHala.Name = "colMashHala";
     this.colMashHala.Visible = true;
     this.colMashHala.VisibleIndex = 11;
     //
     // colMMashataddres
     //
     this.colMMashataddres.AppearanceCell.Options.UseTextOptions = true;
     this.colMMashataddres.AppearanceCell.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.colMMashataddres.AppearanceHeader.Options.UseTextOptions = true;
     this.colMMashataddres.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.colMMashataddres.Caption = "العنوان";
     this.colMMashataddres.FieldName = "MMashataddres";
     this.colMMashataddres.Name = "colMMashataddres";
     this.colMMashataddres.Visible = true;
     this.colMMashataddres.VisibleIndex = 12;
     //
     // colMMashatMobil
     //
     this.colMMashatMobil.AppearanceCell.Options.UseTextOptions = true;
     this.colMMashatMobil.AppearanceCell.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.colMMashatMobil.AppearanceHeader.Options.UseTextOptions = true;
     this.colMMashatMobil.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.colMMashatMobil.Caption = "الموبيل";
     this.colMMashatMobil.FieldName = "MMashatMobil";
     this.colMMashatMobil.Name = "colMMashatMobil";
     this.colMMashatMobil.Visible = true;
     this.colMMashatMobil.VisibleIndex = 13;
     //
     // colWorkeEndDate
     //
     this.colWorkeEndDate.AppearanceCell.Options.UseTextOptions = true;
     this.colWorkeEndDate.AppearanceCell.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.colWorkeEndDate.AppearanceHeader.Options.UseTextOptions = true;
     this.colWorkeEndDate.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.colWorkeEndDate.Caption = "تاريخ نهاية العمل";
     this.colWorkeEndDate.FieldName = "WorkeEndDate";
     this.colWorkeEndDate.Name = "colWorkeEndDate";
     this.colWorkeEndDate.Visible = true;
     this.colWorkeEndDate.VisibleIndex = 14;
     this.colWorkeEndDate.Width = 94;
     //
     // colKideNumber
     //
     this.colKideNumber.AppearanceCell.Options.UseTextOptions = true;
     this.colKideNumber.AppearanceCell.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.colKideNumber.AppearanceHeader.Options.UseTextOptions = true;
     this.colKideNumber.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.colKideNumber.Caption = "رقم القيد";
     this.colKideNumber.FieldName = "KideNumber";
     this.colKideNumber.Name = "colKideNumber";
     this.colKideNumber.Visible = true;
     this.colKideNumber.VisibleIndex = 15;
     //
     // colSyndicateId
     //
     this.colSyndicateId.AppearanceCell.Options.UseTextOptions = true;
     this.colSyndicateId.AppearanceCell.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.colSyndicateId.AppearanceHeader.Options.UseTextOptions = true;
     this.colSyndicateId.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.colSyndicateId.Caption = "كود الفرعية";
     this.colSyndicateId.FieldName = "SyndicateId";
     this.colSyndicateId.Name = "colSyndicateId";
     this.colSyndicateId.Visible = true;
     this.colSyndicateId.VisibleIndex = 17;
     //
     // colSubCommitteId
     //
     this.colSubCommitteId.AppearanceCell.Options.UseTextOptions = true;
     this.colSubCommitteId.AppearanceCell.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.colSubCommitteId.AppearanceHeader.Options.UseTextOptions = true;
     this.colSubCommitteId.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.colSubCommitteId.Caption = "كود اللجنة";
     this.colSubCommitteId.FieldName = "SubCommitteId";
     this.colSubCommitteId.Name = "colSubCommitteId";
     this.colSubCommitteId.Visible = true;
     this.colSubCommitteId.VisibleIndex = 18;
     //
     // colMMashatId
     //
     this.colMMashatId.AppearanceCell.Options.UseTextOptions = true;
     this.colMMashatId.AppearanceCell.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.colMMashatId.AppearanceHeader.Options.UseTextOptions = true;
     this.colMMashatId.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.colMMashatId.Caption = "كود";
     this.colMMashatId.FieldName = "MMashatId";
     this.colMMashatId.Name = "colMMashatId";
     this.colMMashatId.Visible = true;
     this.colMMashatId.VisibleIndex = 16;
     //
     // colvisa
     //
     this.colvisa.AppearanceCell.Options.UseTextOptions = true;
     this.colvisa.AppearanceCell.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.colvisa.AppearanceHeader.Options.UseTextOptions = true;
     this.colvisa.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.colvisa.Caption = "فيزا";
     this.colvisa.FieldName = "visa";
     this.colvisa.Name = "colvisa";
     this.colvisa.Visible = true;
     this.colvisa.VisibleIndex = 0;
     //
     // repositoryItemDateEditDate
     //
     this.repositoryItemDateEditDate.AutoHeight = false;
     this.repositoryItemDateEditDate.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.repositoryItemDateEditDate.DisplayFormat.FormatString = "u";
     this.repositoryItemDateEditDate.DisplayFormat.FormatType = DevExpress.Utils.FormatType.DateTime;
     this.repositoryItemDateEditDate.Mask.EditMask = "u";
     this.repositoryItemDateEditDate.Name = "repositoryItemDateEditDate";
     this.repositoryItemDateEditDate.VistaTimeProperties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton()});
     //
     // repositoryItemPictureEditImg
     //
     this.repositoryItemPictureEditImg.Name = "repositoryItemPictureEditImg";
     //
     // repositoryItemCheckEdit1
     //
     this.repositoryItemCheckEdit1.AutoHeight = false;
     this.repositoryItemCheckEdit1.Name = "repositoryItemCheckEdit1";
     //
     // repositoryItemDateEditDMY
     //
     this.repositoryItemDateEditDMY.AutoHeight = false;
     this.repositoryItemDateEditDMY.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.repositoryItemDateEditDMY.DisplayFormat.FormatString = "dd/MM/yyyy";
     this.repositoryItemDateEditDMY.DisplayFormat.FormatType = DevExpress.Utils.FormatType.DateTime;
     this.repositoryItemDateEditDMY.EditFormat.FormatString = "dd/MM/yyyy";
     this.repositoryItemDateEditDMY.EditFormat.FormatType = DevExpress.Utils.FormatType.DateTime;
     this.repositoryItemDateEditDMY.Mask.EditMask = "dd/MM/yyyy";
     this.repositoryItemDateEditDMY.Name = "repositoryItemDateEditDMY";
     this.repositoryItemDateEditDMY.VistaTimeProperties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton()});
     //
     // panelControl1
     //
     this.panelControl1.Controls.Add(this.btnPrintExport);
     this.panelControl1.Dock = System.Windows.Forms.DockStyle.Top;
     this.panelControl1.Location = new System.Drawing.Point(0, 0);
     this.panelControl1.Name = "panelControl1";
     this.panelControl1.Size = new System.Drawing.Size(734, 47);
     this.panelControl1.TabIndex = 3;
     //
     // btnPrintExport
     //
     this.btnPrintExport.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
     this.btnPrintExport.Location = new System.Drawing.Point(588, 12);
     this.btnPrintExport.Name = "btnPrintExport";
     this.btnPrintExport.Size = new System.Drawing.Size(134, 23);
     this.btnPrintExport.TabIndex = 0;
     this.btnPrintExport.Text = "طباعه و تصدير";
     this.btnPrintExport.Visible = false;
     this.btnPrintExport.Click += new System.EventHandler(this.btnPrintExport_Click);
     //
     // Qry04Frm
     //
     this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
     this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
     this.ClientSize = new System.Drawing.Size(734, 462);
     this.Controls.Add(this.panelControl1);
     this.Controls.Add(this.gridControlData);
     this.Name = "Qry04Frm";
     this.Text = " الاعضاء";
     this.WindowState = System.Windows.Forms.FormWindowState.Maximized;
     this.Load += new System.EventHandler(this.QryTblAhteatyFrm_Load);
     ((System.ComponentModel.ISupportInitialize)(this.gridControlData)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.LSMS)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridViewData)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemDateEditDate.VistaTimeProperties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemDateEditDate)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemPictureEditImg)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemCheckEdit1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemDateEditDMY.VistaTimeProperties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemDateEditDMY)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.panelControl1)).EndInit();
     this.panelControl1.ResumeLayout(false);
     this.ResumeLayout(false);
 }
Exemplo n.º 44
0
 /// <summary>
 /// Required method for Designer support - do not modify
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     this.pnlCtrlTop         = new DevExpress.XtraEditors.PanelControl();
     this.pnlCtrlCenter      = new DevExpress.XtraEditors.PanelControl();
     this.lkpEdtCategoryID   = new DevExpress.XtraEditors.LookUpEdit();
     this.Label4             = new System.Windows.Forms.Label();
     this.pnlCtrlBottom      = new DevExpress.XtraEditors.PanelControl();
     this.simpleButtonCancel = new DevExpress.XtraEditors.SimpleButton();
     this.simpleButtonOK     = new DevExpress.XtraEditors.SimpleButton();
     ((System.ComponentModel.ISupportInitialize)(this.pnlCtrlTop)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.pnlCtrlCenter)).BeginInit();
     this.pnlCtrlCenter.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.lkpEdtCategoryID.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.pnlCtrlBottom)).BeginInit();
     this.pnlCtrlBottom.SuspendLayout();
     this.SuspendLayout();
     //
     // pnlCtrlTop
     //
     this.pnlCtrlTop.BorderStyle = DevExpress.XtraEditors.Controls.BorderStyles.NoBorder;
     this.pnlCtrlTop.Dock        = System.Windows.Forms.DockStyle.Top;
     this.pnlCtrlTop.Location    = new System.Drawing.Point(0, 0);
     this.pnlCtrlTop.Name        = "pnlCtrlTop";
     this.pnlCtrlTop.Size        = new System.Drawing.Size(504, 20);
     this.pnlCtrlTop.TabIndex    = 0;
     this.pnlCtrlTop.Text        = "panelControl1";
     //
     // pnlCtrlCenter
     //
     this.pnlCtrlCenter.BorderStyle = DevExpress.XtraEditors.Controls.BorderStyles.NoBorder;
     this.pnlCtrlCenter.Controls.Add(this.lkpEdtCategoryID);
     this.pnlCtrlCenter.Controls.Add(this.Label4);
     this.pnlCtrlCenter.Dock     = System.Windows.Forms.DockStyle.Fill;
     this.pnlCtrlCenter.Location = new System.Drawing.Point(0, 20);
     this.pnlCtrlCenter.Name     = "pnlCtrlCenter";
     this.pnlCtrlCenter.Size     = new System.Drawing.Size(504, 64);
     this.pnlCtrlCenter.TabIndex = 1;
     this.pnlCtrlCenter.Text     = "panelControl2";
     //
     // lkpEdtCategoryID
     //
     this.lkpEdtCategoryID.EditValue = "";
     this.lkpEdtCategoryID.Location  = new System.Drawing.Point(180, 20);
     this.lkpEdtCategoryID.Name      = "lkpEdtCategoryID";
     //
     // lkpEdtCategoryID.Properties
     //
     this.lkpEdtCategoryID.Properties.Appearance.Font            = new System.Drawing.Font("Tahoma", 10F);
     this.lkpEdtCategoryID.Properties.Appearance.Options.UseFont = true;
     this.lkpEdtCategoryID.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
         new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)
     });
     this.lkpEdtCategoryID.Size     = new System.Drawing.Size(296, 23);
     this.lkpEdtCategoryID.TabIndex = 44;
     //
     // Label4
     //
     this.Label4.AutoSize = true;
     this.Label4.Font     = new System.Drawing.Font("Microsoft Sans Serif", 14.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((System.Byte)(0)));
     this.Label4.Location = new System.Drawing.Point(6, 20);
     this.Label4.Name     = "Label4";
     this.Label4.Size     = new System.Drawing.Size(161, 25);
     this.Label4.TabIndex = 43;
     this.Label4.Text     = "New Category ID";
     //
     // pnlCtrlBottom
     //
     this.pnlCtrlBottom.BorderStyle = DevExpress.XtraEditors.Controls.BorderStyles.NoBorder;
     this.pnlCtrlBottom.Controls.Add(this.simpleButtonCancel);
     this.pnlCtrlBottom.Controls.Add(this.simpleButtonOK);
     this.pnlCtrlBottom.Dock     = System.Windows.Forms.DockStyle.Bottom;
     this.pnlCtrlBottom.Location = new System.Drawing.Point(0, 84);
     this.pnlCtrlBottom.Name     = "pnlCtrlBottom";
     this.pnlCtrlBottom.Size     = new System.Drawing.Size(504, 42);
     this.pnlCtrlBottom.TabIndex = 2;
     this.pnlCtrlBottom.Text     = "panelControl3";
     //
     // simpleButtonCancel
     //
     this.simpleButtonCancel.Anchor       = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
     this.simpleButtonCancel.DialogResult = System.Windows.Forms.DialogResult.Cancel;
     this.simpleButtonCancel.Location     = new System.Drawing.Point(398, 10);
     this.simpleButtonCancel.Name         = "simpleButtonCancel";
     this.simpleButtonCancel.TabIndex     = 12;
     this.simpleButtonCancel.Text         = "Cancel";
     //
     // simpleButtonOK
     //
     this.simpleButtonOK.Anchor       = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
     this.simpleButtonOK.DialogResult = System.Windows.Forms.DialogResult.OK;
     this.simpleButtonOK.Location     = new System.Drawing.Point(312, 10);
     this.simpleButtonOK.Name         = "simpleButtonOK";
     this.simpleButtonOK.TabIndex     = 11;
     this.simpleButtonOK.Text         = "OK";
     this.simpleButtonOK.Click       += new System.EventHandler(this.simpleButtonOK_Click);
     //
     // FormSalesConvertion
     //
     this.AcceptButton      = this.simpleButtonOK;
     this.AutoScaleBaseSize = new System.Drawing.Size(5, 13);
     this.CancelButton      = this.simpleButtonCancel;
     this.ClientSize        = new System.Drawing.Size(504, 126);
     this.Controls.Add(this.pnlCtrlCenter);
     this.Controls.Add(this.pnlCtrlTop);
     this.Controls.Add(this.pnlCtrlBottom);
     this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedDialog;
     this.MaximizeBox     = false;
     this.MinimizeBox     = false;
     this.Name            = "FormSalesConvertion";
     this.ShowInTaskbar   = false;
     this.StartPosition   = System.Windows.Forms.FormStartPosition.CenterScreen;
     this.Text            = "Changes New Category ID";
     ((System.ComponentModel.ISupportInitialize)(this.pnlCtrlTop)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.pnlCtrlCenter)).EndInit();
     this.pnlCtrlCenter.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.lkpEdtCategoryID.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.pnlCtrlBottom)).EndInit();
     this.pnlCtrlBottom.ResumeLayout(false);
     this.ResumeLayout(false);
 }
Exemplo n.º 45
0
 /// <summary>
 /// Required method for Designer support - do not modify
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     this.gcUnSub = new Ultra.Surface.Controls.GridControlEx();
     this.gvUnSub = new DevExpress.XtraGrid.Views.Grid.GridView();
     this.gridColumn1 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn2 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn3 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn24 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn4 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.tabMain = new DevExpress.XtraTab.XtraTabControl();
     this.xtraTabPage1 = new DevExpress.XtraTab.XtraTabPage();
     this.xtraTabPage2 = new DevExpress.XtraTab.XtraTabPage();
     this.gcSubed = new Ultra.Surface.Controls.GridControlEx();
     this.gvSubed = new DevExpress.XtraGrid.Views.Grid.GridView();
     this.gridColumn5 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn7 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn9 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn25 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn10 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.xtraTabPage4 = new DevExpress.XtraTab.XtraTabPage();
     this.gcPrinted = new Ultra.Surface.Controls.GridControlEx();
     this.gvPrinted = new DevExpress.XtraGrid.Views.Grid.GridView();
     this.gridColumn11 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn12 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn14 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn26 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn15 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn27 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.tabDetail = new DevExpress.XtraTab.XtraTabControl();
     this.xtraTabPage3 = new DevExpress.XtraTab.XtraTabPage();
     this.gcOrder = new Ultra.Surface.Controls.GridControlEx();
     this.gvOrder = new DevExpress.XtraGrid.Views.Grid.GridView();
     this.gridColumn16 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn17 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn18 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn23 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn22 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn20 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.pnlDetail = new DevExpress.XtraEditors.PanelControl();
     this.collapsibleSplitter1 = new Ultra.Surface.Controls.CollapsibleSplitter();
     this.gridColumn6 = new DevExpress.XtraGrid.Columns.GridColumn();
     ((System.ComponentModel.ISupportInitialize)(this.gcUnSub)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.gvUnSub)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.tabMain)).BeginInit();
     this.tabMain.SuspendLayout();
     this.xtraTabPage1.SuspendLayout();
     this.xtraTabPage2.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.gcSubed)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.gvSubed)).BeginInit();
     this.xtraTabPage4.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.gcPrinted)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.gvPrinted)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.tabDetail)).BeginInit();
     this.tabDetail.SuspendLayout();
     this.xtraTabPage3.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.gcOrder)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.gvOrder)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.pnlDetail)).BeginInit();
     this.pnlDetail.SuspendLayout();
     this.SuspendLayout();
     //
     // myBar
     //
     this.myBar.Size = new System.Drawing.Size(630, 60);
     //
     // gcUnSub
     //
     this.gcUnSub.ColorFieldName = null;
     this.gcUnSub.Dock = System.Windows.Forms.DockStyle.Fill;
     this.gcUnSub.Location = new System.Drawing.Point(0, 0);
     this.gcUnSub.MainView = this.gvUnSub;
     this.gcUnSub.Name = "gcUnSub";
     this.gcUnSub.ShowIndicator = true;
     this.gcUnSub.ShowRowNumber = true;
     this.gcUnSub.Size = new System.Drawing.Size(624, 227);
     this.gcUnSub.TabIndex = 4;
     this.gcUnSub.ViewCollection.AddRange(new DevExpress.XtraGrid.Views.Base.BaseView[] {
     this.gvUnSub});
     this.gcUnSub.RowCellDoubleClick += new System.EventHandler<System.Windows.Forms.MouseEventArgs>(this.gridControlEx1_RowCellDoubleClick);
     //
     // gvUnSub
     //
     this.gvUnSub.Appearance.FocusedRow.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(70)))), ((int)(((byte)(80)))), ((int)(((byte)(20)))), ((int)(((byte)(20)))));
     this.gvUnSub.Appearance.FocusedRow.Options.UseBackColor = true;
     this.gvUnSub.Appearance.SelectedRow.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(70)))), ((int)(((byte)(80)))), ((int)(((byte)(20)))), ((int)(((byte)(20)))));
     this.gvUnSub.Appearance.SelectedRow.Options.UseBackColor = true;
     this.gvUnSub.Columns.AddRange(new DevExpress.XtraGrid.Columns.GridColumn[] {
     this.gridColumn1,
     this.gridColumn2,
     this.gridColumn3,
     this.gridColumn24,
     this.gridColumn4});
     this.gvUnSub.GridControl = this.gcUnSub;
     this.gvUnSub.Name = "gvUnSub";
     this.gvUnSub.OptionsBehavior.Editable = false;
     this.gvUnSub.OptionsView.ColumnAutoWidth = false;
     this.gvUnSub.OptionsView.EnableAppearanceEvenRow = true;
     this.gvUnSub.OptionsView.EnableAppearanceOddRow = true;
     this.gvUnSub.OptionsView.ShowAutoFilterRow = true;
     this.gvUnSub.OptionsView.ShowGroupPanel = false;
     //
     // gridColumn1
     //
     this.gridColumn1.Caption = "顾客姓名";
     this.gridColumn1.FieldName = "ReceiverName";
     this.gridColumn1.Name = "gridColumn1";
     this.gridColumn1.Visible = true;
     this.gridColumn1.VisibleIndex = 0;
     //
     // gridColumn2
     //
     this.gridColumn2.Caption = "顾客电话";
     this.gridColumn2.FieldName = "ReceiverMobile";
     this.gridColumn2.Name = "gridColumn2";
     this.gridColumn2.Visible = true;
     this.gridColumn2.VisibleIndex = 1;
     //
     // gridColumn3
     //
     this.gridColumn3.Caption = "顾客地址";
     this.gridColumn3.FieldName = "ReceiverAddress";
     this.gridColumn3.Name = "gridColumn3";
     this.gridColumn3.Visible = true;
     this.gridColumn3.VisibleIndex = 2;
     //
     // gridColumn24
     //
     this.gridColumn24.Caption = "出单人";
     this.gridColumn24.FieldName = "Creator";
     this.gridColumn24.Name = "gridColumn24";
     this.gridColumn24.Visible = true;
     this.gridColumn24.VisibleIndex = 3;
     //
     // gridColumn4
     //
     this.gridColumn4.Caption = "创建时间";
     this.gridColumn4.DisplayFormat.FormatString = "yyyy-MM-dd HH:mm:ss";
     this.gridColumn4.DisplayFormat.FormatType = DevExpress.Utils.FormatType.DateTime;
     this.gridColumn4.FieldName = "CreateDate";
     this.gridColumn4.Name = "gridColumn4";
     this.gridColumn4.Visible = true;
     this.gridColumn4.VisibleIndex = 4;
     //
     // tabMain
     //
     this.tabMain.Dock = System.Windows.Forms.DockStyle.Fill;
     this.tabMain.Location = new System.Drawing.Point(0, 60);
     this.tabMain.Name = "tabMain";
     this.tabMain.SelectedTabPage = this.xtraTabPage1;
     this.tabMain.Size = new System.Drawing.Size(630, 256);
     this.tabMain.TabIndex = 5;
     this.tabMain.TabPages.AddRange(new DevExpress.XtraTab.XtraTabPage[] {
     this.xtraTabPage1,
     this.xtraTabPage2,
     this.xtraTabPage4});
     this.tabMain.SelectedPageChanged += new DevExpress.XtraTab.TabPageChangedEventHandler(this.tabMain_SelectedPageChanged);
     //
     // xtraTabPage1
     //
     this.xtraTabPage1.Controls.Add(this.gcUnSub);
     this.xtraTabPage1.Name = "xtraTabPage1";
     this.xtraTabPage1.ShowCloseButton = DevExpress.Utils.DefaultBoolean.True;
     this.xtraTabPage1.Size = new System.Drawing.Size(624, 227);
     this.xtraTabPage1.Text = "待审核";
     //
     // xtraTabPage2
     //
     this.xtraTabPage2.Controls.Add(this.gcSubed);
     this.xtraTabPage2.Name = "xtraTabPage2";
     this.xtraTabPage2.Size = new System.Drawing.Size(624, 227);
     this.xtraTabPage2.Text = "已审核";
     //
     // gcSubed
     //
     this.gcSubed.ColorFieldName = null;
     this.gcSubed.Dock = System.Windows.Forms.DockStyle.Fill;
     this.gcSubed.Location = new System.Drawing.Point(0, 0);
     this.gcSubed.MainView = this.gvSubed;
     this.gcSubed.Name = "gcSubed";
     this.gcSubed.ShowRowNumber = true;
     this.gcSubed.Size = new System.Drawing.Size(624, 227);
     this.gcSubed.TabIndex = 5;
     this.gcSubed.ViewCollection.AddRange(new DevExpress.XtraGrid.Views.Base.BaseView[] {
     this.gvSubed});
     //
     // gvSubed
     //
     this.gvSubed.Appearance.FocusedRow.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(70)))), ((int)(((byte)(80)))), ((int)(((byte)(20)))), ((int)(((byte)(20)))));
     this.gvSubed.Appearance.FocusedRow.Options.UseBackColor = true;
     this.gvSubed.Appearance.SelectedRow.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(70)))), ((int)(((byte)(80)))), ((int)(((byte)(20)))), ((int)(((byte)(20)))));
     this.gvSubed.Appearance.SelectedRow.Options.UseBackColor = true;
     this.gvSubed.Columns.AddRange(new DevExpress.XtraGrid.Columns.GridColumn[] {
     this.gridColumn5,
     this.gridColumn7,
     this.gridColumn9,
     this.gridColumn25,
     this.gridColumn10});
     this.gvSubed.GridControl = this.gcSubed;
     this.gvSubed.Name = "gvSubed";
     this.gvSubed.OptionsBehavior.Editable = false;
     this.gvSubed.OptionsView.ColumnAutoWidth = false;
     this.gvSubed.OptionsView.EnableAppearanceEvenRow = true;
     this.gvSubed.OptionsView.EnableAppearanceOddRow = true;
     this.gvSubed.OptionsView.ShowAutoFilterRow = true;
     this.gvSubed.OptionsView.ShowGroupPanel = false;
     //
     // gridColumn5
     //
     this.gridColumn5.Caption = "顾客姓名";
     this.gridColumn5.FieldName = "ReceiverName";
     this.gridColumn5.Name = "gridColumn5";
     this.gridColumn5.Visible = true;
     this.gridColumn5.VisibleIndex = 0;
     //
     // gridColumn7
     //
     this.gridColumn7.Caption = "顾客电话";
     this.gridColumn7.FieldName = "ReceiverMobile";
     this.gridColumn7.Name = "gridColumn7";
     this.gridColumn7.Visible = true;
     this.gridColumn7.VisibleIndex = 1;
     //
     // gridColumn9
     //
     this.gridColumn9.Caption = "顾客地址";
     this.gridColumn9.FieldName = "ReceiverAddress";
     this.gridColumn9.Name = "gridColumn9";
     this.gridColumn9.Visible = true;
     this.gridColumn9.VisibleIndex = 2;
     //
     // gridColumn25
     //
     this.gridColumn25.Caption = "出单人";
     this.gridColumn25.FieldName = "Creator";
     this.gridColumn25.Name = "gridColumn25";
     this.gridColumn25.Visible = true;
     this.gridColumn25.VisibleIndex = 3;
     //
     // gridColumn10
     //
     this.gridColumn10.Caption = "创建时间";
     this.gridColumn10.DisplayFormat.FormatString = "yyyy-MM-dd HH:mm:ss";
     this.gridColumn10.DisplayFormat.FormatType = DevExpress.Utils.FormatType.DateTime;
     this.gridColumn10.FieldName = "CreateDate";
     this.gridColumn10.Name = "gridColumn10";
     this.gridColumn10.Visible = true;
     this.gridColumn10.VisibleIndex = 4;
     //
     // xtraTabPage4
     //
     this.xtraTabPage4.Controls.Add(this.gcPrinted);
     this.xtraTabPage4.Name = "xtraTabPage4";
     this.xtraTabPage4.Size = new System.Drawing.Size(624, 227);
     this.xtraTabPage4.Text = "已打印";
     //
     // gcPrinted
     //
     this.gcPrinted.ColorFieldName = null;
     this.gcPrinted.Dock = System.Windows.Forms.DockStyle.Fill;
     this.gcPrinted.Location = new System.Drawing.Point(0, 0);
     this.gcPrinted.MainView = this.gvPrinted;
     this.gcPrinted.Name = "gcPrinted";
     this.gcPrinted.ShowRowNumber = true;
     this.gcPrinted.Size = new System.Drawing.Size(624, 227);
     this.gcPrinted.TabIndex = 6;
     this.gcPrinted.ViewCollection.AddRange(new DevExpress.XtraGrid.Views.Base.BaseView[] {
     this.gvPrinted});
     //
     // gvPrinted
     //
     this.gvPrinted.Appearance.FocusedRow.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(70)))), ((int)(((byte)(80)))), ((int)(((byte)(20)))), ((int)(((byte)(20)))));
     this.gvPrinted.Appearance.FocusedRow.Options.UseBackColor = true;
     this.gvPrinted.Appearance.SelectedRow.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(70)))), ((int)(((byte)(80)))), ((int)(((byte)(20)))), ((int)(((byte)(20)))));
     this.gvPrinted.Appearance.SelectedRow.Options.UseBackColor = true;
     this.gvPrinted.Columns.AddRange(new DevExpress.XtraGrid.Columns.GridColumn[] {
     this.gridColumn11,
     this.gridColumn12,
     this.gridColumn14,
     this.gridColumn26,
     this.gridColumn15,
     this.gridColumn27});
     this.gvPrinted.GridControl = this.gcPrinted;
     this.gvPrinted.Name = "gvPrinted";
     this.gvPrinted.OptionsBehavior.Editable = false;
     this.gvPrinted.OptionsView.ColumnAutoWidth = false;
     this.gvPrinted.OptionsView.EnableAppearanceEvenRow = true;
     this.gvPrinted.OptionsView.EnableAppearanceOddRow = true;
     this.gvPrinted.OptionsView.ShowAutoFilterRow = true;
     this.gvPrinted.OptionsView.ShowGroupPanel = false;
     //
     // gridColumn11
     //
     this.gridColumn11.Caption = "顾客姓名";
     this.gridColumn11.FieldName = "ReceiverName";
     this.gridColumn11.Name = "gridColumn11";
     this.gridColumn11.Visible = true;
     this.gridColumn11.VisibleIndex = 0;
     //
     // gridColumn12
     //
     this.gridColumn12.Caption = "顾客电话";
     this.gridColumn12.FieldName = "ReceiverMobile";
     this.gridColumn12.Name = "gridColumn12";
     this.gridColumn12.Visible = true;
     this.gridColumn12.VisibleIndex = 1;
     //
     // gridColumn14
     //
     this.gridColumn14.Caption = "顾客地址";
     this.gridColumn14.FieldName = "ReceiverAddress";
     this.gridColumn14.Name = "gridColumn14";
     this.gridColumn14.Visible = true;
     this.gridColumn14.VisibleIndex = 2;
     //
     // gridColumn26
     //
     this.gridColumn26.Caption = "出单人";
     this.gridColumn26.FieldName = "Creator";
     this.gridColumn26.Name = "gridColumn26";
     this.gridColumn26.Visible = true;
     this.gridColumn26.VisibleIndex = 3;
     //
     // gridColumn15
     //
     this.gridColumn15.Caption = "创建时间";
     this.gridColumn15.DisplayFormat.FormatString = "yyyy-MM-dd HH:mm:ss";
     this.gridColumn15.DisplayFormat.FormatType = DevExpress.Utils.FormatType.DateTime;
     this.gridColumn15.FieldName = "CreateDate";
     this.gridColumn15.Name = "gridColumn15";
     this.gridColumn15.Visible = true;
     this.gridColumn15.VisibleIndex = 4;
     //
     // gridColumn27
     //
     this.gridColumn27.Caption = "打印次数";
     this.gridColumn27.FieldName = "PrintCnt";
     this.gridColumn27.Name = "gridColumn27";
     this.gridColumn27.Visible = true;
     this.gridColumn27.VisibleIndex = 5;
     //
     // tabDetail
     //
     this.tabDetail.Dock = System.Windows.Forms.DockStyle.Fill;
     this.tabDetail.Location = new System.Drawing.Point(2, 2);
     this.tabDetail.Name = "tabDetail";
     this.tabDetail.SelectedTabPage = this.xtraTabPage3;
     this.tabDetail.Size = new System.Drawing.Size(626, 157);
     this.tabDetail.TabIndex = 6;
     this.tabDetail.TabPages.AddRange(new DevExpress.XtraTab.XtraTabPage[] {
     this.xtraTabPage3});
     //
     // xtraTabPage3
     //
     this.xtraTabPage3.Controls.Add(this.gcOrder);
     this.xtraTabPage3.Name = "xtraTabPage3";
     this.xtraTabPage3.Size = new System.Drawing.Size(620, 128);
     this.xtraTabPage3.Text = "商品信息";
     //
     // gcOrder
     //
     this.gcOrder.ColorFieldName = null;
     this.gcOrder.Dock = System.Windows.Forms.DockStyle.Fill;
     this.gcOrder.Location = new System.Drawing.Point(0, 0);
     this.gcOrder.MainView = this.gvOrder;
     this.gcOrder.Name = "gcOrder";
     this.gcOrder.ShowIndicator = true;
     this.gcOrder.ShowRowNumber = true;
     this.gcOrder.Size = new System.Drawing.Size(620, 128);
     this.gcOrder.TabIndex = 5;
     this.gcOrder.ViewCollection.AddRange(new DevExpress.XtraGrid.Views.Base.BaseView[] {
     this.gvOrder});
     //
     // gvOrder
     //
     this.gvOrder.Appearance.FocusedRow.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(70)))), ((int)(((byte)(80)))), ((int)(((byte)(20)))), ((int)(((byte)(20)))));
     this.gvOrder.Appearance.FocusedRow.Options.UseBackColor = true;
     this.gvOrder.Appearance.SelectedRow.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(70)))), ((int)(((byte)(80)))), ((int)(((byte)(20)))), ((int)(((byte)(20)))));
     this.gvOrder.Appearance.SelectedRow.Options.UseBackColor = true;
     this.gvOrder.Columns.AddRange(new DevExpress.XtraGrid.Columns.GridColumn[] {
     this.gridColumn16,
     this.gridColumn17,
     this.gridColumn6,
     this.gridColumn18,
     this.gridColumn23,
     this.gridColumn22,
     this.gridColumn20});
     this.gvOrder.GridControl = this.gcOrder;
     this.gvOrder.Name = "gvOrder";
     this.gvOrder.OptionsBehavior.Editable = false;
     this.gvOrder.OptionsView.ColumnAutoWidth = false;
     this.gvOrder.OptionsView.EnableAppearanceEvenRow = true;
     this.gvOrder.OptionsView.EnableAppearanceOddRow = true;
     this.gvOrder.OptionsView.ShowAutoFilterRow = true;
     this.gvOrder.OptionsView.ShowGroupPanel = false;
     //
     // gridColumn16
     //
     this.gridColumn16.Caption = "商品名称";
     this.gridColumn16.FieldName = "ItemName";
     this.gridColumn16.Name = "gridColumn16";
     this.gridColumn16.Visible = true;
     this.gridColumn16.VisibleIndex = 0;
     //
     // gridColumn17
     //
     this.gridColumn17.Caption = "商品编码";
     this.gridColumn17.FieldName = "ItemNo";
     this.gridColumn17.Name = "gridColumn17";
     this.gridColumn17.Visible = true;
     this.gridColumn17.VisibleIndex = 1;
     //
     // gridColumn18
     //
     this.gridColumn18.Caption = "售价";
     this.gridColumn18.FieldName = "Price";
     this.gridColumn18.Name = "gridColumn18";
     this.gridColumn18.Visible = true;
     this.gridColumn18.VisibleIndex = 3;
     //
     // gridColumn23
     //
     this.gridColumn23.Caption = "数量";
     this.gridColumn23.FieldName = "Num";
     this.gridColumn23.Name = "gridColumn23";
     this.gridColumn23.Visible = true;
     this.gridColumn23.VisibleIndex = 4;
     //
     // gridColumn22
     //
     this.gridColumn22.Caption = "总金额";
     this.gridColumn22.FieldName = "OrderPrice";
     this.gridColumn22.Name = "gridColumn22";
     this.gridColumn22.Visible = true;
     this.gridColumn22.VisibleIndex = 5;
     //
     // gridColumn20
     //
     this.gridColumn20.Caption = "创建时间";
     this.gridColumn20.DisplayFormat.FormatString = "yyyy-MM-dd HH:mm:ss";
     this.gridColumn20.DisplayFormat.FormatType = DevExpress.Utils.FormatType.DateTime;
     this.gridColumn20.FieldName = "CreateDate";
     this.gridColumn20.Name = "gridColumn20";
     this.gridColumn20.Visible = true;
     this.gridColumn20.VisibleIndex = 7;
     //
     // pnlDetail
     //
     this.pnlDetail.Controls.Add(this.tabDetail);
     this.pnlDetail.Dock = System.Windows.Forms.DockStyle.Bottom;
     this.pnlDetail.Location = new System.Drawing.Point(0, 324);
     this.pnlDetail.Name = "pnlDetail";
     this.pnlDetail.Size = new System.Drawing.Size(630, 161);
     this.pnlDetail.TabIndex = 8;
     //
     // collapsibleSplitter1
     //
     this.collapsibleSplitter1.AnimationDelay = 20;
     this.collapsibleSplitter1.AnimationStep = 20;
     this.collapsibleSplitter1.BorderStyle3D = System.Windows.Forms.Border3DStyle.Flat;
     this.collapsibleSplitter1.ControlToHide = this.pnlDetail;
     this.collapsibleSplitter1.Dock = System.Windows.Forms.DockStyle.Bottom;
     this.collapsibleSplitter1.ExpandParentForm = true;
     this.collapsibleSplitter1.Location = new System.Drawing.Point(0, 316);
     this.collapsibleSplitter1.Name = "collapsibleSplitter1";
     this.collapsibleSplitter1.Size = new System.Drawing.Size(630, 8);
     this.collapsibleSplitter1.TabIndex = 9;
     this.collapsibleSplitter1.TabStop = false;
     this.collapsibleSplitter1.UseAnimations = false;
     this.collapsibleSplitter1.VisualStyle = Ultra.Surface.Controls.VisualStyles.Mozilla;
     //
     // gridColumn6
     //
     this.gridColumn6.Caption = "成本";
     this.gridColumn6.FieldName = "CostPrice";
     this.gridColumn6.Name = "gridColumn6";
     this.gridColumn6.Visible = true;
     this.gridColumn6.VisibleIndex = 2;
     //
     // MainView
     //
     this.AutoScaleDimensions = new System.Drawing.SizeF(7F, 14F);
     this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
     this.ClientSize = new System.Drawing.Size(630, 485);
     this.Controls.Add(this.tabMain);
     this.Controls.Add(this.collapsibleSplitter1);
     this.Controls.Add(this.pnlDetail);
     this.Name = "MainView";
     this.Text = "收款";
     this.Load += new System.EventHandler(this.MainView_Load);
     this.Controls.SetChildIndex(this.myBar, 0);
     this.Controls.SetChildIndex(this.pnlDetail, 0);
     this.Controls.SetChildIndex(this.collapsibleSplitter1, 0);
     this.Controls.SetChildIndex(this.tabMain, 0);
     ((System.ComponentModel.ISupportInitialize)(this.gcUnSub)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.gvUnSub)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.tabMain)).EndInit();
     this.tabMain.ResumeLayout(false);
     this.xtraTabPage1.ResumeLayout(false);
     this.xtraTabPage2.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.gcSubed)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.gvSubed)).EndInit();
     this.xtraTabPage4.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.gcPrinted)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.gvPrinted)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.tabDetail)).EndInit();
     this.tabDetail.ResumeLayout(false);
     this.xtraTabPage3.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.gcOrder)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.gvOrder)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.pnlDetail)).EndInit();
     this.pnlDetail.ResumeLayout(false);
     this.ResumeLayout(false);
 }
 /// <summary>
 /// Required method for Designer support - do not modify
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     System.Windows.Forms.TableLayoutPanel tableLayoutPanel1;
     DevExpress.XtraEditors.PanelControl   panelControl1;
     this.lcStatus = new DevExpress.XtraEditors.LabelControl();
     this.cbePerPageRecordsCount = new DevExpress.XtraEditors.ComboBoxEdit();
     this.lcTotalPageCount       = new DevExpress.XtraEditors.LabelControl();
     this.sbFirstPage            = new DevExpress.XtraEditors.SimpleButton();
     this.sbPreviousPage         = new DevExpress.XtraEditors.SimpleButton();
     this.teCurrentPage          = new DevExpress.XtraEditors.TextEdit();
     this.sbNextPage             = new DevExpress.XtraEditors.SimpleButton();
     this.sbLastPage             = new DevExpress.XtraEditors.SimpleButton();
     tableLayoutPanel1           = new System.Windows.Forms.TableLayoutPanel();
     panelControl1 = new DevExpress.XtraEditors.PanelControl();
     tableLayoutPanel1.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.cbePerPageRecordsCount.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.teCurrentPage.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(panelControl1)).BeginInit();
     panelControl1.SuspendLayout();
     this.SuspendLayout();
     //
     // tableLayoutPanel1
     //
     tableLayoutPanel1.ColumnCount = 9;
     tableLayoutPanel1.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle());
     tableLayoutPanel1.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle());
     tableLayoutPanel1.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle());
     tableLayoutPanel1.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 100F));
     tableLayoutPanel1.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle());
     tableLayoutPanel1.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle());
     tableLayoutPanel1.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle());
     tableLayoutPanel1.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle());
     tableLayoutPanel1.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle());
     tableLayoutPanel1.Controls.Add(this.lcStatus, 0, 0);
     tableLayoutPanel1.Controls.Add(this.cbePerPageRecordsCount, 1, 0);
     tableLayoutPanel1.Controls.Add(this.lcTotalPageCount, 2, 0);
     tableLayoutPanel1.Controls.Add(this.sbFirstPage, 4, 0);
     tableLayoutPanel1.Controls.Add(this.sbPreviousPage, 5, 0);
     tableLayoutPanel1.Controls.Add(this.teCurrentPage, 6, 0);
     tableLayoutPanel1.Controls.Add(this.sbNextPage, 7, 0);
     tableLayoutPanel1.Controls.Add(this.sbLastPage, 8, 0);
     tableLayoutPanel1.Dock     = System.Windows.Forms.DockStyle.Fill;
     tableLayoutPanel1.Location = new System.Drawing.Point(2, 2);
     tableLayoutPanel1.Margin   = new System.Windows.Forms.Padding(0);
     tableLayoutPanel1.Name     = "tableLayoutPanel1";
     tableLayoutPanel1.RowCount = 1;
     tableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 100F));
     tableLayoutPanel1.Size     = new System.Drawing.Size(739, 28);
     tableLayoutPanel1.TabIndex = 0;
     //
     // lcStatus
     //
     this.lcStatus.Anchor   = System.Windows.Forms.AnchorStyles.Left;
     this.lcStatus.Location = new System.Drawing.Point(20, 7);
     this.lcStatus.Margin   = new System.Windows.Forms.Padding(20, 3, 3, 3);
     this.lcStatus.Name     = "lcStatus";
     this.lcStatus.Size     = new System.Drawing.Size(114, 13);
     this.lcStatus.TabIndex = 0;
     this.lcStatus.Text     = "共 1350 条记录,每页";
     //
     // cbePerPageRecordsCount
     //
     this.cbePerPageRecordsCount.Anchor    = System.Windows.Forms.AnchorStyles.None;
     this.cbePerPageRecordsCount.EditValue = "20";
     this.cbePerPageRecordsCount.Location  = new System.Drawing.Point(140, 4);
     this.cbePerPageRecordsCount.Name      = "cbePerPageRecordsCount";
     this.cbePerPageRecordsCount.Properties.Appearance.Options.UseTextOptions = true;
     this.cbePerPageRecordsCount.Properties.Appearance.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.cbePerPageRecordsCount.Properties.AutoComplete = false;
     this.cbePerPageRecordsCount.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
         new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)
     });
     this.cbePerPageRecordsCount.Properties.DisplayFormat.FormatType = DevExpress.Utils.FormatType.Numeric;
     this.cbePerPageRecordsCount.Properties.EditFormat.FormatType    = DevExpress.Utils.FormatType.Numeric;
     this.cbePerPageRecordsCount.Properties.Items.AddRange(new object[] {
         "20",
         "30",
         "50",
         "100"
     });
     this.cbePerPageRecordsCount.Size              = new System.Drawing.Size(41, 20);
     this.cbePerPageRecordsCount.TabIndex          = 1;
     this.cbePerPageRecordsCount.EditValueChanged += new System.EventHandler(this.cbePerPageRecordsCount_EditValueChanged);
     this.cbePerPageRecordsCount.KeyPress         += new System.Windows.Forms.KeyPressEventHandler(this.cbePerPageRecordsCount_KeyPress);
     //
     // lcTotalPageCount
     //
     this.lcTotalPageCount.Anchor   = System.Windows.Forms.AnchorStyles.None;
     this.lcTotalPageCount.Location = new System.Drawing.Point(187, 7);
     this.lcTotalPageCount.Name     = "lcTotalPageCount";
     this.lcTotalPageCount.Size     = new System.Drawing.Size(60, 13);
     this.lcTotalPageCount.TabIndex = 2;
     this.lcTotalPageCount.Text     = "条,共21页";
     //
     // sbFirstPage
     //
     this.sbFirstPage.Anchor   = System.Windows.Forms.AnchorStyles.None;
     this.sbFirstPage.Location = new System.Drawing.Point(525, 4);
     this.sbFirstPage.Name     = "sbFirstPage";
     this.sbFirstPage.Size     = new System.Drawing.Size(41, 20);
     this.sbFirstPage.TabIndex = 3;
     this.sbFirstPage.Text     = "首页";
     this.sbFirstPage.Click   += new System.EventHandler(this.sbFirstPage_Click);
     //
     // sbPreviousPage
     //
     this.sbPreviousPage.Anchor   = System.Windows.Forms.AnchorStyles.None;
     this.sbPreviousPage.Location = new System.Drawing.Point(572, 4);
     this.sbPreviousPage.Name     = "sbPreviousPage";
     this.sbPreviousPage.Size     = new System.Drawing.Size(39, 20);
     this.sbPreviousPage.TabIndex = 4;
     this.sbPreviousPage.Text     = "上页";
     this.sbPreviousPage.Click   += new System.EventHandler(this.sbPreviousPage_Click);
     //
     // teCurrentPage
     //
     this.teCurrentPage.Anchor    = System.Windows.Forms.AnchorStyles.None;
     this.teCurrentPage.EditValue = "1";
     this.teCurrentPage.Location  = new System.Drawing.Point(617, 4);
     this.teCurrentPage.Name      = "teCurrentPage";
     this.teCurrentPage.Properties.Appearance.Options.UseTextOptions = true;
     this.teCurrentPage.Properties.Appearance.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.teCurrentPage.Properties.DisplayFormat.FormatType          = DevExpress.Utils.FormatType.Numeric;
     this.teCurrentPage.Properties.EditFormat.FormatType             = DevExpress.Utils.FormatType.Numeric;
     this.teCurrentPage.Properties.Mask.EditMask = "f0";
     this.teCurrentPage.Properties.Mask.MaskType = DevExpress.XtraEditors.Mask.MaskType.Numeric;
     this.teCurrentPage.Size              = new System.Drawing.Size(29, 20);
     this.teCurrentPage.TabIndex          = 5;
     this.teCurrentPage.EditValueChanged += new System.EventHandler(this.teCurrentPage_EditValueChanged);
     //
     // sbNextPage
     //
     this.sbNextPage.Anchor   = System.Windows.Forms.AnchorStyles.None;
     this.sbNextPage.Location = new System.Drawing.Point(652, 4);
     this.sbNextPage.Name     = "sbNextPage";
     this.sbNextPage.Size     = new System.Drawing.Size(39, 20);
     this.sbNextPage.TabIndex = 6;
     this.sbNextPage.Text     = "下页";
     this.sbNextPage.Click   += new System.EventHandler(this.sbNextPage_Click);
     //
     // sbLastPage
     //
     this.sbLastPage.Anchor   = System.Windows.Forms.AnchorStyles.None;
     this.sbLastPage.Location = new System.Drawing.Point(697, 4);
     this.sbLastPage.Name     = "sbLastPage";
     this.sbLastPage.Size     = new System.Drawing.Size(39, 20);
     this.sbLastPage.TabIndex = 7;
     this.sbLastPage.Text     = "末页";
     this.sbLastPage.Click   += new System.EventHandler(this.sbLastPage_Click);
     //
     // panelControl1
     //
     panelControl1.Controls.Add(tableLayoutPanel1);
     panelControl1.Dock     = System.Windows.Forms.DockStyle.Fill;
     panelControl1.Location = new System.Drawing.Point(0, 0);
     panelControl1.Margin   = new System.Windows.Forms.Padding(0);
     panelControl1.Name     = "panelControl1";
     panelControl1.Size     = new System.Drawing.Size(743, 32);
     panelControl1.TabIndex = 1;
     //
     // PagerXtraUserControl
     //
     this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
     this.AutoScaleMode       = System.Windows.Forms.AutoScaleMode.Font;
     this.Controls.Add(panelControl1);
     this.Margin = new System.Windows.Forms.Padding(0);
     this.Name   = "PagerXtraUserControl";
     this.Size   = new System.Drawing.Size(743, 32);
     this.Load  += new System.EventHandler(this.PagerXtraUserControl_Load);
     tableLayoutPanel1.ResumeLayout(false);
     tableLayoutPanel1.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(this.cbePerPageRecordsCount.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.teCurrentPage.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(panelControl1)).EndInit();
     panelControl1.ResumeLayout(false);
     this.ResumeLayout(false);
 }
Exemplo n.º 47
0
 /// <summary>
 /// Required method for Designer support - do not modify
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     this.panelControl1 = new DevExpress.XtraEditors.PanelControl();
     this.checkEditForgetCard = new DevExpress.XtraEditors.CheckEdit();
     this.simpleButtonCancel = new DevExpress.XtraEditors.SimpleButton();
     this.simpleButtonOK = new DevExpress.XtraEditors.SimpleButton();
     this.lkpEdtMemberPackage = new DevExpress.XtraEditors.LookUpEdit();
     this.label2 = new System.Windows.Forms.Label();
     this.label1 = new System.Windows.Forms.Label();
     this.ucMemberID1 = new ACMS.ucMemberID();
     ((System.ComponentModel.ISupportInitialize)(this.panelControl1)).BeginInit();
     this.panelControl1.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.checkEditForgetCard.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.lkpEdtMemberPackage.Properties)).BeginInit();
     this.SuspendLayout();
     //
     // panelControl1
     //
     this.panelControl1.BorderStyle = DevExpress.XtraEditors.Controls.BorderStyles.NoBorder;
     this.panelControl1.Controls.Add(this.ucMemberID1);
     this.panelControl1.Controls.Add(this.checkEditForgetCard);
     this.panelControl1.Controls.Add(this.simpleButtonCancel);
     this.panelControl1.Controls.Add(this.simpleButtonOK);
     this.panelControl1.Controls.Add(this.lkpEdtMemberPackage);
     this.panelControl1.Controls.Add(this.label2);
     this.panelControl1.Controls.Add(this.label1);
     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(360, 148);
     this.panelControl1.TabIndex = 0;
     //
     // checkEditForgetCard
     //
     this.checkEditForgetCard.Location = new System.Drawing.Point(134, 74);
     this.checkEditForgetCard.Name = "checkEditForgetCard";
     this.checkEditForgetCard.Properties.Caption = "Forget Card?";
     this.checkEditForgetCard.Size = new System.Drawing.Size(124, 19);
     this.checkEditForgetCard.TabIndex = 43;
     //
     // simpleButtonCancel
     //
     this.simpleButtonCancel.DialogResult = System.Windows.Forms.DialogResult.Cancel;
     this.simpleButtonCancel.Location = new System.Drawing.Point(192, 116);
     this.simpleButtonCancel.Name = "simpleButtonCancel";
     this.simpleButtonCancel.Size = new System.Drawing.Size(75, 23);
     this.simpleButtonCancel.TabIndex = 42;
     this.simpleButtonCancel.Text = "Cancel";
     //
     // simpleButtonOK
     //
     this.simpleButtonOK.DialogResult = System.Windows.Forms.DialogResult.OK;
     this.simpleButtonOK.Location = new System.Drawing.Point(88, 116);
     this.simpleButtonOK.Name = "simpleButtonOK";
     this.simpleButtonOK.Size = new System.Drawing.Size(75, 23);
     this.simpleButtonOK.TabIndex = 41;
     this.simpleButtonOK.Text = "OK";
     this.simpleButtonOK.Click += new System.EventHandler(this.simpleButtonOK_Click);
     //
     // lkpEdtMemberPackage
     //
     this.lkpEdtMemberPackage.Location = new System.Drawing.Point(136, 42);
     this.lkpEdtMemberPackage.Name = "lkpEdtMemberPackage";
     this.lkpEdtMemberPackage.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.lkpEdtMemberPackage.Size = new System.Drawing.Size(204, 20);
     this.lkpEdtMemberPackage.TabIndex = 3;
     this.lkpEdtMemberPackage.EditValueChanged += new System.EventHandler(this.lkpEdtMemberPackage_EditValueChanged);
     //
     // label2
     //
     this.label2.Location = new System.Drawing.Point(16, 42);
     this.label2.Name = "label2";
     this.label2.Size = new System.Drawing.Size(100, 23);
     this.label2.TabIndex = 1;
     this.label2.Text = "Member Package";
     //
     // label1
     //
     this.label1.Location = new System.Drawing.Point(16, 8);
     this.label1.Name = "label1";
     this.label1.Size = new System.Drawing.Size(100, 23);
     this.label1.TabIndex = 0;
     this.label1.Text = "Member ID";
     //
     // ucMemberID1
     //
     this.ucMemberID1.EditValue = "";
     this.ucMemberID1.EditValueChanged = null;
     this.ucMemberID1.Location = new System.Drawing.Point(134, 10);
     this.ucMemberID1.Name = "ucMemberID1";
     this.ucMemberID1.Size = new System.Drawing.Size(182, 20);
     this.ucMemberID1.StrBranchCode = null;
     this.ucMemberID1.TabIndex = 44;
     this.ucMemberID1.Load += new System.EventHandler(this.ucMemberID1_Load);
     //
     // FormNewClassAttendanceInClassAttendanceModule
     //
     this.AcceptButton = this.simpleButtonOK;
     this.AutoScaleBaseSize = new System.Drawing.Size(5, 13);
     this.CancelButton = this.simpleButtonCancel;
     this.ClientSize = new System.Drawing.Size(360, 148);
     this.Controls.Add(this.panelControl1);
     this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedDialog;
     this.MaximizeBox = false;
     this.MinimizeBox = false;
     this.Name = "FormNewClassAttendanceInClassAttendanceModule";
     this.ShowInTaskbar = false;
     this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen;
     this.Text = "Class Attendance";
     this.Load += new System.EventHandler(this.FormNewClassAttendanceInClassAttendanceModule_Load);
     ((System.ComponentModel.ISupportInitialize)(this.panelControl1)).EndInit();
     this.panelControl1.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.checkEditForgetCard.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.lkpEdtMemberPackage.Properties)).EndInit();
     this.ResumeLayout(false);
 }
Exemplo n.º 48
0
 /// <summary>
 /// Required method for Designer support - do not modify
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     this.components = new System.ComponentModel.Container();
     this.repositoryItemCheckEdit2  = new DevExpress.XtraEditors.Repository.RepositoryItemCheckEdit();
     this.repositoryItemCheckEdit1  = new DevExpress.XtraEditors.Repository.RepositoryItemCheckEdit();
     this.panelControlMemberPackage = new DevExpress.XtraEditors.PanelControl();
     this.GridControlMemberPackage  = new DevExpress.XtraGrid.GridControl();
     this.gridViewMemberPackage     = new DevExpress.XtraGrid.Views.Grid.GridView();
     this.gridColumn1         = new DevExpress.XtraGrid.Columns.GridColumn();
     this.GridColumn28        = new DevExpress.XtraGrid.Columns.GridColumn();
     this.GridColumn30        = new DevExpress.XtraGrid.Columns.GridColumn();
     this.GridColumn31        = new DevExpress.XtraGrid.Columns.GridColumn();
     this.GridColumn32        = new DevExpress.XtraGrid.Columns.GridColumn();
     this.GridColumn33        = new DevExpress.XtraGrid.Columns.GridColumn();
     this.GridColumn35        = new DevExpress.XtraGrid.Columns.GridColumn();
     this.GridColumn44        = new DevExpress.XtraGrid.Columns.GridColumn();
     this.GridColumn45        = new DevExpress.XtraGrid.Columns.GridColumn();
     this.GridColumn50        = new DevExpress.XtraGrid.Columns.GridColumn();
     this.GridColumn49        = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn14        = new DevExpress.XtraGrid.Columns.GridColumn();
     this.GridColumn34        = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn13        = new DevExpress.XtraGrid.Columns.GridColumn();
     this.colChecked          = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn2         = new DevExpress.XtraGrid.Columns.GridColumn();
     this.splitterControl1    = new DevExpress.XtraEditors.SplitterControl();
     this.panelControlPackage = new DevExpress.XtraEditors.PanelControl();
     this.simpleButton2       = new DevExpress.XtraEditors.SimpleButton();
     this.simpleButtonOK1     = new DevExpress.XtraEditors.SimpleButton();
     this.toolTip1            = new System.Windows.Forms.ToolTip(this.components);
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemCheckEdit2)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemCheckEdit1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.panelControlMemberPackage)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.GridControlMemberPackage)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridViewMemberPackage)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.panelControlPackage)).BeginInit();
     this.panelControlPackage.SuspendLayout();
     this.SuspendLayout();
     //
     // repositoryItemCheckEdit2
     //
     this.repositoryItemCheckEdit2.AutoHeight  = false;
     this.repositoryItemCheckEdit2.Name        = "repositoryItemCheckEdit2";
     this.repositoryItemCheckEdit2.NullStyle   = DevExpress.XtraEditors.Controls.StyleIndeterminate.Unchecked;
     this.repositoryItemCheckEdit2.ValueGrayed = "";
     //
     // repositoryItemCheckEdit1
     //
     this.repositoryItemCheckEdit1.AutoHeight = false;
     this.repositoryItemCheckEdit1.Name       = "repositoryItemCheckEdit1";
     //
     // panelControlMemberPackage
     //
     this.panelControlMemberPackage.BorderStyle = DevExpress.XtraEditors.Controls.BorderStyles.NoBorder;
     this.panelControlMemberPackage.Location    = new System.Drawing.Point(0, 0);
     this.panelControlMemberPackage.Name        = "panelControlMemberPackage";
     this.panelControlMemberPackage.Size        = new System.Drawing.Size(864, 220);
     this.panelControlMemberPackage.TabIndex    = 1;
     //
     // GridControlMemberPackage
     //
     this.GridControlMemberPackage.Location = new System.Drawing.Point(-2, 13);
     this.GridControlMemberPackage.LookAndFeel.UseDefaultLookAndFeel = false;
     this.GridControlMemberPackage.MainView = this.gridViewMemberPackage;
     this.GridControlMemberPackage.Name     = "GridControlMemberPackage";
     this.GridControlMemberPackage.Size     = new System.Drawing.Size(818, 229);
     this.GridControlMemberPackage.TabIndex = 8;
     this.GridControlMemberPackage.ViewCollection.AddRange(new DevExpress.XtraGrid.Views.Base.BaseView[] {
         this.gridViewMemberPackage
     });
     this.GridControlMemberPackage.Click += new System.EventHandler(this.GridControlMemberPackage_Click);
     //
     // gridViewMemberPackage
     //
     this.gridViewMemberPackage.Columns.AddRange(new DevExpress.XtraGrid.Columns.GridColumn[] {
         this.gridColumn1,
         this.GridColumn28,
         this.GridColumn30,
         this.GridColumn31,
         this.GridColumn32,
         this.GridColumn33,
         this.GridColumn35,
         this.GridColumn44,
         this.GridColumn45,
         this.GridColumn50,
         this.GridColumn49,
         this.gridColumn14,
         this.GridColumn34,
         this.gridColumn13,
         this.colChecked,
         this.gridColumn2
     });
     this.gridViewMemberPackage.GridControl          = this.GridControlMemberPackage;
     this.gridViewMemberPackage.GroupFormat          = "";
     this.gridViewMemberPackage.HorzScrollVisibility = DevExpress.XtraGrid.Views.Base.ScrollVisibility.Always;
     this.gridViewMemberPackage.Name = "gridViewMemberPackage";
     this.gridViewMemberPackage.OptionsCustomization.AllowGroup = false;
     this.gridViewMemberPackage.OptionsCustomization.AllowSort  = false;
     this.gridViewMemberPackage.OptionsView.ColumnAutoWidth     = false;
     this.gridViewMemberPackage.OptionsView.ShowGroupPanel      = false;
     this.gridViewMemberPackage.FocusedRowChanged += new DevExpress.XtraGrid.Views.Base.FocusedRowChangedEventHandler(this.gridViewMemberPackage_FocusedRowChanged);
     //
     // gridColumn1
     //
     this.gridColumn1.Caption      = "Type";
     this.gridColumn1.FieldName    = "strPackageType";
     this.gridColumn1.Name         = "gridColumn1";
     this.gridColumn1.Visible      = true;
     this.gridColumn1.VisibleIndex = 1;
     this.gridColumn1.Width        = 100;
     //
     // GridColumn28
     //
     this.GridColumn28.Caption   = "Package ID";
     this.GridColumn28.FieldName = "nPackageID";
     this.GridColumn28.Name      = "GridColumn28";
     this.GridColumn28.OptionsColumn.AllowEdit   = false;
     this.GridColumn28.OptionsColumn.AllowFocus  = false;
     this.GridColumn28.OptionsFilter.AllowFilter = false;
     this.GridColumn28.Visible      = true;
     this.GridColumn28.VisibleIndex = 2;
     this.GridColumn28.Width        = 80;
     //
     // GridColumn30
     //
     this.GridColumn30.Caption   = "Package Code";
     this.GridColumn30.FieldName = "strPackageCode";
     this.GridColumn30.Name      = "GridColumn30";
     this.GridColumn30.OptionsColumn.AllowEdit   = false;
     this.GridColumn30.OptionsColumn.AllowFocus  = false;
     this.GridColumn30.OptionsFilter.AllowFilter = false;
     this.GridColumn30.Visible      = true;
     this.GridColumn30.VisibleIndex = 3;
     this.GridColumn30.Width        = 90;
     //
     // GridColumn31
     //
     this.GridColumn31.Caption   = "Package Description";
     this.GridColumn31.FieldName = "strDescription";
     this.GridColumn31.Name      = "GridColumn31";
     this.GridColumn31.OptionsColumn.AllowEdit   = false;
     this.GridColumn31.OptionsColumn.AllowFocus  = false;
     this.GridColumn31.OptionsFilter.AllowFilter = false;
     this.GridColumn31.Visible      = true;
     this.GridColumn31.VisibleIndex = 4;
     this.GridColumn31.Width        = 280;
     //
     // GridColumn32
     //
     this.GridColumn32.Caption = "Purchase Date";
     this.GridColumn32.DisplayFormat.FormatString = "dd/MM/yyyy";
     this.GridColumn32.DisplayFormat.FormatType   = DevExpress.Utils.FormatType.DateTime;
     this.GridColumn32.FieldName = "dtPurchaseDate";
     this.GridColumn32.Name      = "GridColumn32";
     this.GridColumn32.OptionsColumn.AllowEdit   = false;
     this.GridColumn32.OptionsColumn.AllowFocus  = false;
     this.GridColumn32.OptionsFilter.AllowFilter = false;
     this.GridColumn32.Width = 84;
     //
     // GridColumn33
     //
     this.GridColumn33.Caption   = "Receipt No";
     this.GridColumn33.FieldName = "strReceiptNo";
     this.GridColumn33.Name      = "GridColumn33";
     this.GridColumn33.OptionsColumn.AllowEdit   = false;
     this.GridColumn33.OptionsColumn.AllowFocus  = false;
     this.GridColumn33.OptionsFilter.AllowFilter = false;
     this.GridColumn33.Width = 82;
     //
     // GridColumn35
     //
     this.GridColumn35.Caption = "Start Date";
     this.GridColumn35.DisplayFormat.FormatString = "dd/MM/yyyy";
     this.GridColumn35.DisplayFormat.FormatType   = DevExpress.Utils.FormatType.DateTime;
     this.GridColumn35.FieldName = "dtStartDate";
     this.GridColumn35.Name      = "GridColumn35";
     this.GridColumn35.OptionsColumn.AllowEdit   = false;
     this.GridColumn35.OptionsColumn.AllowFocus  = false;
     this.GridColumn35.OptionsFilter.AllowFilter = false;
     this.GridColumn35.Width = 73;
     //
     // GridColumn44
     //
     this.GridColumn44.Caption = "Expiry Date";
     this.GridColumn44.DisplayFormat.FormatString = "dd/MM/yyyy";
     this.GridColumn44.DisplayFormat.FormatType   = DevExpress.Utils.FormatType.DateTime;
     this.GridColumn44.FieldName = "dtExpiryDate";
     this.GridColumn44.Name      = "GridColumn44";
     this.GridColumn44.OptionsColumn.AllowEdit   = false;
     this.GridColumn44.OptionsColumn.AllowFocus  = false;
     this.GridColumn44.OptionsFilter.AllowFilter = false;
     this.GridColumn44.Width = 104;
     //
     // GridColumn45
     //
     this.GridColumn45.Caption    = "Free Indicator";
     this.GridColumn45.ColumnEdit = this.repositoryItemCheckEdit1;
     this.GridColumn45.FieldName  = "fFree";
     this.GridColumn45.Name       = "GridColumn45";
     this.GridColumn45.OptionsColumn.AllowEdit   = false;
     this.GridColumn45.OptionsColumn.AllowFocus  = false;
     this.GridColumn45.OptionsFilter.AllowFilter = false;
     this.GridColumn45.Width = 110;
     //
     // GridColumn50
     //
     this.GridColumn50.Caption = "Usage Balance Amount";
     this.GridColumn50.DisplayFormat.FormatString = "{0:C}";
     this.GridColumn50.DisplayFormat.FormatType   = DevExpress.Utils.FormatType.Custom;
     this.GridColumn50.FieldName = "UsageBalAmt";
     this.GridColumn50.Name      = "GridColumn50";
     this.GridColumn50.OptionsColumn.AllowEdit   = false;
     this.GridColumn50.OptionsColumn.AllowFocus  = false;
     this.GridColumn50.OptionsFilter.AllowFilter = false;
     this.GridColumn50.Visible      = true;
     this.GridColumn50.VisibleIndex = 5;
     this.GridColumn50.Width        = 134;
     //
     // GridColumn49
     //
     this.GridColumn49.Caption   = "Remark";
     this.GridColumn49.FieldName = "strRemarks";
     this.GridColumn49.Name      = "GridColumn49";
     this.GridColumn49.OptionsColumn.AllowEdit   = false;
     this.GridColumn49.OptionsColumn.AllowFocus  = false;
     this.GridColumn49.OptionsFilter.AllowFilter = false;
     this.GridColumn49.Visible      = true;
     this.GridColumn49.VisibleIndex = 6;
     this.GridColumn49.Width        = 70;
     //
     // gridColumn14
     //
     this.gridColumn14.Caption = "Paid Amount";
     this.gridColumn14.DisplayFormat.FormatString = "{0:C}";
     this.gridColumn14.DisplayFormat.FormatType   = DevExpress.Utils.FormatType.Custom;
     this.gridColumn14.FieldName = "PaidAmt";
     this.gridColumn14.Name      = "gridColumn14";
     this.gridColumn14.OptionsColumn.AllowEdit   = false;
     this.gridColumn14.OptionsColumn.AllowFocus  = false;
     this.gridColumn14.OptionsFilter.AllowFilter = false;
     this.gridColumn14.Width = 90;
     //
     // GridColumn34
     //
     this.GridColumn34.Caption   = "Balance";
     this.GridColumn34.FieldName = "strBalNew";
     this.GridColumn34.Name      = "GridColumn34";
     this.GridColumn34.OptionsColumn.AllowEdit   = false;
     this.GridColumn34.OptionsColumn.AllowFocus  = false;
     this.GridColumn34.OptionsFilter.AllowFilter = false;
     this.GridColumn34.Visible      = true;
     this.GridColumn34.VisibleIndex = 7;
     this.GridColumn34.Width        = 60;
     //
     // gridColumn13
     //
     this.gridColumn13.Caption = "Unit Price";
     this.gridColumn13.DisplayFormat.FormatString = "{0:C}";
     this.gridColumn13.DisplayFormat.FormatType   = DevExpress.Utils.FormatType.Custom;
     this.gridColumn13.FieldName = "mBaseUnitPrice";
     this.gridColumn13.Name      = "gridColumn13";
     this.gridColumn13.OptionsColumn.AllowEdit   = false;
     this.gridColumn13.OptionsColumn.AllowFocus  = false;
     this.gridColumn13.OptionsFilter.AllowFilter = false;
     this.gridColumn13.Width = 57;
     //
     // colChecked
     //
     this.colChecked.ColumnEdit   = this.repositoryItemCheckEdit2;
     this.colChecked.FieldName    = "Checked";
     this.colChecked.Name         = "colChecked";
     this.colChecked.Visible      = true;
     this.colChecked.VisibleIndex = 0;
     this.colChecked.Width        = 34;
     //
     // gridColumn2
     //
     this.gridColumn2.Caption      = "Calculation";
     this.gridColumn2.FieldName    = "strCalculation";
     this.gridColumn2.Name         = "gridColumn2";
     this.gridColumn2.Visible      = true;
     this.gridColumn2.VisibleIndex = 8;
     //
     // splitterControl1
     //
     this.splitterControl1.Dock     = System.Windows.Forms.DockStyle.Top;
     this.splitterControl1.Location = new System.Drawing.Point(0, 0);
     this.splitterControl1.Name     = "splitterControl1";
     this.splitterControl1.Size     = new System.Drawing.Size(979, 6);
     this.splitterControl1.TabIndex = 2;
     this.splitterControl1.TabStop  = false;
     //
     // panelControlPackage
     //
     this.panelControlPackage.BorderStyle = DevExpress.XtraEditors.Controls.BorderStyles.NoBorder;
     this.panelControlPackage.Controls.Add(this.simpleButton2);
     this.panelControlPackage.Controls.Add(this.simpleButtonOK1);
     this.panelControlPackage.Controls.Add(this.GridControlMemberPackage);
     this.panelControlPackage.Dock     = System.Windows.Forms.DockStyle.Fill;
     this.panelControlPackage.Location = new System.Drawing.Point(0, 6);
     this.panelControlPackage.Name     = "panelControlPackage";
     this.panelControlPackage.Size     = new System.Drawing.Size(979, 316);
     this.panelControlPackage.TabIndex = 4;
     //
     // simpleButton2
     //
     this.simpleButton2.DialogResult = System.Windows.Forms.DialogResult.Cancel;
     this.simpleButton2.Location     = new System.Drawing.Point(644, 247);
     this.simpleButton2.Name         = "simpleButton2";
     this.simpleButton2.Size         = new System.Drawing.Size(75, 23);
     this.simpleButton2.TabIndex     = 12;
     this.simpleButton2.Text         = "Cancel";
     //
     // simpleButtonOK1
     //
     this.simpleButtonOK1.DialogResult = System.Windows.Forms.DialogResult.OK;
     this.simpleButtonOK1.Location     = new System.Drawing.Point(557, 247);
     this.simpleButtonOK1.Name         = "simpleButtonOK1";
     this.simpleButtonOK1.Size         = new System.Drawing.Size(75, 23);
     this.simpleButtonOK1.TabIndex     = 11;
     this.simpleButtonOK1.Text         = "OK";
     this.simpleButtonOK1.Click       += new System.EventHandler(this.simpleButtonOK_Click);
     //
     // FormUpgradePackageNew
     //
     this.AutoScaleBaseSize = new System.Drawing.Size(5, 13);
     this.ClientSize        = new System.Drawing.Size(979, 322);
     this.Controls.Add(this.panelControlPackage);
     this.Controls.Add(this.panelControlMemberPackage);
     this.Controls.Add(this.splitterControl1);
     this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedDialog;
     this.MaximizeBox     = false;
     this.MinimizeBox     = false;
     this.Name            = "FormUpgradePackageNew";
     this.ShowInTaskbar   = false;
     this.SizeGripStyle   = System.Windows.Forms.SizeGripStyle.Show;
     this.StartPosition   = System.Windows.Forms.FormStartPosition.CenterScreen;
     this.Text            = "Upgrade Selection";
     this.Load           += new System.EventHandler(this.FormUpgradePackage_Load);
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemCheckEdit2)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemCheckEdit1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.panelControlMemberPackage)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.GridControlMemberPackage)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridViewMemberPackage)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.panelControlPackage)).EndInit();
     this.panelControlPackage.ResumeLayout(false);
     this.ResumeLayout(false);
 }
        /// <summary>
        /// Required method for Designer support - do not modify
        /// the contents of this method with the code editor.
        /// </summary>
        private void InitializeComponent()
        {
            this.ribbonStatusBar = new DevExpress.XtraBars.Ribbon.RibbonStatusBar();
            this.OK = new DevExpress.XtraBars.BarButtonItem();
            this.barButtonItem2 = new DevExpress.XtraBars.BarButtonItem();
            this.cancel = new DevExpress.XtraBars.BarButtonItem();
            this.ribbon = new DevExpress.XtraBars.Ribbon.RibbonControl();
            this.showTareBarButtonItem = new DevExpress.XtraBars.BarCheckItem();
            this.showNomenclatureBarButtonItem = new DevExpress.XtraBars.BarCheckItem();
            this.openPalletButton = new DevExpress.XtraBars.BarButtonItem();
            this.NomenclatureInfoButtonsBar = new DevExpress.XtraBars.Ribbon.RibbonStatusBar();
            this.PlansBar = new DevExpress.XtraBars.Ribbon.RibbonStatusBar();
            this.panelControl = new DevExpress.XtraEditors.PanelControl();
            this.date = new DevExpress.XtraEditors.DateEdit();
            this.Car = new DevExpress.XtraEditors.LabelControl();
            this.Carrier = new DevExpress.XtraEditors.LabelControl();
            this.Driver = new DevExpress.XtraEditors.LabelControl();
            this.Contractor = new DevExpress.XtraEditors.LabelControl();
            this.labelControl7 = new DevExpress.XtraEditors.LabelControl();
            this.labelControl6 = new DevExpress.XtraEditors.LabelControl();
            this.labelControl5 = new DevExpress.XtraEditors.LabelControl();
            this.labelControl4 = new DevExpress.XtraEditors.LabelControl();
            this.State = new DevExpress.XtraEditors.ComboBoxEdit();
            this.labelControl3 = new DevExpress.XtraEditors.LabelControl();
            this.label = new DevExpress.XtraEditors.LabelControl();
            this.NomenclatureInfo = new DevExpress.XtraGrid.GridControl();
            this.nomenclatureView = new DevExpress.XtraGrid.Views.Grid.GridView();
            this.panelControl1 = new DevExpress.XtraEditors.PanelControl();
            this.pictureEdit1 = new DevExpress.XtraEditors.PictureEdit();
            this.Info = new DevExpress.XtraEditors.LabelControl();
            this.barButtonItem1 = new DevExpress.XtraBars.BarButtonItem();
            this.barButtonItem3 = new DevExpress.XtraBars.BarButtonItem();
            this.barButtonItem4 = new DevExpress.XtraBars.BarButtonItem();
            this.tabControl = new DevExpress.XtraTab.XtraTabControl();
            this.waresTabPage = new DevExpress.XtraTab.XtraTabPage();
            this.plansTabPage = new DevExpress.XtraTab.XtraTabPage();
            this.Plans = new DevExpress.XtraGrid.GridControl();
            this.gridView3 = new DevExpress.XtraGrid.Views.Grid.GridView();
            this.barCheckItem1 = new DevExpress.XtraBars.BarCheckItem();
            this.barCheckItem2 = new DevExpress.XtraBars.BarCheckItem();
            this.barButtonItem5 = new DevExpress.XtraBars.BarButtonItem();
            this.barButtonItem6 = new DevExpress.XtraBars.BarButtonItem();
            this.barButtonItem7 = new DevExpress.XtraBars.BarButtonItem();
            this.barButtonItem8 = new DevExpress.XtraBars.BarButtonItem();
            this.barButtonItem9 = new DevExpress.XtraBars.BarButtonItem();
            this.barButtonItem10 = new DevExpress.XtraBars.BarButtonItem();
            this.createAcceptanceButtonItem = new DevExpress.XtraBars.BarButtonItem();
            ((System.ComponentModel.ISupportInitialize)(this.ribbon)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.panelControl)).BeginInit();
            this.panelControl.SuspendLayout();
            ((System.ComponentModel.ISupportInitialize)(this.date.Properties.VistaTimeProperties)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.date.Properties)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.State.Properties)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.NomenclatureInfo)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.nomenclatureView)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.panelControl1)).BeginInit();
            this.panelControl1.SuspendLayout();
            ((System.ComponentModel.ISupportInitialize)(this.pictureEdit1.Properties)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.tabControl)).BeginInit();
            this.tabControl.SuspendLayout();
            this.waresTabPage.SuspendLayout();
            this.plansTabPage.SuspendLayout();
            ((System.ComponentModel.ISupportInitialize)(this.Plans)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.gridView3)).BeginInit();
            this.SuspendLayout();
            //
            // ribbonStatusBar
            //
            this.ribbonStatusBar.ItemLinks.Add(this.OK);
            this.ribbonStatusBar.ItemLinks.Add(this.barButtonItem2);
            this.ribbonStatusBar.ItemLinks.Add(this.cancel);
            this.ribbonStatusBar.Location = new System.Drawing.Point(0, 572);
            this.ribbonStatusBar.Name = "ribbonStatusBar";
            this.ribbonStatusBar.Ribbon = this.ribbon;
            this.ribbonStatusBar.Size = new System.Drawing.Size(884, 31);
            //
            // OK
            //
            this.OK.Alignment = DevExpress.XtraBars.BarItemLinkAlignment.Right;
            this.OK.Caption = "OK";
            this.OK.Id = 0;
            this.OK.ImageIndex = 0;
            this.OK.Name = "OK";
            this.OK.ItemClick += new DevExpress.XtraBars.ItemClickEventHandler(this.OK_ItemClick);
            //
            // barButtonItem2
            //
            this.barButtonItem2.Alignment = DevExpress.XtraBars.BarItemLinkAlignment.Right;
            this.barButtonItem2.Caption = "��������";
            this.barButtonItem2.Id = 1;
            this.barButtonItem2.Name = "barButtonItem2";
            this.barButtonItem2.ItemClick += new DevExpress.XtraBars.ItemClickEventHandler(this.Write_ItemClick);
            //
            // cancel
            //
            this.cancel.Alignment = DevExpress.XtraBars.BarItemLinkAlignment.Right;
            this.cancel.Caption = "³����";
            this.cancel.Id = 2;
            this.cancel.ImageIndex = 1;
            this.cancel.Name = "cancel";
            this.cancel.ItemClick += new DevExpress.XtraBars.ItemClickEventHandler(this.cancel_ItemClick);
            //
            // ribbon
            //
            this.ribbon.ApplicationButtonText = null;
            this.ribbon.ExpandCollapseItem.Id = 0;
            this.ribbon.ExpandCollapseItem.Name = "";
            this.ribbon.Items.AddRange(new DevExpress.XtraBars.BarItem[] {
            this.ribbon.ExpandCollapseItem,
            this.OK,
            this.barButtonItem2,
            this.cancel,
            this.showTareBarButtonItem,
            this.showNomenclatureBarButtonItem,
            this.openPalletButton});
            this.ribbon.Location = new System.Drawing.Point(0, 0);
            this.ribbon.MaxItemId = 22;
            this.ribbon.Name = "ribbon";
            this.ribbon.Size = new System.Drawing.Size(884, 49);
            this.ribbon.StatusBar = this.PlansBar;
            this.ribbon.ToolbarLocation = DevExpress.XtraBars.Ribbon.RibbonQuickAccessToolbarLocation.Above;
            //
            // showTareBarButtonItem
            //
            this.showTareBarButtonItem.Alignment = DevExpress.XtraBars.BarItemLinkAlignment.Right;
            this.showTareBarButtonItem.Caption = "����";
            this.showTareBarButtonItem.Id = 18;
            this.showTareBarButtonItem.Name = "showTareBarButtonItem";
            this.showTareBarButtonItem.CheckedChanged += new DevExpress.XtraBars.ItemClickEventHandler(this.showTareBarButtonItem_CheckedChanged);
            //
            // showNomenclatureBarButtonItem
            //
            this.showNomenclatureBarButtonItem.Alignment = DevExpress.XtraBars.BarItemLinkAlignment.Right;
            this.showNomenclatureBarButtonItem.Caption = "������������";
            this.showNomenclatureBarButtonItem.Id = 20;
            this.showNomenclatureBarButtonItem.Name = "showNomenclatureBarButtonItem";
            this.showNomenclatureBarButtonItem.CheckedChanged += new DevExpress.XtraBars.ItemClickEventHandler(this.showNomenclatureBarButtonItem_CheckedChanged);
            //
            // openPalletButton
            //
            this.openPalletButton.Caption = "�������� ������";
            this.openPalletButton.Id = 21;
            this.openPalletButton.Name = "openPalletButton";
            this.openPalletButton.ItemClick += new DevExpress.XtraBars.ItemClickEventHandler(this.openPalletButton_ItemClick);
            //
            // NomenclatureInfoButtonsBar
            //
            this.NomenclatureInfoButtonsBar.Dock = System.Windows.Forms.DockStyle.Top;
            this.NomenclatureInfoButtonsBar.ItemLinks.Add(this.showNomenclatureBarButtonItem);
            this.NomenclatureInfoButtonsBar.ItemLinks.Add(this.showTareBarButtonItem);
            this.NomenclatureInfoButtonsBar.ItemLinks.Add(this.openPalletButton);
            this.NomenclatureInfoButtonsBar.Location = new System.Drawing.Point(0, 0);
            this.NomenclatureInfoButtonsBar.Name = "NomenclatureInfoButtonsBar";
            this.NomenclatureInfoButtonsBar.Ribbon = this.ribbon;
            this.NomenclatureInfoButtonsBar.Size = new System.Drawing.Size(878, 27);
            //
            // PlansBar
            //
            this.PlansBar.Dock = System.Windows.Forms.DockStyle.Top;
            this.PlansBar.Location = new System.Drawing.Point(0, 0);
            this.PlansBar.Name = "PlansBar";
            this.PlansBar.Ribbon = this.ribbon;
            this.PlansBar.Size = new System.Drawing.Size(878, 27);
            //
            // panelControl
            //
            this.panelControl.BorderStyle = DevExpress.XtraEditors.Controls.BorderStyles.NoBorder;
            this.panelControl.Controls.Add(this.date);
            this.panelControl.Controls.Add(this.Car);
            this.panelControl.Controls.Add(this.Carrier);
            this.panelControl.Controls.Add(this.Driver);
            this.panelControl.Controls.Add(this.Contractor);
            this.panelControl.Controls.Add(this.labelControl7);
            this.panelControl.Controls.Add(this.labelControl6);
            this.panelControl.Controls.Add(this.labelControl5);
            this.panelControl.Controls.Add(this.labelControl4);
            this.panelControl.Controls.Add(this.State);
            this.panelControl.Controls.Add(this.labelControl3);
            this.panelControl.Controls.Add(this.label);
            this.panelControl.Dock = System.Windows.Forms.DockStyle.Top;
            this.panelControl.Location = new System.Drawing.Point(0, 49);
            this.panelControl.Name = "panelControl";
            this.panelControl.Size = new System.Drawing.Size(884, 94);
            this.panelControl.TabIndex = 2;
            //
            // date
            //
            this.date.EditValue = null;
            this.date.Location = new System.Drawing.Point(366, 8);
            this.date.MenuManager = this.ribbon;
            this.date.Name = "date";
            this.date.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
            new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
            this.date.Properties.VistaTimeProperties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
            new DevExpress.XtraEditors.Controls.EditorButton()});
            this.date.Size = new System.Drawing.Size(100, 20);
            this.date.TabIndex = 17;
            //
            // Car
            //
            this.Car.Appearance.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold);
            this.Car.Location = new System.Drawing.Point(366, 72);
            this.Car.Name = "Car";
            this.Car.Size = new System.Drawing.Size(21, 13);
            this.Car.TabIndex = 16;
            this.Car.Text = "{0}";
            //
            // Carrier
            //
            this.Carrier.Appearance.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold);
            this.Carrier.Location = new System.Drawing.Point(366, 53);
            this.Carrier.Name = "Carrier";
            this.Carrier.Size = new System.Drawing.Size(21, 13);
            this.Carrier.TabIndex = 15;
            this.Carrier.Text = "{0}";
            //
            // Driver
            //
            this.Driver.Appearance.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold);
            this.Driver.Location = new System.Drawing.Point(99, 72);
            this.Driver.Name = "Driver";
            this.Driver.Size = new System.Drawing.Size(21, 13);
            this.Driver.TabIndex = 14;
            this.Driver.Text = "{0}";
            //
            // Contractor
            //
            this.Contractor.Appearance.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold);
            this.Contractor.Location = new System.Drawing.Point(99, 53);
            this.Contractor.Name = "Contractor";
            this.Contractor.Size = new System.Drawing.Size(21, 13);
            this.Contractor.TabIndex = 13;
            this.Contractor.Text = "{0}";
            //
            // labelControl7
            //
            this.labelControl7.Location = new System.Drawing.Point(261, 72);
            this.labelControl7.Name = "labelControl7";
            this.labelControl7.Size = new System.Drawing.Size(40, 13);
            this.labelControl7.TabIndex = 12;
            this.labelControl7.Text = "������";
            //
            // labelControl6
            //
            this.labelControl6.Location = new System.Drawing.Point(10, 72);
            this.labelControl6.Name = "labelControl6";
            this.labelControl6.Size = new System.Drawing.Size(28, 13);
            this.labelControl6.TabIndex = 10;
            this.labelControl6.Text = "����";
            //
            // labelControl5
            //
            this.labelControl5.Location = new System.Drawing.Point(261, 53);
            this.labelControl5.Name = "labelControl5";
            this.labelControl5.Size = new System.Drawing.Size(57, 13);
            this.labelControl5.TabIndex = 8;
            this.labelControl5.Text = "���������";
            //
            // labelControl4
            //
            this.labelControl4.Location = new System.Drawing.Point(10, 53);
            this.labelControl4.Name = "labelControl4";
            this.labelControl4.Size = new System.Drawing.Size(60, 13);
            this.labelControl4.TabIndex = 6;
            this.labelControl4.Text = "����������";
            //
            // State
            //
            this.State.Location = new System.Drawing.Point(99, 8);
            this.State.MenuManager = this.ribbon;
            this.State.Name = "State";
            this.State.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
            new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
            this.State.Size = new System.Drawing.Size(156, 20);
            this.State.TabIndex = 0;
            //
            // labelControl3
            //
            this.labelControl3.Location = new System.Drawing.Point(10, 11);
            this.labelControl3.Name = "labelControl3";
            this.labelControl3.Size = new System.Drawing.Size(82, 13);
            this.labelControl3.TabIndex = 4;
            this.labelControl3.Text = "���� ���������";
            //
            // label
            //
            this.label.Location = new System.Drawing.Point(272, 11);
            this.label.Name = "label";
            this.label.Size = new System.Drawing.Size(83, 13);
            this.label.TabIndex = 2;
            this.label.Text = "���� ���������";
            //
            // NomenclatureInfo
            //
            this.NomenclatureInfo.Dock = System.Windows.Forms.DockStyle.Fill;
            this.NomenclatureInfo.Location = new System.Drawing.Point(0, 27);
            this.NomenclatureInfo.MainView = this.nomenclatureView;
            this.NomenclatureInfo.MenuManager = this.ribbon;
            this.NomenclatureInfo.Name = "NomenclatureInfo";
            this.NomenclatureInfo.Size = new System.Drawing.Size(878, 354);
            this.NomenclatureInfo.TabIndex = 1;
            this.NomenclatureInfo.ViewCollection.AddRange(new DevExpress.XtraGrid.Views.Base.BaseView[] {
            this.nomenclatureView});
            //
            // nomenclatureView
            //
            this.nomenclatureView.GridControl = this.NomenclatureInfo;
            this.nomenclatureView.Name = "nomenclatureView";
            this.nomenclatureView.RowStyle += new DevExpress.XtraGrid.Views.Grid.RowStyleEventHandler(this.nomenclatureView_RowStyle);
            //
            // panelControl1
            //
            this.panelControl1.BorderStyle = DevExpress.XtraEditors.Controls.BorderStyles.NoBorder;
            this.panelControl1.Controls.Add(this.pictureEdit1);
            this.panelControl1.Controls.Add(this.Info);
            this.panelControl1.Dock = System.Windows.Forms.DockStyle.Bottom;
            this.panelControl1.Location = new System.Drawing.Point(0, 552);
            this.panelControl1.Name = "panelControl1";
            this.panelControl1.Size = new System.Drawing.Size(884, 20);
            this.panelControl1.TabIndex = 0;
            //
            // pictureEdit1
            //
            this.pictureEdit1.Dock = System.Windows.Forms.DockStyle.Left;
            this.pictureEdit1.EditValue = global::FMCG.Properties.Resources._1317825614_information_balloon;
            this.pictureEdit1.Location = new System.Drawing.Point(0, 0);
            this.pictureEdit1.MenuManager = this.ribbon;
            this.pictureEdit1.Name = "pictureEdit1";
            this.pictureEdit1.Properties.Appearance.BackColor = System.Drawing.Color.Transparent;
            this.pictureEdit1.Properties.Appearance.Options.UseBackColor = true;
            this.pictureEdit1.Properties.BorderStyle = DevExpress.XtraEditors.Controls.BorderStyles.NoBorder;
            this.pictureEdit1.Size = new System.Drawing.Size(20, 20);
            this.pictureEdit1.TabIndex = 3;
            this.pictureEdit1.ToolTip = "��� ������� ��������� �������� �� ���� ���������� �����������";
            this.pictureEdit1.ToolTipIconType = DevExpress.Utils.ToolTipIconType.Information;
            this.pictureEdit1.ToolTipTitle = "������:";
            //
            // Info
            //
            this.Info.Appearance.ForeColor = System.Drawing.Color.Gray;
            this.Info.Location = new System.Drawing.Point(24, 3);
            this.Info.Name = "Info";
            this.Info.Size = new System.Drawing.Size(12, 13);
            this.Info.TabIndex = 1;
            this.Info.Text = "...";
            //
            // barButtonItem1
            //
            this.barButtonItem1.Alignment = DevExpress.XtraBars.BarItemLinkAlignment.Right;
            this.barButtonItem1.Caption = "OK";
            this.barButtonItem1.Id = 0;
            this.barButtonItem1.ImageIndex = 0;
            this.barButtonItem1.Name = "barButtonItem1";
            //
            // barButtonItem3
            //
            this.barButtonItem3.Alignment = DevExpress.XtraBars.BarItemLinkAlignment.Right;
            this.barButtonItem3.Caption = "��������";
            this.barButtonItem3.Id = 1;
            this.barButtonItem3.Name = "barButtonItem3";
            //
            // barButtonItem4
            //
            this.barButtonItem4.Alignment = DevExpress.XtraBars.BarItemLinkAlignment.Right;
            this.barButtonItem4.Caption = "³����";
            this.barButtonItem4.Id = 2;
            this.barButtonItem4.ImageIndex = 1;
            this.barButtonItem4.Name = "barButtonItem4";
            //
            // tabControl
            //
            this.tabControl.Dock = System.Windows.Forms.DockStyle.Fill;
            this.tabControl.Location = new System.Drawing.Point(0, 143);
            this.tabControl.Name = "tabControl";
            this.tabControl.SelectedTabPage = this.waresTabPage;
            this.tabControl.Size = new System.Drawing.Size(884, 409);
            this.tabControl.TabIndex = 9;
            this.tabControl.TabPages.AddRange(new DevExpress.XtraTab.XtraTabPage[] {
            this.waresTabPage,
            this.plansTabPage});
            //
            // waresTabPage
            //
            this.waresTabPage.Controls.Add(this.NomenclatureInfo);
            this.waresTabPage.Controls.Add(this.NomenclatureInfoButtonsBar);
            this.waresTabPage.Name = "waresTabPage";
            this.waresTabPage.Size = new System.Drawing.Size(878, 381);
            this.waresTabPage.Text = "������������";
            //
            // plansTabPage
            //
            this.plansTabPage.Controls.Add(this.Plans);
            this.plansTabPage.Controls.Add(this.PlansBar);
            this.plansTabPage.Name = "plansTabPage";
            this.plansTabPage.Size = new System.Drawing.Size(878, 381);
            this.plansTabPage.Text = "������ ���������";
            //
            // Plans
            //
            this.Plans.Dock = System.Windows.Forms.DockStyle.Fill;
            this.Plans.Location = new System.Drawing.Point(0, 27);
            this.Plans.MainView = this.gridView3;
            this.Plans.MenuManager = this.ribbon;
            this.Plans.Name = "Plans";
            this.Plans.Size = new System.Drawing.Size(878, 354);
            this.Plans.TabIndex = 7;
            this.Plans.ViewCollection.AddRange(new DevExpress.XtraGrid.Views.Base.BaseView[] {
            this.gridView3});
            //
            // gridView3
            //
            this.gridView3.GridControl = this.Plans;
            this.gridView3.Name = "gridView3";
            //
            // barCheckItem1
            //
            this.barCheckItem1.Alignment = DevExpress.XtraBars.BarItemLinkAlignment.Right;
            this.barCheckItem1.Caption = "������������";
            this.barCheckItem1.Id = 20;
            this.barCheckItem1.Name = "barCheckItem1";
            //
            // barCheckItem2
            //
            this.barCheckItem2.Alignment = DevExpress.XtraBars.BarItemLinkAlignment.Right;
            this.barCheckItem2.Caption = "����";
            this.barCheckItem2.Id = 18;
            this.barCheckItem2.Name = "barCheckItem2";
            //
            // barButtonItem5
            //
            this.barButtonItem5.Alignment = DevExpress.XtraBars.BarItemLinkAlignment.Right;
            this.barButtonItem5.Caption = "OK";
            this.barButtonItem5.Id = 0;
            this.barButtonItem5.ImageIndex = 0;
            this.barButtonItem5.Name = "barButtonItem5";
            //
            // barButtonItem6
            //
            this.barButtonItem6.Alignment = DevExpress.XtraBars.BarItemLinkAlignment.Right;
            this.barButtonItem6.Caption = "��������";
            this.barButtonItem6.Id = 1;
            this.barButtonItem6.Name = "barButtonItem6";
            //
            // barButtonItem7
            //
            this.barButtonItem7.Alignment = DevExpress.XtraBars.BarItemLinkAlignment.Right;
            this.barButtonItem7.Caption = "³����";
            this.barButtonItem7.Id = 2;
            this.barButtonItem7.ImageIndex = 1;
            this.barButtonItem7.Name = "barButtonItem7";
            //
            // barButtonItem8
            //
            this.barButtonItem8.Alignment = DevExpress.XtraBars.BarItemLinkAlignment.Right;
            this.barButtonItem8.Caption = "OK";
            this.barButtonItem8.Id = 0;
            this.barButtonItem8.ImageIndex = 0;
            this.barButtonItem8.Name = "barButtonItem8";
            //
            // barButtonItem9
            //
            this.barButtonItem9.Alignment = DevExpress.XtraBars.BarItemLinkAlignment.Right;
            this.barButtonItem9.Caption = "��������";
            this.barButtonItem9.Id = 1;
            this.barButtonItem9.Name = "barButtonItem9";
            //
            // barButtonItem10
            //
            this.barButtonItem10.Alignment = DevExpress.XtraBars.BarItemLinkAlignment.Right;
            this.barButtonItem10.Caption = "³����";
            this.barButtonItem10.Id = 2;
            this.barButtonItem10.ImageIndex = 1;
            this.barButtonItem10.Name = "barButtonItem10";
            //
            // createAcceptanceButtonItem
            //
            this.createAcceptanceButtonItem.Caption = "�������� \"��������� ������\"";
            this.createAcceptanceButtonItem.Id = 18;
            this.createAcceptanceButtonItem.Name = "createAcceptanceButtonItem";
            //
            // AcceptanceOfGoodsItemForm
            //
            this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
            this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
            this.ClientSize = new System.Drawing.Size(884, 603);
            this.Controls.Add(this.tabControl);
            this.Controls.Add(this.panelControl1);
            this.Controls.Add(this.panelControl);
            this.Controls.Add(this.ribbonStatusBar);
            this.Controls.Add(this.ribbon);
            this.KeyPreview = true;
            this.Name = "AcceptanceOfGoodsItemForm";
            this.Ribbon = this.ribbon;
            this.StatusBar = this.ribbonStatusBar;
            this.Text = "Item form";

            this.KeyDown += new System.Windows.Forms.KeyEventHandler(this.Itemform_KeyDown);
            ((System.ComponentModel.ISupportInitialize)(this.ribbon)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.panelControl)).EndInit();
            this.panelControl.ResumeLayout(false);
            this.panelControl.PerformLayout();
            ((System.ComponentModel.ISupportInitialize)(this.date.Properties.VistaTimeProperties)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.date.Properties)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.State.Properties)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.NomenclatureInfo)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.nomenclatureView)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.panelControl1)).EndInit();
            this.panelControl1.ResumeLayout(false);
            this.panelControl1.PerformLayout();
            ((System.ComponentModel.ISupportInitialize)(this.pictureEdit1.Properties)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.tabControl)).EndInit();
            this.tabControl.ResumeLayout(false);
            this.waresTabPage.ResumeLayout(false);
            this.plansTabPage.ResumeLayout(false);
            ((System.ComponentModel.ISupportInitialize)(this.Plans)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.gridView3)).EndInit();
            this.ResumeLayout(false);
        }
 /// <summary>
 /// Required method for Designer support - do not modify
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(Frm_reporte_mov_docsemitido));
     this.radioListBox1 = new System.Windows.Forms.RadioListBox();
     this.label2 = new System.Windows.Forms.Label();
     this.mottrasladointname = new System.Windows.Forms.TextBox();
     this.mottrasladointid = new System.Windows.Forms.TextBox();
     this.serdoc = new System.Windows.Forms.TextBox();
     this.label1 = new System.Windows.Forms.Label();
     this.tipodoc = new System.Windows.Forms.ComboBox();
     this.label9 = new System.Windows.Forms.Label();
     this.fechdocfin = new System.Windows.Forms.DateTimePicker();
     this.fechdocini = new System.Windows.Forms.DateTimePicker();
     this.label7 = new System.Windows.Forms.Label();
     this.label5 = new System.Windows.Forms.Label();
     this.ctactename = new System.Windows.Forms.TextBox();
     this.ctacte = new System.Windows.Forms.TextBox();
     this.label6 = new System.Windows.Forms.Label();
     this.label3 = new System.Windows.Forms.Label();
     this.panel1 = new System.Windows.Forms.Panel();
     this.label11 = new System.Windows.Forms.Label();
     this.btn_nuevo = new System.Windows.Forms.ToolStripButton();
     this.btn_cancelar = new System.Windows.Forms.ToolStripButton();
     this.toolStripSeparator1 = new System.Windows.Forms.ToolStripSeparator();
     this.btn_imprimir = new System.Windows.Forms.ToolStripButton();
     this.toolStripSeparator2 = new System.Windows.Forms.ToolStripSeparator();
     this.btn_salir = new System.Windows.Forms.ToolStripButton();
     this.Botonera = new System.Windows.Forms.ToolStrip();
     this.btn_excel = new System.Windows.Forms.ToolStripButton();
     this.panelControl1 = new DevExpress.XtraEditors.PanelControl();
     this.labelControl7 = new DevExpress.XtraEditors.LabelControl();
     this.localdes = new System.Windows.Forms.ComboBox();
     this.cbo_moduloides = new System.Windows.Forms.ComboBox();
     this.labelControl2 = new DevExpress.XtraEditors.LabelControl();
     this.panel1.SuspendLayout();
     this.Botonera.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.panelControl1)).BeginInit();
     this.panelControl1.SuspendLayout();
     this.SuspendLayout();
     //
     // radioListBox1
     //
     this.radioListBox1.BackColor = System.Drawing.Color.Transparent;
     this.radioListBox1.BorderStyle = System.Windows.Forms.BorderStyle.None;
     this.radioListBox1.DrawMode = System.Windows.Forms.DrawMode.OwnerDrawFixed;
     this.radioListBox1.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.radioListBox1.FormattingEnabled = true;
     this.radioListBox1.ItemHeight = 16;
     this.radioListBox1.Location = new System.Drawing.Point(115, 112);
     this.radioListBox1.Name = "radioListBox1";
     this.radioListBox1.Size = new System.Drawing.Size(144, 32);
     this.radioListBox1.TabIndex = 9;
     this.radioListBox1.SelectedIndexChanged += new System.EventHandler(this.radioListBox1_SelectedIndexChanged);
     //
     // label2
     //
     this.label2.AutoSize = true;
     this.label2.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label2.Location = new System.Drawing.Point(1, 119);
     this.label2.Name = "label2";
     this.label2.Size = new System.Drawing.Size(106, 13);
     this.label2.TabIndex = 78;
     this.label2.Text = "Modo de Cálculo:";
     //
     // mottrasladointname
     //
     this.mottrasladointname.Location = new System.Drawing.Point(167, 67);
     this.mottrasladointname.MaxLength = 10;
     this.mottrasladointname.Name = "mottrasladointname";
     this.mottrasladointname.Size = new System.Drawing.Size(270, 21);
     this.mottrasladointname.TabIndex = 9;
     this.mottrasladointname.Text = "ventas al exterior";
     //
     // mottrasladointid
     //
     this.mottrasladointid.Location = new System.Drawing.Point(118, 67);
     this.mottrasladointid.MaxLength = 4;
     this.mottrasladointid.Name = "mottrasladointid";
     this.mottrasladointid.Size = new System.Drawing.Size(48, 21);
     this.mottrasladointid.TabIndex = 8;
     this.mottrasladointid.Text = "ventas al exterior";
     this.mottrasladointid.KeyDown += new System.Windows.Forms.KeyEventHandler(this.mottrasladointid_KeyDown);
     //
     // serdoc
     //
     this.serdoc.Location = new System.Drawing.Point(405, 41);
     this.serdoc.MaxLength = 4;
     this.serdoc.Name = "serdoc";
     this.serdoc.Size = new System.Drawing.Size(48, 21);
     this.serdoc.TabIndex = 7;
     this.serdoc.Text = "ventas al exterior";
     this.serdoc.KeyPress += new System.Windows.Forms.KeyPressEventHandler(this.serdoc_KeyPress);
     //
     // label1
     //
     this.label1.AutoSize = true;
     this.label1.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label1.Location = new System.Drawing.Point(334, 46);
     this.label1.Name = "label1";
     this.label1.Size = new System.Drawing.Size(67, 13);
     this.label1.TabIndex = 75;
     this.label1.Text = "Serie Doc:";
     //
     // tipodoc
     //
     this.tipodoc.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
     this.tipodoc.Location = new System.Drawing.Point(117, 43);
     this.tipodoc.Name = "tipodoc";
     this.tipodoc.Size = new System.Drawing.Size(191, 21);
     this.tipodoc.TabIndex = 6;
     //
     // label9
     //
     this.label9.AutoSize = true;
     this.label9.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label9.Location = new System.Drawing.Point(46, 46);
     this.label9.Name = "label9";
     this.label9.Size = new System.Drawing.Size(63, 13);
     this.label9.TabIndex = 73;
     this.label9.Text = "Tipo Doc:";
     //
     // 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(283, 149);
     this.fechdocfin.Name = "fechdocfin";
     this.fechdocfin.Size = new System.Drawing.Size(80, 20);
     this.fechdocfin.TabIndex = 13;
     //
     // 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(115, 148);
     this.fechdocini.Name = "fechdocini";
     this.fechdocini.Size = new System.Drawing.Size(80, 20);
     this.fechdocini.TabIndex = 12;
     //
     // label7
     //
     this.label7.AutoSize = true;
     this.label7.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label7.Location = new System.Drawing.Point(236, 153);
     this.label7.Name = "label7";
     this.label7.Size = new System.Drawing.Size(44, 13);
     this.label7.TabIndex = 31;
     this.label7.Text = "Hasta:";
     //
     // label5
     //
     this.label5.AutoSize = true;
     this.label5.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label5.Location = new System.Drawing.Point(60, 150);
     this.label5.Name = "label5";
     this.label5.Size = new System.Drawing.Size(47, 13);
     this.label5.TabIndex = 29;
     this.label5.Text = "Desde:";
     //
     // ctactename
     //
     this.ctactename.Location = new System.Drawing.Point(167, 89);
     this.ctactename.MaxLength = 10;
     this.ctactename.Name = "ctactename";
     this.ctactename.Size = new System.Drawing.Size(270, 21);
     this.ctactename.TabIndex = 11;
     this.ctactename.Text = "ventas al exterior";
     //
     // ctacte
     //
     this.ctacte.Location = new System.Drawing.Point(118, 89);
     this.ctacte.MaxLength = 4;
     this.ctacte.Name = "ctacte";
     this.ctacte.Size = new System.Drawing.Size(48, 21);
     this.ctacte.TabIndex = 10;
     this.ctacte.Text = "ventas al exterior";
     this.ctacte.KeyDown += new System.Windows.Forms.KeyEventHandler(this.ctacte_KeyDown);
     //
     // label6
     //
     this.label6.AutoSize = true;
     this.label6.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label6.Location = new System.Drawing.Point(13, 93);
     this.label6.Name = "label6";
     this.label6.Size = new System.Drawing.Size(96, 13);
     this.label6.TabIndex = 16;
     this.label6.Text = "Provee/Cliente:";
     //
     // label3
     //
     this.label3.AutoSize = true;
     this.label3.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label3.Location = new System.Drawing.Point(17, 69);
     this.label3.Name = "label3";
     this.label3.Size = new System.Drawing.Size(92, 13);
     this.label3.TabIndex = 13;
     this.label3.Text = "Motivo interno:";
     //
     // panel1
     //
     this.panel1.BackColor = System.Drawing.Color.Teal;
     this.panel1.Controls.Add(this.label11);
     this.panel1.Location = new System.Drawing.Point(0, 11);
     this.panel1.Name = "panel1";
     this.panel1.Size = new System.Drawing.Size(554, 56);
     this.panel1.TabIndex = 2;
     //
     // label11
     //
     this.label11.BackColor = System.Drawing.Color.Transparent;
     this.label11.Font = new System.Drawing.Font("Arial Black", 15F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label11.ForeColor = System.Drawing.Color.White;
     this.label11.Location = new System.Drawing.Point(130, 22);
     this.label11.Name = "label11";
     this.label11.Size = new System.Drawing.Size(305, 23);
     this.label11.TabIndex = 5;
     this.label11.Text = "DOCUMENTOS EMITIDOS";
     this.label11.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
     //
     // btn_nuevo
     //
     this.btn_nuevo.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
     this.btn_nuevo.Image = global::BapFormulariosNet.Properties.Resources.go_new3;
     this.btn_nuevo.ImageScaling = System.Windows.Forms.ToolStripItemImageScaling.None;
     this.btn_nuevo.ImageTransparentColor = System.Drawing.SystemColors.ButtonFace;
     this.btn_nuevo.Name = "btn_nuevo";
     this.btn_nuevo.Size = new System.Drawing.Size(23, 26);
     this.btn_nuevo.Text = "Nuevo";
     this.btn_nuevo.Click += new System.EventHandler(this.btn_nuevo_Click);
     //
     // btn_cancelar
     //
     this.btn_cancelar.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
     this.btn_cancelar.Image = global::BapFormulariosNet.Properties.Resources.go_undo2;
     this.btn_cancelar.ImageScaling = System.Windows.Forms.ToolStripItemImageScaling.None;
     this.btn_cancelar.ImageTransparentColor = System.Drawing.Color.Magenta;
     this.btn_cancelar.Name = "btn_cancelar";
     this.btn_cancelar.Size = new System.Drawing.Size(24, 26);
     this.btn_cancelar.Text = "Cancelar";
     this.btn_cancelar.Click += new System.EventHandler(this.btn_cancelar_Click);
     //
     // toolStripSeparator1
     //
     this.toolStripSeparator1.Name = "toolStripSeparator1";
     this.toolStripSeparator1.Size = new System.Drawing.Size(6, 29);
     //
     // btn_imprimir
     //
     this.btn_imprimir.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
     this.btn_imprimir.Image = global::BapFormulariosNet.Properties.Resources.dev_printer;
     this.btn_imprimir.ImageTransparentColor = System.Drawing.Color.Magenta;
     this.btn_imprimir.Name = "btn_imprimir";
     this.btn_imprimir.Size = new System.Drawing.Size(26, 26);
     this.btn_imprimir.Text = "Imprimir";
     this.btn_imprimir.Click += new System.EventHandler(this.btn_imprimir_Click);
     //
     // toolStripSeparator2
     //
     this.toolStripSeparator2.Name = "toolStripSeparator2";
     this.toolStripSeparator2.Size = new System.Drawing.Size(6, 29);
     //
     // btn_salir
     //
     this.btn_salir.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
     this.btn_salir.Image = global::BapFormulariosNet.Properties.Resources.go_out2;
     this.btn_salir.ImageScaling = System.Windows.Forms.ToolStripItemImageScaling.None;
     this.btn_salir.ImageTransparentColor = System.Drawing.Color.Magenta;
     this.btn_salir.Name = "btn_salir";
     this.btn_salir.Size = new System.Drawing.Size(24, 26);
     this.btn_salir.Text = "Salir";
     this.btn_salir.Click += new System.EventHandler(this.btn_salir_Click);
     //
     // Botonera
     //
     this.Botonera.GripStyle = System.Windows.Forms.ToolStripGripStyle.Hidden;
     this.Botonera.ImageScalingSize = new System.Drawing.Size(22, 22);
     this.Botonera.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
     this.btn_nuevo,
     this.btn_cancelar,
     this.toolStripSeparator1,
     this.btn_imprimir,
     this.btn_excel,
     this.toolStripSeparator2,
     this.btn_salir});
     this.Botonera.Location = new System.Drawing.Point(0, 0);
     this.Botonera.Name = "Botonera";
     this.Botonera.Size = new System.Drawing.Size(560, 29);
     this.Botonera.TabIndex = 1;
     this.Botonera.Text = "ToolStrip1";
     //
     // btn_excel
     //
     this.btn_excel.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
     this.btn_excel.Image = global::BapFormulariosNet.Properties.Resources.btn_excel20;
     this.btn_excel.ImageTransparentColor = System.Drawing.Color.Magenta;
     this.btn_excel.Name = "btn_excel";
     this.btn_excel.Size = new System.Drawing.Size(26, 26);
     this.btn_excel.Text = "toolStripButton1";
     this.btn_excel.ToolTipText = "Excel";
     //
     // panelControl1
     //
     this.panelControl1.Appearance.BackColor = System.Drawing.Color.Teal;
     this.panelControl1.Appearance.ForeColor = System.Drawing.Color.White;
     this.panelControl1.Appearance.Options.UseBackColor = true;
     this.panelControl1.Appearance.Options.UseForeColor = true;
     this.panelControl1.BorderStyle = DevExpress.XtraEditors.Controls.BorderStyles.NoBorder;
     this.panelControl1.Controls.Add(this.labelControl7);
     this.panelControl1.Controls.Add(this.localdes);
     this.panelControl1.Controls.Add(this.cbo_moduloides);
     this.panelControl1.Controls.Add(this.labelControl2);
     this.panelControl1.Controls.Add(this.radioListBox1);
     this.panelControl1.Controls.Add(this.tipodoc);
     this.panelControl1.Controls.Add(this.label2);
     this.panelControl1.Controls.Add(this.label3);
     this.panelControl1.Controls.Add(this.mottrasladointname);
     this.panelControl1.Controls.Add(this.label6);
     this.panelControl1.Controls.Add(this.mottrasladointid);
     this.panelControl1.Controls.Add(this.ctacte);
     this.panelControl1.Controls.Add(this.serdoc);
     this.panelControl1.Controls.Add(this.ctactename);
     this.panelControl1.Controls.Add(this.label1);
     this.panelControl1.Controls.Add(this.label5);
     this.panelControl1.Controls.Add(this.label7);
     this.panelControl1.Controls.Add(this.label9);
     this.panelControl1.Controls.Add(this.fechdocini);
     this.panelControl1.Controls.Add(this.fechdocfin);
     this.panelControl1.Location = new System.Drawing.Point(0, 70);
     this.panelControl1.Name = "panelControl1";
     this.panelControl1.Size = new System.Drawing.Size(554, 177);
     this.panelControl1.TabIndex = 9;
     //
     // labelControl7
     //
     this.labelControl7.Appearance.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold);
     this.labelControl7.Location = new System.Drawing.Point(352, 24);
     this.labelControl7.Name = "labelControl7";
     this.labelControl7.Size = new System.Drawing.Size(49, 13);
     this.labelControl7.TabIndex = 87;
     this.labelControl7.Text = "» LOCAL:";
     //
     // localdes
     //
     this.localdes.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
     this.localdes.DropDownWidth = 170;
     this.localdes.Font = new System.Drawing.Font("Microsoft Sans Serif", 8F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.localdes.FormattingEnabled = true;
     this.localdes.Location = new System.Drawing.Point(405, 19);
     this.localdes.Name = "localdes";
     this.localdes.Size = new System.Drawing.Size(144, 21);
     this.localdes.TabIndex = 86;
     //
     // cbo_moduloides
     //
     this.cbo_moduloides.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
     this.cbo_moduloides.DropDownWidth = 250;
     this.cbo_moduloides.Location = new System.Drawing.Point(117, 20);
     this.cbo_moduloides.Name = "cbo_moduloides";
     this.cbo_moduloides.Size = new System.Drawing.Size(229, 21);
     this.cbo_moduloides.TabIndex = 85;
     this.cbo_moduloides.SelectedIndexChanged += new System.EventHandler(this.cbo_moduloides_SelectedIndexChanged);
     //
     // labelControl2
     //
     this.labelControl2.Appearance.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold);
     this.labelControl2.Location = new System.Drawing.Point(40, 25);
     this.labelControl2.Name = "labelControl2";
     this.labelControl2.Size = new System.Drawing.Size(66, 13);
     this.labelControl2.TabIndex = 84;
     this.labelControl2.Text = "» ALMACEN:";
     //
     // Frm_reporte_mov_docsemitido
     //
     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(560, 251);
     this.Controls.Add(this.panelControl1);
     this.Controls.Add(this.Botonera);
     this.Controls.Add(this.panel1);
     this.DoubleBuffered = true;
     this.Icon = ((System.Drawing.Icon)(resources.GetObject("$this.Icon")));
     this.KeyPreview = true;
     this.MaximizeBox = false;
     this.Name = "Frm_reporte_mov_docsemitido";
     this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen;
     this.Text = "Documentos  Emitidos";
     this.Load += new System.EventHandler(this.Frm_reporte_mov_docsemitido_Load);
     this.KeyDown += new System.Windows.Forms.KeyEventHandler(this.Frm_reporte_mov_docsemitido_KeyDown);
     this.panel1.ResumeLayout(false);
     this.Botonera.ResumeLayout(false);
     this.Botonera.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(this.panelControl1)).EndInit();
     this.panelControl1.ResumeLayout(false);
     this.panelControl1.PerformLayout();
     this.ResumeLayout(false);
     this.PerformLayout();
 }
Exemplo n.º 51
0
 /// <summary>
 /// 设计器支持所需的方法 - 不要
 /// 使用代码编辑器修改此方法的内容。
 /// </summary>
 private void InitializeComponent()
 {
     this.simpleButton1 = new DevExpress.XtraEditors.SimpleButton();
     this.simpleButton2 = new DevExpress.XtraEditors.SimpleButton();
     this.checkEdit1 = new DevExpress.XtraEditors.CheckEdit();
     this.panelControl1 = new DevExpress.XtraEditors.PanelControl();
     this.comboBox1 = new System.Windows.Forms.ComboBox();
     this.gridControl1 = new DevExpress.XtraGrid.GridControl();
     this.gridView1 = new DevExpress.XtraGrid.Views.Grid.GridView();
     this.gridColumn1 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn2 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn3 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.repositoryItemRadioGroup1 = new DevExpress.XtraEditors.Repository.RepositoryItemRadioGroup();
     this.repositoryItemCheckEdit1 = new DevExpress.XtraEditors.Repository.RepositoryItemCheckEdit();
     ((System.ComponentModel.ISupportInitialize)(this.checkEdit1.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.panelControl1)).BeginInit();
     this.panelControl1.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.gridControl1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridView1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemRadioGroup1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemCheckEdit1)).BeginInit();
     this.SuspendLayout();
     //
     // simpleButton1
     //
     this.simpleButton1.Location = new System.Drawing.Point(277, 309);
     this.simpleButton1.Name = "simpleButton1";
     this.simpleButton1.Size = new System.Drawing.Size(66, 23);
     this.simpleButton1.TabIndex = 1;
     this.simpleButton1.Text = "确定";
     this.simpleButton1.Click += new System.EventHandler(this.simpleButton1_Click);
     //
     // simpleButton2
     //
     this.simpleButton2.Location = new System.Drawing.Point(358, 309);
     this.simpleButton2.Name = "simpleButton2";
     this.simpleButton2.Size = new System.Drawing.Size(66, 23);
     this.simpleButton2.TabIndex = 1;
     this.simpleButton2.Text = "取消";
     this.simpleButton2.Click += new System.EventHandler(this.simpleButton2_Click);
     //
     // checkEdit1
     //
     this.checkEdit1.Location = new System.Drawing.Point(12, 309);
     this.checkEdit1.Name = "checkEdit1";
     this.checkEdit1.Properties.Caption = "全选";
     this.checkEdit1.Size = new System.Drawing.Size(75, 19);
     this.checkEdit1.TabIndex = 2;
     this.checkEdit1.CheckedChanged += new System.EventHandler(this.checkEdit1_CheckedChanged);
     //
     // panelControl1
     //
     this.panelControl1.Controls.Add(this.comboBox1);
     this.panelControl1.Controls.Add(this.checkEdit1);
     this.panelControl1.Controls.Add(this.simpleButton2);
     this.panelControl1.Controls.Add(this.simpleButton1);
     this.panelControl1.Controls.Add(this.gridControl1);
     this.panelControl1.Dock = System.Windows.Forms.DockStyle.Fill;
     this.panelControl1.Location = new System.Drawing.Point(0, 0);
     this.panelControl1.Name = "panelControl1";
     this.panelControl1.Size = new System.Drawing.Size(462, 344);
     this.panelControl1.TabIndex = 0;
     this.panelControl1.Text = "panelControl1";
     //
     // comboBox1
     //
     this.comboBox1.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
                 | System.Windows.Forms.AnchorStyles.Right)));
     this.comboBox1.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
     this.comboBox1.FormattingEnabled = true;
     this.comboBox1.Location = new System.Drawing.Point(46, 12);
     this.comboBox1.Name = "comboBox1";
     this.comboBox1.Size = new System.Drawing.Size(404, 20);
     this.comboBox1.Sorted = true;
     this.comboBox1.TabIndex = 5;
     this.comboBox1.SelectedIndexChanged += new System.EventHandler(this.comboBox1_SelectedIndexChanged);
     //
     // gridControl1
     //
     this.gridControl1.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
                 | System.Windows.Forms.AnchorStyles.Right)));
     this.gridControl1.EmbeddedNavigator.Name = "";
     this.gridControl1.Location = new System.Drawing.Point(3, 3);
     this.gridControl1.MainView = this.gridView1;
     this.gridControl1.Name = "gridControl1";
     this.gridControl1.RepositoryItems.AddRange(new DevExpress.XtraEditors.Repository.RepositoryItem[] {
     this.repositoryItemCheckEdit1,
     this.repositoryItemRadioGroup1});
     this.gridControl1.Size = new System.Drawing.Size(456, 293);
     this.gridControl1.TabIndex = 0;
     this.gridControl1.ViewCollection.AddRange(new DevExpress.XtraGrid.Views.Base.BaseView[] {
     this.gridView1});
     //
     // gridView1
     //
     this.gridView1.Columns.AddRange(new DevExpress.XtraGrid.Columns.GridColumn[] {
     this.gridColumn1,
     this.gridColumn2,
     this.gridColumn3});
     this.gridView1.GridControl = this.gridControl1;
     this.gridView1.GroupPanelText = "设备";
     this.gridView1.Name = "gridView1";
     //
     // gridColumn1
     //
     this.gridColumn1.Caption = "设备ID";
     this.gridColumn1.FieldName = "A";
     this.gridColumn1.Name = "gridColumn1";
     this.gridColumn1.OptionsColumn.AllowEdit = false;
     //
     // gridColumn2
     //
     this.gridColumn2.Caption = "设备名称";
     this.gridColumn2.FieldName = "B";
     this.gridColumn2.Name = "gridColumn2";
     this.gridColumn2.OptionsColumn.AllowEdit = false;
     this.gridColumn2.Visible = true;
     this.gridColumn2.VisibleIndex = 0;
     //
     // gridColumn3
     //
     this.gridColumn3.Caption = "是否选择";
     this.gridColumn3.ColumnEdit = this.repositoryItemRadioGroup1;
     this.gridColumn3.FieldName = "C";
     this.gridColumn3.Name = "gridColumn3";
     this.gridColumn3.Visible = true;
     this.gridColumn3.VisibleIndex = 1;
     //
     // repositoryItemRadioGroup1
     //
     this.repositoryItemRadioGroup1.Items.AddRange(new DevExpress.XtraEditors.Controls.RadioGroupItem[] {
     new DevExpress.XtraEditors.Controls.RadioGroupItem()});
     this.repositoryItemRadioGroup1.Name = "repositoryItemRadioGroup1";
     //
     // repositoryItemCheckEdit1
     //
     this.repositoryItemCheckEdit1.AutoHeight = false;
     this.repositoryItemCheckEdit1.Name = "repositoryItemCheckEdit1";
     //
     // frmDeviceList
     //
     this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 12F);
     this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
     this.ClientSize = new System.Drawing.Size(462, 344);
     this.Controls.Add(this.panelControl1);
     this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedDialog;
     this.MaximizeBox = false;
     this.MinimizeBox = false;
     this.Name = "frmDeviceList";
     this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen;
     this.Text = "选择设备";
     this.Load += new System.EventHandler(this.frmDeviceList_Load);
     ((System.ComponentModel.ISupportInitialize)(this.checkEdit1.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.panelControl1)).EndInit();
     this.panelControl1.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.gridControl1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridView1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemRadioGroup1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemCheckEdit1)).EndInit();
     this.ResumeLayout(false);
 }
Exemplo n.º 52
0
 /// <summary>
 /// Required method for Designer support - do not modify
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     this.components = new System.ComponentModel.Container();
     this.marqueeProgressBarControl1 = new DevExpress.XtraEditors.MarqueeProgressBarControl();
     this.simpleButton1 = new DevExpress.XtraEditors.SimpleButton();
     this.label_Operatipon = new DevExpress.XtraEditors.LabelControl();
     this.panelControl1 = new DevExpress.XtraEditors.PanelControl();
     this.progressBarControl1 = new DevExpress.XtraEditors.ProgressBarControl();
     this.timer1 = new System.Windows.Forms.Timer(this.components);
     ((System.ComponentModel.ISupportInitialize)(this.marqueeProgressBarControl1.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.panelControl1)).BeginInit();
     this.panelControl1.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.progressBarControl1.Properties)).BeginInit();
     this.SuspendLayout();
     //
     // marqueeProgressBarControl1
     //
     this.marqueeProgressBarControl1.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
     | System.Windows.Forms.AnchorStyles.Right)));
     this.marqueeProgressBarControl1.Cursor = System.Windows.Forms.Cursors.AppStarting;
     this.marqueeProgressBarControl1.EditValue = "подключение";
     this.marqueeProgressBarControl1.Location = new System.Drawing.Point(12, 64);
     this.marqueeProgressBarControl1.Name = "marqueeProgressBarControl1";
     this.marqueeProgressBarControl1.Properties.MarqueeAnimationSpeed = 40;
     this.marqueeProgressBarControl1.Properties.ProgressAnimationMode = DevExpress.Utils.Drawing.ProgressAnimationMode.Cycle;
     this.marqueeProgressBarControl1.Properties.ProgressViewStyle = DevExpress.XtraEditors.Controls.ProgressViewStyle.Solid;
     this.marqueeProgressBarControl1.Size = new System.Drawing.Size(261, 21);
     this.marqueeProgressBarControl1.TabIndex = 0;
     //
     // simpleButton1
     //
     this.simpleButton1.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
     | System.Windows.Forms.AnchorStyles.Right)));
     this.simpleButton1.Appearance.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(204)));
     this.simpleButton1.Appearance.Options.UseFont = true;
     this.simpleButton1.Cursor = System.Windows.Forms.Cursors.Hand;
     this.simpleButton1.Location = new System.Drawing.Point(68, 92);
     this.simpleButton1.Name = "simpleButton1";
     this.simpleButton1.Size = new System.Drawing.Size(147, 27);
     this.simpleButton1.TabIndex = 1;
     this.simpleButton1.Text = "отмена";
     this.simpleButton1.Click += new System.EventHandler(this.simpleButton1_Click);
     //
     // label_Operatipon
     //
     this.label_Operatipon.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
     | System.Windows.Forms.AnchorStyles.Right)));
     this.label_Operatipon.Appearance.Font = new System.Drawing.Font("Tahoma", 9F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(204)));
     this.label_Operatipon.Appearance.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.label_Operatipon.Appearance.TextOptions.WordWrap = DevExpress.Utils.WordWrap.Wrap;
     this.label_Operatipon.AutoSizeMode = DevExpress.XtraEditors.LabelAutoSizeMode.None;
     this.label_Operatipon.Cursor = System.Windows.Forms.Cursors.Arrow;
     this.label_Operatipon.Location = new System.Drawing.Point(12, 8);
     this.label_Operatipon.Name = "label_Operatipon";
     this.label_Operatipon.Size = new System.Drawing.Size(261, 49);
     this.label_Operatipon.TabIndex = 2;
     this.label_Operatipon.Text = "Текущая операция";
     //
     // panelControl1
     //
     this.panelControl1.Controls.Add(this.progressBarControl1);
     this.panelControl1.Controls.Add(this.marqueeProgressBarControl1);
     this.panelControl1.Controls.Add(this.simpleButton1);
     this.panelControl1.Controls.Add(this.label_Operatipon);
     this.panelControl1.Cursor = System.Windows.Forms.Cursors.Arrow;
     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(283, 135);
     this.panelControl1.TabIndex = 3;
     //
     // progressBarControl1
     //
     this.progressBarControl1.Location = new System.Drawing.Point(12, 62);
     this.progressBarControl1.Name = "progressBarControl1";
     this.progressBarControl1.Properties.ShowTitle = true;
     this.progressBarControl1.Size = new System.Drawing.Size(261, 22);
     this.progressBarControl1.TabIndex = 3;
     this.progressBarControl1.Visible = false;
     //
     // timer1
     //
     this.timer1.Tick += new System.EventHandler(this.timer1_Tick);
     //
     // Form_Working
     //
     this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
     this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
     this.ClientSize = new System.Drawing.Size(283, 135);
     this.Controls.Add(this.panelControl1);
     this.Cursor = System.Windows.Forms.Cursors.Default;
     this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.None;
     this.LookAndFeel.SkinName = "Office 2010 Blue";
     this.LookAndFeel.UseDefaultLookAndFeel = false;
     this.Name = "Form_Working";
     this.ShowIcon = false;
     this.ShowInTaskbar = false;
     this.StartPosition = System.Windows.Forms.FormStartPosition.CenterParent;
     this.Text = "Соединение";
     this.TopMost = true;
     this.Shown += new System.EventHandler(this.Form_Working_Shown);
     ((System.ComponentModel.ISupportInitialize)(this.marqueeProgressBarControl1.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.panelControl1)).EndInit();
     this.panelControl1.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.progressBarControl1.Properties)).EndInit();
     this.ResumeLayout(false);
 }
Exemplo n.º 53
0
 /// <summary>
 /// Required method for Designer support - do not modify
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     this.pnlCtrlTop = new DevExpress.XtraEditors.PanelControl();
     this.calcEdit1 = new DevExpress.XtraEditors.CalcEdit();
     this.label1 = new System.Windows.Forms.Label();
     this.pnlCtrlCenter = new DevExpress.XtraEditors.PanelControl();
     this.gridControl1 = new DevExpress.XtraGrid.GridControl();
     this.gridView1 = new DevExpress.XtraGrid.Views.Grid.GridView();
     this.gridColumn1 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn2 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn3 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn4 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn5 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn6 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.repositoryItemDateEdit1 = new DevExpress.XtraEditors.Repository.RepositoryItemDateEdit();
     this.gridColumn7 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.pnlCtrlBottom = new DevExpress.XtraEditors.PanelControl();
     this.simpleButtonCancel = new DevExpress.XtraEditors.SimpleButton();
     this.simpleButtonOK = new DevExpress.XtraEditors.SimpleButton();
     ((System.ComponentModel.ISupportInitialize)(this.pnlCtrlTop)).BeginInit();
     this.pnlCtrlTop.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.calcEdit1.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.pnlCtrlCenter)).BeginInit();
     this.pnlCtrlCenter.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.gridControl1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridView1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemDateEdit1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.pnlCtrlBottom)).BeginInit();
     this.pnlCtrlBottom.SuspendLayout();
     this.SuspendLayout();
     //
     // pnlCtrlTop
     //
     this.pnlCtrlTop.BorderStyle = DevExpress.XtraEditors.Controls.BorderStyles.NoBorder;
     this.pnlCtrlTop.Controls.Add(this.calcEdit1);
     this.pnlCtrlTop.Controls.Add(this.label1);
     this.pnlCtrlTop.Dock = System.Windows.Forms.DockStyle.Top;
     this.pnlCtrlTop.Location = new System.Drawing.Point(0, 0);
     this.pnlCtrlTop.Name = "pnlCtrlTop";
     this.pnlCtrlTop.Size = new System.Drawing.Size(590, 36);
     this.pnlCtrlTop.TabIndex = 0;
     this.pnlCtrlTop.Text = "panelControl1";
     //
     // calcEdit1
     //
     this.calcEdit1.Location = new System.Drawing.Point(234, 8);
     this.calcEdit1.Name = "calcEdit1";
     //
     // calcEdit1.Properties
     //
     this.calcEdit1.Properties.Mask.EditMask = "d2";
     this.calcEdit1.Properties.Mask.UseMaskAsDisplayFormat = true;
     this.calcEdit1.Properties.MaxLength = 3;
     this.calcEdit1.Properties.Precision = 0;
     this.calcEdit1.Size = new System.Drawing.Size(106, 20);
     this.calcEdit1.TabIndex = 1;
     //
     // label1
     //
     this.label1.Font = new System.Drawing.Font("Tahoma", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((System.Byte)(0)));
     this.label1.Location = new System.Drawing.Point(18, 6);
     this.label1.Name = "label1";
     this.label1.Size = new System.Drawing.Size(208, 23);
     this.label1.TabIndex = 0;
     this.label1.Text = "Month(s) To Extend:";
     //
     // pnlCtrlCenter
     //
     this.pnlCtrlCenter.BorderStyle = DevExpress.XtraEditors.Controls.BorderStyles.NoBorder;
     this.pnlCtrlCenter.Controls.Add(this.gridControl1);
     this.pnlCtrlCenter.Dock = System.Windows.Forms.DockStyle.Fill;
     this.pnlCtrlCenter.Location = new System.Drawing.Point(0, 36);
     this.pnlCtrlCenter.Name = "pnlCtrlCenter";
     this.pnlCtrlCenter.Size = new System.Drawing.Size(590, 216);
     this.pnlCtrlCenter.TabIndex = 1;
     this.pnlCtrlCenter.Text = "panelControl2";
     //
     // gridControl1
     //
     this.gridControl1.Dock = System.Windows.Forms.DockStyle.Fill;
     //
     // gridControl1.EmbeddedNavigator
     //
     this.gridControl1.EmbeddedNavigator.Name = "";
     this.gridControl1.Location = new System.Drawing.Point(0, 0);
     this.gridControl1.MainView = this.gridView1;
     this.gridControl1.Name = "gridControl1";
     this.gridControl1.RepositoryItems.AddRange(new DevExpress.XtraEditors.Repository.RepositoryItem[] {
                                                                                                           this.repositoryItemDateEdit1});
     this.gridControl1.Size = new System.Drawing.Size(590, 216);
     this.gridControl1.TabIndex = 0;
     this.gridControl1.ViewCollection.AddRange(new DevExpress.XtraGrid.Views.Base.BaseView[] {
                                                                                                 this.gridView1});
     //
     // gridView1
     //
     this.gridView1.Columns.AddRange(new DevExpress.XtraGrid.Columns.GridColumn[] {
                                                                                      this.gridColumn1,
                                                                                      this.gridColumn2,
                                                                                      this.gridColumn3,
                                                                                      this.gridColumn4,
                                                                                      this.gridColumn5,
                                                                                      this.gridColumn6,
                                                                                      this.gridColumn7});
     this.gridView1.GridControl = this.gridControl1;
     this.gridView1.Name = "gridView1";
     //
     // gridColumn1
     //
     this.gridColumn1.Caption = "Branch Code";
     this.gridColumn1.FieldName = "strBranchCode";
     this.gridColumn1.Name = "gridColumn1";
     this.gridColumn1.OptionsColumn.AllowEdit = false;
     this.gridColumn1.OptionsFilter.AllowFilter = false;
     this.gridColumn1.Visible = true;
     this.gridColumn1.VisibleIndex = 0;
     this.gridColumn1.Width = 93;
     //
     // gridColumn2
     //
     this.gridColumn2.Caption = "Locker No";
     this.gridColumn2.FieldName = "nLockerNo";
     this.gridColumn2.Name = "gridColumn2";
     this.gridColumn2.OptionsColumn.AllowEdit = false;
     this.gridColumn2.OptionsFilter.AllowFilter = false;
     this.gridColumn2.Visible = true;
     this.gridColumn2.VisibleIndex = 1;
     this.gridColumn2.Width = 74;
     //
     // gridColumn3
     //
     this.gridColumn3.Caption = "Membership ID";
     this.gridColumn3.FieldName = "strMembershipID";
     this.gridColumn3.Name = "gridColumn3";
     this.gridColumn3.OptionsColumn.AllowEdit = false;
     this.gridColumn3.OptionsColumn.ShowInCustomizationForm = false;
     this.gridColumn3.OptionsFilter.AllowFilter = false;
     //
     // gridColumn4
     //
     this.gridColumn4.Caption = "Receipt No";
     this.gridColumn4.FieldName = "strReceiptNo";
     this.gridColumn4.Name = "gridColumn4";
     this.gridColumn4.OptionsColumn.AllowEdit = false;
     this.gridColumn4.OptionsFilter.AllowFilter = false;
     this.gridColumn4.Visible = true;
     this.gridColumn4.VisibleIndex = 2;
     this.gridColumn4.Width = 113;
     //
     // gridColumn5
     //
     this.gridColumn5.Caption = "Status ID";
     this.gridColumn5.FieldName = "nStatusID";
     this.gridColumn5.Name = "gridColumn5";
     this.gridColumn5.OptionsColumn.AllowEdit = false;
     this.gridColumn5.OptionsColumn.ShowInCustomizationForm = false;
     this.gridColumn5.OptionsFilter.AllowFilter = false;
     this.gridColumn5.Width = 112;
     //
     // gridColumn6
     //
     this.gridColumn6.Caption = "Expiry Date";
     this.gridColumn6.ColumnEdit = this.repositoryItemDateEdit1;
     this.gridColumn6.FieldName = "dtExpiry";
     this.gridColumn6.Name = "gridColumn6";
     this.gridColumn6.OptionsColumn.AllowEdit = false;
     this.gridColumn6.OptionsFilter.AllowFilter = false;
     this.gridColumn6.Visible = true;
     this.gridColumn6.VisibleIndex = 3;
     this.gridColumn6.Width = 114;
     //
     // repositoryItemDateEdit1
     //
     this.repositoryItemDateEdit1.AutoHeight = false;
     this.repositoryItemDateEdit1.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
                                                                                                          new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.repositoryItemDateEdit1.DisplayFormat.FormatString = "dd/MM/yyyy";
     this.repositoryItemDateEdit1.DisplayFormat.FormatType = DevExpress.Utils.FormatType.DateTime;
     this.repositoryItemDateEdit1.Mask.EditMask = "dd/MM/yyyy";
     this.repositoryItemDateEdit1.Name = "repositoryItemDateEdit1";
     //
     // gridColumn7
     //
     this.gridColumn7.Caption = "Remark";
     this.gridColumn7.FieldName = "strRemarks";
     this.gridColumn7.Name = "gridColumn7";
     this.gridColumn7.OptionsColumn.AllowEdit = false;
     this.gridColumn7.OptionsFilter.AllowFilter = false;
     this.gridColumn7.Visible = true;
     this.gridColumn7.VisibleIndex = 4;
     this.gridColumn7.Width = 182;
     //
     // pnlCtrlBottom
     //
     this.pnlCtrlBottom.BorderStyle = DevExpress.XtraEditors.Controls.BorderStyles.NoBorder;
     this.pnlCtrlBottom.Controls.Add(this.simpleButtonCancel);
     this.pnlCtrlBottom.Controls.Add(this.simpleButtonOK);
     this.pnlCtrlBottom.Dock = System.Windows.Forms.DockStyle.Bottom;
     this.pnlCtrlBottom.Location = new System.Drawing.Point(0, 252);
     this.pnlCtrlBottom.Name = "pnlCtrlBottom";
     this.pnlCtrlBottom.Size = new System.Drawing.Size(590, 44);
     this.pnlCtrlBottom.TabIndex = 2;
     this.pnlCtrlBottom.Text = "panelControl3";
     //
     // simpleButtonCancel
     //
     this.simpleButtonCancel.DialogResult = System.Windows.Forms.DialogResult.Cancel;
     this.simpleButtonCancel.Location = new System.Drawing.Point(504, 12);
     this.simpleButtonCancel.Name = "simpleButtonCancel";
     this.simpleButtonCancel.TabIndex = 8;
     this.simpleButtonCancel.Text = "Cancel";
     this.simpleButtonCancel.Click += new System.EventHandler(this.simpleButtonCancel_Click);
     //
     // simpleButtonOK
     //
     this.simpleButtonOK.DialogResult = System.Windows.Forms.DialogResult.OK;
     this.simpleButtonOK.Location = new System.Drawing.Point(418, 12);
     this.simpleButtonOK.Name = "simpleButtonOK";
     this.simpleButtonOK.TabIndex = 7;
     this.simpleButtonOK.Text = "OK";
     this.simpleButtonOK.Click += new System.EventHandler(this.simpleButtonOK_Click);
     //
     // FormExtendLocker
     //
     this.AutoScaleBaseSize = new System.Drawing.Size(5, 13);
     this.ClientSize = new System.Drawing.Size(590, 296);
     this.Controls.Add(this.pnlCtrlCenter);
     this.Controls.Add(this.pnlCtrlTop);
     this.Controls.Add(this.pnlCtrlBottom);
     this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedDialog;
     this.MaximizeBox = false;
     this.MinimizeBox = false;
     this.Name = "FormExtendLocker";
     this.ShowInTaskbar = false;
     this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen;
     this.Text = "Extend Locker";
     this.Load += new System.EventHandler(this.FormNew_ExtendLocker_Load);
     ((System.ComponentModel.ISupportInitialize)(this.pnlCtrlTop)).EndInit();
     this.pnlCtrlTop.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.calcEdit1.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.pnlCtrlCenter)).EndInit();
     this.pnlCtrlCenter.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.gridControl1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridView1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemDateEdit1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.pnlCtrlBottom)).EndInit();
     this.pnlCtrlBottom.ResumeLayout(false);
     this.ResumeLayout(false);
 }
Exemplo n.º 54
0
 /// <summary>
 /// Required method for Designer support - do not modify
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(InStockView));
     DevExpress.Utils.SerializableAppearanceObject serializableAppearanceObject1 = new DevExpress.Utils.SerializableAppearanceObject();
     DevExpress.Utils.SerializableAppearanceObject serializableAppearanceObject2 = new DevExpress.Utils.SerializableAppearanceObject();
     this.panelControl1 = new DevExpress.XtraEditors.PanelControl();
     this.txtinstckno = new Ultra.FASControls.LabelTextBox();
     this.txtouterno = new Ultra.FASControls.LabelTextBox();
     this.supplierEdit1View = new DevExpress.XtraGrid.Views.Grid.GridView();
     this.tbMain = new DevExpress.XtraTab.XtraTabControl();
     this.xtraTabPage5 = new DevExpress.XtraTab.XtraTabPage();
     this.gcUnAudit = new Ultra.FASControls.GridControlEx();
     this.gvUnAudit = new DevExpress.XtraGrid.Views.Grid.GridView();
     this.gridColumn1 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn2 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn43 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn3 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn52 = 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.pgr1 = new Ultra.FASControls.InStockPager();
     this.xtraTabPage2 = new DevExpress.XtraTab.XtraTabPage();
     this.gcAudit = new Ultra.FASControls.GridControlEx();
     this.gvAudit = new DevExpress.XtraGrid.Views.Grid.GridView();
     this.gridColumn27 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn28 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn29 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn13 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn14 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn16 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn30 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn31 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn32 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.pgr2 = new Ultra.FASControls.InStockPager();
     this.xtraTabPage7 = new DevExpress.XtraTab.XtraTabPage();
     this.gcAllAudit = new Ultra.FASControls.GridControlEx();
     this.gvAllAudit = new DevExpress.XtraGrid.Views.Grid.GridView();
     this.gridColumn18 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn25 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn45 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn71 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn46 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn47 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn48 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn49 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn50 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn51 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.pgr3 = new Ultra.FASControls.InStockPager();
     this.xtraTabPage6 = new DevExpress.XtraTab.XtraTabPage();
     this.gcInvalid = new Ultra.FASControls.GridControlEx();
     this.gvInvalid = new DevExpress.XtraGrid.Views.Grid.GridView();
     this.gridColumn33 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn34 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn42 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn35 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn36 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn39 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn40 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn41 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn37 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn38 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.pgr4 = new Ultra.FASControls.InStockPager();
     this.splitContainerControl1 = new DevExpress.XtraEditors.SplitContainerControl();
     this.tbDetail = new DevExpress.XtraTab.XtraTabControl();
     this.xtbInStork = new DevExpress.XtraTab.XtraTabPage();
     this.gc = new Ultra.FASControls.GridControlEx();
     this.gv = new DevExpress.XtraGrid.Views.Grid.GridView();
     this.gridColumn15 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn20 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn21 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn22 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn23 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn10 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.repositoryItemSpinEdit1 = new DevExpress.XtraEditors.Repository.RepositoryItemSpinEdit();
     this.gcistknum = new DevExpress.XtraGrid.Columns.GridColumn();
     this.rspinstock = new DevExpress.XtraEditors.Repository.RepositoryItemSpinEdit();
     this.gridColumn17 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn19 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn24 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn44 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.rspSuppName = new DevExpress.XtraEditors.Repository.RepositoryItemGridLookUpEdit();
     this.repositoryItemGridLookUpEdit1View = new DevExpress.XtraGrid.Views.Grid.GridView();
     this.gridColumn26 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.xtbItem = new DevExpress.XtraTab.XtraTabPage();
     this.gcNeedItem = new Ultra.FASControls.GridControlEx();
     this.gvNeedItem = new DevExpress.XtraGrid.Views.Grid.GridView();
     this.gridColumn53 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn54 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn55 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn56 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn57 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn58 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn59 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn60 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn61 = 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.gridColumn66 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn67 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn68 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn69 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn70 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.xtbLog = new DevExpress.XtraTab.XtraTabPage();
     this.gcLog = new Ultra.FASControls.GridControlEx();
     this.gvLog = new DevExpress.XtraGrid.Views.Grid.GridView();
     this.gridColumn11 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn8 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn9 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn7 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn12 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.xtraTabPage1 = new DevExpress.XtraTab.XtraTabPage();
     ((System.ComponentModel.ISupportInitialize)(this.panelControl1)).BeginInit();
     this.panelControl1.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.txtinstckno.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtouterno.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.supplierEdit1View)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.tbMain)).BeginInit();
     this.tbMain.SuspendLayout();
     this.xtraTabPage5.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.gcUnAudit)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.gvUnAudit)).BeginInit();
     this.xtraTabPage2.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.gcAudit)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.gvAudit)).BeginInit();
     this.xtraTabPage7.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.gcAllAudit)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.gvAllAudit)).BeginInit();
     this.xtraTabPage6.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.gcInvalid)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.gvInvalid)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.splitContainerControl1)).BeginInit();
     this.splitContainerControl1.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.tbDetail)).BeginInit();
     this.tbDetail.SuspendLayout();
     this.xtbInStork.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.gc)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.gv)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemSpinEdit1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.rspinstock)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.rspSuppName)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemGridLookUpEdit1View)).BeginInit();
     this.xtbItem.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.gcNeedItem)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.gvNeedItem)).BeginInit();
     this.xtbLog.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.gcLog)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.gvLog)).BeginInit();
     this.SuspendLayout();
     //
     // imageList1
     //
     this.imageList1.ImageStream = ((System.Windows.Forms.ImageListStreamer)(resources.GetObject("imageList1.ImageStream")));
     this.imageList1.Images.SetKeyName(0, "New_16x16.png");
     this.imageList1.Images.SetKeyName(1, "New_32x32.png");
     this.imageList1.Images.SetKeyName(2, "Edit_16x16.png");
     this.imageList1.Images.SetKeyName(3, "Edit_32x32.png");
     this.imageList1.Images.SetKeyName(4, "Delete_16x16.png");
     this.imageList1.Images.SetKeyName(5, "Delete_32x32.png");
     this.imageList1.Images.SetKeyName(6, "Refresh_16x16.png");
     this.imageList1.Images.SetKeyName(7, "Refresh_32x32.png");
     this.imageList1.Images.SetKeyName(8, "Export_16x16.png");
     this.imageList1.Images.SetKeyName(9, "Export_32x32.png");
     this.imageList1.Images.SetKeyName(10, "GroupsAndItems.Icon.png");
     this.imageList1.Images.SetKeyName(11, "ExportXlsxLarge.png");
     this.imageList1.Images.SetKeyName(12, "ExportToExcel_16x16.png");
     this.imageList1.Images.SetKeyName(13, "ReView.png");
     this.imageList1.Images.SetKeyName(14, "agt_action_success.png");
     this.imageList1.Images.SetKeyName(15, "folder_deny.png");
     this.imageList1.Images.SetKeyName(16, "refuse.png");
     this.imageList1.Images.SetKeyName(17, "old_edit_redo.png");
     this.imageList1.Images.SetKeyName(18, "old_edit_undo.png");
     this.imageList1.Images.SetKeyName(19, "lock.png");
     this.imageList1.Images.SetKeyName(20, "CustomerInfoCards_32x32.png");
     this.imageList1.Images.SetKeyName(21, "UserKey_32x32.png");
     this.imageList1.Images.SetKeyName(22, "unlock_yellow.png");
     this.imageList1.Images.SetKeyName(23, "media_playlist_clear.png");
     this.imageList1.Images.SetKeyName(24, "");
     this.imageList1.Images.SetKeyName(25, "");
     this.imageList1.Images.SetKeyName(26, "");
     this.imageList1.Images.SetKeyName(27, "");
     this.imageList1.Images.SetKeyName(28, "");
     this.imageList1.Images.SetKeyName(29, "");
     this.imageList1.Images.SetKeyName(30, "");
     this.imageList1.Images.SetKeyName(31, "");
     this.imageList1.Images.SetKeyName(32, "");
     this.imageList1.Images.SetKeyName(33, "");
     this.imageList1.Images.SetKeyName(34, "");
     this.imageList1.Images.SetKeyName(35, "");
     this.imageList1.Images.SetKeyName(36, "");
     this.imageList1.Images.SetKeyName(37, "");
     this.imageList1.Images.SetKeyName(38, "");
     this.imageList1.Images.SetKeyName(39, "");
     this.imageList1.Images.SetKeyName(40, "");
     this.imageList1.Images.SetKeyName(41, "");
     this.imageList1.Images.SetKeyName(42, "");
     this.imageList1.Images.SetKeyName(43, "");
     this.imageList1.Images.SetKeyName(44, "");
     this.imageList1.Images.SetKeyName(45, "");
     this.imageList1.Images.SetKeyName(46, "");
     this.imageList1.Images.SetKeyName(47, "");
     this.imageList1.Images.SetKeyName(48, "");
     this.imageList1.Images.SetKeyName(49, "");
     this.imageList1.Images.SetKeyName(50, "");
     this.imageList1.Images.SetKeyName(51, "");
     this.imageList1.Images.SetKeyName(52, "");
     this.imageList1.Images.SetKeyName(53, "");
     this.imageList1.Images.SetKeyName(54, "");
     this.imageList1.Images.SetKeyName(55, "");
     //
     // panelControl1
     //
     this.panelControl1.Controls.Add(this.txtinstckno);
     this.panelControl1.Controls.Add(this.txtouterno);
     this.panelControl1.Dock = System.Windows.Forms.DockStyle.Top;
     this.panelControl1.Location = new System.Drawing.Point(0, 57);
     this.panelControl1.Name = "panelControl1";
     this.panelControl1.Size = new System.Drawing.Size(780, 34);
     this.panelControl1.TabIndex = 4;
     //
     // txtinstckno
     //
     this.txtinstckno.LabelText = "入库单号";
     this.txtinstckno.Location = new System.Drawing.Point(211, 7);
     this.txtinstckno.MenuManager = this.baseBarMgr;
     this.txtinstckno.Name = "txtinstckno";
     serializableAppearanceObject1.Options.UseTextOptions = true;
     serializableAppearanceObject1.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Near;
     this.txtinstckno.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Glyph, "入库单号", 50, 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.Delete)});
     this.txtinstckno.Size = new System.Drawing.Size(213, 21);
     this.txtinstckno.TabIndex = 4;
     //
     // txtouterno
     //
     this.txtouterno.LabelText = "外部单号";
     this.txtouterno.Location = new System.Drawing.Point(5, 7);
     this.txtouterno.MenuManager = this.baseBarMgr;
     this.txtouterno.Name = "txtouterno";
     serializableAppearanceObject2.Options.UseTextOptions = true;
     serializableAppearanceObject2.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Near;
     this.txtouterno.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Glyph, "外部单号", 50, true, true, true, DevExpress.XtraEditors.ImageLocation.MiddleCenter, null, new DevExpress.Utils.KeyShortcut(System.Windows.Forms.Keys.None), serializableAppearanceObject2, "", null, null, true),
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Delete)});
     this.txtouterno.Size = new System.Drawing.Size(200, 21);
     this.txtouterno.TabIndex = 3;
     //
     // supplierEdit1View
     //
     this.supplierEdit1View.Name = "supplierEdit1View";
     //
     // tbMain
     //
     this.tbMain.Dock = System.Windows.Forms.DockStyle.Fill;
     this.tbMain.Location = new System.Drawing.Point(0, 0);
     this.tbMain.Name = "tbMain";
     this.tbMain.SelectedTabPage = this.xtraTabPage5;
     this.tbMain.Size = new System.Drawing.Size(780, 292);
     this.tbMain.TabIndex = 5;
     this.tbMain.TabPages.AddRange(new DevExpress.XtraTab.XtraTabPage[] {
     this.xtraTabPage5,
     this.xtraTabPage2,
     this.xtraTabPage7,
     this.xtraTabPage6});
     this.tbMain.SelectedPageChanged += new DevExpress.XtraTab.TabPageChangedEventHandler(this.tbMain_SelectedPageChanged);
     //
     // xtraTabPage5
     //
     this.xtraTabPage5.Controls.Add(this.gcUnAudit);
     this.xtraTabPage5.Controls.Add(this.pgr1);
     this.xtraTabPage5.Name = "xtraTabPage5";
     this.xtraTabPage5.Size = new System.Drawing.Size(774, 263);
     this.xtraTabPage5.Text = "未审核";
     //
     // gcUnAudit
     //
     this.gcUnAudit.CellStyleColor = System.Drawing.Color.FromArgb(((int)(((byte)(192)))), ((int)(((byte)(192)))), ((int)(((byte)(0)))));
     this.gcUnAudit.ColorFieldName = null;
     this.gcUnAudit.Dock = System.Windows.Forms.DockStyle.Fill;
     this.gcUnAudit.ImageFields = ((System.Collections.Generic.List<string>)(resources.GetObject("gcUnAudit.ImageFields")));
     this.gcUnAudit.Location = new System.Drawing.Point(0, 0);
     this.gcUnAudit.MainView = this.gvUnAudit;
     this.gcUnAudit.MenuManager = this.baseBarMgr;
     this.gcUnAudit.Name = "gcUnAudit";
     this.gcUnAudit.PopupMnu = null;
     this.gcUnAudit.PopupTextFields = ((System.Collections.Generic.List<string>)(resources.GetObject("gcUnAudit.PopupTextFields")));
     this.gcUnAudit.PopupTextFieldsReadOnly = ((System.Collections.Generic.List<string>)(resources.GetObject("gcUnAudit.PopupTextFieldsReadOnly")));
     this.gcUnAudit.PropName = "PropName";
     this.gcUnAudit.RightMenu = null;
     this.gcUnAudit.RowCellColorStyleSource = null;
     this.gcUnAudit.ShadowDataSource = null;
     this.gcUnAudit.ShadowDataSourceKey = "Guid";
     this.gcUnAudit.ShowIndicator = true;
     this.gcUnAudit.ShowRowNumber = true;
     this.gcUnAudit.Size = new System.Drawing.Size(774, 235);
     this.gcUnAudit.TabIndex = 7;
     this.gcUnAudit.ViewCollection.AddRange(new DevExpress.XtraGrid.Views.Base.BaseView[] {
     this.gvUnAudit});
     //
     // gvUnAudit
     //
     this.gvUnAudit.Appearance.FocusedRow.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(70)))), ((int)(((byte)(80)))), ((int)(((byte)(20)))), ((int)(((byte)(20)))));
     this.gvUnAudit.Appearance.FocusedRow.Options.UseBackColor = true;
     this.gvUnAudit.Appearance.SelectedRow.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(70)))), ((int)(((byte)(80)))), ((int)(((byte)(20)))), ((int)(((byte)(20)))));
     this.gvUnAudit.Appearance.SelectedRow.Options.UseBackColor = true;
     this.gvUnAudit.Columns.AddRange(new DevExpress.XtraGrid.Columns.GridColumn[] {
     this.gridColumn1,
     this.gridColumn2,
     this.gridColumn43,
     this.gridColumn3,
     this.gridColumn52,
     this.gridColumn4,
     this.gridColumn5,
     this.gridColumn6});
     this.gvUnAudit.GridControl = this.gcUnAudit;
     this.gvUnAudit.IndicatorWidth = 44;
     this.gvUnAudit.Name = "gvUnAudit";
     this.gvUnAudit.OptionsBehavior.Editable = false;
     this.gvUnAudit.OptionsView.ColumnAutoWidth = false;
     this.gvUnAudit.OptionsView.ShowAutoFilterRow = true;
     this.gvUnAudit.OptionsView.ShowGroupPanel = false;
     this.gvUnAudit.FocusedRowChanged += new DevExpress.XtraGrid.Views.Base.FocusedRowChangedEventHandler(this.gvUnAudit_FocusedRowChanged);
     //
     // gridColumn1
     //
     this.gridColumn1.Caption = "入库单号";
     this.gridColumn1.FieldName = "StockNo";
     this.gridColumn1.Name = "gridColumn1";
     this.gridColumn1.OptionsFilter.AutoFilterCondition = DevExpress.XtraGrid.Columns.AutoFilterCondition.Contains;
     this.gridColumn1.Visible = true;
     this.gridColumn1.VisibleIndex = 0;
     //
     // gridColumn2
     //
     this.gridColumn2.Caption = "供应商";
     this.gridColumn2.FieldName = "SuppName";
     this.gridColumn2.Name = "gridColumn2";
     this.gridColumn2.OptionsFilter.AutoFilterCondition = DevExpress.XtraGrid.Columns.AutoFilterCondition.Contains;
     //
     // gridColumn43
     //
     this.gridColumn43.Caption = "外部单号";
     this.gridColumn43.FieldName = "OuterNo";
     this.gridColumn43.Name = "gridColumn43";
     this.gridColumn43.OptionsFilter.AutoFilterCondition = DevExpress.XtraGrid.Columns.AutoFilterCondition.Contains;
     this.gridColumn43.Visible = true;
     this.gridColumn43.VisibleIndex = 1;
     //
     // gridColumn3
     //
     this.gridColumn3.Caption = "采购单号";
     this.gridColumn3.FieldName = "PurchNo";
     this.gridColumn3.Name = "gridColumn3";
     this.gridColumn3.OptionsFilter.AutoFilterCondition = DevExpress.XtraGrid.Columns.AutoFilterCondition.Contains;
     //
     // gridColumn52
     //
     this.gridColumn52.Caption = "采购数量";
     this.gridColumn52.FieldName = "PurchNum";
     this.gridColumn52.Name = "gridColumn52";
     this.gridColumn52.OptionsFilter.AutoFilterCondition = DevExpress.XtraGrid.Columns.AutoFilterCondition.Contains;
     //
     // gridColumn4
     //
     this.gridColumn4.Caption = "入库仓库";
     this.gridColumn4.FieldName = "WareName";
     this.gridColumn4.Name = "gridColumn4";
     this.gridColumn4.OptionsFilter.AutoFilterCondition = DevExpress.XtraGrid.Columns.AutoFilterCondition.Contains;
     //
     // gridColumn5
     //
     this.gridColumn5.Caption = "制单人";
     this.gridColumn5.FieldName = "UserName";
     this.gridColumn5.Name = "gridColumn5";
     this.gridColumn5.OptionsFilter.AutoFilterCondition = DevExpress.XtraGrid.Columns.AutoFilterCondition.Contains;
     this.gridColumn5.Visible = true;
     this.gridColumn5.VisibleIndex = 2;
     //
     // gridColumn6
     //
     this.gridColumn6.Caption = "制单时间";
     this.gridColumn6.DisplayFormat.FormatString = "yyyy-MM-dd HH:mm";
     this.gridColumn6.DisplayFormat.FormatType = DevExpress.Utils.FormatType.DateTime;
     this.gridColumn6.FieldName = "CreateDate";
     this.gridColumn6.Name = "gridColumn6";
     this.gridColumn6.OptionsFilter.AutoFilterCondition = DevExpress.XtraGrid.Columns.AutoFilterCondition.Contains;
     this.gridColumn6.Visible = true;
     this.gridColumn6.VisibleIndex = 3;
     //
     // pgr1
     //
     this.pgr1.Caller = null;
     this.pgr1.Counts = 0;
     this.pgr1.CurrentPage = 1;
     this.pgr1.Dock = System.Windows.Forms.DockStyle.Bottom;
     this.pgr1.Grid = this.gcUnAudit;
     this.pgr1.Location = new System.Drawing.Point(0, 235);
     this.pgr1.Name = "pgr1";
     this.pgr1.OrderBy = null;
     this.pgr1.PageCount = 0;
     this.pgr1.PageSize = 500;
     this.pgr1.PrefixWhr = null;
     this.pgr1.ResultData = null;
     this.pgr1.Size = new System.Drawing.Size(774, 28);
     this.pgr1.TabIndex = 6;
     //
     // xtraTabPage2
     //
     this.xtraTabPage2.Controls.Add(this.gcAudit);
     this.xtraTabPage2.Controls.Add(this.pgr2);
     this.xtraTabPage2.Name = "xtraTabPage2";
     this.xtraTabPage2.PageEnabled = false;
     this.xtraTabPage2.PageVisible = false;
     this.xtraTabPage2.Size = new System.Drawing.Size(774, 263);
     this.xtraTabPage2.Text = "部分入库";
     //
     // gcAudit
     //
     this.gcAudit.CellStyleColor = System.Drawing.Color.FromArgb(((int)(((byte)(192)))), ((int)(((byte)(192)))), ((int)(((byte)(0)))));
     this.gcAudit.ColorFieldName = null;
     this.gcAudit.Dock = System.Windows.Forms.DockStyle.Fill;
     this.gcAudit.ImageFields = ((System.Collections.Generic.List<string>)(resources.GetObject("gcAudit.ImageFields")));
     this.gcAudit.Location = new System.Drawing.Point(0, 0);
     this.gcAudit.MainView = this.gvAudit;
     this.gcAudit.MenuManager = this.baseBarMgr;
     this.gcAudit.Name = "gcAudit";
     this.gcAudit.PopupMnu = null;
     this.gcAudit.PopupTextFields = ((System.Collections.Generic.List<string>)(resources.GetObject("gcAudit.PopupTextFields")));
     this.gcAudit.PopupTextFieldsReadOnly = ((System.Collections.Generic.List<string>)(resources.GetObject("gcAudit.PopupTextFieldsReadOnly")));
     this.gcAudit.PropName = "PropName";
     this.gcAudit.RightMenu = null;
     this.gcAudit.RowCellColorStyleSource = null;
     this.gcAudit.ShadowDataSource = null;
     this.gcAudit.ShadowDataSourceKey = "Guid";
     this.gcAudit.ShowRowNumber = true;
     this.gcAudit.Size = new System.Drawing.Size(774, 230);
     this.gcAudit.TabIndex = 8;
     this.gcAudit.ViewCollection.AddRange(new DevExpress.XtraGrid.Views.Base.BaseView[] {
     this.gvAudit});
     //
     // gvAudit
     //
     this.gvAudit.Appearance.FocusedRow.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(70)))), ((int)(((byte)(80)))), ((int)(((byte)(20)))), ((int)(((byte)(20)))));
     this.gvAudit.Appearance.FocusedRow.Options.UseBackColor = true;
     this.gvAudit.Appearance.SelectedRow.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(70)))), ((int)(((byte)(80)))), ((int)(((byte)(20)))), ((int)(((byte)(20)))));
     this.gvAudit.Appearance.SelectedRow.Options.UseBackColor = true;
     this.gvAudit.Columns.AddRange(new DevExpress.XtraGrid.Columns.GridColumn[] {
     this.gridColumn27,
     this.gridColumn28,
     this.gridColumn29,
     this.gridColumn13,
     this.gridColumn14,
     this.gridColumn16,
     this.gridColumn30,
     this.gridColumn31,
     this.gridColumn32});
     this.gvAudit.GridControl = this.gcAudit;
     this.gvAudit.IndicatorWidth = 44;
     this.gvAudit.Name = "gvAudit";
     this.gvAudit.OptionsBehavior.Editable = false;
     this.gvAudit.OptionsView.ColumnAutoWidth = false;
     this.gvAudit.OptionsView.ShowAutoFilterRow = true;
     this.gvAudit.OptionsView.ShowGroupPanel = false;
     //
     // gridColumn27
     //
     this.gridColumn27.Caption = "入库单号";
     this.gridColumn27.FieldName = "StockNo";
     this.gridColumn27.Name = "gridColumn27";
     this.gridColumn27.OptionsFilter.AutoFilterCondition = DevExpress.XtraGrid.Columns.AutoFilterCondition.Contains;
     this.gridColumn27.Visible = true;
     this.gridColumn27.VisibleIndex = 0;
     //
     // gridColumn28
     //
     this.gridColumn28.Caption = "供应商";
     this.gridColumn28.FieldName = "SuppName";
     this.gridColumn28.Name = "gridColumn28";
     this.gridColumn28.OptionsFilter.AutoFilterCondition = DevExpress.XtraGrid.Columns.AutoFilterCondition.Contains;
     this.gridColumn28.Visible = true;
     this.gridColumn28.VisibleIndex = 1;
     //
     // gridColumn29
     //
     this.gridColumn29.Caption = "采购单号";
     this.gridColumn29.FieldName = "PurchNo";
     this.gridColumn29.Name = "gridColumn29";
     this.gridColumn29.OptionsFilter.AutoFilterCondition = DevExpress.XtraGrid.Columns.AutoFilterCondition.Contains;
     this.gridColumn29.Visible = true;
     this.gridColumn29.VisibleIndex = 2;
     //
     // gridColumn13
     //
     this.gridColumn13.Caption = "采购数量";
     this.gridColumn13.Name = "gridColumn13";
     this.gridColumn13.OptionsFilter.AutoFilterCondition = DevExpress.XtraGrid.Columns.AutoFilterCondition.Contains;
     //
     // gridColumn14
     //
     this.gridColumn14.Caption = "入库数量";
     this.gridColumn14.Name = "gridColumn14";
     this.gridColumn14.OptionsFilter.AutoFilterCondition = DevExpress.XtraGrid.Columns.AutoFilterCondition.Contains;
     this.gridColumn14.Visible = true;
     this.gridColumn14.VisibleIndex = 3;
     //
     // gridColumn16
     //
     this.gridColumn16.Caption = "未入库数量";
     this.gridColumn16.Name = "gridColumn16";
     this.gridColumn16.OptionsFilter.AutoFilterCondition = DevExpress.XtraGrid.Columns.AutoFilterCondition.Contains;
     this.gridColumn16.Visible = true;
     this.gridColumn16.VisibleIndex = 4;
     //
     // gridColumn30
     //
     this.gridColumn30.Caption = "入库仓库";
     this.gridColumn30.FieldName = "WareName";
     this.gridColumn30.Name = "gridColumn30";
     this.gridColumn30.OptionsFilter.AutoFilterCondition = DevExpress.XtraGrid.Columns.AutoFilterCondition.Contains;
     //
     // gridColumn31
     //
     this.gridColumn31.Caption = "建单人";
     this.gridColumn31.FieldName = "UserName";
     this.gridColumn31.Name = "gridColumn31";
     this.gridColumn31.OptionsFilter.AutoFilterCondition = DevExpress.XtraGrid.Columns.AutoFilterCondition.Contains;
     this.gridColumn31.Visible = true;
     this.gridColumn31.VisibleIndex = 5;
     //
     // gridColumn32
     //
     this.gridColumn32.Caption = "建单时间";
     this.gridColumn32.DisplayFormat.FormatString = "yyyy-MM-dd HH:mm";
     this.gridColumn32.DisplayFormat.FormatType = DevExpress.Utils.FormatType.DateTime;
     this.gridColumn32.FieldName = "CreateDate";
     this.gridColumn32.Name = "gridColumn32";
     this.gridColumn32.OptionsFilter.AutoFilterCondition = DevExpress.XtraGrid.Columns.AutoFilterCondition.Contains;
     this.gridColumn32.Visible = true;
     this.gridColumn32.VisibleIndex = 6;
     //
     // pgr2
     //
     this.pgr2.Caller = null;
     this.pgr2.Counts = 0;
     this.pgr2.CurrentPage = 1;
     this.pgr2.Dock = System.Windows.Forms.DockStyle.Bottom;
     this.pgr2.Grid = this.gcAudit;
     this.pgr2.Location = new System.Drawing.Point(0, 230);
     this.pgr2.Name = "pgr2";
     this.pgr2.OrderBy = null;
     this.pgr2.PageCount = 0;
     this.pgr2.PageSize = 10;
     this.pgr2.PrefixWhr = null;
     this.pgr2.ResultData = null;
     this.pgr2.Size = new System.Drawing.Size(774, 33);
     this.pgr2.TabIndex = 7;
     //
     // xtraTabPage7
     //
     this.xtraTabPage7.Controls.Add(this.gcAllAudit);
     this.xtraTabPage7.Controls.Add(this.pgr3);
     this.xtraTabPage7.Name = "xtraTabPage7";
     this.xtraTabPage7.Size = new System.Drawing.Size(774, 263);
     this.xtraTabPage7.Text = "已审核";
     //
     // gcAllAudit
     //
     this.gcAllAudit.CellStyleColor = System.Drawing.Color.FromArgb(((int)(((byte)(192)))), ((int)(((byte)(192)))), ((int)(((byte)(0)))));
     this.gcAllAudit.ColorFieldName = null;
     this.gcAllAudit.Dock = System.Windows.Forms.DockStyle.Fill;
     this.gcAllAudit.ImageFields = ((System.Collections.Generic.List<string>)(resources.GetObject("gcAllAudit.ImageFields")));
     this.gcAllAudit.Location = new System.Drawing.Point(0, 0);
     this.gcAllAudit.MainView = this.gvAllAudit;
     this.gcAllAudit.MenuManager = this.baseBarMgr;
     this.gcAllAudit.Name = "gcAllAudit";
     this.gcAllAudit.PopupMnu = null;
     this.gcAllAudit.PopupTextFields = ((System.Collections.Generic.List<string>)(resources.GetObject("gcAllAudit.PopupTextFields")));
     this.gcAllAudit.PopupTextFieldsReadOnly = ((System.Collections.Generic.List<string>)(resources.GetObject("gcAllAudit.PopupTextFieldsReadOnly")));
     this.gcAllAudit.PropName = "PropName";
     this.gcAllAudit.RightMenu = null;
     this.gcAllAudit.RowCellColorStyleSource = null;
     this.gcAllAudit.ShadowDataSource = null;
     this.gcAllAudit.ShadowDataSourceKey = "Guid";
     this.gcAllAudit.ShowIndicator = true;
     this.gcAllAudit.ShowRowNumber = true;
     this.gcAllAudit.Size = new System.Drawing.Size(774, 230);
     this.gcAllAudit.TabIndex = 8;
     this.gcAllAudit.ViewCollection.AddRange(new DevExpress.XtraGrid.Views.Base.BaseView[] {
     this.gvAllAudit});
     //
     // gvAllAudit
     //
     this.gvAllAudit.Appearance.FocusedRow.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(70)))), ((int)(((byte)(80)))), ((int)(((byte)(20)))), ((int)(((byte)(20)))));
     this.gvAllAudit.Appearance.FocusedRow.Options.UseBackColor = true;
     this.gvAllAudit.Appearance.SelectedRow.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(70)))), ((int)(((byte)(80)))), ((int)(((byte)(20)))), ((int)(((byte)(20)))));
     this.gvAllAudit.Appearance.SelectedRow.Options.UseBackColor = true;
     this.gvAllAudit.Columns.AddRange(new DevExpress.XtraGrid.Columns.GridColumn[] {
     this.gridColumn18,
     this.gridColumn25,
     this.gridColumn45,
     this.gridColumn71,
     this.gridColumn46,
     this.gridColumn47,
     this.gridColumn48,
     this.gridColumn49,
     this.gridColumn50,
     this.gridColumn51});
     this.gvAllAudit.GridControl = this.gcAllAudit;
     this.gvAllAudit.IndicatorWidth = 44;
     this.gvAllAudit.Name = "gvAllAudit";
     this.gvAllAudit.OptionsBehavior.Editable = false;
     this.gvAllAudit.OptionsView.ColumnAutoWidth = false;
     this.gvAllAudit.OptionsView.ShowAutoFilterRow = true;
     this.gvAllAudit.OptionsView.ShowGroupPanel = false;
     this.gvAllAudit.FocusedRowChanged += new DevExpress.XtraGrid.Views.Base.FocusedRowChangedEventHandler(this.gvUnAudit_FocusedRowChanged);
     //
     // gridColumn18
     //
     this.gridColumn18.Caption = "入库单号";
     this.gridColumn18.FieldName = "StockNo";
     this.gridColumn18.Name = "gridColumn18";
     this.gridColumn18.OptionsFilter.AutoFilterCondition = DevExpress.XtraGrid.Columns.AutoFilterCondition.Contains;
     this.gridColumn18.Visible = true;
     this.gridColumn18.VisibleIndex = 0;
     //
     // gridColumn25
     //
     this.gridColumn25.Caption = "供应商";
     this.gridColumn25.FieldName = "SuppName";
     this.gridColumn25.Name = "gridColumn25";
     this.gridColumn25.OptionsFilter.AutoFilterCondition = DevExpress.XtraGrid.Columns.AutoFilterCondition.Contains;
     //
     // gridColumn45
     //
     this.gridColumn45.Caption = "采购单号";
     this.gridColumn45.FieldName = "PurchNo";
     this.gridColumn45.Name = "gridColumn45";
     this.gridColumn45.OptionsFilter.AutoFilterCondition = DevExpress.XtraGrid.Columns.AutoFilterCondition.Contains;
     //
     // gridColumn71
     //
     this.gridColumn71.Caption = "外部单号";
     this.gridColumn71.FieldName = "OuterNo";
     this.gridColumn71.Name = "gridColumn71";
     this.gridColumn71.OptionsColumn.AllowEdit = false;
     this.gridColumn71.OptionsFilter.AutoFilterCondition = DevExpress.XtraGrid.Columns.AutoFilterCondition.Contains;
     this.gridColumn71.Visible = true;
     this.gridColumn71.VisibleIndex = 2;
     //
     // gridColumn46
     //
     this.gridColumn46.Caption = "采购数量";
     this.gridColumn46.Name = "gridColumn46";
     this.gridColumn46.OptionsFilter.AutoFilterCondition = DevExpress.XtraGrid.Columns.AutoFilterCondition.Contains;
     //
     // gridColumn47
     //
     this.gridColumn47.Caption = "入库数量";
     this.gridColumn47.Name = "gridColumn47";
     this.gridColumn47.OptionsFilter.AutoFilterCondition = DevExpress.XtraGrid.Columns.AutoFilterCondition.Contains;
     //
     // gridColumn48
     //
     this.gridColumn48.Caption = "未入库数量";
     this.gridColumn48.Name = "gridColumn48";
     this.gridColumn48.OptionsFilter.AutoFilterCondition = DevExpress.XtraGrid.Columns.AutoFilterCondition.Contains;
     //
     // gridColumn49
     //
     this.gridColumn49.Caption = "入库仓库";
     this.gridColumn49.FieldName = "WareName";
     this.gridColumn49.Name = "gridColumn49";
     this.gridColumn49.OptionsFilter.AutoFilterCondition = DevExpress.XtraGrid.Columns.AutoFilterCondition.Contains;
     //
     // gridColumn50
     //
     this.gridColumn50.Caption = "建单人";
     this.gridColumn50.FieldName = "UserName";
     this.gridColumn50.Name = "gridColumn50";
     this.gridColumn50.OptionsFilter.AutoFilterCondition = DevExpress.XtraGrid.Columns.AutoFilterCondition.Contains;
     this.gridColumn50.Visible = true;
     this.gridColumn50.VisibleIndex = 3;
     //
     // gridColumn51
     //
     this.gridColumn51.Caption = "建单时间";
     this.gridColumn51.DisplayFormat.FormatString = "yyyy-MM-dd HH:mm";
     this.gridColumn51.DisplayFormat.FormatType = DevExpress.Utils.FormatType.DateTime;
     this.gridColumn51.FieldName = "CreateDate";
     this.gridColumn51.Name = "gridColumn51";
     this.gridColumn51.OptionsFilter.AutoFilterCondition = DevExpress.XtraGrid.Columns.AutoFilterCondition.Contains;
     this.gridColumn51.Visible = true;
     this.gridColumn51.VisibleIndex = 4;
     //
     // pgr3
     //
     this.pgr3.Caller = null;
     this.pgr3.Counts = 0;
     this.pgr3.CurrentPage = 1;
     this.pgr3.Dock = System.Windows.Forms.DockStyle.Bottom;
     this.pgr3.Grid = this.gcAllAudit;
     this.pgr3.Location = new System.Drawing.Point(0, 230);
     this.pgr3.Name = "pgr3";
     this.pgr3.OrderBy = null;
     this.pgr3.PageCount = 0;
     this.pgr3.PageSize = 500;
     this.pgr3.PrefixWhr = null;
     this.pgr3.ResultData = null;
     this.pgr3.Size = new System.Drawing.Size(774, 33);
     this.pgr3.TabIndex = 7;
     //
     // xtraTabPage6
     //
     this.xtraTabPage6.Controls.Add(this.gcInvalid);
     this.xtraTabPage6.Controls.Add(this.pgr4);
     this.xtraTabPage6.Name = "xtraTabPage6";
     this.xtraTabPage6.Size = new System.Drawing.Size(774, 263);
     this.xtraTabPage6.Text = "已作废";
     //
     // gcInvalid
     //
     this.gcInvalid.CellStyleColor = System.Drawing.Color.FromArgb(((int)(((byte)(192)))), ((int)(((byte)(192)))), ((int)(((byte)(0)))));
     this.gcInvalid.ColorFieldName = null;
     this.gcInvalid.Dock = System.Windows.Forms.DockStyle.Fill;
     this.gcInvalid.ImageFields = ((System.Collections.Generic.List<string>)(resources.GetObject("gcInvalid.ImageFields")));
     this.gcInvalid.Location = new System.Drawing.Point(0, 0);
     this.gcInvalid.MainView = this.gvInvalid;
     this.gcInvalid.MenuManager = this.baseBarMgr;
     this.gcInvalid.Name = "gcInvalid";
     this.gcInvalid.PopupMnu = null;
     this.gcInvalid.PopupTextFields = ((System.Collections.Generic.List<string>)(resources.GetObject("gcInvalid.PopupTextFields")));
     this.gcInvalid.PopupTextFieldsReadOnly = ((System.Collections.Generic.List<string>)(resources.GetObject("gcInvalid.PopupTextFieldsReadOnly")));
     this.gcInvalid.PropName = "PropName";
     this.gcInvalid.RightMenu = null;
     this.gcInvalid.RowCellColorStyleSource = null;
     this.gcInvalid.ShadowDataSource = null;
     this.gcInvalid.ShadowDataSourceKey = "Guid";
     this.gcInvalid.ShowIndicator = true;
     this.gcInvalid.ShowRowNumber = true;
     this.gcInvalid.Size = new System.Drawing.Size(774, 230);
     this.gcInvalid.TabIndex = 9;
     this.gcInvalid.ViewCollection.AddRange(new DevExpress.XtraGrid.Views.Base.BaseView[] {
     this.gvInvalid});
     //
     // gvInvalid
     //
     this.gvInvalid.Appearance.FocusedRow.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(70)))), ((int)(((byte)(80)))), ((int)(((byte)(20)))), ((int)(((byte)(20)))));
     this.gvInvalid.Appearance.FocusedRow.Options.UseBackColor = true;
     this.gvInvalid.Appearance.SelectedRow.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(70)))), ((int)(((byte)(80)))), ((int)(((byte)(20)))), ((int)(((byte)(20)))));
     this.gvInvalid.Appearance.SelectedRow.Options.UseBackColor = true;
     this.gvInvalid.Columns.AddRange(new DevExpress.XtraGrid.Columns.GridColumn[] {
     this.gridColumn33,
     this.gridColumn34,
     this.gridColumn42,
     this.gridColumn35,
     this.gridColumn36,
     this.gridColumn39,
     this.gridColumn40,
     this.gridColumn41,
     this.gridColumn37,
     this.gridColumn38});
     this.gvInvalid.GridControl = this.gcInvalid;
     this.gvInvalid.IndicatorWidth = 44;
     this.gvInvalid.Name = "gvInvalid";
     this.gvInvalid.OptionsBehavior.Editable = false;
     this.gvInvalid.OptionsView.ColumnAutoWidth = false;
     this.gvInvalid.OptionsView.ShowAutoFilterRow = true;
     this.gvInvalid.OptionsView.ShowGroupPanel = false;
     this.gvInvalid.FocusedRowChanged += new DevExpress.XtraGrid.Views.Base.FocusedRowChangedEventHandler(this.gvUnAudit_FocusedRowChanged);
     //
     // gridColumn33
     //
     this.gridColumn33.Caption = "入库单号";
     this.gridColumn33.FieldName = "StockNo";
     this.gridColumn33.Name = "gridColumn33";
     this.gridColumn33.OptionsFilter.AutoFilterCondition = DevExpress.XtraGrid.Columns.AutoFilterCondition.Contains;
     this.gridColumn33.Visible = true;
     this.gridColumn33.VisibleIndex = 0;
     //
     // gridColumn34
     //
     this.gridColumn34.Caption = "供应商";
     this.gridColumn34.FieldName = "SuppName";
     this.gridColumn34.Name = "gridColumn34";
     this.gridColumn34.OptionsFilter.AutoFilterCondition = DevExpress.XtraGrid.Columns.AutoFilterCondition.Contains;
     //
     // gridColumn42
     //
     this.gridColumn42.Caption = "外部单号";
     this.gridColumn42.FieldName = "OuterNo";
     this.gridColumn42.Name = "gridColumn42";
     this.gridColumn42.OptionsFilter.AutoFilterCondition = DevExpress.XtraGrid.Columns.AutoFilterCondition.Contains;
     this.gridColumn42.Visible = true;
     this.gridColumn42.VisibleIndex = 2;
     //
     // gridColumn35
     //
     this.gridColumn35.Caption = "采购单号";
     this.gridColumn35.FieldName = "PurchNo";
     this.gridColumn35.Name = "gridColumn35";
     this.gridColumn35.OptionsFilter.AutoFilterCondition = DevExpress.XtraGrid.Columns.AutoFilterCondition.Contains;
     //
     // gridColumn36
     //
     this.gridColumn36.Caption = "入库仓库";
     this.gridColumn36.FieldName = "WareName";
     this.gridColumn36.Name = "gridColumn36";
     this.gridColumn36.OptionsFilter.AutoFilterCondition = DevExpress.XtraGrid.Columns.AutoFilterCondition.Contains;
     //
     // gridColumn39
     //
     this.gridColumn39.Caption = "作废人";
     this.gridColumn39.FieldName = "Invalider";
     this.gridColumn39.Name = "gridColumn39";
     this.gridColumn39.OptionsFilter.AutoFilterCondition = DevExpress.XtraGrid.Columns.AutoFilterCondition.Contains;
     this.gridColumn39.Visible = true;
     this.gridColumn39.VisibleIndex = 3;
     //
     // gridColumn40
     //
     this.gridColumn40.Caption = "作废时间";
     this.gridColumn40.DisplayFormat.FormatString = "yyyy-MM-dd HH:mm";
     this.gridColumn40.DisplayFormat.FormatType = DevExpress.Utils.FormatType.DateTime;
     this.gridColumn40.FieldName = "InvalidTime";
     this.gridColumn40.Name = "gridColumn40";
     this.gridColumn40.OptionsFilter.AutoFilterCondition = DevExpress.XtraGrid.Columns.AutoFilterCondition.Contains;
     this.gridColumn40.Visible = true;
     this.gridColumn40.VisibleIndex = 4;
     //
     // gridColumn41
     //
     this.gridColumn41.Caption = "作废原因";
     this.gridColumn41.FieldName = "InvalidRemark";
     this.gridColumn41.Name = "gridColumn41";
     this.gridColumn41.OptionsFilter.AutoFilterCondition = DevExpress.XtraGrid.Columns.AutoFilterCondition.Contains;
     this.gridColumn41.Visible = true;
     this.gridColumn41.VisibleIndex = 5;
     //
     // gridColumn37
     //
     this.gridColumn37.Caption = "建单人";
     this.gridColumn37.FieldName = "UserName";
     this.gridColumn37.Name = "gridColumn37";
     this.gridColumn37.OptionsFilter.AutoFilterCondition = DevExpress.XtraGrid.Columns.AutoFilterCondition.Contains;
     this.gridColumn37.Visible = true;
     this.gridColumn37.VisibleIndex = 6;
     //
     // gridColumn38
     //
     this.gridColumn38.Caption = "建单时间";
     this.gridColumn38.DisplayFormat.FormatString = "yyyy-MM-dd HH:mm";
     this.gridColumn38.DisplayFormat.FormatType = DevExpress.Utils.FormatType.DateTime;
     this.gridColumn38.FieldName = "CreateDate";
     this.gridColumn38.Name = "gridColumn38";
     this.gridColumn38.OptionsFilter.AutoFilterCondition = DevExpress.XtraGrid.Columns.AutoFilterCondition.Contains;
     this.gridColumn38.Visible = true;
     this.gridColumn38.VisibleIndex = 7;
     //
     // pgr4
     //
     this.pgr4.Caller = null;
     this.pgr4.Counts = 0;
     this.pgr4.CurrentPage = 1;
     this.pgr4.Dock = System.Windows.Forms.DockStyle.Bottom;
     this.pgr4.Grid = this.gcInvalid;
     this.pgr4.Location = new System.Drawing.Point(0, 230);
     this.pgr4.Name = "pgr4";
     this.pgr4.OrderBy = null;
     this.pgr4.PageCount = 0;
     this.pgr4.PageSize = 500;
     this.pgr4.PrefixWhr = null;
     this.pgr4.ResultData = null;
     this.pgr4.Size = new System.Drawing.Size(774, 33);
     this.pgr4.TabIndex = 8;
     //
     // splitContainerControl1
     //
     this.splitContainerControl1.Dock = System.Windows.Forms.DockStyle.Fill;
     this.splitContainerControl1.Horizontal = false;
     this.splitContainerControl1.Location = new System.Drawing.Point(0, 91);
     this.splitContainerControl1.Name = "splitContainerControl1";
     this.splitContainerControl1.Panel1.Controls.Add(this.tbMain);
     this.splitContainerControl1.Panel1.Text = "Panel1";
     this.splitContainerControl1.Panel2.Controls.Add(this.tbDetail);
     this.splitContainerControl1.Panel2.Text = "Panel2";
     this.splitContainerControl1.Size = new System.Drawing.Size(780, 429);
     this.splitContainerControl1.SplitterPosition = 292;
     this.splitContainerControl1.TabIndex = 0;
     this.splitContainerControl1.Text = "splitContainerControl1";
     //
     // tbDetail
     //
     this.tbDetail.Dock = System.Windows.Forms.DockStyle.Fill;
     this.tbDetail.Location = new System.Drawing.Point(0, 0);
     this.tbDetail.Name = "tbDetail";
     this.tbDetail.SelectedTabPage = this.xtbInStork;
     this.tbDetail.Size = new System.Drawing.Size(780, 132);
     this.tbDetail.TabIndex = 0;
     this.tbDetail.TabPages.AddRange(new DevExpress.XtraTab.XtraTabPage[] {
     this.xtbItem,
     this.xtbInStork,
     this.xtbLog});
     //
     // xtbInStork
     //
     this.xtbInStork.Controls.Add(this.gc);
     this.xtbInStork.Name = "xtbInStork";
     this.xtbInStork.PageEnabled = false;
     this.xtbInStork.PageVisible = false;
     this.xtbInStork.Size = new System.Drawing.Size(774, 103);
     this.xtbInStork.Text = "入库明细";
     //
     // gc
     //
     this.gc.CellStyleColor = System.Drawing.Color.FromArgb(((int)(((byte)(192)))), ((int)(((byte)(192)))), ((int)(((byte)(0)))));
     this.gc.ColorFieldName = null;
     this.gc.Dock = System.Windows.Forms.DockStyle.Fill;
     this.gc.Editable = true;
     this.gc.ImageFields = ((System.Collections.Generic.List<string>)(resources.GetObject("gc.ImageFields")));
     this.gc.Location = new System.Drawing.Point(0, 0);
     this.gc.MainView = this.gv;
     this.gc.Name = "gc";
     this.gc.PopupMnu = null;
     this.gc.PopupTextFields = ((System.Collections.Generic.List<string>)(resources.GetObject("gc.PopupTextFields")));
     this.gc.PopupTextFieldsReadOnly = ((System.Collections.Generic.List<string>)(resources.GetObject("gc.PopupTextFieldsReadOnly")));
     this.gc.PropName = "PropName";
     this.gc.RepositoryItems.AddRange(new DevExpress.XtraEditors.Repository.RepositoryItem[] {
     this.repositoryItemSpinEdit1,
     this.rspSuppName,
     this.rspinstock});
     this.gc.RightMenu = null;
     this.gc.RowCellColorStyleSource = null;
     this.gc.ShadowDataSource = null;
     this.gc.ShadowDataSourceKey = "Guid";
     this.gc.ShowIndicator = true;
     this.gc.ShowRowNumber = true;
     this.gc.Size = new System.Drawing.Size(774, 103);
     this.gc.TabIndex = 13;
     this.gc.ViewCollection.AddRange(new DevExpress.XtraGrid.Views.Base.BaseView[] {
     this.gv});
     //
     // gv
     //
     this.gv.Appearance.FocusedRow.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(70)))), ((int)(((byte)(80)))), ((int)(((byte)(20)))), ((int)(((byte)(20)))));
     this.gv.Appearance.FocusedRow.Options.UseBackColor = true;
     this.gv.Appearance.SelectedRow.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(70)))), ((int)(((byte)(80)))), ((int)(((byte)(20)))), ((int)(((byte)(20)))));
     this.gv.Appearance.SelectedRow.Options.UseBackColor = true;
     this.gv.Columns.AddRange(new DevExpress.XtraGrid.Columns.GridColumn[] {
     this.gridColumn15,
     this.gridColumn20,
     this.gridColumn21,
     this.gridColumn22,
     this.gridColumn23,
     this.gridColumn10,
     this.gcistknum,
     this.gridColumn17,
     this.gridColumn19,
     this.gridColumn24,
     this.gridColumn44});
     this.gv.GridControl = this.gc;
     this.gv.IndicatorWidth = 44;
     this.gv.Name = "gv";
     this.gv.OptionsView.ColumnAutoWidth = false;
     this.gv.OptionsView.ShowAutoFilterRow = true;
     this.gv.OptionsView.ShowFooter = true;
     this.gv.OptionsView.ShowGroupPanel = false;
     //
     // gridColumn15
     //
     this.gridColumn15.Caption = "供应商";
     this.gridColumn15.FieldName = "SuppName";
     this.gridColumn15.Name = "gridColumn15";
     this.gridColumn15.OptionsColumn.AllowEdit = false;
     this.gridColumn15.OptionsFilter.AutoFilterCondition = DevExpress.XtraGrid.Columns.AutoFilterCondition.Contains;
     this.gridColumn15.Width = 127;
     //
     // gridColumn20
     //
     this.gridColumn20.Caption = "商品编码";
     this.gridColumn20.FieldName = "TopOuterIid";
     this.gridColumn20.Name = "gridColumn20";
     this.gridColumn20.OptionsColumn.AllowEdit = false;
     this.gridColumn20.OptionsFilter.AutoFilterCondition = DevExpress.XtraGrid.Columns.AutoFilterCondition.Contains;
     this.gridColumn20.Visible = true;
     this.gridColumn20.VisibleIndex = 1;
     //
     // gridColumn21
     //
     this.gridColumn21.Caption = "规格编码";
     this.gridColumn21.FieldName = "TopOuterSkuId";
     this.gridColumn21.Name = "gridColumn21";
     this.gridColumn21.OptionsColumn.AllowEdit = false;
     this.gridColumn21.OptionsFilter.AutoFilterCondition = DevExpress.XtraGrid.Columns.AutoFilterCondition.Contains;
     this.gridColumn21.Visible = true;
     this.gridColumn21.VisibleIndex = 2;
     //
     // gridColumn22
     //
     this.gridColumn22.Caption = "商品名称";
     this.gridColumn22.FieldName = "ItemName";
     this.gridColumn22.Name = "gridColumn22";
     this.gridColumn22.OptionsColumn.AllowEdit = false;
     this.gridColumn22.OptionsFilter.AutoFilterCondition = DevExpress.XtraGrid.Columns.AutoFilterCondition.Contains;
     this.gridColumn22.Visible = true;
     this.gridColumn22.VisibleIndex = 3;
     //
     // gridColumn23
     //
     this.gridColumn23.Caption = "规格名称";
     this.gridColumn23.FieldName = "SkuProperties";
     this.gridColumn23.Name = "gridColumn23";
     this.gridColumn23.OptionsFilter.AutoFilterCondition = DevExpress.XtraGrid.Columns.AutoFilterCondition.Contains;
     this.gridColumn23.Visible = true;
     this.gridColumn23.VisibleIndex = 4;
     //
     // gridColumn10
     //
     this.gridColumn10.AppearanceCell.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(255)))), ((int)(((byte)(192)))), ((int)(((byte)(192)))));
     this.gridColumn10.AppearanceCell.Options.UseBackColor = true;
     this.gridColumn10.Caption = "最大可入库数";
     this.gridColumn10.ColumnEdit = this.repositoryItemSpinEdit1;
     this.gridColumn10.FieldName = "CanAssignNum";
     this.gridColumn10.Name = "gridColumn10";
     this.gridColumn10.OptionsColumn.AllowEdit = false;
     this.gridColumn10.OptionsFilter.AutoFilterCondition = DevExpress.XtraGrid.Columns.AutoFilterCondition.Contains;
     this.gridColumn10.Visible = true;
     this.gridColumn10.VisibleIndex = 4;
     this.gridColumn10.Width = 107;
     //
     // repositoryItemSpinEdit1
     //
     this.repositoryItemSpinEdit1.AutoHeight = false;
     this.repositoryItemSpinEdit1.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton()});
     this.repositoryItemSpinEdit1.DisplayFormat.FormatString = "N0";
     this.repositoryItemSpinEdit1.DisplayFormat.FormatType = DevExpress.Utils.FormatType.Numeric;
     this.repositoryItemSpinEdit1.EditFormat.FormatString = "N0";
     this.repositoryItemSpinEdit1.EditFormat.FormatType = DevExpress.Utils.FormatType.Numeric;
     this.repositoryItemSpinEdit1.MaxValue = new decimal(new int[] {
     999999,
     0,
     0,
     0});
     this.repositoryItemSpinEdit1.MinValue = new decimal(new int[] {
     1,
     0,
     0,
     0});
     this.repositoryItemSpinEdit1.Name = "repositoryItemSpinEdit1";
     //
     // gcistknum
     //
     this.gcistknum.AppearanceCell.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(255)))), ((int)(((byte)(128)))), ((int)(((byte)(128)))));
     this.gcistknum.AppearanceCell.Options.UseBackColor = true;
     this.gcistknum.Caption = "入库数量";
     this.gcistknum.ColumnEdit = this.rspinstock;
     this.gcistknum.FieldName = "InStockNum";
     this.gcistknum.Name = "gcistknum";
     this.gcistknum.OptionsColumn.AllowEdit = false;
     this.gcistknum.OptionsFilter.AutoFilterCondition = DevExpress.XtraGrid.Columns.AutoFilterCondition.Contains;
     this.gcistknum.Visible = true;
     this.gcistknum.VisibleIndex = 5;
     this.gcistknum.Width = 98;
     //
     // rspinstock
     //
     this.rspinstock.AutoHeight = false;
     this.rspinstock.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton()});
     this.rspinstock.DisplayFormat.FormatString = "N0";
     this.rspinstock.DisplayFormat.FormatType = DevExpress.Utils.FormatType.Numeric;
     this.rspinstock.EditFormat.FormatString = "N0";
     this.rspinstock.EditFormat.FormatType = DevExpress.Utils.FormatType.Numeric;
     this.rspinstock.IsFloatValue = false;
     this.rspinstock.Mask.EditMask = "N00";
     this.rspinstock.MaxValue = new decimal(new int[] {
     99999999,
     0,
     0,
     0});
     this.rspinstock.Name = "rspinstock";
     //
     // gridColumn17
     //
     this.gridColumn17.Caption = "未入库数";
     this.gridColumn17.FieldName = "UnAuditNum";
     this.gridColumn17.Name = "gridColumn17";
     this.gridColumn17.OptionsColumn.AllowEdit = false;
     this.gridColumn17.OptionsFilter.AutoFilterCondition = DevExpress.XtraGrid.Columns.AutoFilterCondition.Contains;
     this.gridColumn17.Visible = true;
     this.gridColumn17.VisibleIndex = 7;
     this.gridColumn17.Width = 105;
     //
     // gridColumn19
     //
     this.gridColumn19.Caption = "入库仓库";
     this.gridColumn19.FieldName = "WareName";
     this.gridColumn19.Name = "gridColumn19";
     this.gridColumn19.OptionsColumn.AllowEdit = false;
     this.gridColumn19.OptionsFilter.AutoFilterCondition = DevExpress.XtraGrid.Columns.AutoFilterCondition.Contains;
     this.gridColumn19.Visible = true;
     this.gridColumn19.VisibleIndex = 8;
     //
     // gridColumn24
     //
     this.gridColumn24.Caption = "包件数";
     this.gridColumn24.FieldName = "PackageCount";
     this.gridColumn24.Name = "gridColumn24";
     this.gridColumn24.OptionsColumn.AllowEdit = false;
     this.gridColumn24.OptionsFilter.AutoFilterCondition = DevExpress.XtraGrid.Columns.AutoFilterCondition.Contains;
     this.gridColumn24.Visible = true;
     this.gridColumn24.VisibleIndex = 9;
     //
     // gridColumn44
     //
     this.gridColumn44.Caption = "备注";
     this.gridColumn44.FieldName = "Remark";
     this.gridColumn44.Name = "gridColumn44";
     this.gridColumn44.OptionsColumn.AllowEdit = false;
     this.gridColumn44.OptionsFilter.AutoFilterCondition = DevExpress.XtraGrid.Columns.AutoFilterCondition.Contains;
     this.gridColumn44.Visible = true;
     this.gridColumn44.VisibleIndex = 10;
     this.gridColumn44.Width = 120;
     //
     // rspSuppName
     //
     this.rspSuppName.AutoHeight = false;
     this.rspSuppName.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.rspSuppName.DisplayMember = "SuppName";
     this.rspSuppName.Name = "rspSuppName";
     this.rspSuppName.ValueMember = "SuppName";
     this.rspSuppName.View = this.repositoryItemGridLookUpEdit1View;
     //
     // repositoryItemGridLookUpEdit1View
     //
     this.repositoryItemGridLookUpEdit1View.Columns.AddRange(new DevExpress.XtraGrid.Columns.GridColumn[] {
     this.gridColumn26});
     this.repositoryItemGridLookUpEdit1View.FocusRectStyle = DevExpress.XtraGrid.Views.Grid.DrawFocusRectStyle.RowFocus;
     this.repositoryItemGridLookUpEdit1View.Name = "repositoryItemGridLookUpEdit1View";
     this.repositoryItemGridLookUpEdit1View.OptionsSelection.EnableAppearanceFocusedCell = false;
     this.repositoryItemGridLookUpEdit1View.OptionsView.ShowGroupPanel = false;
     //
     // gridColumn26
     //
     this.gridColumn26.Caption = "供应商";
     this.gridColumn26.FieldName = "SuppName";
     this.gridColumn26.Name = "gridColumn26";
     this.gridColumn26.Visible = true;
     this.gridColumn26.VisibleIndex = 0;
     //
     // xtbItem
     //
     this.xtbItem.Controls.Add(this.gcNeedItem);
     this.xtbItem.Name = "xtbItem";
     this.xtbItem.Size = new System.Drawing.Size(774, 103);
     this.xtbItem.Text = "商品信息";
     //
     // gcNeedItem
     //
     this.gcNeedItem.CellStyleColor = System.Drawing.Color.FromArgb(((int)(((byte)(192)))), ((int)(((byte)(192)))), ((int)(((byte)(0)))));
     this.gcNeedItem.ColorFieldName = null;
     this.gcNeedItem.Dock = System.Windows.Forms.DockStyle.Fill;
     this.gcNeedItem.ImageFields = ((System.Collections.Generic.List<string>)(resources.GetObject("gcNeedItem.ImageFields")));
     this.gcNeedItem.Location = new System.Drawing.Point(0, 0);
     this.gcNeedItem.MainView = this.gvNeedItem;
     this.gcNeedItem.Name = "gcNeedItem";
     this.gcNeedItem.PopupMnu = null;
     this.gcNeedItem.PopupTextFields = ((System.Collections.Generic.List<string>)(resources.GetObject("gcNeedItem.PopupTextFields")));
     this.gcNeedItem.PopupTextFieldsReadOnly = ((System.Collections.Generic.List<string>)(resources.GetObject("gcNeedItem.PopupTextFieldsReadOnly")));
     this.gcNeedItem.PropName = "PropName";
     this.gcNeedItem.RightMenu = null;
     this.gcNeedItem.RowCellColorStyleSource = null;
     this.gcNeedItem.ShadowDataSource = null;
     this.gcNeedItem.ShadowDataSourceKey = "Guid";
     this.gcNeedItem.ShowIndicator = true;
     this.gcNeedItem.ShowRowNumber = true;
     this.gcNeedItem.Size = new System.Drawing.Size(774, 103);
     this.gcNeedItem.TabIndex = 3;
     this.gcNeedItem.ViewCollection.AddRange(new DevExpress.XtraGrid.Views.Base.BaseView[] {
     this.gvNeedItem});
     //
     // gvNeedItem
     //
     this.gvNeedItem.Appearance.FocusedRow.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(70)))), ((int)(((byte)(80)))), ((int)(((byte)(20)))), ((int)(((byte)(20)))));
     this.gvNeedItem.Appearance.FocusedRow.Options.UseBackColor = true;
     this.gvNeedItem.Appearance.SelectedRow.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(70)))), ((int)(((byte)(80)))), ((int)(((byte)(20)))), ((int)(((byte)(20)))));
     this.gvNeedItem.Appearance.SelectedRow.Options.UseBackColor = true;
     this.gvNeedItem.Columns.AddRange(new DevExpress.XtraGrid.Columns.GridColumn[] {
     this.gridColumn53,
     this.gridColumn54,
     this.gridColumn55,
     this.gridColumn56,
     this.gridColumn57,
     this.gridColumn58,
     this.gridColumn59,
     this.gridColumn60,
     this.gridColumn61,
     this.gridColumn62,
     this.gridColumn63,
     this.gridColumn64,
     this.gridColumn65,
     this.gridColumn66,
     this.gridColumn67,
     this.gridColumn68,
     this.gridColumn69,
     this.gridColumn70});
     this.gvNeedItem.GridControl = this.gcNeedItem;
     this.gvNeedItem.IndicatorWidth = 44;
     this.gvNeedItem.Name = "gvNeedItem";
     this.gvNeedItem.OptionsBehavior.Editable = false;
     this.gvNeedItem.OptionsView.ColumnAutoWidth = false;
     this.gvNeedItem.OptionsView.ShowAutoFilterRow = true;
     this.gvNeedItem.OptionsView.ShowFooter = true;
     this.gvNeedItem.OptionsView.ShowGroupPanel = false;
     //
     // gridColumn53
     //
     this.gridColumn53.Caption = "买家";
     this.gridColumn53.FieldName = "BuyerNick";
     this.gridColumn53.Name = "gridColumn53";
     this.gridColumn53.OptionsColumn.AllowEdit = false;
     this.gridColumn53.OptionsFilter.AutoFilterCondition = DevExpress.XtraGrid.Columns.AutoFilterCondition.Contains;
     //
     // gridColumn54
     //
     this.gridColumn54.Caption = "商品编码";
     this.gridColumn54.FieldName = "OuterIid";
     this.gridColumn54.Name = "gridColumn54";
     this.gridColumn54.OptionsFilter.AutoFilterCondition = DevExpress.XtraGrid.Columns.AutoFilterCondition.Contains;
     this.gridColumn54.Visible = true;
     this.gridColumn54.VisibleIndex = 0;
     //
     // gridColumn55
     //
     this.gridColumn55.Caption = "规格编码";
     this.gridColumn55.FieldName = "OuterSkuId";
     this.gridColumn55.Name = "gridColumn55";
     this.gridColumn55.OptionsFilter.AutoFilterCondition = DevExpress.XtraGrid.Columns.AutoFilterCondition.Contains;
     this.gridColumn55.Visible = true;
     this.gridColumn55.VisibleIndex = 1;
     //
     // gridColumn56
     //
     this.gridColumn56.Caption = "商品名称";
     this.gridColumn56.FieldName = "ItemName";
     this.gridColumn56.Name = "gridColumn56";
     this.gridColumn56.OptionsFilter.AutoFilterCondition = DevExpress.XtraGrid.Columns.AutoFilterCondition.Contains;
     this.gridColumn56.Visible = true;
     this.gridColumn56.VisibleIndex = 2;
     //
     // gridColumn57
     //
     this.gridColumn57.Caption = "规格名称";
     this.gridColumn57.FieldName = "SkuProperties";
     this.gridColumn57.Name = "gridColumn57";
     this.gridColumn57.OptionsFilter.AutoFilterCondition = DevExpress.XtraGrid.Columns.AutoFilterCondition.Contains;
     this.gridColumn57.Visible = true;
     this.gridColumn57.VisibleIndex = 3;
     //
     // gridColumn58
     //
     this.gridColumn58.Caption = "颜色";
     this.gridColumn58.Name = "gridColumn58";
     this.gridColumn58.OptionsFilter.AutoFilterCondition = DevExpress.XtraGrid.Columns.AutoFilterCondition.Contains;
     //
     // gridColumn59
     //
     this.gridColumn59.Caption = "采购数量";
     this.gridColumn59.FieldName = "AssignItemNum";
     this.gridColumn59.Name = "gridColumn59";
     this.gridColumn59.OptionsColumn.AllowEdit = false;
     this.gridColumn59.OptionsFilter.AutoFilterCondition = DevExpress.XtraGrid.Columns.AutoFilterCondition.Contains;
     //
     // gridColumn60
     //
     this.gridColumn60.Caption = "实际来货数量";
     this.gridColumn60.FieldName = "AssignedNum";
     this.gridColumn60.Name = "gridColumn60";
     this.gridColumn60.OptionsFilter.AutoFilterCondition = DevExpress.XtraGrid.Columns.AutoFilterCondition.Contains;
     this.gridColumn60.Width = 85;
     //
     // gridColumn61
     //
     this.gridColumn61.Caption = "入库数";
     this.gridColumn61.FieldName = "Num";
     this.gridColumn61.Name = "gridColumn61";
     this.gridColumn61.OptionsFilter.AutoFilterCondition = DevExpress.XtraGrid.Columns.AutoFilterCondition.Contains;
     this.gridColumn61.Visible = true;
     this.gridColumn61.VisibleIndex = 7;
     //
     // gridColumn62
     //
     this.gridColumn62.Caption = "取消数量";
     this.gridColumn62.FieldName = "CancelNum";
     this.gridColumn62.Name = "gridColumn62";
     this.gridColumn62.OptionsFilter.AutoFilterCondition = DevExpress.XtraGrid.Columns.AutoFilterCondition.Contains;
     //
     // gridColumn63
     //
     this.gridColumn63.Caption = "参考成本";
     this.gridColumn63.FieldName = "CostPrice";
     this.gridColumn63.Name = "gridColumn63";
     this.gridColumn63.OptionsFilter.AutoFilterCondition = DevExpress.XtraGrid.Columns.AutoFilterCondition.Contains;
     //
     // gridColumn64
     //
     this.gridColumn64.Caption = "实际成本";
     this.gridColumn64.FieldName = "RealPrice";
     this.gridColumn64.Name = "gridColumn64";
     this.gridColumn64.OptionsFilter.AutoFilterCondition = DevExpress.XtraGrid.Columns.AutoFilterCondition.Contains;
     //
     // gridColumn65
     //
     this.gridColumn65.Caption = "合计成本";
     this.gridColumn65.FieldName = "SumPrice";
     this.gridColumn65.Name = "gridColumn65";
     this.gridColumn65.OptionsFilter.AutoFilterCondition = DevExpress.XtraGrid.Columns.AutoFilterCondition.Contains;
     //
     // gridColumn66
     //
     this.gridColumn66.Caption = "入库仓库";
     this.gridColumn66.FieldName = "WareName";
     this.gridColumn66.Name = "gridColumn66";
     this.gridColumn66.OptionsColumn.AllowEdit = false;
     this.gridColumn66.OptionsFilter.AutoFilterCondition = DevExpress.XtraGrid.Columns.AutoFilterCondition.Contains;
     this.gridColumn66.Visible = true;
     this.gridColumn66.VisibleIndex = 4;
     //
     // gridColumn67
     //
     this.gridColumn67.Caption = "买家";
     this.gridColumn67.FieldName = "BuyerNick";
     this.gridColumn67.Name = "gridColumn67";
     this.gridColumn67.OptionsFilter.AutoFilterCondition = DevExpress.XtraGrid.Columns.AutoFilterCondition.Contains;
     //
     // gridColumn68
     //
     this.gridColumn68.Caption = "备注";
     this.gridColumn68.FieldName = "Remark";
     this.gridColumn68.Name = "gridColumn68";
     this.gridColumn68.OptionsColumn.AllowEdit = false;
     this.gridColumn68.OptionsFilter.AutoFilterCondition = DevExpress.XtraGrid.Columns.AutoFilterCondition.Contains;
     this.gridColumn68.Visible = true;
     this.gridColumn68.VisibleIndex = 9;
     //
     // gridColumn69
     //
     this.gridColumn69.Caption = "入库库位";
     this.gridColumn69.FieldName = "LocName";
     this.gridColumn69.Name = "gridColumn69";
     this.gridColumn69.OptionsFilter.AutoFilterCondition = DevExpress.XtraGrid.Columns.AutoFilterCondition.Contains;
     this.gridColumn69.Visible = true;
     this.gridColumn69.VisibleIndex = 6;
     //
     // gridColumn70
     //
     this.gridColumn70.Caption = "入库区域";
     this.gridColumn70.FieldName = "AreaName";
     this.gridColumn70.Name = "gridColumn70";
     this.gridColumn70.OptionsFilter.AutoFilterCondition = DevExpress.XtraGrid.Columns.AutoFilterCondition.Contains;
     this.gridColumn70.Visible = true;
     this.gridColumn70.VisibleIndex = 5;
     //
     // xtbLog
     //
     this.xtbLog.Controls.Add(this.gcLog);
     this.xtbLog.Name = "xtbLog";
     this.xtbLog.Size = new System.Drawing.Size(774, 103);
     this.xtbLog.Text = "操作记录";
     //
     // gcLog
     //
     this.gcLog.CellStyleColor = System.Drawing.Color.FromArgb(((int)(((byte)(192)))), ((int)(((byte)(192)))), ((int)(((byte)(0)))));
     this.gcLog.ColorFieldName = null;
     this.gcLog.Dock = System.Windows.Forms.DockStyle.Fill;
     this.gcLog.ImageFields = ((System.Collections.Generic.List<string>)(resources.GetObject("gcLog.ImageFields")));
     this.gcLog.Location = new System.Drawing.Point(0, 0);
     this.gcLog.MainView = this.gvLog;
     this.gcLog.MenuManager = this.baseBarMgr;
     this.gcLog.Name = "gcLog";
     this.gcLog.PopupMnu = null;
     this.gcLog.PopupTextFields = ((System.Collections.Generic.List<string>)(resources.GetObject("gcLog.PopupTextFields")));
     this.gcLog.PopupTextFieldsReadOnly = ((System.Collections.Generic.List<string>)(resources.GetObject("gcLog.PopupTextFieldsReadOnly")));
     this.gcLog.PropName = "PropName";
     this.gcLog.RightMenu = null;
     this.gcLog.RowCellColorStyleSource = null;
     this.gcLog.ShadowDataSource = null;
     this.gcLog.ShadowDataSourceKey = "Guid";
     this.gcLog.ShowIndicator = true;
     this.gcLog.ShowRowNumber = true;
     this.gcLog.Size = new System.Drawing.Size(774, 103);
     this.gcLog.TabIndex = 2;
     this.gcLog.ViewCollection.AddRange(new DevExpress.XtraGrid.Views.Base.BaseView[] {
     this.gvLog});
     //
     // gvLog
     //
     this.gvLog.Appearance.FocusedRow.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(70)))), ((int)(((byte)(80)))), ((int)(((byte)(20)))), ((int)(((byte)(20)))));
     this.gvLog.Appearance.FocusedRow.Options.UseBackColor = true;
     this.gvLog.Appearance.SelectedRow.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(70)))), ((int)(((byte)(80)))), ((int)(((byte)(20)))), ((int)(((byte)(20)))));
     this.gvLog.Appearance.SelectedRow.Options.UseBackColor = true;
     this.gvLog.Columns.AddRange(new DevExpress.XtraGrid.Columns.GridColumn[] {
     this.gridColumn11,
     this.gridColumn8,
     this.gridColumn9,
     this.gridColumn7,
     this.gridColumn12});
     this.gvLog.GridControl = this.gcLog;
     this.gvLog.IndicatorWidth = 44;
     this.gvLog.Name = "gvLog";
     this.gvLog.OptionsBehavior.Editable = false;
     this.gvLog.OptionsView.ColumnAutoWidth = false;
     this.gvLog.OptionsView.ShowAutoFilterRow = true;
     this.gvLog.OptionsView.ShowGroupPanel = false;
     //
     // gridColumn11
     //
     this.gridColumn11.Caption = "操作人";
     this.gridColumn11.FieldName = "UserName";
     this.gridColumn11.Name = "gridColumn11";
     this.gridColumn11.OptionsFilter.AutoFilterCondition = DevExpress.XtraGrid.Columns.AutoFilterCondition.Contains;
     this.gridColumn11.Visible = true;
     this.gridColumn11.VisibleIndex = 0;
     //
     // gridColumn8
     //
     this.gridColumn8.Caption = "动作";
     this.gridColumn8.FieldName = "ActionName";
     this.gridColumn8.Name = "gridColumn8";
     this.gridColumn8.OptionsFilter.AutoFilterCondition = DevExpress.XtraGrid.Columns.AutoFilterCondition.Contains;
     this.gridColumn8.Visible = true;
     this.gridColumn8.VisibleIndex = 1;
     //
     // gridColumn9
     //
     this.gridColumn9.Caption = "描述";
     this.gridColumn9.FieldName = "ActionDesc";
     this.gridColumn9.Name = "gridColumn9";
     this.gridColumn9.OptionsFilter.AutoFilterCondition = DevExpress.XtraGrid.Columns.AutoFilterCondition.Contains;
     this.gridColumn9.Visible = true;
     this.gridColumn9.VisibleIndex = 2;
     //
     // gridColumn7
     //
     this.gridColumn7.Caption = "入库单号";
     this.gridColumn7.FieldName = "TradeNo";
     this.gridColumn7.Name = "gridColumn7";
     this.gridColumn7.OptionsFilter.AutoFilterCondition = DevExpress.XtraGrid.Columns.AutoFilterCondition.Contains;
     this.gridColumn7.Visible = true;
     this.gridColumn7.VisibleIndex = 4;
     //
     // gridColumn12
     //
     this.gridColumn12.Caption = "操作时间";
     this.gridColumn12.DisplayFormat.FormatString = "yyyy-MM-dd HH:mm";
     this.gridColumn12.DisplayFormat.FormatType = DevExpress.Utils.FormatType.DateTime;
     this.gridColumn12.FieldName = "CreateDate";
     this.gridColumn12.Name = "gridColumn12";
     this.gridColumn12.OptionsFilter.AutoFilterCondition = DevExpress.XtraGrid.Columns.AutoFilterCondition.Contains;
     this.gridColumn12.Visible = true;
     this.gridColumn12.VisibleIndex = 3;
     //
     // xtraTabPage1
     //
     this.xtraTabPage1.Name = "xtraTabPage1";
     this.xtraTabPage1.Size = new System.Drawing.Size(774, 263);
     //
     // InStockView
     //
     this.AutoScaleDimensions = new System.Drawing.SizeF(7F, 14F);
     this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
     this.ClientSize = new System.Drawing.Size(780, 520);
     this.Controls.Add(this.splitContainerControl1);
     this.Controls.Add(this.panelControl1);
     this.Name = "InStockView";
     this.Text = "商品入库";
     this.Load += new System.EventHandler(this.PackInStockView_Load);
     this.Controls.SetChildIndex(this.panelControl1, 0);
     this.Controls.SetChildIndex(this.splitContainerControl1, 0);
     ((System.ComponentModel.ISupportInitialize)(this.panelControl1)).EndInit();
     this.panelControl1.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.txtinstckno.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtouterno.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.supplierEdit1View)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.tbMain)).EndInit();
     this.tbMain.ResumeLayout(false);
     this.xtraTabPage5.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.gcUnAudit)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.gvUnAudit)).EndInit();
     this.xtraTabPage2.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.gcAudit)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.gvAudit)).EndInit();
     this.xtraTabPage7.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.gcAllAudit)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.gvAllAudit)).EndInit();
     this.xtraTabPage6.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.gcInvalid)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.gvInvalid)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.splitContainerControl1)).EndInit();
     this.splitContainerControl1.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.tbDetail)).EndInit();
     this.tbDetail.ResumeLayout(false);
     this.xtbInStork.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.gc)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.gv)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemSpinEdit1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.rspinstock)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.rspSuppName)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemGridLookUpEdit1View)).EndInit();
     this.xtbItem.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.gcNeedItem)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.gvNeedItem)).EndInit();
     this.xtbLog.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.gcLog)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.gvLog)).EndInit();
     this.ResumeLayout(false);
 }
 /// <summary>
 /// Required method for Designer support - do not modify
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     this.ribbon = new DevExpress.XtraBars.Ribbon.RibbonControl();
     this.ribbonPage1 = new DevExpress.XtraBars.Ribbon.RibbonPage();
     this.ribbonPageGroup1 = new DevExpress.XtraBars.Ribbon.RibbonPageGroup();
     this.ribbonStatusBar = new DevExpress.XtraBars.Ribbon.RibbonStatusBar();
     this.clientPanel = new DevExpress.XtraEditors.PanelControl();
     this.tableLayoutPanel1 = new System.Windows.Forms.TableLayoutPanel();
     this.pcAddBoard = new DevExpress.XtraEditors.PanelControl();
     this.lblAddBoard = new DevExpress.XtraEditors.LabelControl();
     this.imgAddBoard = new System.Windows.Forms.PictureBox();
     this.pcBoardList = new DevExpress.XtraEditors.PanelControl();
     this.lblBoardList = new DevExpress.XtraEditors.LabelControl();
     this.imgBoardList = new System.Windows.Forms.PictureBox();
     this.pictureBox3 = new System.Windows.Forms.PictureBox();
     this.pcWebBrowser = new DevExpress.XtraEditors.PanelControl();
     this.wbNews = new System.Windows.Forms.WebBrowser();
     this.pcRequestSupport = new DevExpress.XtraEditors.PanelControl();
     this.lblRequestSupport = new DevExpress.XtraEditors.LabelControl();
     this.imgRequestSupport = new System.Windows.Forms.PictureBox();
     this.pcCheckForUpdates = new DevExpress.XtraEditors.PanelControl();
     this.lblCheckForUpdates = new DevExpress.XtraEditors.LabelControl();
     this.imgCheckForUpdates = new System.Windows.Forms.PictureBox();
     ((System.ComponentModel.ISupportInitialize)(this.ribbon)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.clientPanel)).BeginInit();
     this.clientPanel.SuspendLayout();
     this.tableLayoutPanel1.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.pcAddBoard)).BeginInit();
     this.pcAddBoard.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.imgAddBoard)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.pcBoardList)).BeginInit();
     this.pcBoardList.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.imgBoardList)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.pictureBox3)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.pcWebBrowser)).BeginInit();
     this.pcWebBrowser.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.pcRequestSupport)).BeginInit();
     this.pcRequestSupport.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.imgRequestSupport)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.pcCheckForUpdates)).BeginInit();
     this.pcCheckForUpdates.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.imgCheckForUpdates)).BeginInit();
     this.SuspendLayout();
     //
     // ribbon
     //
     this.ribbon.ApplicationButtonText = null;
     this.ribbon.Location = new System.Drawing.Point(0, 0);
     this.ribbon.MaxItemId = 1;
     this.ribbon.Name = "ribbon";
     this.ribbon.Pages.AddRange(new DevExpress.XtraBars.Ribbon.RibbonPage[] {
     this.ribbonPage1});
     this.ribbon.SelectedPage = this.ribbonPage1;
     this.ribbon.Size = new System.Drawing.Size(860, 143);
     this.ribbon.StatusBar = this.ribbonStatusBar;
     //
     // ribbonPage1
     //
     this.ribbonPage1.Groups.AddRange(new DevExpress.XtraBars.Ribbon.RibbonPageGroup[] {
     this.ribbonPageGroup1});
     this.ribbonPage1.Name = "ribbonPage1";
     this.ribbonPage1.Text = "ribbonPage1";
     //
     // ribbonPageGroup1
     //
     this.ribbonPageGroup1.Name = "ribbonPageGroup1";
     this.ribbonPageGroup1.Text = "ribbonPageGroup1";
     //
     // ribbonStatusBar
     //
     this.ribbonStatusBar.Location = new System.Drawing.Point(0, 530);
     this.ribbonStatusBar.Name = "ribbonStatusBar";
     this.ribbonStatusBar.Ribbon = this.ribbon;
     this.ribbonStatusBar.Size = new System.Drawing.Size(860, 25);
     //
     // clientPanel
     //
     this.clientPanel.BorderStyle = DevExpress.XtraEditors.Controls.BorderStyles.NoBorder;
     this.clientPanel.Controls.Add(this.tableLayoutPanel1);
     this.clientPanel.Dock = System.Windows.Forms.DockStyle.Fill;
     this.clientPanel.Location = new System.Drawing.Point(0, 143);
     this.clientPanel.Name = "clientPanel";
     this.clientPanel.Size = new System.Drawing.Size(860, 387);
     this.clientPanel.TabIndex = 2;
     //
     // tableLayoutPanel1
     //
     this.tableLayoutPanel1.ColumnCount = 2;
     this.tableLayoutPanel1.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Absolute, 250F));
     this.tableLayoutPanel1.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 100F));
     this.tableLayoutPanel1.Controls.Add(this.pcAddBoard, 0, 1);
     this.tableLayoutPanel1.Controls.Add(this.pcBoardList, 0, 2);
     this.tableLayoutPanel1.Controls.Add(this.pictureBox3, 0, 0);
     this.tableLayoutPanel1.Controls.Add(this.pcWebBrowser, 1, 1);
     this.tableLayoutPanel1.Controls.Add(this.pcRequestSupport, 0, 3);
     this.tableLayoutPanel1.Controls.Add(this.pcCheckForUpdates, 0, 4);
     this.tableLayoutPanel1.Dock = System.Windows.Forms.DockStyle.Fill;
     this.tableLayoutPanel1.Location = new System.Drawing.Point(0, 0);
     this.tableLayoutPanel1.Name = "tableLayoutPanel1";
     this.tableLayoutPanel1.RowCount = 6;
     this.tableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 100F));
     this.tableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 35F));
     this.tableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 35F));
     this.tableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 35F));
     this.tableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 35F));
     this.tableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 100F));
     this.tableLayoutPanel1.Size = new System.Drawing.Size(860, 387);
     this.tableLayoutPanel1.TabIndex = 0;
     //
     // pcAddBoard
     //
     this.pcAddBoard.Controls.Add(this.lblAddBoard);
     this.pcAddBoard.Controls.Add(this.imgAddBoard);
     this.pcAddBoard.Cursor = System.Windows.Forms.Cursors.Hand;
     this.pcAddBoard.Dock = System.Windows.Forms.DockStyle.Fill;
     this.pcAddBoard.Location = new System.Drawing.Point(3, 103);
     this.pcAddBoard.Name = "pcAddBoard";
     this.pcAddBoard.Size = new System.Drawing.Size(244, 29);
     this.pcAddBoard.TabIndex = 0;
     //
     // lblAddBoard
     //
     this.lblAddBoard.AutoSizeMode = DevExpress.XtraEditors.LabelAutoSizeMode.None;
     this.lblAddBoard.Dock = System.Windows.Forms.DockStyle.Fill;
     this.lblAddBoard.Location = new System.Drawing.Point(27, 2);
     this.lblAddBoard.Name = "lblAddBoard";
     this.lblAddBoard.Padding = new System.Windows.Forms.Padding(5, 0, 0, 0);
     this.lblAddBoard.Size = new System.Drawing.Size(215, 25);
     this.lblAddBoard.TabIndex = 1;
     this.lblAddBoard.Text = "Add New Board";
     //
     // imgAddBoard
     //
     this.imgAddBoard.Dock = System.Windows.Forms.DockStyle.Left;
     this.imgAddBoard.Image = global::SSTCP.Properties.Resources.NewCard;
     this.imgAddBoard.Location = new System.Drawing.Point(2, 2);
     this.imgAddBoard.Name = "imgAddBoard";
     this.imgAddBoard.Size = new System.Drawing.Size(25, 25);
     this.imgAddBoard.TabIndex = 0;
     this.imgAddBoard.TabStop = false;
     //
     // pcBoardList
     //
     this.pcBoardList.Controls.Add(this.lblBoardList);
     this.pcBoardList.Controls.Add(this.imgBoardList);
     this.pcBoardList.Cursor = System.Windows.Forms.Cursors.Hand;
     this.pcBoardList.Dock = System.Windows.Forms.DockStyle.Fill;
     this.pcBoardList.Location = new System.Drawing.Point(3, 138);
     this.pcBoardList.Name = "pcBoardList";
     this.pcBoardList.Size = new System.Drawing.Size(244, 29);
     this.pcBoardList.TabIndex = 1;
     this.pcBoardList.MouseClick += new System.Windows.Forms.MouseEventHandler(this.pcBoardList_MouseClick);
     //
     // lblBoardList
     //
     this.lblBoardList.AutoSizeMode = DevExpress.XtraEditors.LabelAutoSizeMode.None;
     this.lblBoardList.Dock = System.Windows.Forms.DockStyle.Fill;
     this.lblBoardList.Location = new System.Drawing.Point(27, 2);
     this.lblBoardList.Name = "lblBoardList";
     this.lblBoardList.Padding = new System.Windows.Forms.Padding(5, 0, 0, 0);
     this.lblBoardList.Size = new System.Drawing.Size(215, 25);
     this.lblBoardList.TabIndex = 2;
     this.lblBoardList.Text = "Board List";
     this.lblBoardList.MouseClick += new System.Windows.Forms.MouseEventHandler(this.lblBoardList_MouseClick);
     //
     // imgBoardList
     //
     this.imgBoardList.Dock = System.Windows.Forms.DockStyle.Left;
     this.imgBoardList.Image = global::SSTCP.Properties.Resources.EditBoards;
     this.imgBoardList.Location = new System.Drawing.Point(2, 2);
     this.imgBoardList.Name = "imgBoardList";
     this.imgBoardList.Size = new System.Drawing.Size(25, 25);
     this.imgBoardList.TabIndex = 1;
     this.imgBoardList.TabStop = false;
     this.imgBoardList.MouseClick += new System.Windows.Forms.MouseEventHandler(this.imgBoardList_MouseClick);
     //
     // pictureBox3
     //
     this.tableLayoutPanel1.SetColumnSpan(this.pictureBox3, 2);
     this.pictureBox3.Dock = System.Windows.Forms.DockStyle.Fill;
     this.pictureBox3.Location = new System.Drawing.Point(3, 3);
     this.pictureBox3.Name = "pictureBox3";
     this.pictureBox3.Size = new System.Drawing.Size(854, 94);
     this.pictureBox3.TabIndex = 2;
     this.pictureBox3.TabStop = false;
     //
     // pcWebBrowser
     //
     this.pcWebBrowser.Controls.Add(this.wbNews);
     this.pcWebBrowser.Dock = System.Windows.Forms.DockStyle.Fill;
     this.pcWebBrowser.Location = new System.Drawing.Point(253, 103);
     this.pcWebBrowser.Name = "pcWebBrowser";
     this.tableLayoutPanel1.SetRowSpan(this.pcWebBrowser, 5);
     this.pcWebBrowser.Size = new System.Drawing.Size(604, 281);
     this.pcWebBrowser.TabIndex = 3;
     //
     // wbNews
     //
     this.wbNews.Dock = System.Windows.Forms.DockStyle.Fill;
     this.wbNews.Location = new System.Drawing.Point(2, 2);
     this.wbNews.MinimumSize = new System.Drawing.Size(20, 20);
     this.wbNews.Name = "wbNews";
     this.wbNews.Size = new System.Drawing.Size(600, 277);
     this.wbNews.TabIndex = 0;
     //
     // pcRequestSupport
     //
     this.pcRequestSupport.Controls.Add(this.lblRequestSupport);
     this.pcRequestSupport.Controls.Add(this.imgRequestSupport);
     this.pcRequestSupport.Cursor = System.Windows.Forms.Cursors.Hand;
     this.pcRequestSupport.Dock = System.Windows.Forms.DockStyle.Fill;
     this.pcRequestSupport.Location = new System.Drawing.Point(3, 173);
     this.pcRequestSupport.Name = "pcRequestSupport";
     this.pcRequestSupport.Size = new System.Drawing.Size(244, 29);
     this.pcRequestSupport.TabIndex = 4;
     this.pcRequestSupport.MouseClick += new System.Windows.Forms.MouseEventHandler(this.pcRequestSupport_MouseClick);
     //
     // lblRequestSupport
     //
     this.lblRequestSupport.AutoSizeMode = DevExpress.XtraEditors.LabelAutoSizeMode.None;
     this.lblRequestSupport.Dock = System.Windows.Forms.DockStyle.Fill;
     this.lblRequestSupport.Location = new System.Drawing.Point(27, 2);
     this.lblRequestSupport.Name = "lblRequestSupport";
     this.lblRequestSupport.Padding = new System.Windows.Forms.Padding(5, 0, 0, 0);
     this.lblRequestSupport.Size = new System.Drawing.Size(215, 25);
     this.lblRequestSupport.TabIndex = 3;
     this.lblRequestSupport.Text = "Request Support";
     this.lblRequestSupport.MouseClick += new System.Windows.Forms.MouseEventHandler(this.lblRequestSupport_MouseClick);
     //
     // imgRequestSupport
     //
     this.imgRequestSupport.Dock = System.Windows.Forms.DockStyle.Left;
     this.imgRequestSupport.Image = global::SSTCP.Properties.Resources.Contact;
     this.imgRequestSupport.Location = new System.Drawing.Point(2, 2);
     this.imgRequestSupport.Name = "imgRequestSupport";
     this.imgRequestSupport.Size = new System.Drawing.Size(25, 25);
     this.imgRequestSupport.TabIndex = 2;
     this.imgRequestSupport.TabStop = false;
     this.imgRequestSupport.MouseClick += new System.Windows.Forms.MouseEventHandler(this.imgRequestSupport_MouseClick);
     //
     // pcCheckForUpdates
     //
     this.pcCheckForUpdates.Controls.Add(this.lblCheckForUpdates);
     this.pcCheckForUpdates.Controls.Add(this.imgCheckForUpdates);
     this.pcCheckForUpdates.Dock = System.Windows.Forms.DockStyle.Fill;
     this.pcCheckForUpdates.Location = new System.Drawing.Point(3, 208);
     this.pcCheckForUpdates.Name = "pcCheckForUpdates";
     this.pcCheckForUpdates.Size = new System.Drawing.Size(244, 29);
     this.pcCheckForUpdates.TabIndex = 5;
     //
     // lblCheckForUpdates
     //
     this.lblCheckForUpdates.AutoSizeMode = DevExpress.XtraEditors.LabelAutoSizeMode.None;
     this.lblCheckForUpdates.Dock = System.Windows.Forms.DockStyle.Fill;
     this.lblCheckForUpdates.Location = new System.Drawing.Point(27, 2);
     this.lblCheckForUpdates.Name = "lblCheckForUpdates";
     this.lblCheckForUpdates.Padding = new System.Windows.Forms.Padding(5, 0, 0, 0);
     this.lblCheckForUpdates.Size = new System.Drawing.Size(215, 25);
     this.lblCheckForUpdates.TabIndex = 4;
     this.lblCheckForUpdates.Text = "Check for Updates";
     //
     // imgCheckForUpdates
     //
     this.imgCheckForUpdates.Dock = System.Windows.Forms.DockStyle.Left;
     this.imgCheckForUpdates.Image = global::SSTCP.Properties.Resources.Refresh;
     this.imgCheckForUpdates.Location = new System.Drawing.Point(2, 2);
     this.imgCheckForUpdates.Name = "imgCheckForUpdates";
     this.imgCheckForUpdates.Size = new System.Drawing.Size(25, 25);
     this.imgCheckForUpdates.TabIndex = 3;
     this.imgCheckForUpdates.TabStop = false;
     //
     // frmStartPage
     //
     this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
     this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
     this.ClientSize = new System.Drawing.Size(860, 555);
     this.Controls.Add(this.clientPanel);
     this.Controls.Add(this.ribbonStatusBar);
     this.Controls.Add(this.ribbon);
     this.Name = "frmStartPage";
     this.Ribbon = this.ribbon;
     this.StatusBar = this.ribbonStatusBar;
     this.Text = "frmStartPage";
     this.Load += new System.EventHandler(this.frmStartPage_Load);
     ((System.ComponentModel.ISupportInitialize)(this.ribbon)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.clientPanel)).EndInit();
     this.clientPanel.ResumeLayout(false);
     this.tableLayoutPanel1.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.pcAddBoard)).EndInit();
     this.pcAddBoard.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.imgAddBoard)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.pcBoardList)).EndInit();
     this.pcBoardList.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.imgBoardList)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.pictureBox3)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.pcWebBrowser)).EndInit();
     this.pcWebBrowser.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.pcRequestSupport)).EndInit();
     this.pcRequestSupport.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.imgRequestSupport)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.pcCheckForUpdates)).EndInit();
     this.pcCheckForUpdates.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.imgCheckForUpdates)).EndInit();
     this.ResumeLayout(false);
 }
Exemplo n.º 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.components    = new System.ComponentModel.Container();
     this.pnlSettings   = new System.Windows.Forms.Panel();
     this.smplEdit      = new DevExpress.XtraEditors.SimpleButton();
     this.printControl  = new DevExpress.XtraPrinting.Control.PrintControl();
     this.panelControl1 = new DevExpress.XtraEditors.PanelControl();
     this.pnlSettings.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.panelControl1)).BeginInit();
     this.panelControl1.SuspendLayout();
     this.SuspendLayout();
     //
     // pnlSettings
     //
     this.pnlSettings.Controls.Add(this.smplEdit);
     this.pnlSettings.Dock     = System.Windows.Forms.DockStyle.Top;
     this.pnlSettings.Location = new System.Drawing.Point(0, 0);
     this.pnlSettings.Name     = "pnlSettings";
     this.pnlSettings.Size     = new System.Drawing.Size(700, 36);
     this.pnlSettings.TabIndex = 0;
     //
     // smplEdit
     //
     this.smplEdit.Anchor   = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
     this.smplEdit.Location = new System.Drawing.Point(619, 6);
     this.smplEdit.Name     = "smplEdit";
     this.smplEdit.Size     = new System.Drawing.Size(75, 24);
     this.smplEdit.TabIndex = 2;
     this.smplEdit.Text     = "Edit";
     this.smplEdit.Click   += new System.EventHandler(this.simpleButton1_Click);
     //
     // printControl
     //
     this.printControl.BackColor = System.Drawing.Color.Empty;
     this.printControl.Dock      = System.Windows.Forms.DockStyle.Fill;
     this.printControl.ForeColor = System.Drawing.Color.Empty;
     this.printControl.IsMetric  = false;
     this.printControl.Location  = new System.Drawing.Point(2, 2);
     this.printControl.Name      = "printControl";
     this.printControl.Size      = new System.Drawing.Size(696, 356);
     this.printControl.TabIndex  = 1;
     this.printControl.TabStop   = false;
     //
     // panelControl1
     //
     this.panelControl1.BorderStyle = DevExpress.XtraEditors.Controls.BorderStyles.Flat;
     this.panelControl1.Controls.Add(this.printControl);
     this.panelControl1.Dock     = System.Windows.Forms.DockStyle.Fill;
     this.panelControl1.Location = new System.Drawing.Point(0, 36);
     this.panelControl1.Name     = "panelControl1";
     this.panelControl1.Size     = new System.Drawing.Size(700, 360);
     this.panelControl1.TabIndex = 4;
     //
     // PreviewControl
     //
     this.Controls.Add(this.panelControl1);
     this.Controls.Add(this.pnlSettings);
     this.Name = "PreviewControl";
     this.Size = new System.Drawing.Size(700, 396);
     this.pnlSettings.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.panelControl1)).EndInit();
     this.panelControl1.ResumeLayout(false);
     this.ResumeLayout(false);
 }
 /// <summary> 
 /// Required method for Designer support - do not modify 
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     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()
 {
     this.labelControl9 = new DevExpress.XtraEditors.LabelControl();
     this.labelControlRequired = new DevExpress.XtraEditors.LabelControl();
     this.labelControl6 = new DevExpress.XtraEditors.LabelControl();
     this.labelControlDescription = new DevExpress.XtraEditors.LabelControl();
     this.labelControl8 = new DevExpress.XtraEditors.LabelControl();
     this.labelControlPayType = new DevExpress.XtraEditors.LabelControl();
     this.labelControlVatType = new DevExpress.XtraEditors.LabelControl();
     this.labelControlbaht2 = new DevExpress.XtraEditors.LabelControl();
     this.labelControlMonthPrice = new DevExpress.XtraEditors.LabelControl();
     this.labelControlDailyPrice = new DevExpress.XtraEditors.LabelControl();
     this.labelControlbaht1 = new DevExpress.XtraEditors.LabelControl();
     this.lookUpEditPayType = new DevExpress.XtraEditors.LookUpEdit();
     this.lookUpEditVatType = new DevExpress.XtraEditors.LookUpEdit();
     this.panelControl2 = new DevExpress.XtraEditors.PanelControl();
     this.labelControlItemName = new DevExpress.XtraEditors.LabelControl();
     this.textEditItemName = new DevExpress.XtraEditors.TextEdit();
     this.bttCancel = new DevExpress.XtraEditors.SimpleButton();
     this.panelControl1 = new DevExpress.XtraEditors.PanelControl();
     this.memoEditDescription = new DevExpress.XtraEditors.MemoEdit();
     this.textEditDailyPrice = new DevExpress.XtraEditors.TextEdit();
     this.textEditMonthPrice = new DevExpress.XtraEditors.TextEdit();
     this.bttSave = new DevExpress.XtraEditors.SimpleButton();
     this.titleTabAddition = new DevExpress.XtraEditors.SimpleButton();
     ((System.ComponentModel.ISupportInitialize)(this.lookUpEditPayType.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.lookUpEditVatType.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.panelControl2)).BeginInit();
     this.panelControl2.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.textEditItemName.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.panelControl1)).BeginInit();
     this.panelControl1.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.memoEditDescription.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.textEditDailyPrice.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.textEditMonthPrice.Properties)).BeginInit();
     this.SuspendLayout();
     //
     // labelControl9
     //
     this.labelControl9.Appearance.ForeColor = System.Drawing.Color.Red;
     this.labelControl9.Location = new System.Drawing.Point(379, 133);
     this.labelControl9.Name = "labelControl9";
     this.labelControl9.Size = new System.Drawing.Size(6, 13);
     this.labelControl9.TabIndex = 411;
     this.labelControl9.Text = "*";
     //
     // labelControlRequired
     //
     this.labelControlRequired.Appearance.ForeColor = System.Drawing.Color.Red;
     this.labelControlRequired.Location = new System.Drawing.Point(115, 272);
     this.labelControlRequired.Name = "labelControlRequired";
     this.labelControlRequired.Size = new System.Drawing.Size(50, 13);
     this.labelControlRequired.TabIndex = 412;
     this.labelControlRequired.Text = "* โปรดระบุ";
     //
     // labelControl6
     //
     this.labelControl6.Appearance.ForeColor = System.Drawing.Color.Red;
     this.labelControl6.Location = new System.Drawing.Point(379, 29);
     this.labelControl6.Name = "labelControl6";
     this.labelControl6.Size = new System.Drawing.Size(6, 13);
     this.labelControl6.TabIndex = 411;
     this.labelControl6.Text = "*";
     //
     // labelControlDescription
     //
     this.labelControlDescription.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
     this.labelControlDescription.Appearance.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Far;
     this.labelControlDescription.AutoSizeMode = DevExpress.XtraEditors.LabelAutoSizeMode.None;
     this.labelControlDescription.Location = new System.Drawing.Point(60, 159);
     this.labelControlDescription.Name = "labelControlDescription";
     this.labelControlDescription.Size = new System.Drawing.Size(105, 20);
     this.labelControlDescription.TabIndex = 333;
     this.labelControlDescription.Text = "รายละเอียดเพิ่มเติม :";
     //
     // labelControl8
     //
     this.labelControl8.Appearance.ForeColor = System.Drawing.Color.Red;
     this.labelControl8.Location = new System.Drawing.Point(379, 55);
     this.labelControl8.Name = "labelControl8";
     this.labelControl8.Size = new System.Drawing.Size(6, 13);
     this.labelControl8.TabIndex = 411;
     this.labelControl8.Text = "*";
     //
     // labelControlPayType
     //
     this.labelControlPayType.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
     this.labelControlPayType.Appearance.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Far;
     this.labelControlPayType.AutoSizeMode = DevExpress.XtraEditors.LabelAutoSizeMode.None;
     this.labelControlPayType.Location = new System.Drawing.Point(60, 55);
     this.labelControlPayType.Name = "labelControlPayType";
     this.labelControlPayType.Size = new System.Drawing.Size(105, 20);
     this.labelControlPayType.TabIndex = 331;
     this.labelControlPayType.Text = "รูปแบบค่าใช้จ่าย :";
     //
     // labelControlVatType
     //
     this.labelControlVatType.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
     this.labelControlVatType.Appearance.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Far;
     this.labelControlVatType.AutoSizeMode = DevExpress.XtraEditors.LabelAutoSizeMode.None;
     this.labelControlVatType.Location = new System.Drawing.Point(60, 133);
     this.labelControlVatType.Name = "labelControlVatType";
     this.labelControlVatType.Size = new System.Drawing.Size(105, 20);
     this.labelControlVatType.TabIndex = 334;
     this.labelControlVatType.Text = "การคิดภาษี :";
     //
     // labelControlbaht2
     //
     this.labelControlbaht2.AutoSizeMode = DevExpress.XtraEditors.LabelAutoSizeMode.None;
     this.labelControlbaht2.Location = new System.Drawing.Point(400, 107);
     this.labelControlbaht2.Name = "labelControlbaht2";
     this.labelControlbaht2.Size = new System.Drawing.Size(41, 20);
     this.labelControlbaht2.TabIndex = 408;
     this.labelControlbaht2.Text = "บาท";
     //
     // labelControlMonthPrice
     //
     this.labelControlMonthPrice.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
     this.labelControlMonthPrice.Appearance.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Far;
     this.labelControlMonthPrice.AutoSizeMode = DevExpress.XtraEditors.LabelAutoSizeMode.None;
     this.labelControlMonthPrice.Location = new System.Drawing.Point(60, 81);
     this.labelControlMonthPrice.Name = "labelControlMonthPrice";
     this.labelControlMonthPrice.Size = new System.Drawing.Size(105, 20);
     this.labelControlMonthPrice.TabIndex = 330;
     this.labelControlMonthPrice.Text = "ราคารายเดือน :";
     //
     // labelControlDailyPrice
     //
     this.labelControlDailyPrice.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
     this.labelControlDailyPrice.Appearance.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Far;
     this.labelControlDailyPrice.AutoSizeMode = DevExpress.XtraEditors.LabelAutoSizeMode.None;
     this.labelControlDailyPrice.Location = new System.Drawing.Point(60, 107);
     this.labelControlDailyPrice.Name = "labelControlDailyPrice";
     this.labelControlDailyPrice.Size = new System.Drawing.Size(105, 20);
     this.labelControlDailyPrice.TabIndex = 335;
     this.labelControlDailyPrice.Text = "ราคารายวัน :";
     //
     // labelControlbaht1
     //
     this.labelControlbaht1.AutoSizeMode = DevExpress.XtraEditors.LabelAutoSizeMode.None;
     this.labelControlbaht1.Location = new System.Drawing.Point(400, 81);
     this.labelControlbaht1.Name = "labelControlbaht1";
     this.labelControlbaht1.Size = new System.Drawing.Size(41, 20);
     this.labelControlbaht1.TabIndex = 408;
     this.labelControlbaht1.Text = "บาท";
     //
     // lookUpEditPayType
     //
     this.lookUpEditPayType.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
                 | System.Windows.Forms.AnchorStyles.Right)));
     this.lookUpEditPayType.Location = new System.Drawing.Point(3, 55);
     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(370, 20);
     this.lookUpEditPayType.TabIndex = 340;
     //
     // lookUpEditVatType
     //
     this.lookUpEditVatType.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
                 | System.Windows.Forms.AnchorStyles.Right)));
     this.lookUpEditVatType.Location = new System.Drawing.Point(3, 134);
     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(370, 20);
     this.lookUpEditVatType.TabIndex = 340;
     //
     // panelControl2
     //
     this.panelControl2.BorderStyle = DevExpress.XtraEditors.Controls.BorderStyles.NoBorder;
     this.panelControl2.Controls.Add(this.labelControlRequired);
     this.panelControl2.Controls.Add(this.labelControlDescription);
     this.panelControl2.Controls.Add(this.labelControlVatType);
     this.panelControl2.Controls.Add(this.labelControlDailyPrice);
     this.panelControl2.Controls.Add(this.labelControlMonthPrice);
     this.panelControl2.Controls.Add(this.labelControlPayType);
     this.panelControl2.Controls.Add(this.labelControlItemName);
     this.panelControl2.Dock = System.Windows.Forms.DockStyle.Left;
     this.panelControl2.Location = new System.Drawing.Point(0, 23);
     this.panelControl2.Name = "panelControl2";
     this.panelControl2.Size = new System.Drawing.Size(168, 346);
     this.panelControl2.TabIndex = 339;
     //
     // labelControlItemName
     //
     this.labelControlItemName.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
     this.labelControlItemName.Appearance.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Far;
     this.labelControlItemName.AutoSizeMode = DevExpress.XtraEditors.LabelAutoSizeMode.None;
     this.labelControlItemName.Location = new System.Drawing.Point(60, 29);
     this.labelControlItemName.Name = "labelControlItemName";
     this.labelControlItemName.Size = new System.Drawing.Size(105, 20);
     this.labelControlItemName.TabIndex = 332;
     this.labelControlItemName.Text = "ชื่อรายการค่าใช้จ่าย :";
     //
     // textEditItemName
     //
     this.textEditItemName.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
                 | System.Windows.Forms.AnchorStyles.Right)));
     this.textEditItemName.Location = new System.Drawing.Point(3, 29);
     this.textEditItemName.Name = "textEditItemName";
     this.textEditItemName.Properties.Mask.BeepOnError = true;
     this.textEditItemName.Properties.Mask.EditMask = "([A-Z|a-z|0-9|ก-๙]| )*";
     this.textEditItemName.Properties.Mask.IgnoreMaskBlank = false;
     this.textEditItemName.Properties.Mask.MaskType = DevExpress.XtraEditors.Mask.MaskType.RegEx;
     this.textEditItemName.Properties.MaxLength = 50;
     this.textEditItemName.Size = new System.Drawing.Size(370, 20);
     this.textEditItemName.TabIndex = 337;
     //
     // bttCancel
     //
     this.bttCancel.Image = global::DXWindowsApplication2.Properties.Resources.Close;
     this.bttCancel.ImageLocation = DevExpress.XtraEditors.ImageLocation.TopCenter;
     this.bttCancel.Location = new System.Drawing.Point(303, 272);
     this.bttCancel.Name = "bttCancel";
     this.bttCancel.Size = new System.Drawing.Size(70, 55);
     this.bttCancel.TabIndex = 327;
     this.bttCancel.Text = "ยกเลิก";
     this.bttCancel.Click += new System.EventHandler(this.bttCancel_Click);
     //
     // panelControl1
     //
     this.panelControl1.BorderStyle = DevExpress.XtraEditors.Controls.BorderStyles.NoBorder;
     this.panelControl1.Controls.Add(this.labelControl9);
     this.panelControl1.Controls.Add(this.labelControl8);
     this.panelControl1.Controls.Add(this.labelControl6);
     this.panelControl1.Controls.Add(this.labelControlbaht2);
     this.panelControl1.Controls.Add(this.labelControlbaht1);
     this.panelControl1.Controls.Add(this.lookUpEditPayType);
     this.panelControl1.Controls.Add(this.lookUpEditVatType);
     this.panelControl1.Controls.Add(this.memoEditDescription);
     this.panelControl1.Controls.Add(this.textEditDailyPrice);
     this.panelControl1.Controls.Add(this.textEditMonthPrice);
     this.panelControl1.Controls.Add(this.textEditItemName);
     this.panelControl1.Controls.Add(this.bttSave);
     this.panelControl1.Controls.Add(this.bttCancel);
     this.panelControl1.Dock = System.Windows.Forms.DockStyle.Right;
     this.panelControl1.Location = new System.Drawing.Point(169, 23);
     this.panelControl1.Name = "panelControl1";
     this.panelControl1.Size = new System.Drawing.Size(537, 346);
     this.panelControl1.TabIndex = 338;
     //
     // memoEditDescription
     //
     this.memoEditDescription.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
                 | System.Windows.Forms.AnchorStyles.Right)));
     this.memoEditDescription.EditValue = "";
     this.memoEditDescription.Location = new System.Drawing.Point(3, 160);
     this.memoEditDescription.Name = "memoEditDescription";
     this.memoEditDescription.Properties.MaxLength = 500;
     this.memoEditDescription.Size = new System.Drawing.Size(370, 96);
     this.memoEditDescription.TabIndex = 339;
     //
     // textEditDailyPrice
     //
     this.textEditDailyPrice.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
                 | System.Windows.Forms.AnchorStyles.Right)));
     this.textEditDailyPrice.EditValue = "0.00";
     this.textEditDailyPrice.Location = new System.Drawing.Point(3, 107);
     this.textEditDailyPrice.Name = "textEditDailyPrice";
     this.textEditDailyPrice.Properties.Mask.BeepOnError = true;
     this.textEditDailyPrice.Properties.Mask.EditMask = "n2";
     this.textEditDailyPrice.Properties.Mask.IgnoreMaskBlank = false;
     this.textEditDailyPrice.Properties.Mask.MaskType = DevExpress.XtraEditors.Mask.MaskType.Numeric;
     this.textEditDailyPrice.Properties.Mask.UseMaskAsDisplayFormat = true;
     this.textEditDailyPrice.RightToLeft = System.Windows.Forms.RightToLeft.Yes;
     this.textEditDailyPrice.Size = new System.Drawing.Size(370, 20);
     this.textEditDailyPrice.TabIndex = 338;
     //
     // textEditMonthPrice
     //
     this.textEditMonthPrice.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
                 | System.Windows.Forms.AnchorStyles.Right)));
     this.textEditMonthPrice.EditValue = "0.00";
     this.textEditMonthPrice.Location = new System.Drawing.Point(3, 81);
     this.textEditMonthPrice.Name = "textEditMonthPrice";
     this.textEditMonthPrice.Properties.Mask.BeepOnError = true;
     this.textEditMonthPrice.Properties.Mask.EditMask = "n2";
     this.textEditMonthPrice.Properties.Mask.IgnoreMaskBlank = false;
     this.textEditMonthPrice.Properties.Mask.MaskType = DevExpress.XtraEditors.Mask.MaskType.Numeric;
     this.textEditMonthPrice.Properties.Mask.UseMaskAsDisplayFormat = true;
     this.textEditMonthPrice.RightToLeft = System.Windows.Forms.RightToLeft.Yes;
     this.textEditMonthPrice.Size = new System.Drawing.Size(370, 20);
     this.textEditMonthPrice.TabIndex = 335;
     //
     // bttSave
     //
     this.bttSave.Image = global::DXWindowsApplication2.Properties.Resources.savedisk;
     this.bttSave.ImageLocation = DevExpress.XtraEditors.ImageLocation.TopCenter;
     this.bttSave.Location = new System.Drawing.Point(222, 272);
     this.bttSave.Name = "bttSave";
     this.bttSave.Size = new System.Drawing.Size(70, 55);
     this.bttSave.TabIndex = 328;
     this.bttSave.Text = "บันทึก";
     this.bttSave.Click += new System.EventHandler(this.bttSave_Click);
     //
     // titleTabAddition
     //
     this.titleTabAddition.Appearance.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold);
     this.titleTabAddition.Appearance.Options.UseFont = true;
     this.titleTabAddition.ButtonStyle = DevExpress.XtraEditors.Controls.BorderStyles.HotFlat;
     this.titleTabAddition.Dock = System.Windows.Forms.DockStyle.Top;
     this.titleTabAddition.Location = new System.Drawing.Point(0, 0);
     this.titleTabAddition.Name = "titleTabAddition";
     this.titleTabAddition.Size = new System.Drawing.Size(706, 23);
     this.titleTabAddition.TabIndex = 337;
     this.titleTabAddition.Text = "เพิ่มข้อมูลค่าใช้จ่ายเพิ่มเติม";
     //
     // AddtionalItem
     //
     this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
     this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
     this.Controls.Add(this.panelControl2);
     this.Controls.Add(this.panelControl1);
     this.Controls.Add(this.titleTabAddition);
     this.Name = "AddtionalItem";
     this.Size = new System.Drawing.Size(706, 369);
     ((System.ComponentModel.ISupportInitialize)(this.lookUpEditPayType.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.lookUpEditVatType.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.panelControl2)).EndInit();
     this.panelControl2.ResumeLayout(false);
     this.panelControl2.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(this.textEditItemName.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.panelControl1)).EndInit();
     this.panelControl1.ResumeLayout(false);
     this.panelControl1.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(this.memoEditDescription.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.textEditDailyPrice.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.textEditMonthPrice.Properties)).EndInit();
     this.ResumeLayout(false);
 }
Exemplo n.º 59
0
 /// <summary>
 /// Required method for Designer support - do not modify
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     this.components = new System.ComponentModel.Container();
     this.repositoryItemCheckEdit2 = new DevExpress.XtraEditors.Repository.RepositoryItemCheckEdit();
     this.repositoryItemCheckEdit1 = new DevExpress.XtraEditors.Repository.RepositoryItemCheckEdit();
     this.panelControlMemberPackage = new DevExpress.XtraEditors.PanelControl();
     this.GridControlMemberPackage = new DevExpress.XtraGrid.GridControl();
     this.gridViewMemberPackage = new DevExpress.XtraGrid.Views.Grid.GridView();
     this.gridColumn1 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.GridColumn28 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.GridColumn30 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.GridColumn31 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.GridColumn32 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.GridColumn33 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.GridColumn35 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.GridColumn44 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.GridColumn45 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.GridColumn50 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.GridColumn49 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn14 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.GridColumn34 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn13 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.colChecked = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn2 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.splitterControl1 = new DevExpress.XtraEditors.SplitterControl();
     this.panelControlPackage = new DevExpress.XtraEditors.PanelControl();
     this.simpleButton2 = new DevExpress.XtraEditors.SimpleButton();
     this.simpleButtonOK1 = new DevExpress.XtraEditors.SimpleButton();
     this.toolTip1 = new System.Windows.Forms.ToolTip(this.components);
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemCheckEdit2)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemCheckEdit1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.panelControlMemberPackage)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.GridControlMemberPackage)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridViewMemberPackage)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.panelControlPackage)).BeginInit();
     this.panelControlPackage.SuspendLayout();
     this.SuspendLayout();
     //
     // repositoryItemCheckEdit2
     //
     this.repositoryItemCheckEdit2.AutoHeight = false;
     this.repositoryItemCheckEdit2.Name = "repositoryItemCheckEdit2";
     this.repositoryItemCheckEdit2.NullStyle = DevExpress.XtraEditors.Controls.StyleIndeterminate.Unchecked;
     this.repositoryItemCheckEdit2.ValueGrayed = "";
     //
     // repositoryItemCheckEdit1
     //
     this.repositoryItemCheckEdit1.AutoHeight = false;
     this.repositoryItemCheckEdit1.Name = "repositoryItemCheckEdit1";
     //
     // panelControlMemberPackage
     //
     this.panelControlMemberPackage.BorderStyle = DevExpress.XtraEditors.Controls.BorderStyles.NoBorder;
     this.panelControlMemberPackage.Location = new System.Drawing.Point(0, 0);
     this.panelControlMemberPackage.Name = "panelControlMemberPackage";
     this.panelControlMemberPackage.Size = new System.Drawing.Size(864, 220);
     this.panelControlMemberPackage.TabIndex = 1;
     //
     // GridControlMemberPackage
     //
     this.GridControlMemberPackage.Location = new System.Drawing.Point(-2, 13);
     this.GridControlMemberPackage.LookAndFeel.UseDefaultLookAndFeel = false;
     this.GridControlMemberPackage.MainView = this.gridViewMemberPackage;
     this.GridControlMemberPackage.Name = "GridControlMemberPackage";
     this.GridControlMemberPackage.Size = new System.Drawing.Size(818, 229);
     this.GridControlMemberPackage.TabIndex = 8;
     this.GridControlMemberPackage.ViewCollection.AddRange(new DevExpress.XtraGrid.Views.Base.BaseView[] {
     this.gridViewMemberPackage});
     this.GridControlMemberPackage.Click += new System.EventHandler(this.GridControlMemberPackage_Click);
     //
     // gridViewMemberPackage
     //
     this.gridViewMemberPackage.Columns.AddRange(new DevExpress.XtraGrid.Columns.GridColumn[] {
     this.gridColumn1,
     this.GridColumn28,
     this.GridColumn30,
     this.GridColumn31,
     this.GridColumn32,
     this.GridColumn33,
     this.GridColumn35,
     this.GridColumn44,
     this.GridColumn45,
     this.GridColumn50,
     this.GridColumn49,
     this.gridColumn14,
     this.GridColumn34,
     this.gridColumn13,
     this.colChecked,
     this.gridColumn2});
     this.gridViewMemberPackage.GridControl = this.GridControlMemberPackage;
     this.gridViewMemberPackage.GroupFormat = "";
     this.gridViewMemberPackage.HorzScrollVisibility = DevExpress.XtraGrid.Views.Base.ScrollVisibility.Always;
     this.gridViewMemberPackage.Name = "gridViewMemberPackage";
     this.gridViewMemberPackage.OptionsCustomization.AllowGroup = false;
     this.gridViewMemberPackage.OptionsCustomization.AllowSort = false;
     this.gridViewMemberPackage.OptionsView.ColumnAutoWidth = false;
     this.gridViewMemberPackage.OptionsView.ShowGroupPanel = false;
     this.gridViewMemberPackage.FocusedRowChanged += new DevExpress.XtraGrid.Views.Base.FocusedRowChangedEventHandler(this.gridViewMemberPackage_FocusedRowChanged);
     //
     // gridColumn1
     //
     this.gridColumn1.Caption = "Type";
     this.gridColumn1.FieldName = "strPackageType";
     this.gridColumn1.Name = "gridColumn1";
     this.gridColumn1.Visible = true;
     this.gridColumn1.VisibleIndex = 1;
     this.gridColumn1.Width = 100;
     //
     // GridColumn28
     //
     this.GridColumn28.Caption = "Package ID";
     this.GridColumn28.FieldName = "nPackageID";
     this.GridColumn28.Name = "GridColumn28";
     this.GridColumn28.OptionsColumn.AllowEdit = false;
     this.GridColumn28.OptionsColumn.AllowFocus = false;
     this.GridColumn28.OptionsFilter.AllowFilter = false;
     this.GridColumn28.Visible = true;
     this.GridColumn28.VisibleIndex = 2;
     this.GridColumn28.Width = 80;
     //
     // GridColumn30
     //
     this.GridColumn30.Caption = "Package Code";
     this.GridColumn30.FieldName = "strPackageCode";
     this.GridColumn30.Name = "GridColumn30";
     this.GridColumn30.OptionsColumn.AllowEdit = false;
     this.GridColumn30.OptionsColumn.AllowFocus = false;
     this.GridColumn30.OptionsFilter.AllowFilter = false;
     this.GridColumn30.Visible = true;
     this.GridColumn30.VisibleIndex = 3;
     this.GridColumn30.Width = 90;
     //
     // GridColumn31
     //
     this.GridColumn31.Caption = "Package Description";
     this.GridColumn31.FieldName = "strDescription";
     this.GridColumn31.Name = "GridColumn31";
     this.GridColumn31.OptionsColumn.AllowEdit = false;
     this.GridColumn31.OptionsColumn.AllowFocus = false;
     this.GridColumn31.OptionsFilter.AllowFilter = false;
     this.GridColumn31.Visible = true;
     this.GridColumn31.VisibleIndex = 4;
     this.GridColumn31.Width = 280;
     //
     // GridColumn32
     //
     this.GridColumn32.Caption = "Purchase Date";
     this.GridColumn32.DisplayFormat.FormatString = "dd/MM/yyyy";
     this.GridColumn32.DisplayFormat.FormatType = DevExpress.Utils.FormatType.DateTime;
     this.GridColumn32.FieldName = "dtPurchaseDate";
     this.GridColumn32.Name = "GridColumn32";
     this.GridColumn32.OptionsColumn.AllowEdit = false;
     this.GridColumn32.OptionsColumn.AllowFocus = false;
     this.GridColumn32.OptionsFilter.AllowFilter = false;
     this.GridColumn32.Width = 84;
     //
     // GridColumn33
     //
     this.GridColumn33.Caption = "Receipt No";
     this.GridColumn33.FieldName = "strReceiptNo";
     this.GridColumn33.Name = "GridColumn33";
     this.GridColumn33.OptionsColumn.AllowEdit = false;
     this.GridColumn33.OptionsColumn.AllowFocus = false;
     this.GridColumn33.OptionsFilter.AllowFilter = false;
     this.GridColumn33.Width = 82;
     //
     // GridColumn35
     //
     this.GridColumn35.Caption = "Start Date";
     this.GridColumn35.DisplayFormat.FormatString = "dd/MM/yyyy";
     this.GridColumn35.DisplayFormat.FormatType = DevExpress.Utils.FormatType.DateTime;
     this.GridColumn35.FieldName = "dtStartDate";
     this.GridColumn35.Name = "GridColumn35";
     this.GridColumn35.OptionsColumn.AllowEdit = false;
     this.GridColumn35.OptionsColumn.AllowFocus = false;
     this.GridColumn35.OptionsFilter.AllowFilter = false;
     this.GridColumn35.Width = 73;
     //
     // GridColumn44
     //
     this.GridColumn44.Caption = "Expiry Date";
     this.GridColumn44.DisplayFormat.FormatString = "dd/MM/yyyy";
     this.GridColumn44.DisplayFormat.FormatType = DevExpress.Utils.FormatType.DateTime;
     this.GridColumn44.FieldName = "dtExpiryDate";
     this.GridColumn44.Name = "GridColumn44";
     this.GridColumn44.OptionsColumn.AllowEdit = false;
     this.GridColumn44.OptionsColumn.AllowFocus = false;
     this.GridColumn44.OptionsFilter.AllowFilter = false;
     this.GridColumn44.Width = 104;
     //
     // GridColumn45
     //
     this.GridColumn45.Caption = "Free Indicator";
     this.GridColumn45.ColumnEdit = this.repositoryItemCheckEdit1;
     this.GridColumn45.FieldName = "fFree";
     this.GridColumn45.Name = "GridColumn45";
     this.GridColumn45.OptionsColumn.AllowEdit = false;
     this.GridColumn45.OptionsColumn.AllowFocus = false;
     this.GridColumn45.OptionsFilter.AllowFilter = false;
     this.GridColumn45.Width = 110;
     //
     // GridColumn50
     //
     this.GridColumn50.Caption = "Usage Balance Amount";
     this.GridColumn50.DisplayFormat.FormatString = "{0:C}";
     this.GridColumn50.DisplayFormat.FormatType = DevExpress.Utils.FormatType.Custom;
     this.GridColumn50.FieldName = "UsageBalAmt";
     this.GridColumn50.Name = "GridColumn50";
     this.GridColumn50.OptionsColumn.AllowEdit = false;
     this.GridColumn50.OptionsColumn.AllowFocus = false;
     this.GridColumn50.OptionsFilter.AllowFilter = false;
     this.GridColumn50.Visible = true;
     this.GridColumn50.VisibleIndex = 5;
     this.GridColumn50.Width = 134;
     //
     // GridColumn49
     //
     this.GridColumn49.Caption = "Remark";
     this.GridColumn49.FieldName = "strRemarks";
     this.GridColumn49.Name = "GridColumn49";
     this.GridColumn49.OptionsColumn.AllowEdit = false;
     this.GridColumn49.OptionsColumn.AllowFocus = false;
     this.GridColumn49.OptionsFilter.AllowFilter = false;
     this.GridColumn49.Visible = true;
     this.GridColumn49.VisibleIndex = 6;
     this.GridColumn49.Width = 70;
     //
     // gridColumn14
     //
     this.gridColumn14.Caption = "Paid Amount";
     this.gridColumn14.DisplayFormat.FormatString = "{0:C}";
     this.gridColumn14.DisplayFormat.FormatType = DevExpress.Utils.FormatType.Custom;
     this.gridColumn14.FieldName = "PaidAmt";
     this.gridColumn14.Name = "gridColumn14";
     this.gridColumn14.OptionsColumn.AllowEdit = false;
     this.gridColumn14.OptionsColumn.AllowFocus = false;
     this.gridColumn14.OptionsFilter.AllowFilter = false;
     this.gridColumn14.Width = 90;
     //
     // GridColumn34
     //
     this.GridColumn34.Caption = "Balance";
     this.GridColumn34.FieldName = "strBalNew";
     this.GridColumn34.Name = "GridColumn34";
     this.GridColumn34.OptionsColumn.AllowEdit = false;
     this.GridColumn34.OptionsColumn.AllowFocus = false;
     this.GridColumn34.OptionsFilter.AllowFilter = false;
     this.GridColumn34.Visible = true;
     this.GridColumn34.VisibleIndex = 7;
     this.GridColumn34.Width = 60;
     //
     // gridColumn13
     //
     this.gridColumn13.Caption = "Unit Price";
     this.gridColumn13.DisplayFormat.FormatString = "{0:C}";
     this.gridColumn13.DisplayFormat.FormatType = DevExpress.Utils.FormatType.Custom;
     this.gridColumn13.FieldName = "mBaseUnitPrice";
     this.gridColumn13.Name = "gridColumn13";
     this.gridColumn13.OptionsColumn.AllowEdit = false;
     this.gridColumn13.OptionsColumn.AllowFocus = false;
     this.gridColumn13.OptionsFilter.AllowFilter = false;
     this.gridColumn13.Width = 57;
     //
     // colChecked
     //
     this.colChecked.ColumnEdit = this.repositoryItemCheckEdit2;
     this.colChecked.FieldName = "Checked";
     this.colChecked.Name = "colChecked";
     this.colChecked.Visible = true;
     this.colChecked.VisibleIndex = 0;
     this.colChecked.Width = 34;
     //
     // gridColumn2
     //
     this.gridColumn2.Caption = "Calculation";
     this.gridColumn2.FieldName = "strCalculation";
     this.gridColumn2.Name = "gridColumn2";
     this.gridColumn2.Visible = true;
     this.gridColumn2.VisibleIndex = 8;
     //
     // splitterControl1
     //
     this.splitterControl1.Dock = System.Windows.Forms.DockStyle.Top;
     this.splitterControl1.Location = new System.Drawing.Point(0, 0);
     this.splitterControl1.Name = "splitterControl1";
     this.splitterControl1.Size = new System.Drawing.Size(979, 6);
     this.splitterControl1.TabIndex = 2;
     this.splitterControl1.TabStop = false;
     //
     // panelControlPackage
     //
     this.panelControlPackage.BorderStyle = DevExpress.XtraEditors.Controls.BorderStyles.NoBorder;
     this.panelControlPackage.Controls.Add(this.simpleButton2);
     this.panelControlPackage.Controls.Add(this.simpleButtonOK1);
     this.panelControlPackage.Controls.Add(this.GridControlMemberPackage);
     this.panelControlPackage.Dock = System.Windows.Forms.DockStyle.Fill;
     this.panelControlPackage.Location = new System.Drawing.Point(0, 6);
     this.panelControlPackage.Name = "panelControlPackage";
     this.panelControlPackage.Size = new System.Drawing.Size(979, 316);
     this.panelControlPackage.TabIndex = 4;
     //
     // simpleButton2
     //
     this.simpleButton2.DialogResult = System.Windows.Forms.DialogResult.Cancel;
     this.simpleButton2.Location = new System.Drawing.Point(644, 247);
     this.simpleButton2.Name = "simpleButton2";
     this.simpleButton2.Size = new System.Drawing.Size(75, 23);
     this.simpleButton2.TabIndex = 12;
     this.simpleButton2.Text = "Cancel";
     //
     // simpleButtonOK1
     //
     this.simpleButtonOK1.DialogResult = System.Windows.Forms.DialogResult.OK;
     this.simpleButtonOK1.Location = new System.Drawing.Point(557, 247);
     this.simpleButtonOK1.Name = "simpleButtonOK1";
     this.simpleButtonOK1.Size = new System.Drawing.Size(75, 23);
     this.simpleButtonOK1.TabIndex = 11;
     this.simpleButtonOK1.Text = "OK";
     this.simpleButtonOK1.Click += new System.EventHandler(this.simpleButtonOK_Click);
     //
     // FormUpgradePackageNew
     //
     this.AutoScaleBaseSize = new System.Drawing.Size(5, 13);
     this.ClientSize = new System.Drawing.Size(979, 322);
     this.Controls.Add(this.panelControlPackage);
     this.Controls.Add(this.panelControlMemberPackage);
     this.Controls.Add(this.splitterControl1);
     this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedDialog;
     this.MaximizeBox = false;
     this.MinimizeBox = false;
     this.Name = "FormUpgradePackageNew";
     this.ShowInTaskbar = false;
     this.SizeGripStyle = System.Windows.Forms.SizeGripStyle.Show;
     this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen;
     this.Text = "Upgrade Selection";
     this.Load += new System.EventHandler(this.FormUpgradePackage_Load);
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemCheckEdit2)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemCheckEdit1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.panelControlMemberPackage)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.GridControlMemberPackage)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridViewMemberPackage)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.panelControlPackage)).EndInit();
     this.panelControlPackage.ResumeLayout(false);
     this.ResumeLayout(false);
 }
 /// <summary>
 /// Required method for Designer support - do not modify
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     this.gridControlData = new DevExpress.XtraGrid.GridControl();
     this.LSMS = new DevExpress.Data.Linq.LinqServerModeSource();
     this.gridViewData = new DevExpress.XtraGrid.Views.Grid.GridView();
     this.colmostahk = new DevExpress.XtraGrid.Columns.GridColumn();
     this.colmremark = new DevExpress.XtraGrid.Columns.GridColumn();
     this.coldatein = new DevExpress.XtraGrid.Columns.GridColumn();
     this.colDofatSarfM = new DevExpress.XtraGrid.Columns.GridColumn();
     this.colRealName = new DevExpress.XtraGrid.Columns.GridColumn();
     this.colMMashatName = 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.repositoryItemDateEditDMY = new DevExpress.XtraEditors.Repository.RepositoryItemDateEdit();
     this.repositoryItemMemoExEdit1 = new DevExpress.XtraEditors.Repository.RepositoryItemMemoExEdit();
     this.repositoryItemLookUpEdituserin = new DevExpress.XtraEditors.Repository.RepositoryItemLookUpEdit();
     this.panelControl1 = new DevExpress.XtraEditors.PanelControl();
     this.btnPrintExport = new DevExpress.XtraEditors.SimpleButton();
     this.colMMashatId = new DevExpress.XtraGrid.Columns.GridColumn();
     ((System.ComponentModel.ISupportInitialize)(this.gridControlData)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.LSMS)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridViewData)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemDateEditDMY)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemDateEditDMY.VistaTimeProperties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemMemoExEdit1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemLookUpEdituserin)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.panelControl1)).BeginInit();
     this.panelControl1.SuspendLayout();
     this.SuspendLayout();
     //
     // gridControlData
     //
     this.gridControlData.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
     | System.Windows.Forms.AnchorStyles.Left)
     | System.Windows.Forms.AnchorStyles.Right)));
     this.gridControlData.DataSource = this.LSMS;
     this.gridControlData.EmbeddedNavigator.Buttons.CancelEdit.Visible = false;
     this.gridControlData.EmbeddedNavigator.Buttons.Edit.Visible = false;
     this.gridControlData.EmbeddedNavigator.Buttons.EndEdit.Visible = false;
     this.gridControlData.EmbeddedNavigator.Buttons.Remove.Visible = false;
     this.gridControlData.EmbeddedNavigator.TextStringFormat = "صف {0} من {1}";
     this.gridControlData.Location = new System.Drawing.Point(0, 53);
     this.gridControlData.MainView = this.gridViewData;
     this.gridControlData.Name = "gridControlData";
     this.gridControlData.RepositoryItems.AddRange(new DevExpress.XtraEditors.Repository.RepositoryItem[] {
     this.repositoryItemDateEditDMY,
     this.repositoryItemMemoExEdit1,
     this.repositoryItemLookUpEdituserin});
     this.gridControlData.Size = new System.Drawing.Size(734, 404);
     this.gridControlData.TabIndex = 1;
     this.gridControlData.UseEmbeddedNavigator = true;
     this.gridControlData.ViewCollection.AddRange(new DevExpress.XtraGrid.Views.Base.BaseView[] {
     this.gridViewData});
     //
     // LSMS
     //
     this.LSMS.ElementType = typeof(RetirementCenter.DataSources.Linq.vTblMemberMadunea);
     this.LSMS.KeyExpression = "MaduniaAuto";
     //
     // gridViewData
     //
     this.gridViewData.Appearance.ColumnFilterButton.BackColor = System.Drawing.Color.DarkGray;
     this.gridViewData.Appearance.ColumnFilterButton.BorderColor = System.Drawing.Color.DarkGray;
     this.gridViewData.Appearance.ColumnFilterButton.ForeColor = System.Drawing.Color.DimGray;
     this.gridViewData.Appearance.ColumnFilterButton.Options.UseBackColor = true;
     this.gridViewData.Appearance.ColumnFilterButton.Options.UseBorderColor = true;
     this.gridViewData.Appearance.ColumnFilterButton.Options.UseForeColor = true;
     this.gridViewData.Appearance.ColumnFilterButtonActive.BackColor = System.Drawing.Color.DarkGray;
     this.gridViewData.Appearance.ColumnFilterButtonActive.BorderColor = System.Drawing.Color.DarkGray;
     this.gridViewData.Appearance.ColumnFilterButtonActive.ForeColor = System.Drawing.Color.Gainsboro;
     this.gridViewData.Appearance.ColumnFilterButtonActive.Options.UseBackColor = true;
     this.gridViewData.Appearance.ColumnFilterButtonActive.Options.UseBorderColor = true;
     this.gridViewData.Appearance.ColumnFilterButtonActive.Options.UseForeColor = true;
     this.gridViewData.Appearance.Empty.BackColor = System.Drawing.Color.DimGray;
     this.gridViewData.Appearance.Empty.GradientMode = System.Drawing.Drawing2D.LinearGradientMode.BackwardDiagonal;
     this.gridViewData.Appearance.Empty.Options.UseBackColor = true;
     this.gridViewData.Appearance.EvenRow.BackColor = System.Drawing.Color.White;
     this.gridViewData.Appearance.EvenRow.Options.UseBackColor = true;
     this.gridViewData.Appearance.FilterCloseButton.BackColor = System.Drawing.Color.Gray;
     this.gridViewData.Appearance.FilterCloseButton.BorderColor = System.Drawing.Color.Gray;
     this.gridViewData.Appearance.FilterCloseButton.Options.UseBackColor = true;
     this.gridViewData.Appearance.FilterCloseButton.Options.UseBorderColor = true;
     this.gridViewData.Appearance.FilterPanel.BackColor = System.Drawing.Color.Gray;
     this.gridViewData.Appearance.FilterPanel.ForeColor = System.Drawing.Color.Black;
     this.gridViewData.Appearance.FilterPanel.Options.UseBackColor = true;
     this.gridViewData.Appearance.FilterPanel.Options.UseForeColor = true;
     this.gridViewData.Appearance.FocusedRow.BackColor = System.Drawing.Color.Black;
     this.gridViewData.Appearance.FocusedRow.ForeColor = System.Drawing.Color.White;
     this.gridViewData.Appearance.FocusedRow.Options.UseBackColor = true;
     this.gridViewData.Appearance.FocusedRow.Options.UseForeColor = true;
     this.gridViewData.Appearance.FooterPanel.BackColor = System.Drawing.Color.DarkGray;
     this.gridViewData.Appearance.FooterPanel.BorderColor = System.Drawing.Color.DarkGray;
     this.gridViewData.Appearance.FooterPanel.Options.UseBackColor = true;
     this.gridViewData.Appearance.FooterPanel.Options.UseBorderColor = true;
     this.gridViewData.Appearance.FooterPanel.Options.UseTextOptions = true;
     this.gridViewData.Appearance.FooterPanel.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.gridViewData.Appearance.GroupButton.BackColor = System.Drawing.Color.Silver;
     this.gridViewData.Appearance.GroupButton.BorderColor = System.Drawing.Color.Silver;
     this.gridViewData.Appearance.GroupButton.Options.UseBackColor = true;
     this.gridViewData.Appearance.GroupButton.Options.UseBorderColor = true;
     this.gridViewData.Appearance.GroupFooter.BackColor = System.Drawing.Color.Silver;
     this.gridViewData.Appearance.GroupFooter.BorderColor = System.Drawing.Color.Silver;
     this.gridViewData.Appearance.GroupFooter.Options.UseBackColor = true;
     this.gridViewData.Appearance.GroupFooter.Options.UseBorderColor = true;
     this.gridViewData.Appearance.GroupPanel.BackColor = System.Drawing.Color.DimGray;
     this.gridViewData.Appearance.GroupPanel.ForeColor = System.Drawing.Color.Gray;
     this.gridViewData.Appearance.GroupPanel.Options.UseBackColor = true;
     this.gridViewData.Appearance.GroupPanel.Options.UseForeColor = true;
     this.gridViewData.Appearance.GroupRow.BackColor = System.Drawing.Color.Silver;
     this.gridViewData.Appearance.GroupRow.Font = new System.Drawing.Font("Tahoma", 8F, System.Drawing.FontStyle.Bold);
     this.gridViewData.Appearance.GroupRow.Options.UseBackColor = true;
     this.gridViewData.Appearance.GroupRow.Options.UseFont = true;
     this.gridViewData.Appearance.HeaderPanel.BackColor = System.Drawing.Color.DarkGray;
     this.gridViewData.Appearance.HeaderPanel.BorderColor = System.Drawing.Color.DarkGray;
     this.gridViewData.Appearance.HeaderPanel.Options.UseBackColor = true;
     this.gridViewData.Appearance.HeaderPanel.Options.UseBorderColor = true;
     this.gridViewData.Appearance.HideSelectionRow.BackColor = System.Drawing.Color.LightSlateGray;
     this.gridViewData.Appearance.HideSelectionRow.Options.UseBackColor = true;
     this.gridViewData.Appearance.HorzLine.BackColor = System.Drawing.Color.LightGray;
     this.gridViewData.Appearance.HorzLine.Options.UseBackColor = true;
     this.gridViewData.Appearance.OddRow.BackColor = System.Drawing.Color.WhiteSmoke;
     this.gridViewData.Appearance.OddRow.Options.UseBackColor = true;
     this.gridViewData.Appearance.Preview.BackColor = System.Drawing.Color.Gainsboro;
     this.gridViewData.Appearance.Preview.ForeColor = System.Drawing.Color.DimGray;
     this.gridViewData.Appearance.Preview.Options.UseBackColor = true;
     this.gridViewData.Appearance.Preview.Options.UseForeColor = true;
     this.gridViewData.Appearance.Row.BackColor = System.Drawing.Color.White;
     this.gridViewData.Appearance.Row.Options.UseBackColor = true;
     this.gridViewData.Appearance.RowSeparator.BackColor = System.Drawing.Color.DimGray;
     this.gridViewData.Appearance.RowSeparator.Options.UseBackColor = true;
     this.gridViewData.Appearance.SelectedRow.BackColor = System.Drawing.Color.DimGray;
     this.gridViewData.Appearance.SelectedRow.Options.UseBackColor = true;
     this.gridViewData.Appearance.VertLine.BackColor = System.Drawing.Color.LightGray;
     this.gridViewData.Appearance.VertLine.Options.UseBackColor = true;
     this.gridViewData.Columns.AddRange(new DevExpress.XtraGrid.Columns.GridColumn[] {
     this.colmostahk,
     this.colmremark,
     this.coldatein,
     this.colDofatSarfM,
     this.colRealName,
     this.colMMashatName,
     this.colsarfnumber,
     this.colSyndicate,
     this.colSubCommitte,
     this.colMMashatId});
     this.gridViewData.GridControl = this.gridControlData;
     this.gridViewData.Name = "gridViewData";
     this.gridViewData.OptionsBehavior.ReadOnly = true;
     this.gridViewData.OptionsCustomization.AllowRowSizing = true;
     this.gridViewData.OptionsFind.AlwaysVisible = true;
     this.gridViewData.OptionsPrint.EnableAppearanceEvenRow = true;
     this.gridViewData.OptionsPrint.EnableAppearanceOddRow = true;
     this.gridViewData.OptionsView.ColumnAutoWidth = false;
     this.gridViewData.OptionsView.EnableAppearanceEvenRow = true;
     this.gridViewData.OptionsView.EnableAppearanceOddRow = true;
     this.gridViewData.OptionsView.ShowAutoFilterRow = true;
     this.gridViewData.OptionsView.ShowFooter = true;
     //
     // colmostahk
     //
     this.colmostahk.AppearanceCell.Options.UseTextOptions = true;
     this.colmostahk.AppearanceCell.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.colmostahk.AppearanceHeader.Options.UseTextOptions = true;
     this.colmostahk.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.colmostahk.Caption = "مستحق";
     this.colmostahk.FieldName = "mostahk";
     this.colmostahk.Name = "colmostahk";
     this.colmostahk.Visible = true;
     this.colmostahk.VisibleIndex = 3;
     //
     // colmremark
     //
     this.colmremark.AppearanceCell.Options.UseTextOptions = true;
     this.colmremark.AppearanceCell.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.colmremark.AppearanceHeader.Options.UseTextOptions = true;
     this.colmremark.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.colmremark.Caption = "ملاحظات";
     this.colmremark.FieldName = "mremark";
     this.colmremark.Name = "colmremark";
     this.colmremark.Visible = true;
     this.colmremark.VisibleIndex = 7;
     //
     // coldatein
     //
     this.coldatein.AppearanceCell.Options.UseTextOptions = true;
     this.coldatein.AppearanceCell.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.coldatein.AppearanceHeader.Options.UseTextOptions = true;
     this.coldatein.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.coldatein.Caption = "تاريخ الادخال";
     this.coldatein.FieldName = "datein";
     this.coldatein.Name = "coldatein";
     this.coldatein.Visible = true;
     this.coldatein.VisibleIndex = 8;
     //
     // colDofatSarfM
     //
     this.colDofatSarfM.AppearanceCell.Options.UseTextOptions = true;
     this.colDofatSarfM.AppearanceCell.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.colDofatSarfM.AppearanceHeader.Options.UseTextOptions = true;
     this.colDofatSarfM.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.colDofatSarfM.Caption = "الدفعة";
     this.colDofatSarfM.FieldName = "DofatSarfM";
     this.colDofatSarfM.Name = "colDofatSarfM";
     this.colDofatSarfM.Visible = true;
     this.colDofatSarfM.VisibleIndex = 2;
     //
     // colRealName
     //
     this.colRealName.AppearanceCell.Options.UseTextOptions = true;
     this.colRealName.AppearanceCell.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.colRealName.AppearanceHeader.Options.UseTextOptions = true;
     this.colRealName.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.colRealName.Caption = "مدخل البيان";
     this.colRealName.FieldName = "RealName";
     this.colRealName.Name = "colRealName";
     this.colRealName.Visible = true;
     this.colRealName.VisibleIndex = 9;
     //
     // colMMashatName
     //
     this.colMMashatName.AppearanceCell.Options.UseTextOptions = true;
     this.colMMashatName.AppearanceCell.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.colMMashatName.AppearanceHeader.Options.UseTextOptions = true;
     this.colMMashatName.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.colMMashatName.Caption = "الاسم";
     this.colMMashatName.FieldName = "MMashatName";
     this.colMMashatName.Name = "colMMashatName";
     this.colMMashatName.Visible = true;
     this.colMMashatName.VisibleIndex = 1;
     //
     // colsarfnumber
     //
     this.colsarfnumber.AppearanceCell.Options.UseTextOptions = true;
     this.colsarfnumber.AppearanceCell.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.colsarfnumber.AppearanceHeader.Options.UseTextOptions = true;
     this.colsarfnumber.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.colsarfnumber.Caption = "رقم الصرف";
     this.colsarfnumber.FieldName = "sarfnumber";
     this.colsarfnumber.Name = "colsarfnumber";
     this.colsarfnumber.Visible = true;
     this.colsarfnumber.VisibleIndex = 4;
     //
     // 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 = 5;
     //
     // 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 = 6;
     //
     // repositoryItemDateEditDMY
     //
     this.repositoryItemDateEditDMY.AutoHeight = false;
     this.repositoryItemDateEditDMY.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.repositoryItemDateEditDMY.DisplayFormat.FormatString = "dd/MM/yyyy";
     this.repositoryItemDateEditDMY.DisplayFormat.FormatType = DevExpress.Utils.FormatType.DateTime;
     this.repositoryItemDateEditDMY.EditFormat.FormatString = "dd/MM/yyyy";
     this.repositoryItemDateEditDMY.EditFormat.FormatType = DevExpress.Utils.FormatType.DateTime;
     this.repositoryItemDateEditDMY.Mask.EditMask = "dd/MM/yyyy";
     this.repositoryItemDateEditDMY.Name = "repositoryItemDateEditDMY";
     this.repositoryItemDateEditDMY.VistaTimeProperties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton()});
     //
     // repositoryItemMemoExEdit1
     //
     this.repositoryItemMemoExEdit1.AutoHeight = false;
     this.repositoryItemMemoExEdit1.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.repositoryItemMemoExEdit1.Name = "repositoryItemMemoExEdit1";
     //
     // repositoryItemLookUpEdituserin
     //
     this.repositoryItemLookUpEdituserin.AutoHeight = false;
     this.repositoryItemLookUpEdituserin.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.repositoryItemLookUpEdituserin.DisplayMember = "RealName";
     this.repositoryItemLookUpEdituserin.Name = "repositoryItemLookUpEdituserin";
     this.repositoryItemLookUpEdituserin.NullText = "";
     this.repositoryItemLookUpEdituserin.TextEditStyle = DevExpress.XtraEditors.Controls.TextEditStyles.Standard;
     this.repositoryItemLookUpEdituserin.ValueMember = "UserID";
     //
     // panelControl1
     //
     this.panelControl1.Controls.Add(this.btnPrintExport);
     this.panelControl1.Dock = System.Windows.Forms.DockStyle.Top;
     this.panelControl1.Location = new System.Drawing.Point(0, 0);
     this.panelControl1.Name = "panelControl1";
     this.panelControl1.Size = new System.Drawing.Size(734, 47);
     this.panelControl1.TabIndex = 4;
     //
     // btnPrintExport
     //
     this.btnPrintExport.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
     this.btnPrintExport.Location = new System.Drawing.Point(588, 12);
     this.btnPrintExport.Name = "btnPrintExport";
     this.btnPrintExport.Size = new System.Drawing.Size(134, 23);
     this.btnPrintExport.TabIndex = 0;
     this.btnPrintExport.Text = "طباعه و تصدير";
     this.btnPrintExport.Click += new System.EventHandler(this.btnPrintExport_Click);
     //
     // colMMashatId
     //
     this.colMMashatId.AppearanceCell.Options.UseTextOptions = true;
     this.colMMashatId.AppearanceCell.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.colMMashatId.AppearanceHeader.Options.UseTextOptions = true;
     this.colMMashatId.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.colMMashatId.Caption = "كود";
     this.colMMashatId.FieldName = "MMashatId";
     this.colMMashatId.Name = "colMMashatId";
     this.colMMashatId.Visible = true;
     this.colMMashatId.VisibleIndex = 0;
     //
     // Qry86Frm
     //
     this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
     this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
     this.ClientSize = new System.Drawing.Size(734, 462);
     this.Controls.Add(this.panelControl1);
     this.Controls.Add(this.gridControlData);
     this.Name = "Qry86Frm";
     this.Text = "مديونية الاعضاء";
     this.WindowState = System.Windows.Forms.FormWindowState.Maximized;
     this.Load += new System.EventHandler(this.Qry06Frm_Load);
     ((System.ComponentModel.ISupportInitialize)(this.gridControlData)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.LSMS)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridViewData)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemDateEditDMY.VistaTimeProperties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemDateEditDMY)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemMemoExEdit1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemLookUpEdituserin)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.panelControl1)).EndInit();
     this.panelControl1.ResumeLayout(false);
     this.ResumeLayout(false);
 }